diff --git a/.ansible-lint b/.ansible-lint deleted file mode 100644 index 18b85228..00000000 --- a/.ansible-lint +++ /dev/null @@ -1,38 +0,0 @@ ---- -parseable: true -skip_list: - # see https://docs.ansible.com/ansible-lint/rules/default_rules.html for a list of all default rules - - # DO NOT add any other rules to this skip_list, instead use local `# noqa` with a comment explaining WHY it is necessary - - # These rules are intentionally skipped: - # - # [role-name] "meta/main.yml" Role name role-name does not match ``^+$`` pattern - # Meta roles in Kubespray don't need proper names - # (Disabled in June 2021) - - 'role-name' - - # [var-naming] "defaults/main.yml" File defines variable 'apiVersion' that violates variable naming standards - # In Kubespray we use variables that use camelCase to match their k8s counterparts - # (Disabled in June 2021) - - 'var-naming' - - # [fqcn-builtins] - # Roles in kubespray don't need fully qualified collection names - # (Disabled in Feb 2023) - - 'fqcn-builtins' - - # We use template in names - - 'name[template]' - - # No changed-when on commands - # (Disabled in June 2023 after ansible upgrade; FIXME) - - 'no-changed-when' - - # Disable run-once check with free strategy - # (Disabled in June 2023 after ansible upgrade; FIXME) - - 'run-once[task]' -exclude_paths: - # Generated files - - tests/files/custom_cni/cilium.yaml - - venv diff --git a/.ansible-lint-ignore b/.ansible-lint-ignore deleted file mode 100644 index 730b579e..00000000 --- a/.ansible-lint-ignore +++ /dev/null @@ -1,8 +0,0 @@ -# This file contains ignores rule violations for ansible-lint -inventory/sample/group_vars/k8s_cluster/k8s-cluster.yml jinja[spacing] -roles/kubernetes/control-plane/defaults/main/kube-proxy.yml jinja[spacing] -roles/kubernetes/control-plane/defaults/main/main.yml jinja[spacing] -roles/kubernetes/kubeadm/defaults/main.yml jinja[spacing] -roles/kubernetes/node/defaults/main.yml jinja[spacing] -roles/kubernetes/preinstall/defaults/main.yml jinja[spacing] -roles/kubespray-defaults/defaults/main/main.yml jinja[spacing] diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 6da030f9..00000000 --- a/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -root = true - -[*.{yaml,yml,yml.j2,yaml.j2}] -indent_style = space -indent_size = 2 -trim_trailing_whitespace = true -insert_final_newline = true -charset = utf-8 - -[{Dockerfile}] -indent_style = space -indent_size = 2 -trim_trailing_whitespace = true -insert_final_newline = true -charset = utf-8 diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml deleted file mode 100644 index 0a2ceda9..00000000 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ /dev/null @@ -1,117 +0,0 @@ ---- -name: Bug Report -description: Report a bug encountered while using Kubespray -labels: kind/bug -body: - - type: markdown - attributes: - value: | - Please, be ready for followup questions, and please respond in a timely - manner. If we can't reproduce a bug or think a feature already exists, we - might close your issue. If we're wrong, PLEASE feel free to reopen it and - explain why. - - type: textarea - id: problem - attributes: - label: What happened? - description: | - Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. - validations: - required: true - - type: textarea - id: expected - attributes: - label: What did you expect to happen? - validations: - required: true - - - type: textarea - id: repro - attributes: - label: How can we reproduce it (as minimally and precisely as possible)? - validations: - required: true - - - type: markdown - attributes: - value: '### Environment' - - - type: textarea - id: os - attributes: - label: OS - placeholder: 'printf "$(uname -srm)\n$(cat /etc/os-release)\n"' - validations: - required: true - - - type: textarea - id: ansible_version - attributes: - label: Version of Ansible - placeholder: 'ansible --version' - validations: - required: true - - - type: input - id: python_version - attributes: - label: Version of Python - placeholder: 'python --version' - validations: - required: true - - - type: input - id: kubespray_version - attributes: - label: Version of Kubespray (commit) - placeholder: 'git rev-parse --short HEAD' - validations: - required: true - - - type: dropdown - id: network_plugin - attributes: - label: Network plugin used - options: - - calico - - cilium - - cni - - custom_cni - - flannel - - kube-ovn - - kube-router - - macvlan - - meta - - multus - - ovn4nfv - - weave - validations: - required: true - - - type: textarea - id: inventory - attributes: - label: Full inventory with variables - placeholder: 'ansible -i inventory/sample/inventory.ini all -m debug -a "var=hostvars[inventory_hostname]"' - - - type: input - id: ansible_command - attributes: - label: Command used to invoke ansible - - - type: textarea - id: ansible_output - attributes: - label: Output of ansible run - description: We recommend using snippets services like https://gist.github.com/ etc. - - - type: textarea - id: anything_else - attributes: - label: Anything else we need to know - description: | - By running scripts/collect-info.yaml you can get a lot of useful informations. - Script can be started by: - ansible-playbook -i -u -e ansible_ssh_user= -b --become-user=root -e dir=`pwd` scripts/collect-info.yaml - (If you using CoreOS remember to add '-e ansible_python_interpreter=/opt/bin/python'). - After running this command you can find logs in `pwd`/logs.tar.gz. You can even upload somewhere entire file and paste link here diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index aa9c1813..00000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -contact_links: - - name: Support Request - url: https://kubernetes.slack.com/channels/kubespray - about: Support request or question relating to Kubernetes diff --git a/.github/ISSUE_TEMPLATE/enhancement.yaml b/.github/ISSUE_TEMPLATE/enhancement.yaml deleted file mode 100644 index c0232069..00000000 --- a/.github/ISSUE_TEMPLATE/enhancement.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Enhancement Request -description: Suggest an enhancement to the Kubespray project -labels: kind/feature -body: - - type: markdown - attributes: - value: Please only use this template for submitting enhancement requests - - type: textarea - id: what - attributes: - label: What would you like to be added - validations: - required: true - - type: textarea - id: why - attributes: - label: Why is this needed - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/failing-test.yaml b/.github/ISSUE_TEMPLATE/failing-test.yaml deleted file mode 100644 index 94eb1bb7..00000000 --- a/.github/ISSUE_TEMPLATE/failing-test.yaml +++ /dev/null @@ -1,41 +0,0 @@ ---- -name: Failing Test -description: Report test failures in Kubespray CI jobs -labels: kind/failing-test -body: - - type: markdown - attributes: - value: Please only use this template for submitting reports about failing tests in Kubespray CI jobs - - type: textarea - id: failing_jobs - attributes: - label: Which jobs are failing ? - validations: - required: true - - - type: textarea - id: failing_tests - attributes: - label: Which tests are failing ? - validations: - required: true - - - type: input - id: since_when - attributes: - label: Since when has it been failing ? - validations: - required: true - - - type: textarea - id: failure_reason - attributes: - label: Reason for failure - description: If you don't know and have no guess, just put "Unknown" - validations: - required: true - - - type: textarea - id: anything_else - attributes: - label: Anything else we need to know diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 2a4d3c86..00000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,44 +0,0 @@ - - -**What type of PR is this?** -> Uncomment only one ` /kind <>` line, hit enter to put that in a new line, and remove leading whitespaces from that line: -> -> /kind api-change -> /kind bug -> /kind cleanup -> /kind design -> /kind documentation -> /kind failing-test -> /kind feature -> /kind flake - -**What this PR does / why we need it**: - -**Which issue(s) this PR fixes**: - -Fixes # - -**Special notes for your reviewer**: - -**Does this PR introduce a user-facing change?**: - -```release-note - -``` diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ff10721c..00000000 --- a/.gitignore +++ /dev/null @@ -1,121 +0,0 @@ -.vagrant -*.retry -**/vagrant_ansible_inventory -*.iml -temp -contrib/offline/offline-files -contrib/offline/offline-files.tar.gz -.idea -.vscode -.tox -.cache -*.bak -*.tfstate -*.tfstate*backup -*.lock.hcl -.terraform/ -contrib/terraform/aws/credentials.tfvars -.terraform.lock.hcl -/ssh-bastion.conf -**/*.sw[pon] -*~ -vagrant/ -plugins/mitogen - -# Ansible inventory -inventory/* -inventory/local -inventory/sample -inventory/*/artifacts/ -!inventory/exem-cloud - -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# Distribution / packaging -.Python -env/ -build/ -credentials/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*,cover -.hypothesis/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# IPython Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# dotenv -.env - -# virtualenv -venv/ -ENV/ - -# molecule -roles/**/molecule/**/__pycache__/ - -# macOS -.DS_Store - -# Temp location used by our scripts -scripts/tmp/ -tmp.md - -# Ansible collection files -kubernetes_sigs-kubespray*tar.gz -ansible_collections diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index e5d17bc9..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,84 +0,0 @@ ---- -stages: - - build - - unit-tests - - deploy-part1 - - moderator - - deploy-part2 - - deploy-part3 - - deploy-special - -variables: - KUBESPRAY_VERSION: v2.23.2 - FAILFASTCI_NAMESPACE: 'kargo-ci' - GITLAB_REPOSITORY: 'kargo-ci/kubernetes-sigs-kubespray' - ANSIBLE_FORCE_COLOR: "true" - MAGIC: "ci check this" - TEST_ID: "$CI_PIPELINE_ID-$CI_JOB_ID" - CI_TEST_VARS: "./tests/files/${CI_JOB_NAME}.yml" - CI_TEST_REGISTRY_MIRROR: "./tests/common/_docker_hub_registry_mirror.yml" - CI_TEST_SETTING: "./tests/common/_kubespray_test_settings.yml" - GS_ACCESS_KEY_ID: $GS_KEY - GS_SECRET_ACCESS_KEY: $GS_SECRET - CONTAINER_ENGINE: docker - SSH_USER: root - GCE_PREEMPTIBLE: "false" - ANSIBLE_KEEP_REMOTE_FILES: "1" - ANSIBLE_CONFIG: ./tests/ansible.cfg - ANSIBLE_INVENTORY: ./inventory/sample/${CI_JOB_NAME}-${BUILD_NUMBER}.ini - IDEMPOT_CHECK: "false" - RESET_CHECK: "false" - REMOVE_NODE_CHECK: "false" - UPGRADE_TEST: "false" - MITOGEN_ENABLE: "false" - ANSIBLE_LOG_LEVEL: "-vv" - RECOVER_CONTROL_PLANE_TEST: "false" - RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:]:kube_control_plane[1:]" - TERRAFORM_VERSION: 1.3.7 - PIPELINE_IMAGE: "$CI_REGISTRY_IMAGE/pipeline:${CI_PIPELINE_ID}-${CI_COMMIT_SHORT_SHA}" - -before_script: - - ./tests/scripts/rebase.sh - - mkdir -p /.ssh - -.job: &job - tags: - - packet - image: $PIPELINE_IMAGE - artifacts: - when: always - paths: - - cluster-dump/ - -.testcases: &testcases - <<: *job - retry: 1 - interruptible: true - before_script: - - update-alternatives --install /usr/bin/python python /usr/bin/python3 1 - - ./tests/scripts/rebase.sh - - ./tests/scripts/testcases_prepare.sh - script: - - ./tests/scripts/testcases_run.sh - after_script: - - chronic ./tests/scripts/testcases_cleanup.sh - -# For failfast, at least 1 job must be defined in .gitlab-ci.yml -# Premoderated with manual actions -ci-authorized: - extends: .job - stage: moderator - script: - - /bin/sh scripts/premoderator.sh - except: ['triggers', 'master'] - # Disable ci moderator - only: [] - -include: - - .gitlab-ci/build.yml - - .gitlab-ci/lint.yml - - .gitlab-ci/shellcheck.yml - - .gitlab-ci/terraform.yml - - .gitlab-ci/packet.yml - - .gitlab-ci/vagrant.yml - - .gitlab-ci/molecule.yml diff --git a/.gitlab-ci/build.yml b/.gitlab-ci/build.yml deleted file mode 100644 index 0f1824b5..00000000 --- a/.gitlab-ci/build.yml +++ /dev/null @@ -1,40 +0,0 @@ ---- -.build: - stage: build - image: - name: moby/buildkit:rootless - entrypoint: [""] - variables: - BUILDKITD_FLAGS: --oci-worker-no-process-sandbox - before_script: - - mkdir ~/.docker - - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > ~/.docker/config.json - -pipeline image: - extends: .build - script: - - | - buildctl-daemonless.sh build \ - --frontend=dockerfile.v0 \ - --local context=. \ - --local dockerfile=. \ - --opt filename=./pipeline.Dockerfile \ - --output type=image,name=$PIPELINE_IMAGE,push=true \ - --import-cache type=registry,ref=$CI_REGISTRY_IMAGE/pipeline:cache - rules: - - if: '$CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH' - -pipeline image and build cache: - extends: .build - script: - - | - buildctl-daemonless.sh build \ - --frontend=dockerfile.v0 \ - --local context=. \ - --local dockerfile=. \ - --opt filename=./pipeline.Dockerfile \ - --output type=image,name=$PIPELINE_IMAGE,push=true \ - --import-cache type=registry,ref=$CI_REGISTRY_IMAGE/pipeline:cache \ - --export-cache type=registry,ref=$CI_REGISTRY_IMAGE/pipeline:cache,mode=max - rules: - - if: '$CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH' diff --git a/.gitlab-ci/lint.yml b/.gitlab-ci/lint.yml deleted file mode 100644 index 5e4b81ab..00000000 --- a/.gitlab-ci/lint.yml +++ /dev/null @@ -1,118 +0,0 @@ ---- -yamllint: - extends: .job - stage: unit-tests - tags: [light] - variables: - LANG: C.UTF-8 - script: - - yamllint --strict . - except: ['triggers', 'master'] - -vagrant-validate: - extends: .job - stage: unit-tests - tags: [light] - variables: - VAGRANT_VERSION: 2.3.7 - script: - - ./tests/scripts/vagrant-validate.sh - except: ['triggers', 'master'] - -ansible-lint: - extends: .job - stage: unit-tests - tags: [light] - script: - - ansible-lint -v - except: ['triggers', 'master'] - -jinja-syntax-check: - extends: .job - stage: unit-tests - tags: [light] - script: - - "find -name '*.j2' -exec tests/scripts/check-templates.py {} +" - except: ['triggers', 'master'] - -syntax-check: - extends: .job - stage: unit-tests - tags: [light] - variables: - ANSIBLE_INVENTORY: inventory/local-tests.cfg - ANSIBLE_REMOTE_USER: root - ANSIBLE_BECOME: "true" - ANSIBLE_BECOME_USER: root - ANSIBLE_VERBOSITY: "3" - script: - - ansible-playbook --syntax-check cluster.yml - - ansible-playbook --syntax-check playbooks/cluster.yml - - ansible-playbook --syntax-check upgrade-cluster.yml - - ansible-playbook --syntax-check playbooks/upgrade_cluster.yml - - ansible-playbook --syntax-check reset.yml - - ansible-playbook --syntax-check playbooks/reset.yml - - ansible-playbook --syntax-check extra_playbooks/upgrade-only-k8s.yml - except: ['triggers', 'master'] - -collection-build-install-sanity-check: - extends: .job - stage: unit-tests - tags: [light] - variables: - ANSIBLE_COLLECTIONS_PATH: "./ansible_collections" - script: - - ansible-galaxy collection build - - ansible-galaxy collection install kubernetes_sigs-kubespray-$(grep "^version:" galaxy.yml | awk '{print $2}').tar.gz - - ansible-galaxy collection list $(egrep -i '(name:\s+|namespace:\s+)' galaxy.yml | awk '{print $2}' | tr '\n' '.' | sed 's|\.$||g') | grep "^kubernetes_sigs.kubespray" - - test -f ansible_collections/kubernetes_sigs/kubespray/playbooks/cluster.yml - - test -f ansible_collections/kubernetes_sigs/kubespray/playbooks/reset.yml - except: ['triggers', 'master'] - -tox-inventory-builder: - stage: unit-tests - tags: [light] - extends: .job - before_script: - - ./tests/scripts/rebase.sh - script: - - pip3 install tox - - cd contrib/inventory_builder && tox - except: ['triggers', 'master'] - -markdownlint: - stage: unit-tests - tags: [light] - image: node - before_script: - - npm install -g markdownlint-cli@0.22.0 - script: - - markdownlint $(find . -name '*.md' | grep -vF './.git') --ignore docs/_sidebar.md --ignore contrib/dind/README.md - -check-readme-versions: - stage: unit-tests - tags: [light] - image: python:3 - script: - - tests/scripts/check_readme_versions.sh - -check-galaxy-version: - stage: unit-tests - tags: [light] - image: python:3 - script: - - tests/scripts/check_galaxy_version.sh - -check-typo: - stage: unit-tests - tags: [light] - image: python:3 - script: - - tests/scripts/check_typo.sh - -ci-matrix: - stage: unit-tests - tags: [light] - image: python:3 - script: - - tests/scripts/md-table/test.sh diff --git a/.gitlab-ci/molecule.yml b/.gitlab-ci/molecule.yml deleted file mode 100644 index 3961be11..00000000 --- a/.gitlab-ci/molecule.yml +++ /dev/null @@ -1,83 +0,0 @@ ---- - -.molecule: - tags: [c3.small.x86] - only: [/^pr-.*$/] - except: ['triggers'] - image: $PIPELINE_IMAGE - services: [] - stage: deploy-part1 - before_script: - - tests/scripts/rebase.sh - - ./tests/scripts/vagrant_clean.sh - script: - - ./tests/scripts/molecule_run.sh - after_script: - - chronic ./tests/scripts/molecule_logs.sh - artifacts: - when: always - paths: - - molecule_logs/ - -# CI template for periodic CI jobs -# Enabled when PERIODIC_CI_ENABLED var is set -.molecule_periodic: - only: - variables: - - $PERIODIC_CI_ENABLED - allow_failure: true - extends: .molecule - -molecule_full: - extends: .molecule_periodic - -molecule_no_container_engines: - extends: .molecule - script: - - ./tests/scripts/molecule_run.sh -e container-engine - when: on_success - -molecule_docker: - extends: .molecule - script: - - ./tests/scripts/molecule_run.sh -i container-engine/cri-dockerd - when: on_success - -molecule_containerd: - extends: .molecule - script: - - ./tests/scripts/molecule_run.sh -i container-engine/containerd - when: on_success - -molecule_cri-o: - extends: .molecule - stage: deploy-part2 - script: - - ./tests/scripts/molecule_run.sh -i container-engine/cri-o - allow_failure: true - when: on_success - -# Stage 3 container engines don't get as much attention so allow them to fail -molecule_kata: - extends: .molecule - stage: deploy-part3 - allow_failure: true - script: - - ./tests/scripts/molecule_run.sh -i container-engine/kata-containers - when: on_success - -molecule_gvisor: - extends: .molecule - stage: deploy-part3 - allow_failure: true - script: - - ./tests/scripts/molecule_run.sh -i container-engine/gvisor - when: on_success - -molecule_youki: - extends: .molecule - stage: deploy-part3 - allow_failure: true - script: - - ./tests/scripts/molecule_run.sh -i container-engine/youki - when: on_success diff --git a/.gitlab-ci/packet.yml b/.gitlab-ci/packet.yml deleted file mode 100644 index de61a1f6..00000000 --- a/.gitlab-ci/packet.yml +++ /dev/null @@ -1,337 +0,0 @@ ---- -.packet: - extends: .testcases - variables: - ANSIBLE_TIMEOUT: "120" - CI_PLATFORM: packet - SSH_USER: kubespray - tags: - - packet - except: [triggers] - -# CI template for PRs -.packet_pr: - only: [/^pr-.*$/] - extends: .packet - -# CI template for periodic CI jobs -# Enabled when PERIODIC_CI_ENABLED var is set -.packet_periodic: - only: - variables: - - $PERIODIC_CI_ENABLED - allow_failure: true - extends: .packet - -packet_cleanup_old: - stage: deploy-part1 - extends: .packet_periodic - script: - - cd tests - - make cleanup-packet - after_script: [] - -# The ubuntu20-calico-all-in-one jobs are meant as early stages to prevent running the full CI if something is horribly broken -packet_ubuntu20-calico-all-in-one: - stage: deploy-part1 - extends: .packet_pr - when: on_success - variables: - RESET_CHECK: "true" - -# ### PR JOBS PART2 - -packet_ubuntu20-all-in-one-docker: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_ubuntu20-calico-all-in-one-hardening: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_ubuntu22-all-in-one-docker: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_ubuntu22-calico-all-in-one: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_ubuntu22-calico-etcd-datastore: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_centos7-flannel-addons-ha: - extends: .packet_pr - stage: deploy-part2 - when: on_success - -packet_almalinux8-crio: - extends: .packet_pr - stage: deploy-part2 - when: on_success - allow_failure: true - -packet_ubuntu20-crio: - extends: .packet_pr - stage: deploy-part2 - when: manual - -packet_fedora37-crio: - extends: .packet_pr - stage: deploy-part2 - when: manual - -packet_ubuntu20-flannel-ha: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_debian10-cilium-svc-proxy: - stage: deploy-part2 - extends: .packet_periodic - when: on_success - -packet_debian10-calico: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_debian10-docker: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_debian11-calico: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_debian11-docker: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_debian12-calico: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_debian12-docker: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_debian12-cilium: - stage: deploy-part2 - extends: .packet_periodic - when: on_success - -packet_centos7-calico-ha-once-localhost: - stage: deploy-part2 - extends: .packet_pr - when: on_success - variables: - # This will instruct Docker not to start over TLS. - DOCKER_TLS_CERTDIR: "" - services: - - docker:19.03.9-dind - -packet_almalinux8-kube-ovn: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_almalinux8-calico: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_rockylinux8-calico: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_rockylinux9-calico: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_rockylinux9-cilium: - stage: deploy-part2 - extends: .packet_pr - when: on_success - variables: - RESET_CHECK: "true" - -packet_almalinux8-docker: - stage: deploy-part2 - extends: .packet_pr - when: on_success - -packet_fedora38-docker-weave: - stage: deploy-part2 - extends: .packet_pr - when: on_success - allow_failure: true - -packet_opensuse-docker-cilium: - stage: deploy-part2 - extends: .packet_pr - when: manual - -# ### MANUAL JOBS - -packet_ubuntu20-docker-weave-sep: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_ubuntu20-cilium-sep: - stage: deploy-special - extends: .packet_pr - when: manual - -packet_ubuntu20-flannel-ha-once: - stage: deploy-part2 - extends: .packet_pr - when: manual - -# Calico HA eBPF -packet_almalinux8-calico-ha-ebpf: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_debian10-macvlan: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_centos7-calico-ha: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_centos7-multus-calico: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_fedora38-docker-calico: - stage: deploy-part2 - extends: .packet_periodic - when: on_success - variables: - RESET_CHECK: "true" - -packet_fedora37-calico-selinux: - stage: deploy-part2 - extends: .packet_periodic - when: on_success - -packet_fedora37-calico-swap-selinux: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_amazon-linux-2-all-in-one: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_almalinux8-calico-nodelocaldns-secondary: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_fedora38-kube-ovn: - stage: deploy-part2 - extends: .packet_periodic - when: on_success - -packet_debian11-custom-cni: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_debian11-kubelet-csr-approver: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_debian12-custom-cni-helm: - stage: deploy-part2 - extends: .packet_pr - when: manual - -# ### PR JOBS PART3 -# Long jobs (45min+) - -packet_centos7-weave-upgrade-ha: - stage: deploy-part3 - extends: .packet_periodic - when: on_success - variables: - UPGRADE_TEST: basic - -packet_ubuntu20-calico-etcd-kubeadm-upgrade-ha: - stage: deploy-part3 - extends: .packet_periodic - when: on_success - variables: - UPGRADE_TEST: basic - -# Calico HA Wireguard -packet_ubuntu20-calico-ha-wireguard: - stage: deploy-part2 - extends: .packet_pr - when: manual - -packet_debian11-calico-upgrade: - stage: deploy-part3 - extends: .packet_pr - when: on_success - variables: - UPGRADE_TEST: graceful - -packet_almalinux8-calico-remove-node: - stage: deploy-part3 - extends: .packet_pr - when: on_success - variables: - REMOVE_NODE_CHECK: "true" - REMOVE_NODE_NAME: "instance-3" - -packet_ubuntu20-calico-etcd-kubeadm: - stage: deploy-part3 - extends: .packet_pr - when: on_success - -packet_debian11-calico-upgrade-once: - stage: deploy-part3 - extends: .packet_periodic - when: on_success - variables: - UPGRADE_TEST: graceful - -packet_ubuntu20-calico-ha-recover: - stage: deploy-part3 - extends: .packet_periodic - when: on_success - variables: - RECOVER_CONTROL_PLANE_TEST: "true" - RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:]:kube_control_plane[1:]" - -packet_ubuntu20-calico-ha-recover-noquorum: - stage: deploy-part3 - extends: .packet_periodic - when: on_success - variables: - RECOVER_CONTROL_PLANE_TEST: "true" - RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[1:]:kube_control_plane[1:]" diff --git a/.gitlab-ci/shellcheck.yml b/.gitlab-ci/shellcheck.yml deleted file mode 100644 index 307e121c..00000000 --- a/.gitlab-ci/shellcheck.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -shellcheck: - extends: .job - stage: unit-tests - tags: [light] - variables: - SHELLCHECK_VERSION: v0.7.1 - before_script: - - ./tests/scripts/rebase.sh - - curl --silent --location "https://github.com/koalaman/shellcheck/releases/download/"${SHELLCHECK_VERSION}"/shellcheck-"${SHELLCHECK_VERSION}".linux.x86_64.tar.xz" | tar -xJv - - cp shellcheck-"${SHELLCHECK_VERSION}"/shellcheck /usr/bin/ - - shellcheck --version - script: - # Run shellcheck for all *.sh - - find . -name '*.sh' -not -path './.git/*' | xargs shellcheck --severity error - except: ['triggers', 'master'] diff --git a/.gitlab-ci/terraform.yml b/.gitlab-ci/terraform.yml deleted file mode 100644 index 32991776..00000000 --- a/.gitlab-ci/terraform.yml +++ /dev/null @@ -1,233 +0,0 @@ ---- -# Tests for contrib/terraform/ -.terraform_install: - extends: .job - before_script: - - update-alternatives --install /usr/bin/python python /usr/bin/python3 1 - - ./tests/scripts/rebase.sh - - ./tests/scripts/testcases_prepare.sh - - ./tests/scripts/terraform_install.sh - # Set Ansible config - - cp ansible.cfg ~/.ansible.cfg - # Prepare inventory - - cp contrib/terraform/$PROVIDER/sample-inventory/cluster.tfvars . - - ln -s contrib/terraform/$PROVIDER/hosts - - terraform -chdir="contrib/terraform/$PROVIDER" init - # Copy SSH keypair - - mkdir -p ~/.ssh - - echo "$PACKET_PRIVATE_KEY" | base64 -d > ~/.ssh/id_rsa - - chmod 400 ~/.ssh/id_rsa - - echo "$PACKET_PUBLIC_KEY" | base64 -d > ~/.ssh/id_rsa.pub - - mkdir -p contrib/terraform/$PROVIDER/group_vars - # Random subnet to avoid routing conflicts - - export TF_VAR_subnet_cidr="10.$(( $RANDOM % 256 )).$(( $RANDOM % 256 )).0/24" - -.terraform_validate: - extends: .terraform_install - stage: unit-tests - tags: [light] - only: ['master', /^pr-.*$/] - script: - - terraform -chdir="contrib/terraform/$PROVIDER" validate - - terraform -chdir="contrib/terraform/$PROVIDER" fmt -check -diff - -.terraform_apply: - extends: .terraform_install - tags: [light] - stage: deploy-part3 - when: manual - only: [/^pr-.*$/] - artifacts: - when: always - paths: - - cluster-dump/ - variables: - ANSIBLE_INVENTORY_UNPARSED_FAILED: "true" - ANSIBLE_INVENTORY: hosts - CI_PLATFORM: tf - TF_VAR_ssh_user: $SSH_USER - TF_VAR_cluster_name: $CI_JOB_ID - script: - - tests/scripts/testcases_run.sh - after_script: - # Cleanup regardless of exit code - - chronic ./tests/scripts/testcases_cleanup.sh - -tf-validate-openstack: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: openstack - CLUSTER: $CI_COMMIT_REF_NAME - -tf-validate-equinix: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: equinix - CLUSTER: $CI_COMMIT_REF_NAME - -tf-validate-aws: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: aws - CLUSTER: $CI_COMMIT_REF_NAME - -tf-validate-exoscale: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: exoscale - -tf-validate-hetzner: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: hetzner - -tf-validate-vsphere: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: vsphere - CLUSTER: $CI_COMMIT_REF_NAME - -tf-validate-upcloud: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: upcloud - CLUSTER: $CI_COMMIT_REF_NAME - -tf-validate-nifcloud: - extends: .terraform_validate - variables: - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: nifcloud - -# tf-packet-ubuntu20-default: -# extends: .terraform_apply -# variables: -# TF_VERSION: $TERRAFORM_VERSION -# PROVIDER: packet -# CLUSTER: $CI_COMMIT_REF_NAME -# TF_VAR_number_of_k8s_masters: "1" -# TF_VAR_number_of_k8s_nodes: "1" -# TF_VAR_plan_k8s_masters: t1.small.x86 -# TF_VAR_plan_k8s_nodes: t1.small.x86 -# TF_VAR_metro: am -# TF_VAR_public_key_path: "" -# TF_VAR_operating_system: ubuntu_20_04 - -.ovh_variables: &ovh_variables - OS_AUTH_URL: https://auth.cloud.ovh.net/v3 - OS_PROJECT_ID: 8d3cd5d737d74227ace462dee0b903fe - OS_PROJECT_NAME: "9361447987648822" - OS_USER_DOMAIN_NAME: Default - OS_PROJECT_DOMAIN_ID: default - OS_USERNAME: 8XuhBMfkKVrk - OS_REGION_NAME: UK1 - OS_INTERFACE: public - OS_IDENTITY_API_VERSION: "3" - -# Elastx is generously donating resources for Kubespray on Openstack CI -# Contacts: @gix @bl0m1 -.elastx_variables: &elastx_variables - OS_AUTH_URL: https://ops.elastx.cloud:5000 - OS_PROJECT_ID: 564c6b461c6b44b1bb19cdb9c2d928e4 - OS_PROJECT_NAME: kubespray_ci - OS_USER_DOMAIN_NAME: Default - OS_PROJECT_DOMAIN_ID: default - OS_USERNAME: kubespray@root314.com - OS_REGION_NAME: se-sto - OS_INTERFACE: public - OS_IDENTITY_API_VERSION: "3" - TF_VAR_router_id: "ab95917c-41fb-4881-b507-3a6dfe9403df" - -tf-elastx_cleanup: - stage: unit-tests - tags: [light] - image: python - variables: - <<: *elastx_variables - before_script: - - pip install -r scripts/openstack-cleanup/requirements.txt - script: - - ./scripts/openstack-cleanup/main.py - -tf-elastx_ubuntu20-calico: - extends: .terraform_apply - stage: deploy-part3 - when: on_success - allow_failure: true - variables: - <<: *elastx_variables - TF_VERSION: $TERRAFORM_VERSION - PROVIDER: openstack - CLUSTER: $CI_COMMIT_REF_NAME - ANSIBLE_TIMEOUT: "60" - SSH_USER: ubuntu - TF_VAR_number_of_k8s_masters: "1" - TF_VAR_number_of_k8s_masters_no_floating_ip: "0" - TF_VAR_number_of_k8s_masters_no_floating_ip_no_etcd: "0" - TF_VAR_number_of_etcd: "0" - TF_VAR_number_of_k8s_nodes: "1" - TF_VAR_number_of_k8s_nodes_no_floating_ip: "0" - TF_VAR_number_of_gfs_nodes_no_floating_ip: "0" - TF_VAR_number_of_bastions: "0" - TF_VAR_number_of_k8s_masters_no_etcd: "0" - TF_VAR_floatingip_pool: "elx-public1" - TF_VAR_dns_nameservers: '["1.1.1.1", "8.8.8.8", "8.8.4.4"]' - TF_VAR_use_access_ip: "0" - TF_VAR_external_net: "600b8501-78cb-4155-9c9f-23dfcba88828" - TF_VAR_network_name: "ci-$CI_JOB_ID" - TF_VAR_az_list: '["sto1"]' - TF_VAR_az_list_node: '["sto1"]' - TF_VAR_flavor_k8s_master: 3f73fc93-ec61-4808-88df-2580d94c1a9b # v1-standard-2 - TF_VAR_flavor_k8s_node: 3f73fc93-ec61-4808-88df-2580d94c1a9b # v1-standard-2 - TF_VAR_image: ubuntu-20.04-server-latest - TF_VAR_k8s_allowed_remote_ips: '["0.0.0.0/0"]' - -# OVH voucher expired, commenting job until things are sorted out - -# tf-ovh_cleanup: -# stage: unit-tests -# tags: [light] -# image: python -# environment: ovh -# variables: -# <<: *ovh_variables -# before_script: -# - pip install -r scripts/openstack-cleanup/requirements.txt -# script: -# - ./scripts/openstack-cleanup/main.py - -# tf-ovh_ubuntu20-calico: -# extends: .terraform_apply -# when: on_success -# environment: ovh -# variables: -# <<: *ovh_variables -# TF_VERSION: $TERRAFORM_VERSION -# PROVIDER: openstack -# CLUSTER: $CI_COMMIT_REF_NAME -# ANSIBLE_TIMEOUT: "60" -# SSH_USER: ubuntu -# TF_VAR_number_of_k8s_masters: "0" -# TF_VAR_number_of_k8s_masters_no_floating_ip: "1" -# TF_VAR_number_of_k8s_masters_no_floating_ip_no_etcd: "0" -# TF_VAR_number_of_etcd: "0" -# TF_VAR_number_of_k8s_nodes: "0" -# TF_VAR_number_of_k8s_nodes_no_floating_ip: "1" -# TF_VAR_number_of_gfs_nodes_no_floating_ip: "0" -# TF_VAR_number_of_bastions: "0" -# TF_VAR_number_of_k8s_masters_no_etcd: "0" -# TF_VAR_use_neutron: "0" -# TF_VAR_floatingip_pool: "Ext-Net" -# TF_VAR_external_net: "6011fbc9-4cbf-46a4-8452-6890a340b60b" -# TF_VAR_network_name: "Ext-Net" -# TF_VAR_flavor_k8s_master: "defa64c3-bd46-43b4-858a-d93bbae0a229" # s1-8 -# TF_VAR_flavor_k8s_node: "defa64c3-bd46-43b4-858a-d93bbae0a229" # s1-8 -# TF_VAR_image: "Ubuntu 20.04" -# TF_VAR_k8s_allowed_remote_ips: '["0.0.0.0/0"]' diff --git a/.gitlab-ci/vagrant.yml b/.gitlab-ci/vagrant.yml deleted file mode 100644 index c0250681..00000000 --- a/.gitlab-ci/vagrant.yml +++ /dev/null @@ -1,63 +0,0 @@ ---- - -.vagrant: - extends: .testcases - variables: - CI_PLATFORM: "vagrant" - SSH_USER: "vagrant" - VAGRANT_DEFAULT_PROVIDER: "libvirt" - KUBESPRAY_VAGRANT_CONFIG: tests/files/${CI_JOB_NAME}.rb - tags: [c3.small.x86] - only: [/^pr-.*$/] - except: ['triggers'] - image: $PIPELINE_IMAGE - services: [] - before_script: - - ./tests/scripts/vagrant_clean.sh - script: - - ./tests/scripts/testcases_run.sh - after_script: - - chronic ./tests/scripts/testcases_cleanup.sh - allow_failure: true - -vagrant_ubuntu20-calico-dual-stack: - stage: deploy-part2 - extends: .vagrant - when: on_success - -vagrant_ubuntu20-weave-medium: - stage: deploy-part2 - extends: .vagrant - when: manual - -vagrant_ubuntu20-flannel: - stage: deploy-part2 - extends: .vagrant - when: on_success - allow_failure: false - -vagrant_ubuntu20-flannel-collection: - stage: deploy-part2 - extends: .vagrant - when: on_success - -vagrant_ubuntu20-kube-router-sep: - stage: deploy-part2 - extends: .vagrant - when: manual - -# Service proxy test fails connectivity testing -vagrant_ubuntu20-kube-router-svc-proxy: - stage: deploy-part2 - extends: .vagrant - when: manual - -vagrant_fedora37-kube-router: - stage: deploy-part2 - extends: .vagrant - when: on_success - -vagrant_centos7-kube-router: - stage: deploy-part2 - extends: .vagrant - when: manual diff --git a/.markdownlint.yaml b/.markdownlint.yaml deleted file mode 100644 index 8ece4c76..00000000 --- a/.markdownlint.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -MD013: false -MD029: false diff --git a/.nojekyll b/.nojekyll deleted file mode 100644 index e69de29b..00000000 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index c2380522..00000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,80 +0,0 @@ ---- -repos: - - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.4.0 - hooks: - - id: check-added-large-files - - id: check-case-conflict - - id: check-executables-have-shebangs - - id: check-xml - - id: check-merge-conflict - - id: detect-private-key - - id: end-of-file-fixer - - id: forbid-new-submodules - - id: requirements-txt-fixer - - id: trailing-whitespace - - - repo: https://github.com/adrienverge/yamllint.git - rev: v1.27.1 - hooks: - - id: yamllint - args: [--strict] - - - repo: https://github.com/markdownlint/markdownlint - rev: v0.11.0 - hooks: - - id: markdownlint - args: [ -r, "~MD013,~MD029" ] - exclude: "^.git" - - - repo: https://github.com/jumanjihouse/pre-commit-hooks - rev: 3.0.0 - hooks: - - id: shellcheck - args: [ --severity, "error" ] - exclude: "^.git" - files: "\\.sh$" - - - repo: local - hooks: - - id: ansible-lint - name: ansible-lint - entry: ansible-lint -v - language: python - pass_filenames: false - additional_dependencies: - - .[community] - - - id: ansible-syntax-check - name: ansible-syntax-check - entry: env ANSIBLE_INVENTORY=inventory/local-tests.cfg ANSIBLE_REMOTE_USER=root ANSIBLE_BECOME="true" ANSIBLE_BECOME_USER=root ANSIBLE_VERBOSITY="3" ansible-playbook --syntax-check - language: python - files: "^cluster.yml|^upgrade-cluster.yml|^reset.yml|^extra_playbooks/upgrade-only-k8s.yml" - - - id: tox-inventory-builder - name: tox-inventory-builder - entry: bash -c "cd contrib/inventory_builder && tox" - language: python - pass_filenames: false - - - id: check-readme-versions - name: check-readme-versions - entry: tests/scripts/check_readme_versions.sh - language: script - pass_filenames: false - - - id: ci-matrix - name: ci-matrix - entry: tests/scripts/md-table/test.sh - language: script - pass_filenames: false - - - id: jinja-syntax-check - name: jinja-syntax-check - entry: tests/scripts/check-templates.py - language: python - types: - - jinja - additional_dependencies: - - Jinja2 diff --git a/.yamllint b/.yamllint deleted file mode 100644 index 8a6245d1..00000000 --- a/.yamllint +++ /dev/null @@ -1,21 +0,0 @@ ---- -extends: default - -ignore: | - .git/ - # Generated file - tests/files/custom_cni/cilium.yaml - -rules: - braces: - min-spaces-inside: 0 - max-spaces-inside: 1 - brackets: - min-spaces-inside: 0 - max-spaces-inside: 1 - indentation: - spaces: 2 - indent-sequences: consistent - line-length: disable - new-line-at-end-of-file: disable - truthy: disable diff --git a/collection/.DS_Store b/collection/.DS_Store new file mode 100644 index 00000000..6b191f6c Binary files /dev/null and b/collection/.DS_Store differ diff --git a/collection/__pycache__/ansible_release.cpython-311.pyc b/collection/__pycache__/ansible_release.cpython-311.pyc new file mode 100644 index 00000000..816f1090 Binary files /dev/null and b/collection/__pycache__/ansible_release.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/doc_fragments/__pycache__/auth.cpython-311.pyc b/collection/awx/awx/plugins/doc_fragments/__pycache__/auth.cpython-311.pyc new file mode 100644 index 00000000..3c978dcf Binary files /dev/null and b/collection/awx/awx/plugins/doc_fragments/__pycache__/auth.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/doc_fragments/__pycache__/auth_legacy.cpython-311.pyc b/collection/awx/awx/plugins/doc_fragments/__pycache__/auth_legacy.cpython-311.pyc new file mode 100644 index 00000000..4f8556b0 Binary files /dev/null and b/collection/awx/awx/plugins/doc_fragments/__pycache__/auth_legacy.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/doc_fragments/__pycache__/auth_plugin.cpython-311.pyc b/collection/awx/awx/plugins/doc_fragments/__pycache__/auth_plugin.cpython-311.pyc new file mode 100644 index 00000000..2ad67041 Binary files /dev/null and b/collection/awx/awx/plugins/doc_fragments/__pycache__/auth_plugin.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/inventory/__pycache__/controller.cpython-311.pyc b/collection/awx/awx/plugins/inventory/__pycache__/controller.cpython-311.pyc new file mode 100644 index 00000000..195f083d Binary files /dev/null and b/collection/awx/awx/plugins/inventory/__pycache__/controller.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/lookup/__pycache__/controller_api.cpython-311.pyc b/collection/awx/awx/plugins/lookup/__pycache__/controller_api.cpython-311.pyc new file mode 100644 index 00000000..74c374ca Binary files /dev/null and b/collection/awx/awx/plugins/lookup/__pycache__/controller_api.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/lookup/__pycache__/schedule_rrule.cpython-311.pyc b/collection/awx/awx/plugins/lookup/__pycache__/schedule_rrule.cpython-311.pyc new file mode 100644 index 00000000..85a9ebd2 Binary files /dev/null and b/collection/awx/awx/plugins/lookup/__pycache__/schedule_rrule.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/module_utils/__pycache__/awxkit.cpython-311.pyc b/collection/awx/awx/plugins/module_utils/__pycache__/awxkit.cpython-311.pyc new file mode 100644 index 00000000..255a9d84 Binary files /dev/null and b/collection/awx/awx/plugins/module_utils/__pycache__/awxkit.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/module_utils/__pycache__/controller_api.cpython-311.pyc b/collection/awx/awx/plugins/module_utils/__pycache__/controller_api.cpython-311.pyc new file mode 100644 index 00000000..892a840c Binary files /dev/null and b/collection/awx/awx/plugins/module_utils/__pycache__/controller_api.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/module_utils/__pycache__/tower_legacy.cpython-311.pyc b/collection/awx/awx/plugins/module_utils/__pycache__/tower_legacy.cpython-311.pyc new file mode 100644 index 00000000..55715f24 Binary files /dev/null and b/collection/awx/awx/plugins/module_utils/__pycache__/tower_legacy.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..863258e1 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command.cpython-311.pyc new file mode 100644 index 00000000..91750221 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command_cancel.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command_cancel.cpython-311.pyc new file mode 100644 index 00000000..c185a313 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command_cancel.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command_wait.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command_wait.cpython-311.pyc new file mode 100644 index 00000000..23af47e2 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/ad_hoc_command_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/application.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/application.cpython-311.pyc new file mode 100644 index 00000000..8a209cbb Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/application.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/controller_meta.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/controller_meta.cpython-311.pyc new file mode 100644 index 00000000..4ec4415e Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/controller_meta.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/credential.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/credential.cpython-311.pyc new file mode 100644 index 00000000..325af75e Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/credential.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/credential_input_source.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/credential_input_source.cpython-311.pyc new file mode 100644 index 00000000..fa033a89 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/credential_input_source.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/credential_type.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/credential_type.cpython-311.pyc new file mode 100644 index 00000000..5c038b4b Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/credential_type.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/execution_environment.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/execution_environment.cpython-311.pyc new file mode 100644 index 00000000..dd285136 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/execution_environment.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/export.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/export.cpython-311.pyc new file mode 100644 index 00000000..552dd080 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/export.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/group.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/group.cpython-311.pyc new file mode 100644 index 00000000..331f0c5a Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/group.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/host.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/host.cpython-311.pyc new file mode 100644 index 00000000..2ada09c5 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/host.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/import.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/import.cpython-311.pyc new file mode 100644 index 00000000..97f2de62 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/import.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/instance_group.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/instance_group.cpython-311.pyc new file mode 100644 index 00000000..3117075a Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/instance_group.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/inventory.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/inventory.cpython-311.pyc new file mode 100644 index 00000000..5d6e38c1 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/inventory.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/inventory_source.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/inventory_source.cpython-311.pyc new file mode 100644 index 00000000..1a8f806a Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/inventory_source.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/inventory_source_update.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/inventory_source_update.cpython-311.pyc new file mode 100644 index 00000000..b76bf888 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/inventory_source_update.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/job_cancel.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/job_cancel.cpython-311.pyc new file mode 100644 index 00000000..e41ee7f4 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/job_cancel.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/job_launch.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/job_launch.cpython-311.pyc new file mode 100644 index 00000000..72e49cca Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/job_launch.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/job_list.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/job_list.cpython-311.pyc new file mode 100644 index 00000000..5b97f4cc Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/job_list.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/job_template.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/job_template.cpython-311.pyc new file mode 100644 index 00000000..1000f762 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/job_template.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/job_wait.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/job_wait.cpython-311.pyc new file mode 100644 index 00000000..fcd4d246 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/job_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/label.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/label.cpython-311.pyc new file mode 100644 index 00000000..ad3a08bd Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/label.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/license.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/license.cpython-311.pyc new file mode 100644 index 00000000..e1bcf287 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/license.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/notification_template.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/notification_template.cpython-311.pyc new file mode 100644 index 00000000..bc36f88b Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/notification_template.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/organization.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/organization.cpython-311.pyc new file mode 100644 index 00000000..d46267d3 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/organization.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/project.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/project.cpython-311.pyc new file mode 100644 index 00000000..6ef06cae Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/project.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/project_update.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/project_update.cpython-311.pyc new file mode 100644 index 00000000..9dd5cb7c Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/project_update.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/role.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/role.cpython-311.pyc new file mode 100644 index 00000000..f82f0640 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/role.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/schedule.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/schedule.cpython-311.pyc new file mode 100644 index 00000000..5d982b75 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/schedule.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/settings.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/settings.cpython-311.pyc new file mode 100644 index 00000000..d162b4f0 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/settings.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/team.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/team.cpython-311.pyc new file mode 100644 index 00000000..a1cfd7a6 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/team.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/token.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/token.cpython-311.pyc new file mode 100644 index 00000000..d6962188 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/token.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command.cpython-311.pyc new file mode 100644 index 00000000..d6739df4 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command_cancel.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command_cancel.cpython-311.pyc new file mode 100644 index 00000000..9008688b Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command_cancel.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command_wait.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command_wait.cpython-311.pyc new file mode 100644 index 00000000..ec2a7688 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_ad_hoc_command_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_application.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_application.cpython-311.pyc new file mode 100644 index 00000000..5ab03b70 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_application.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_controller_meta.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_controller_meta.cpython-311.pyc new file mode 100644 index 00000000..0c60902b Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_controller_meta.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_credential.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_credential.cpython-311.pyc new file mode 100644 index 00000000..420540c6 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_credential.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_credential_input_source.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_credential_input_source.cpython-311.pyc new file mode 100644 index 00000000..fc43e94e Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_credential_input_source.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_credential_type.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_credential_type.cpython-311.pyc new file mode 100644 index 00000000..57443ce7 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_credential_type.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_execution_environment.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_execution_environment.cpython-311.pyc new file mode 100644 index 00000000..b129a5f0 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_execution_environment.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_export.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_export.cpython-311.pyc new file mode 100644 index 00000000..41ebb50a Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_export.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_group.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_group.cpython-311.pyc new file mode 100644 index 00000000..47b9681c Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_group.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_host.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_host.cpython-311.pyc new file mode 100644 index 00000000..70796bae Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_host.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_import.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_import.cpython-311.pyc new file mode 100644 index 00000000..498d53de Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_import.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_instance_group.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_instance_group.cpython-311.pyc new file mode 100644 index 00000000..836b3bef Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_instance_group.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_inventory.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_inventory.cpython-311.pyc new file mode 100644 index 00000000..ce807f52 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_inventory.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_inventory_source.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_inventory_source.cpython-311.pyc new file mode 100644 index 00000000..08de3162 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_inventory_source.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_inventory_source_update.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_inventory_source_update.cpython-311.pyc new file mode 100644 index 00000000..5b9a5851 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_inventory_source_update.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_job_cancel.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_job_cancel.cpython-311.pyc new file mode 100644 index 00000000..236d9395 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_job_cancel.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_job_launch.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_job_launch.cpython-311.pyc new file mode 100644 index 00000000..e40910d8 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_job_launch.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_job_list.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_job_list.cpython-311.pyc new file mode 100644 index 00000000..1b06538c Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_job_list.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_job_template.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_job_template.cpython-311.pyc new file mode 100644 index 00000000..10ad9781 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_job_template.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_job_wait.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_job_wait.cpython-311.pyc new file mode 100644 index 00000000..82a4267f Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_job_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_label.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_label.cpython-311.pyc new file mode 100644 index 00000000..1d224e65 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_label.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_license.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_license.cpython-311.pyc new file mode 100644 index 00000000..6df3048c Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_license.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_notification_template.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_notification_template.cpython-311.pyc new file mode 100644 index 00000000..5516dd88 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_notification_template.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_organization.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_organization.cpython-311.pyc new file mode 100644 index 00000000..03f1d424 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_organization.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_project.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_project.cpython-311.pyc new file mode 100644 index 00000000..dccc36ae Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_project.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_project_update.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_project_update.cpython-311.pyc new file mode 100644 index 00000000..1f30a2fa Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_project_update.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_role.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_role.cpython-311.pyc new file mode 100644 index 00000000..2f0b467c Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_role.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_schedule.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_schedule.cpython-311.pyc new file mode 100644 index 00000000..43bd6b5d Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_schedule.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_settings.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_settings.cpython-311.pyc new file mode 100644 index 00000000..0149fa3e Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_settings.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_team.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_team.cpython-311.pyc new file mode 100644 index 00000000..4350e1d2 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_team.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_token.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_token.cpython-311.pyc new file mode 100644 index 00000000..7af5a14a Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_token.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_user.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_user.cpython-311.pyc new file mode 100644 index 00000000..490be6d3 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_user.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_approval.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_approval.cpython-311.pyc new file mode 100644 index 00000000..abf57fab Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_approval.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_job_template.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_job_template.cpython-311.pyc new file mode 100644 index 00000000..127a66ff Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_job_template.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_job_template_node.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_job_template_node.cpython-311.pyc new file mode 100644 index 00000000..58e024c8 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_job_template_node.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_launch.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_launch.cpython-311.pyc new file mode 100644 index 00000000..8b69ca0e Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_launch.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_node_wait.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_node_wait.cpython-311.pyc new file mode 100644 index 00000000..ea0b863d Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/tower_workflow_node_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/user.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/user.cpython-311.pyc new file mode 100644 index 00000000..d15fa5a2 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/user.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/workflow_approval.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/workflow_approval.cpython-311.pyc new file mode 100644 index 00000000..62985c3f Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/workflow_approval.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/workflow_job_template.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/workflow_job_template.cpython-311.pyc new file mode 100644 index 00000000..5f6e9bc1 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/workflow_job_template.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/workflow_job_template_node.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/workflow_job_template_node.cpython-311.pyc new file mode 100644 index 00000000..62676c4f Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/workflow_job_template_node.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/workflow_launch.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/workflow_launch.cpython-311.pyc new file mode 100644 index 00000000..08aba312 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/workflow_launch.cpython-311.pyc differ diff --git a/collection/awx/awx/plugins/modules/__pycache__/workflow_node_wait.cpython-311.pyc b/collection/awx/awx/plugins/modules/__pycache__/workflow_node_wait.cpython-311.pyc new file mode 100644 index 00000000..8a3b4742 Binary files /dev/null and b/collection/awx/awx/plugins/modules/__pycache__/workflow_node_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/conftest.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..4515cdc3 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_ad_hoc_wait.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_ad_hoc_wait.cpython-311.pyc new file mode 100644 index 00000000..8d68029e Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_ad_hoc_wait.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_application.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_application.cpython-311.pyc new file mode 100644 index 00000000..89315da0 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_application.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_completeness.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_completeness.cpython-311.pyc new file mode 100644 index 00000000..d2281439 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_completeness.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_credential.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_credential.cpython-311.pyc new file mode 100644 index 00000000..5080477f Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_credential.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_credential_input_source.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_credential_input_source.cpython-311.pyc new file mode 100644 index 00000000..e33d2de3 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_credential_input_source.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_credential_type.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_credential_type.cpython-311.pyc new file mode 100644 index 00000000..9ec67e92 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_credential_type.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_group.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_group.cpython-311.pyc new file mode 100644 index 00000000..26cc7df9 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_group.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_instance_group.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_instance_group.cpython-311.pyc new file mode 100644 index 00000000..d0a01bad Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_instance_group.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_inventory.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_inventory.cpython-311.pyc new file mode 100644 index 00000000..cb643039 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_inventory.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_inventory_source.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_inventory_source.cpython-311.pyc new file mode 100644 index 00000000..4dad5fdb Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_inventory_source.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_job.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_job.cpython-311.pyc new file mode 100644 index 00000000..92439df6 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_job.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_job_template.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_job_template.cpython-311.pyc new file mode 100644 index 00000000..81896a00 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_job_template.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_label.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_label.cpython-311.pyc new file mode 100644 index 00000000..d7cae88e Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_label.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_module_utils.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_module_utils.cpython-311.pyc new file mode 100644 index 00000000..4f0b3fcb Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_module_utils.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_notification_template.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_notification_template.cpython-311.pyc new file mode 100644 index 00000000..44a70d0b Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_notification_template.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_organization.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_organization.cpython-311.pyc new file mode 100644 index 00000000..6a032e90 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_organization.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_project.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_project.cpython-311.pyc new file mode 100644 index 00000000..5ef85cca Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_project.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_role.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_role.cpython-311.pyc new file mode 100644 index 00000000..5ee5f395 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_role.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_schedule.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_schedule.cpython-311.pyc new file mode 100644 index 00000000..0c0c60fe Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_schedule.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_settings.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_settings.cpython-311.pyc new file mode 100644 index 00000000..6f3b03dc Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_settings.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_team.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_team.cpython-311.pyc new file mode 100644 index 00000000..608e16a6 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_team.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_token.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_token.cpython-311.pyc new file mode 100644 index 00000000..7208503d Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_token.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_user.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_user.cpython-311.pyc new file mode 100644 index 00000000..753e2051 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_user.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_workflow_job_template.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_workflow_job_template.cpython-311.pyc new file mode 100644 index 00000000..aa119a66 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_workflow_job_template.cpython-311.pyc differ diff --git a/collection/awx/awx/test/awx/__pycache__/test_workflow_job_template_node.cpython-311.pyc b/collection/awx/awx/test/awx/__pycache__/test_workflow_job_template_node.cpython-311.pyc new file mode 100644 index 00000000..2bcaecb7 Binary files /dev/null and b/collection/awx/awx/test/awx/__pycache__/test_workflow_job_template_node.cpython-311.pyc differ diff --git a/collection/azure/azcollection/.idea/.gitignore b/collection/azure/azcollection/.idea/.gitignore new file mode 100644 index 00000000..13566b81 --- /dev/null +++ b/collection/azure/azcollection/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/collection/azure/azcollection/.idea/ansible-azure.iml b/collection/azure/azcollection/.idea/ansible-azure.iml new file mode 100644 index 00000000..8b8c3954 --- /dev/null +++ b/collection/azure/azcollection/.idea/ansible-azure.iml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/collection/azure/azcollection/.idea/inspectionProfiles/Project_Default.xml b/collection/azure/azcollection/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..da0c0dd7 --- /dev/null +++ b/collection/azure/azcollection/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/collection/azure/azcollection/.idea/inspectionProfiles/profiles_settings.xml b/collection/azure/azcollection/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/collection/azure/azcollection/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/collection/azure/azcollection/.idea/misc.xml b/collection/azure/azcollection/.idea/misc.xml new file mode 100644 index 00000000..d7a4e3ef --- /dev/null +++ b/collection/azure/azcollection/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/collection/azure/azcollection/.idea/modules.xml b/collection/azure/azcollection/.idea/modules.xml new file mode 100644 index 00000000..dd9153a1 --- /dev/null +++ b/collection/azure/azcollection/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/collection/azure/azcollection/.idea/vcs.xml b/collection/azure/azcollection/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/collection/azure/azcollection/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/collection/check_point/mgmt/plugins/action/__pycache__/cp_mgmt_access_rules.cpython-311.pyc b/collection/check_point/mgmt/plugins/action/__pycache__/cp_mgmt_access_rules.cpython-311.pyc new file mode 100644 index 00000000..1f71c2cf Binary files /dev/null and b/collection/check_point/mgmt/plugins/action/__pycache__/cp_mgmt_access_rules.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_commands.cpython-311.pyc b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_commands.cpython-311.pyc new file mode 100644 index 00000000..3b2388e7 Binary files /dev/null and b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_commands.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_facts.cpython-311.pyc new file mode 100644 index 00000000..ad092db4 Binary files /dev/null and b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_objects.cpython-311.pyc b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_objects.cpython-311.pyc new file mode 100644 index 00000000..b5fdfcb2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_objects.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_objects_action_module.cpython-311.pyc b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_objects_action_module.cpython-311.pyc new file mode 100644 index 00000000..a78aea5a Binary files /dev/null and b/collection/check_point/mgmt/plugins/doc_fragments/__pycache__/checkpoint_objects_action_module.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/httpapi/__pycache__/checkpoint.cpython-311.pyc b/collection/check_point/mgmt/plugins/httpapi/__pycache__/checkpoint.cpython-311.pyc new file mode 100644 index 00000000..099a2789 Binary files /dev/null and b/collection/check_point/mgmt/plugins/httpapi/__pycache__/checkpoint.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/module_utils/__pycache__/checkpoint.cpython-311.pyc b/collection/check_point/mgmt/plugins/module_utils/__pycache__/checkpoint.cpython-311.pyc new file mode 100644 index 00000000..c283484c Binary files /dev/null and b/collection/check_point/mgmt/plugins/module_utils/__pycache__/checkpoint.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_layer_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_layer_facts.cpython-311.pyc new file mode 100644 index 00000000..faebfc42 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_layer_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_rule.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_rule.cpython-311.pyc new file mode 100644 index 00000000..8879a1c1 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..73d6ef04 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_access_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_host.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_host.cpython-311.pyc new file mode 100644 index 00000000..55111fa2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_host.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_host_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_host_facts.cpython-311.pyc new file mode 100644 index 00000000..2d1771ee Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_host_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_object_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_object_facts.cpython-311.pyc new file mode 100644 index 00000000..63d40885 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_object_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_run_script.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_run_script.cpython-311.pyc new file mode 100644 index 00000000..5ab3de71 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_run_script.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_session.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_session.cpython-311.pyc new file mode 100644 index 00000000..f2c6d59f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_session.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_task_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_task_facts.cpython-311.pyc new file mode 100644 index 00000000..b0848585 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/checkpoint_task_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_layer.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_layer.cpython-311.pyc new file mode 100644 index 00000000..481355ec Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_layer.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_layer_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_layer_facts.cpython-311.pyc new file mode 100644 index 00000000..b8e7817e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_layer_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_role.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_role.cpython-311.pyc new file mode 100644 index 00000000..17e5fe6b Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_role.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_role_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_role_facts.cpython-311.pyc new file mode 100644 index 00000000..6e835894 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_role_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rule.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rule.cpython-311.pyc new file mode 100644 index 00000000..c2708b5f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..9b1b52f2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rules.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rules.cpython-311.pyc new file mode 100644 index 00000000..f894d69a Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_rules.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_section.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_section.cpython-311.pyc new file mode 100644 index 00000000..275e5672 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_access_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_api_key.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_api_key.cpython-311.pyc new file mode 100644 index 00000000..57f47ed2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_api_key.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_data_center_object.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_data_center_object.cpython-311.pyc new file mode 100644 index 00000000..ea93eb93 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_data_center_object.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_domain.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_domain.cpython-311.pyc new file mode 100644 index 00000000..7d3b38aa Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_domain.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_nat_rule.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_nat_rule.cpython-311.pyc new file mode 100644 index 00000000..eb024c32 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_add_nat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_address_range.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_address_range.cpython-311.pyc new file mode 100644 index 00000000..bed0a863 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_address_range.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_address_range_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_address_range_facts.cpython-311.pyc new file mode 100644 index 00000000..ef1178db Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_address_range_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_administrator.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_administrator.cpython-311.pyc new file mode 100644 index 00000000..56f7a1b8 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_administrator.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_administrator_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_administrator_facts.cpython-311.pyc new file mode 100644 index 00000000..bf7583e1 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_administrator_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site.cpython-311.pyc new file mode 100644 index 00000000..2a462806 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_category.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_category.cpython-311.pyc new file mode 100644 index 00000000..a08b3365 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_category.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_category_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_category_facts.cpython-311.pyc new file mode 100644 index 00000000..978afd14 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_category_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_facts.cpython-311.pyc new file mode 100644 index 00000000..3ce6d06f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_group.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_group.cpython-311.pyc new file mode 100644 index 00000000..54ebf4e9 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_group_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_group_facts.cpython-311.pyc new file mode 100644 index 00000000..3e3739fa Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_application_site_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_assign_global_assignment.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_assign_global_assignment.cpython-311.pyc new file mode 100644 index 00000000..3baa6359 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_assign_global_assignment.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_data_center_object_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_data_center_object_facts.cpython-311.pyc new file mode 100644 index 00000000..519c66f7 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_data_center_object_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_api_key.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_api_key.cpython-311.pyc new file mode 100644 index 00000000..eb8d64c7 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_api_key.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_data_center_object.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_data_center_object.cpython-311.pyc new file mode 100644 index 00000000..7e870256 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_data_center_object.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_domain.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_domain.cpython-311.pyc new file mode 100644 index 00000000..65283135 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_domain.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_nat_rule.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_nat_rule.cpython-311.pyc new file mode 100644 index 00000000..10baefc8 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_delete_nat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_discard.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_discard.cpython-311.pyc new file mode 100644 index 00000000..51c24d24 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_discard.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dns_domain.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dns_domain.cpython-311.pyc new file mode 100644 index 00000000..1b6eb171 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dns_domain.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dns_domain_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dns_domain_facts.cpython-311.pyc new file mode 100644 index 00000000..b1d7910f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dns_domain_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_domain_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_domain_facts.cpython-311.pyc new file mode 100644 index 00000000..e63591c2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_domain_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dynamic_object.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dynamic_object.cpython-311.pyc new file mode 100644 index 00000000..efe6a134 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dynamic_object.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dynamic_object_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dynamic_object_facts.cpython-311.pyc new file mode 100644 index 00000000..3ccf7fa4 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_dynamic_object_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_exception_group.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_exception_group.cpython-311.pyc new file mode 100644 index 00000000..0fb72381 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_exception_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_exception_group_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_exception_group_facts.cpython-311.pyc new file mode 100644 index 00000000..368199b7 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_exception_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_global_assignment.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_global_assignment.cpython-311.pyc new file mode 100644 index 00000000..5895036f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_global_assignment.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_global_assignment_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_global_assignment_facts.cpython-311.pyc new file mode 100644 index 00000000..1dc61cd5 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_global_assignment_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group.cpython-311.pyc new file mode 100644 index 00000000..55dfc4fe Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_facts.cpython-311.pyc new file mode 100644 index 00000000..b18e344c Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_with_exclusion.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_with_exclusion.cpython-311.pyc new file mode 100644 index 00000000..ed579213 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_with_exclusion.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_with_exclusion_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_with_exclusion_facts.cpython-311.pyc new file mode 100644 index 00000000..6b3d0e35 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_group_with_exclusion_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_host.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_host.cpython-311.pyc new file mode 100644 index 00000000..954269f0 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_host.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_host_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_host_facts.cpython-311.pyc new file mode 100644 index 00000000..7706c4a2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_host_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_https_section.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_https_section.cpython-311.pyc new file mode 100644 index 00000000..47ef42a5 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_https_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_identity_tag.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_identity_tag.cpython-311.pyc new file mode 100644 index 00000000..c1016162 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_identity_tag.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_identity_tag_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_identity_tag_facts.cpython-311.pyc new file mode 100644 index 00000000..8510b73e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_identity_tag_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_database.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_database.cpython-311.pyc new file mode 100644 index 00000000..63cfc033 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_database.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_policy.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_policy.cpython-311.pyc new file mode 100644 index 00000000..4d25da7e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_policy.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_software_package.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_software_package.cpython-311.pyc new file mode 100644 index 00000000..59130869 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_install_software_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_cluster.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_cluster.cpython-311.pyc new file mode 100644 index 00000000..9db97cc6 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_cluster.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_cluster_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_cluster_facts.cpython-311.pyc new file mode 100644 index 00000000..aeb72e4f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_cluster_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_gateway.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_gateway.cpython-311.pyc new file mode 100644 index 00000000..e4821217 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_gateway.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_gateway_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_gateway_facts.cpython-311.pyc new file mode 100644 index 00000000..b25aa949 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_lsm_gateway_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_mds.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_mds.cpython-311.pyc new file mode 100644 index 00000000..e18536b9 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_mds.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_mds_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_mds_facts.cpython-311.pyc new file mode 100644 index 00000000..900a4ca9 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_mds_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_multicast_address_range.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_multicast_address_range.cpython-311.pyc new file mode 100644 index 00000000..0b3624f6 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_multicast_address_range.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_multicast_address_range_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_multicast_address_range_facts.cpython-311.pyc new file mode 100644 index 00000000..93350335 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_multicast_address_range_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_nat_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_nat_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..1b826a01 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_nat_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_nat_section.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_nat_section.cpython-311.pyc new file mode 100644 index 00000000..84a9d3e4 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_nat_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_network.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_network.cpython-311.pyc new file mode 100644 index 00000000..ad11613f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_network.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_network_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_network_facts.cpython-311.pyc new file mode 100644 index 00000000..f316e20b Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_network_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_package.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_package.cpython-311.pyc new file mode 100644 index 00000000..608415fe Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_package_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_package_facts.cpython-311.pyc new file mode 100644 index 00000000..81f9f8d9 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_package_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_publish.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_publish.cpython-311.pyc new file mode 100644 index 00000000..77c96248 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_publish.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_put_file.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_put_file.cpython-311.pyc new file mode 100644 index 00000000..a6eae52f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_put_file.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_run_ips_update.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_run_ips_update.cpython-311.pyc new file mode 100644 index 00000000..64d98468 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_run_ips_update.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_run_script.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_run_script.cpython-311.pyc new file mode 100644 index 00000000..81c8f358 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_run_script.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_security_zone.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_security_zone.cpython-311.pyc new file mode 100644 index 00000000..03a941bd Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_security_zone.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_security_zone_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_security_zone_facts.cpython-311.pyc new file mode 100644 index 00000000..fc60d497 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_security_zone_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_dce_rpc.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_dce_rpc.cpython-311.pyc new file mode 100644 index 00000000..4980ade3 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_dce_rpc.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_dce_rpc_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_dce_rpc_facts.cpython-311.pyc new file mode 100644 index 00000000..468a59c7 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_dce_rpc_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_group.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_group.cpython-311.pyc new file mode 100644 index 00000000..d6e512d8 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_group_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_group_facts.cpython-311.pyc new file mode 100644 index 00000000..e9025fa2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp.cpython-311.pyc new file mode 100644 index 00000000..b5010a7a Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp6.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp6.cpython-311.pyc new file mode 100644 index 00000000..07a4c52b Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp6.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp6_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp6_facts.cpython-311.pyc new file mode 100644 index 00000000..2fa56669 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp6_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp_facts.cpython-311.pyc new file mode 100644 index 00000000..72bf7e9d Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_icmp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_other.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_other.cpython-311.pyc new file mode 100644 index 00000000..98ad548a Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_other.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_other_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_other_facts.cpython-311.pyc new file mode 100644 index 00000000..83493fc7 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_other_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_rpc.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_rpc.cpython-311.pyc new file mode 100644 index 00000000..8bc1ea4e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_rpc.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_rpc_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_rpc_facts.cpython-311.pyc new file mode 100644 index 00000000..4bd51ae2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_rpc_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_sctp.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_sctp.cpython-311.pyc new file mode 100644 index 00000000..2017d14e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_sctp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_sctp_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_sctp_facts.cpython-311.pyc new file mode 100644 index 00000000..22cb2fbc Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_sctp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_tcp.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_tcp.cpython-311.pyc new file mode 100644 index 00000000..2534aab2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_tcp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_tcp_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_tcp_facts.cpython-311.pyc new file mode 100644 index 00000000..9e80bdc9 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_tcp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_udp.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_udp.cpython-311.pyc new file mode 100644 index 00000000..d6dcdd5c Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_udp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_udp_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_udp_facts.cpython-311.pyc new file mode 100644 index 00000000..01b4da71 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_service_udp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_session_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_session_facts.cpython-311.pyc new file mode 100644 index 00000000..8c2ae7ea Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_session_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_domain.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_domain.cpython-311.pyc new file mode 100644 index 00000000..10bcdb5b Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_domain.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_nat_rule.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_nat_rule.cpython-311.pyc new file mode 100644 index 00000000..26c59236 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_nat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_session.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_session.cpython-311.pyc new file mode 100644 index 00000000..c84e9046 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_set_session.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_access_section.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_access_section.cpython-311.pyc new file mode 100644 index 00000000..3cea2c55 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_access_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_https_section.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_https_section.cpython-311.pyc new file mode 100644 index 00000000..be8a42d4 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_https_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_logs.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_logs.cpython-311.pyc new file mode 100644 index 00000000..979d9973 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_logs.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_nat_section.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_nat_section.cpython-311.pyc new file mode 100644 index 00000000..b8d063d6 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_nat_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_software_package_details.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_software_package_details.cpython-311.pyc new file mode 100644 index 00000000..e6fa368f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_software_package_details.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_task.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_task.cpython-311.pyc new file mode 100644 index 00000000..8176ec87 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_task.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_tasks.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_tasks.cpython-311.pyc new file mode 100644 index 00000000..57d24457 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_show_tasks.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_simple_gateway.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_simple_gateway.cpython-311.pyc new file mode 100644 index 00000000..94fd6eb2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_simple_gateway.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_simple_gateway_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_simple_gateway_facts.cpython-311.pyc new file mode 100644 index 00000000..d32cc7d6 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_simple_gateway_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_tag.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_tag.cpython-311.pyc new file mode 100644 index 00000000..c1fd247e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_tag.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_tag_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_tag_facts.cpython-311.pyc new file mode 100644 index 00000000..c4f6e7b3 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_tag_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_exception.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_exception.cpython-311.pyc new file mode 100644 index 00000000..c198d148 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_exception.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_exception_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_exception_facts.cpython-311.pyc new file mode 100644 index 00000000..d91cf7bd Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_exception_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_indicator.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_indicator.cpython-311.pyc new file mode 100644 index 00000000..235d606c Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_indicator.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_indicator_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_indicator_facts.cpython-311.pyc new file mode 100644 index 00000000..b330da9f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_indicator_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_layer.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_layer.cpython-311.pyc new file mode 100644 index 00000000..dbb85122 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_layer.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_layer_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_layer_facts.cpython-311.pyc new file mode 100644 index 00000000..e9d2afa4 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_layer_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_profile.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_profile.cpython-311.pyc new file mode 100644 index 00000000..004c34bd Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_profile.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_profile_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_profile_facts.cpython-311.pyc new file mode 100644 index 00000000..6c23f403 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_profile_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_protection_override.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_protection_override.cpython-311.pyc new file mode 100644 index 00000000..0987f6d4 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_protection_override.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_rule.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_rule.cpython-311.pyc new file mode 100644 index 00000000..34427eae Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..02f49b76 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_threat_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_time.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_time.cpython-311.pyc new file mode 100644 index 00000000..35fdc4a1 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_time.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_time_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_time_facts.cpython-311.pyc new file mode 100644 index 00000000..3155bf82 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_time_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_trusted_client.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_trusted_client.cpython-311.pyc new file mode 100644 index 00000000..7687e88d Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_trusted_client.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_trusted_client_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_trusted_client_facts.cpython-311.pyc new file mode 100644 index 00000000..ad915da2 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_trusted_client_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_uninstall_software_package.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_uninstall_software_package.cpython-311.pyc new file mode 100644 index 00000000..a4f35d4b Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_uninstall_software_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_verify_policy.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_verify_policy.cpython-311.pyc new file mode 100644 index 00000000..e7e4587e Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_verify_policy.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_verify_software_package.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_verify_software_package.cpython-311.pyc new file mode 100644 index 00000000..cc848642 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_verify_software_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_meshed.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_meshed.cpython-311.pyc new file mode 100644 index 00000000..3db3af04 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_meshed.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_meshed_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_meshed_facts.cpython-311.pyc new file mode 100644 index 00000000..a48b496c Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_meshed_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_star.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_star.cpython-311.pyc new file mode 100644 index 00000000..1818703c Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_star.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_star_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_star_facts.cpython-311.pyc new file mode 100644 index 00000000..fd246506 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_vpn_community_star_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_wildcard.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_wildcard.cpython-311.pyc new file mode 100644 index 00000000..eea08d28 Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_wildcard.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_wildcard_facts.cpython-311.pyc b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_wildcard_facts.cpython-311.pyc new file mode 100644 index 00000000..1e762a1f Binary files /dev/null and b/collection/check_point/mgmt/plugins/modules/__pycache__/cp_mgmt_wildcard_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_access_rule.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_access_rule.cpython-311.pyc new file mode 100644 index 00000000..0f02e4c6 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_access_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_host.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_host.cpython-311.pyc new file mode 100644 index 00000000..d6e1d298 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_host.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_session.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_session.cpython-311.pyc new file mode 100644 index 00000000..aac43e66 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_session.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_task_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_task_facts.cpython-311.pyc new file mode 100644 index 00000000..ab8e02eb Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_checkpoint_task_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_layer.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_layer.cpython-311.pyc new file mode 100644 index 00000000..38c38e38 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_layer.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_layer_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_layer_facts.cpython-311.pyc new file mode 100644 index 00000000..b1ee8189 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_layer_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_role.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_role.cpython-311.pyc new file mode 100644 index 00000000..4c66204f Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_role.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_role_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_role_facts.cpython-311.pyc new file mode 100644 index 00000000..3c28dc14 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_role_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_rule.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_rule.cpython-311.pyc new file mode 100644 index 00000000..f0637208 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..6c28d5d5 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_section.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_section.cpython-311.pyc new file mode 100644 index 00000000..472f4483 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_access_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_api_key.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_api_key.cpython-311.pyc new file mode 100644 index 00000000..54beaf45 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_api_key.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_data_center_object.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_data_center_object.cpython-311.pyc new file mode 100644 index 00000000..476a280e Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_data_center_object.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_nat_rule.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_nat_rule.cpython-311.pyc new file mode 100644 index 00000000..49e2212f Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_add_nat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_address_range.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_address_range.cpython-311.pyc new file mode 100644 index 00000000..2388d52b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_address_range.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_address_range_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_address_range_facts.cpython-311.pyc new file mode 100644 index 00000000..2ce53067 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_address_range_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_administrator.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_administrator.cpython-311.pyc new file mode 100644 index 00000000..1c13bba6 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_administrator.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_administrator_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_administrator_facts.cpython-311.pyc new file mode 100644 index 00000000..ff716d9b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_administrator_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site.cpython-311.pyc new file mode 100644 index 00000000..67af4f99 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_category.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_category.cpython-311.pyc new file mode 100644 index 00000000..8f4b8c6f Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_category.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_category_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_category_facts.cpython-311.pyc new file mode 100644 index 00000000..4036ed91 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_category_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_facts.cpython-311.pyc new file mode 100644 index 00000000..f1785c75 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_group.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_group.cpython-311.pyc new file mode 100644 index 00000000..d0cb6c7e Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_group_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_group_facts.cpython-311.pyc new file mode 100644 index 00000000..5805b10d Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_application_site_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_assign_global_assignment.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_assign_global_assignment.cpython-311.pyc new file mode 100644 index 00000000..41eb4333 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_assign_global_assignment.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_data_center_object_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_data_center_object_facts.cpython-311.pyc new file mode 100644 index 00000000..2766f1bd Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_data_center_object_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_api_key.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_api_key.cpython-311.pyc new file mode 100644 index 00000000..33816ed9 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_api_key.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_data_center_object.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_data_center_object.cpython-311.pyc new file mode 100644 index 00000000..f7e48977 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_data_center_object.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_nat_rule.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_nat_rule.cpython-311.pyc new file mode 100644 index 00000000..8a0b9c39 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_delete_nat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_discard.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_discard.cpython-311.pyc new file mode 100644 index 00000000..912ee3a4 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_discard.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dns_domain.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dns_domain.cpython-311.pyc new file mode 100644 index 00000000..aeceaccd Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dns_domain.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dns_domain_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dns_domain_facts.cpython-311.pyc new file mode 100644 index 00000000..b20a249b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dns_domain_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dynamic_object.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dynamic_object.cpython-311.pyc new file mode 100644 index 00000000..5c65ac84 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dynamic_object.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dynamic_object_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dynamic_object_facts.cpython-311.pyc new file mode 100644 index 00000000..f030e03b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_dynamic_object_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_exception_group.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_exception_group.cpython-311.pyc new file mode 100644 index 00000000..3c95d12c Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_exception_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_exception_group_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_exception_group_facts.cpython-311.pyc new file mode 100644 index 00000000..c6ec1b62 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_exception_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_global_assignment.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_global_assignment.cpython-311.pyc new file mode 100644 index 00000000..a104725b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_global_assignment.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_global_assignment_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_global_assignment_facts.cpython-311.pyc new file mode 100644 index 00000000..273ca856 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_global_assignment_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group.cpython-311.pyc new file mode 100644 index 00000000..30e463ce Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_facts.cpython-311.pyc new file mode 100644 index 00000000..5332f322 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_with_exclusion.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_with_exclusion.cpython-311.pyc new file mode 100644 index 00000000..8212ace7 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_with_exclusion.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_with_exclusion_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_with_exclusion_facts.cpython-311.pyc new file mode 100644 index 00000000..ff9d7b4e Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_group_with_exclusion_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_host.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_host.cpython-311.pyc new file mode 100644 index 00000000..b746bbd9 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_host.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_host_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_host_facts.cpython-311.pyc new file mode 100644 index 00000000..bc5debd1 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_host_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_https_section.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_https_section.cpython-311.pyc new file mode 100644 index 00000000..ec604dae Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_https_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_install_policy.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_install_policy.cpython-311.pyc new file mode 100644 index 00000000..127aaf29 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_install_policy.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_install_software_package.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_install_software_package.cpython-311.pyc new file mode 100644 index 00000000..af58dcc1 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_install_software_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_mds_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_mds_facts.cpython-311.pyc new file mode 100644 index 00000000..7e8ba897 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_mds_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_multicast_address_range.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_multicast_address_range.cpython-311.pyc new file mode 100644 index 00000000..1e4ecb12 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_multicast_address_range.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_multicast_address_range_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_multicast_address_range_facts.cpython-311.pyc new file mode 100644 index 00000000..4e5fcc9c Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_multicast_address_range_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_nat_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_nat_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..9182abad Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_nat_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_nat_section.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_nat_section.cpython-311.pyc new file mode 100644 index 00000000..46dc208e Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_nat_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_network.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_network.cpython-311.pyc new file mode 100644 index 00000000..a65153b9 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_network.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_network_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_network_facts.cpython-311.pyc new file mode 100644 index 00000000..02c5efe4 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_network_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_package.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_package.cpython-311.pyc new file mode 100644 index 00000000..333d2c15 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_package_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_package_facts.cpython-311.pyc new file mode 100644 index 00000000..299d43ad Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_package_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_publish.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_publish.cpython-311.pyc new file mode 100644 index 00000000..65509b1f Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_publish.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_put_file.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_put_file.cpython-311.pyc new file mode 100644 index 00000000..a3347d5c Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_put_file.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_run_ips_update.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_run_ips_update.cpython-311.pyc new file mode 100644 index 00000000..ee3e3de7 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_run_ips_update.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_run_script.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_run_script.cpython-311.pyc new file mode 100644 index 00000000..f9d2e642 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_run_script.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_security_zone.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_security_zone.cpython-311.pyc new file mode 100644 index 00000000..aaf8ce3f Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_security_zone.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_security_zone_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_security_zone_facts.cpython-311.pyc new file mode 100644 index 00000000..5c92ce14 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_security_zone_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_dce_rpc.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_dce_rpc.cpython-311.pyc new file mode 100644 index 00000000..272b13ff Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_dce_rpc.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_dce_rpc_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_dce_rpc_facts.cpython-311.pyc new file mode 100644 index 00000000..88cfbc34 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_dce_rpc_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_group.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_group.cpython-311.pyc new file mode 100644 index 00000000..c6345e3b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_group.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_group_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_group_facts.cpython-311.pyc new file mode 100644 index 00000000..37580d2a Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_group_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp.cpython-311.pyc new file mode 100644 index 00000000..823a8550 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp6.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp6.cpython-311.pyc new file mode 100644 index 00000000..7de297b2 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp6.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp6_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp6_facts.cpython-311.pyc new file mode 100644 index 00000000..8e0ab1b8 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp6_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp_facts.cpython-311.pyc new file mode 100644 index 00000000..b43b9beb Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_icmp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_other.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_other.cpython-311.pyc new file mode 100644 index 00000000..198de6b1 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_other.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_other_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_other_facts.cpython-311.pyc new file mode 100644 index 00000000..590c7343 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_other_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_rpc.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_rpc.cpython-311.pyc new file mode 100644 index 00000000..5d6f7755 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_rpc.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_rpc_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_rpc_facts.cpython-311.pyc new file mode 100644 index 00000000..b297ac1b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_rpc_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_sctp.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_sctp.cpython-311.pyc new file mode 100644 index 00000000..ec572598 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_sctp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_sctp_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_sctp_facts.cpython-311.pyc new file mode 100644 index 00000000..ac01b054 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_sctp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_tcp.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_tcp.cpython-311.pyc new file mode 100644 index 00000000..9472ddd4 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_tcp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_tcp_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_tcp_facts.cpython-311.pyc new file mode 100644 index 00000000..aee425dd Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_tcp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_udp.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_udp.cpython-311.pyc new file mode 100644 index 00000000..69b46139 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_udp.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_udp_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_udp_facts.cpython-311.pyc new file mode 100644 index 00000000..b6a8c5ee Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_service_udp_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_session_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_session_facts.cpython-311.pyc new file mode 100644 index 00000000..a5fe485c Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_session_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_set_nat_rule.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_set_nat_rule.cpython-311.pyc new file mode 100644 index 00000000..60d095f1 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_set_nat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_set_session.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_set_session.cpython-311.pyc new file mode 100644 index 00000000..0bf8af98 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_set_session.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_access_section.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_access_section.cpython-311.pyc new file mode 100644 index 00000000..691655c1 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_access_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_https_section.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_https_section.cpython-311.pyc new file mode 100644 index 00000000..fe76756b Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_https_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_logs.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_logs.cpython-311.pyc new file mode 100644 index 00000000..b7922c57 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_logs.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_nat_section.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_nat_section.cpython-311.pyc new file mode 100644 index 00000000..bde849aa Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_nat_section.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_software_package_details.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_software_package_details.cpython-311.pyc new file mode 100644 index 00000000..b1e4016f Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_show_software_package_details.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_simple_gateway.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_simple_gateway.cpython-311.pyc new file mode 100644 index 00000000..9840859a Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_simple_gateway.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_simple_gateway_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_simple_gateway_facts.cpython-311.pyc new file mode 100644 index 00000000..97d44a12 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_simple_gateway_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_tag.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_tag.cpython-311.pyc new file mode 100644 index 00000000..623f62a1 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_tag.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_tag_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_tag_facts.cpython-311.pyc new file mode 100644 index 00000000..1132ddcf Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_tag_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_exception.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_exception.cpython-311.pyc new file mode 100644 index 00000000..bf1209bb Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_exception.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_exception_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_exception_facts.cpython-311.pyc new file mode 100644 index 00000000..9a4a2c41 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_exception_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_indicator.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_indicator.cpython-311.pyc new file mode 100644 index 00000000..d8806371 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_indicator.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_indicator_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_indicator_facts.cpython-311.pyc new file mode 100644 index 00000000..478b2b02 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_indicator_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_layer.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_layer.cpython-311.pyc new file mode 100644 index 00000000..cac91bc2 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_layer.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_layer_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_layer_facts.cpython-311.pyc new file mode 100644 index 00000000..f47bb603 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_layer_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_profile.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_profile.cpython-311.pyc new file mode 100644 index 00000000..d2bbebc8 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_profile.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_profile_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_profile_facts.cpython-311.pyc new file mode 100644 index 00000000..827a8e62 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_profile_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_protection_override.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_protection_override.cpython-311.pyc new file mode 100644 index 00000000..6c980587 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_protection_override.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_rule.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_rule.cpython-311.pyc new file mode 100644 index 00000000..e63ab46e Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_rule.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_rule_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_rule_facts.cpython-311.pyc new file mode 100644 index 00000000..47a70e9d Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_threat_rule_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_time.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_time.cpython-311.pyc new file mode 100644 index 00000000..9f77d4e3 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_time.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_time_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_time_facts.cpython-311.pyc new file mode 100644 index 00000000..9e66a0dd Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_time_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_uninstall_software_package.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_uninstall_software_package.cpython-311.pyc new file mode 100644 index 00000000..74d5d1fe Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_uninstall_software_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_verify_policy.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_verify_policy.cpython-311.pyc new file mode 100644 index 00000000..b651c5ae Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_verify_policy.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_verify_software_package.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_verify_software_package.cpython-311.pyc new file mode 100644 index 00000000..c3683432 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_verify_software_package.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_meshed.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_meshed.cpython-311.pyc new file mode 100644 index 00000000..9a67c1eb Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_meshed.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_meshed_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_meshed_facts.cpython-311.pyc new file mode 100644 index 00000000..34007deb Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_meshed_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_star.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_star.cpython-311.pyc new file mode 100644 index 00000000..caf82119 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_star.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_star_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_star_facts.cpython-311.pyc new file mode 100644 index 00000000..bafecb01 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_vpn_community_star_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_wildcard.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_wildcard.cpython-311.pyc new file mode 100644 index 00000000..7bd0b064 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_wildcard.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_wildcard_facts.cpython-311.pyc b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_wildcard_facts.cpython-311.pyc new file mode 100644 index 00000000..20a8bb51 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/modules/__pycache__/test_cp_mgmt_wildcard_facts.cpython-311.pyc differ diff --git a/collection/check_point/mgmt/tests/units/plugins/httpapi/__pycache__/test_checkpoint.cpython-311.pyc b/collection/check_point/mgmt/tests/units/plugins/httpapi/__pycache__/test_checkpoint.cpython-311.pyc new file mode 100644 index 00000000..6d103b06 Binary files /dev/null and b/collection/check_point/mgmt/tests/units/plugins/httpapi/__pycache__/test_checkpoint.cpython-311.pyc differ diff --git a/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey.cpython-311.pyc b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey.cpython-311.pyc new file mode 100644 index 00000000..855e3ce8 Binary files /dev/null and b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey.cpython-311.pyc differ diff --git a/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_config.cpython-311.pyc b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_config.cpython-311.pyc new file mode 100644 index 00000000..0c35b24d Binary files /dev/null and b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_config.cpython-311.pyc differ diff --git a/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_facts.cpython-311.pyc b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_facts.cpython-311.pyc new file mode 100644 index 00000000..2a6ae769 Binary files /dev/null and b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_facts.cpython-311.pyc differ diff --git a/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_feature.cpython-311.pyc b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_feature.cpython-311.pyc new file mode 100644 index 00000000..71aaeb31 Binary files /dev/null and b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_feature.cpython-311.pyc differ diff --git a/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_source.cpython-311.pyc b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_source.cpython-311.pyc new file mode 100644 index 00000000..31a1b623 Binary files /dev/null and b/collection/chocolatey/chocolatey/plugins/modules/__pycache__/win_chocolatey_source.cpython-311.pyc differ diff --git a/collection/chocolatey/chocolatey/tests/integration/targets/win_chocolatey_feature/filter_plugins/__pycache__/choco_checksum_state.cpython-311.pyc b/collection/chocolatey/chocolatey/tests/integration/targets/win_chocolatey_feature/filter_plugins/__pycache__/choco_checksum_state.cpython-311.pyc new file mode 100644 index 00000000..93498651 Binary files /dev/null and b/collection/chocolatey/chocolatey/tests/integration/targets/win_chocolatey_feature/filter_plugins/__pycache__/choco_checksum_state.cpython-311.pyc differ diff --git a/collection/cisco/ise/.DS_Store b/collection/cisco/ise/.DS_Store new file mode 100644 index 00000000..a7b0016a Binary files /dev/null and b/collection/cisco/ise/.DS_Store differ diff --git a/collection/cisco/meraki/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/cisco/meraki/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..4f037a24 Binary files /dev/null and b/collection/cisco/meraki/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/doc_fragments/__pycache__/meraki.cpython-311.pyc b/collection/cisco/meraki/plugins/doc_fragments/__pycache__/meraki.cpython-311.pyc new file mode 100644 index 00000000..b3506858 Binary files /dev/null and b/collection/cisco/meraki/plugins/doc_fragments/__pycache__/meraki.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/module_utils/network/meraki/__pycache__/__init__.cpython-311.pyc b/collection/cisco/meraki/plugins/module_utils/network/meraki/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..5088e775 Binary files /dev/null and b/collection/cisco/meraki/plugins/module_utils/network/meraki/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/module_utils/network/meraki/__pycache__/meraki.cpython-311.pyc b/collection/cisco/meraki/plugins/module_utils/network/meraki/__pycache__/meraki.cpython-311.pyc new file mode 100644 index 00000000..70cfb66b Binary files /dev/null and b/collection/cisco/meraki/plugins/module_utils/network/meraki/__pycache__/meraki.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..8d0ca994 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_admin.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_admin.cpython-311.pyc new file mode 100644 index 00000000..a7f32189 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_admin.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_alert.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_alert.cpython-311.pyc new file mode 100644 index 00000000..3cfc95a4 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_alert.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_config_template.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_config_template.cpython-311.pyc new file mode 100644 index 00000000..28fd23d5 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_config_template.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_content_filtering.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_content_filtering.cpython-311.pyc new file mode 100644 index 00000000..6cd1c690 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_content_filtering.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_device.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_device.cpython-311.pyc new file mode 100644 index 00000000..fb713bad Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_device.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_firewalled_services.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_firewalled_services.cpython-311.pyc new file mode 100644 index 00000000..e097e8e1 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_firewalled_services.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_intrusion_prevention.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_intrusion_prevention.cpython-311.pyc new file mode 100644 index 00000000..476e22db Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_intrusion_prevention.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_malware.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_malware.cpython-311.pyc new file mode 100644 index 00000000..79c36a12 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_malware.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_management_interface.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_management_interface.cpython-311.pyc new file mode 100644 index 00000000..482ca27f Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_management_interface.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_l3_firewall.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_l3_firewall.cpython-311.pyc new file mode 100644 index 00000000..06ac7089 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_l3_firewall.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_radio.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_radio.cpython-311.pyc new file mode 100644 index 00000000..52d77bf8 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_radio.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_rf_profile.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_rf_profile.cpython-311.pyc new file mode 100644 index 00000000..209043bc Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_rf_profile.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_settings.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_settings.cpython-311.pyc new file mode 100644 index 00000000..10093490 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_settings.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_ssid.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_ssid.cpython-311.pyc new file mode 100644 index 00000000..7a2a7e56 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mr_ssid.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_access_list.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_access_list.cpython-311.pyc new file mode 100644 index 00000000..3b900988 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_access_list.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_l3_interface.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_l3_interface.cpython-311.pyc new file mode 100644 index 00000000..a19b891d Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_l3_interface.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_link_aggregation.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_link_aggregation.cpython-311.pyc new file mode 100644 index 00000000..332c97cd Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_link_aggregation.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_ospf.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_ospf.cpython-311.pyc new file mode 100644 index 00000000..40cdf1ce Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_ospf.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_stack.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_stack.cpython-311.pyc new file mode 100644 index 00000000..2f497078 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_stack.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_stack_l3_interface.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_stack_l3_interface.cpython-311.pyc new file mode 100644 index 00000000..f125f8e7 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_stack_l3_interface.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_storm_control.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_storm_control.cpython-311.pyc new file mode 100644 index 00000000..8be1507c Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_storm_control.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_switchport.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_switchport.cpython-311.pyc new file mode 100644 index 00000000..d11885f1 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ms_switchport.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_content_filtering.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_content_filtering.cpython-311.pyc new file mode 100644 index 00000000..014c5808 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_content_filtering.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_intrusion_prevention.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_intrusion_prevention.cpython-311.pyc new file mode 100644 index 00000000..192a4e13 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_intrusion_prevention.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l2_interface.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l2_interface.cpython-311.pyc new file mode 100644 index 00000000..d1e7a74b Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l2_interface.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l3_firewall.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l3_firewall.cpython-311.pyc new file mode 100644 index 00000000..e7b92f50 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l3_firewall.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l7_firewall.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l7_firewall.cpython-311.pyc new file mode 100644 index 00000000..5ba69e7e Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_l7_firewall.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_malware.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_malware.cpython-311.pyc new file mode 100644 index 00000000..356e27e7 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_malware.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_nat.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_nat.cpython-311.pyc new file mode 100644 index 00000000..6aa93fff Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_nat.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_site_to_site_firewall.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_site_to_site_firewall.cpython-311.pyc new file mode 100644 index 00000000..c1d6e90c Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_site_to_site_firewall.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_site_to_site_vpn.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_site_to_site_vpn.cpython-311.pyc new file mode 100644 index 00000000..8a1705b7 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_site_to_site_vpn.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_static_route.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_static_route.cpython-311.pyc new file mode 100644 index 00000000..1db2499f Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_static_route.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_uplink.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_uplink.cpython-311.pyc new file mode 100644 index 00000000..cd3eceba Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_uplink.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_uplink_bandwidth.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_uplink_bandwidth.cpython-311.pyc new file mode 100644 index 00000000..56717bf8 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_uplink_bandwidth.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_vlan.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_vlan.cpython-311.pyc new file mode 100644 index 00000000..21aae51d Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_mx_vlan.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_nat.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_nat.cpython-311.pyc new file mode 100644 index 00000000..d4280118 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_nat.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_network.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_network.cpython-311.pyc new file mode 100644 index 00000000..0b9d3efc Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_network.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_organization.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_organization.cpython-311.pyc new file mode 100644 index 00000000..89661679 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_organization.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_site_to_site_vpn.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_site_to_site_vpn.cpython-311.pyc new file mode 100644 index 00000000..6dbf9050 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_site_to_site_vpn.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_snmp.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_snmp.cpython-311.pyc new file mode 100644 index 00000000..72ee7278 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_snmp.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ssid.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ssid.cpython-311.pyc new file mode 100644 index 00000000..ac366c9a Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_ssid.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_static_route.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_static_route.cpython-311.pyc new file mode 100644 index 00000000..eed250c8 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_static_route.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_access_list.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_access_list.cpython-311.pyc new file mode 100644 index 00000000..eebc5582 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_access_list.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_stack.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_stack.cpython-311.pyc new file mode 100644 index 00000000..2d84904d Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_stack.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_storm_control.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_storm_control.cpython-311.pyc new file mode 100644 index 00000000..a95f8f02 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switch_storm_control.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switchport.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switchport.cpython-311.pyc new file mode 100644 index 00000000..f754557d Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_switchport.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_syslog.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_syslog.cpython-311.pyc new file mode 100644 index 00000000..545e807e Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_syslog.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_vlan.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_vlan.cpython-311.pyc new file mode 100644 index 00000000..86e3fb27 Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_vlan.cpython-311.pyc differ diff --git a/collection/cisco/meraki/plugins/modules/__pycache__/meraki_webhook.cpython-311.pyc b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_webhook.cpython-311.pyc new file mode 100644 index 00000000..d69f587c Binary files /dev/null and b/collection/cisco/meraki/plugins/modules/__pycache__/meraki_webhook.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/lookup/__pycache__/turbo_demo.cpython-311.pyc b/collection/cloud/common/plugins/lookup/__pycache__/turbo_demo.cpython-311.pyc new file mode 100644 index 00000000..8ca1a0e6 Binary files /dev/null and b/collection/cloud/common/plugins/lookup/__pycache__/turbo_demo.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/module_utils/__pycache__/turbo_demo.cpython-311.pyc b/collection/cloud/common/plugins/module_utils/__pycache__/turbo_demo.cpython-311.pyc new file mode 100644 index 00000000..61e7d7ed Binary files /dev/null and b/collection/cloud/common/plugins/module_utils/__pycache__/turbo_demo.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/module_utils/turbo/__pycache__/common.cpython-311.pyc b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..6d065892 Binary files /dev/null and b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/common.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/module_utils/turbo/__pycache__/exceptions.cpython-311.pyc b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/exceptions.cpython-311.pyc new file mode 100644 index 00000000..02f11dc8 Binary files /dev/null and b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/exceptions.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/module_utils/turbo/__pycache__/module.cpython-311.pyc b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/module.cpython-311.pyc new file mode 100644 index 00000000..646b5f76 Binary files /dev/null and b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/module.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/module_utils/turbo/__pycache__/server.cpython-311.pyc b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/server.cpython-311.pyc new file mode 100644 index 00000000..cbf75efb Binary files /dev/null and b/collection/cloud/common/plugins/module_utils/turbo/__pycache__/server.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/modules/__pycache__/turbo_demo.cpython-311.pyc b/collection/cloud/common/plugins/modules/__pycache__/turbo_demo.cpython-311.pyc new file mode 100644 index 00000000..2379f4f6 Binary files /dev/null and b/collection/cloud/common/plugins/modules/__pycache__/turbo_demo.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/modules/__pycache__/turbo_fail.cpython-311.pyc b/collection/cloud/common/plugins/modules/__pycache__/turbo_fail.cpython-311.pyc new file mode 100644 index 00000000..be7a892e Binary files /dev/null and b/collection/cloud/common/plugins/modules/__pycache__/turbo_fail.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/modules/__pycache__/turbo_import.cpython-311.pyc b/collection/cloud/common/plugins/modules/__pycache__/turbo_import.cpython-311.pyc new file mode 100644 index 00000000..704238c0 Binary files /dev/null and b/collection/cloud/common/plugins/modules/__pycache__/turbo_import.cpython-311.pyc differ diff --git a/collection/cloud/common/plugins/plugin_utils/turbo/__pycache__/lookup.cpython-311.pyc b/collection/cloud/common/plugins/plugin_utils/turbo/__pycache__/lookup.cpython-311.pyc new file mode 100644 index 00000000..b97c900f Binary files /dev/null and b/collection/cloud/common/plugins/plugin_utils/turbo/__pycache__/lookup.cpython-311.pyc differ diff --git a/collection/cloud/common/tests/unit/module_utils/__pycache__/test_turbo_module.cpython-311.pyc b/collection/cloud/common/tests/unit/module_utils/__pycache__/test_turbo_module.cpython-311.pyc new file mode 100644 index 00000000..316e1829 Binary files /dev/null and b/collection/cloud/common/tests/unit/module_utils/__pycache__/test_turbo_module.cpython-311.pyc differ diff --git a/collection/cloud/common/tests/unit/plugins/module_utils/turbo/__pycache__/conftest.cpython-311.pyc b/collection/cloud/common/tests/unit/plugins/module_utils/turbo/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..9a1f3aa9 Binary files /dev/null and b/collection/cloud/common/tests/unit/plugins/module_utils/turbo/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/cloud/common/tests/unit/plugins/module_utils/turbo/__pycache__/test_module.cpython-311.pyc b/collection/cloud/common/tests/unit/plugins/module_utils/turbo/__pycache__/test_module.cpython-311.pyc new file mode 100644 index 00000000..6340c99a Binary files /dev/null and b/collection/cloud/common/tests/unit/plugins/module_utils/turbo/__pycache__/test_module.cpython-311.pyc differ diff --git a/collection/community/azure/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc b/collection/community/azure/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc new file mode 100644 index 00000000..fb52ed38 Binary files /dev/null and b/collection/community/azure/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc differ diff --git a/collection/community/azure/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc b/collection/community/azure/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc new file mode 100644 index 00000000..a2a718f9 Binary files /dev/null and b/collection/community/azure/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..950f5cd2 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_aks_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aks_facts.cpython-311.pyc new file mode 100644 index 00000000..7ab8df2e Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aks_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_aks_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aks_info.cpython-311.pyc new file mode 100644 index 00000000..949795c1 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aks_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_aksversion_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aksversion_facts.cpython-311.pyc new file mode 100644 index 00000000..48efcd40 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aksversion_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_aksversion_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aksversion_info.cpython-311.pyc new file mode 100644 index 00000000..48465c3b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_aksversion_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_applicationsecuritygroup_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_applicationsecuritygroup_facts.cpython-311.pyc new file mode 100644 index 00000000..b710c779 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_applicationsecuritygroup_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_applicationsecuritygroup_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_applicationsecuritygroup_info.cpython-311.pyc new file mode 100644 index 00000000..f5d2b74f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_applicationsecuritygroup_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_appserviceplan_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_appserviceplan_facts.cpython-311.pyc new file mode 100644 index 00000000..80970b7f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_appserviceplan_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_appserviceplan_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_appserviceplan_info.cpython-311.pyc new file mode 100644 index 00000000..008f8b8c Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_appserviceplan_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_automationaccount_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_automationaccount_facts.cpython-311.pyc new file mode 100644 index 00000000..99b05f97 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_automationaccount_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_automationaccount_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_automationaccount_info.cpython-311.pyc new file mode 100644 index 00000000..7057d696 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_automationaccount_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_autoscale_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_autoscale_facts.cpython-311.pyc new file mode 100644 index 00000000..0a64b1e9 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_autoscale_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_autoscale_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_autoscale_info.cpython-311.pyc new file mode 100644 index 00000000..28abe1eb Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_autoscale_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_availabilityset_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_availabilityset_facts.cpython-311.pyc new file mode 100644 index 00000000..13a9df35 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_availabilityset_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_availabilityset_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_availabilityset_info.cpython-311.pyc new file mode 100644 index 00000000..ee6d924e Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_availabilityset_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnendpoint_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnendpoint_facts.cpython-311.pyc new file mode 100644 index 00000000..9ad8e9b3 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnendpoint_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnendpoint_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnendpoint_info.cpython-311.pyc new file mode 100644 index 00000000..ab7ee4bd Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnendpoint_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnprofile_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnprofile_facts.cpython-311.pyc new file mode 100644 index 00000000..ae36820b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnprofile_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnprofile_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnprofile_info.cpython-311.pyc new file mode 100644 index 00000000..141ec74b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cdnprofile_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerinstance_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerinstance_facts.cpython-311.pyc new file mode 100644 index 00000000..43436774 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerinstance_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerinstance_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerinstance_info.cpython-311.pyc new file mode 100644 index 00000000..dd7541d2 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerinstance_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerregistry_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerregistry_facts.cpython-311.pyc new file mode 100644 index 00000000..9eec4be4 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerregistry_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerregistry_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerregistry_info.cpython-311.pyc new file mode 100644 index 00000000..196c4341 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_containerregistry_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_cosmosdbaccount_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cosmosdbaccount_facts.cpython-311.pyc new file mode 100644 index 00000000..51f1d249 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cosmosdbaccount_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_cosmosdbaccount_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cosmosdbaccount_info.cpython-311.pyc new file mode 100644 index 00000000..08d6d4d6 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_cosmosdbaccount_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_deployment_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_deployment_facts.cpython-311.pyc new file mode 100644 index 00000000..945b206d Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_deployment_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_deployment_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_deployment_info.cpython-311.pyc new file mode 100644 index 00000000..35eb6424 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_deployment_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlab_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlab_facts.cpython-311.pyc new file mode 100644 index 00000000..7d6f9d70 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlab_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlab_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlab_info.cpython-311.pyc new file mode 100644 index 00000000..054b8d28 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlab_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabarmtemplate_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabarmtemplate_facts.cpython-311.pyc new file mode 100644 index 00000000..c39669e8 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabarmtemplate_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabarmtemplate_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabarmtemplate_info.cpython-311.pyc new file mode 100644 index 00000000..316e67ff Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabarmtemplate_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifact_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifact_facts.cpython-311.pyc new file mode 100644 index 00000000..833e67bd Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifact_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifact_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifact_info.cpython-311.pyc new file mode 100644 index 00000000..fe83f544 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifact_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifactsource_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifactsource_facts.cpython-311.pyc new file mode 100644 index 00000000..6c7b0a2d Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifactsource_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifactsource_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifactsource_info.cpython-311.pyc new file mode 100644 index 00000000..e8a07917 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabartifactsource_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabcustomimage_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabcustomimage_facts.cpython-311.pyc new file mode 100644 index 00000000..15212b84 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabcustomimage_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabcustomimage_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabcustomimage_info.cpython-311.pyc new file mode 100644 index 00000000..7a3f994f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabcustomimage_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabenvironment_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabenvironment_facts.cpython-311.pyc new file mode 100644 index 00000000..a054f779 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabenvironment_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabenvironment_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabenvironment_info.cpython-311.pyc new file mode 100644 index 00000000..a44c43c3 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabenvironment_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabpolicy_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabpolicy_facts.cpython-311.pyc new file mode 100644 index 00000000..7c567ca8 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabpolicy_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabpolicy_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabpolicy_info.cpython-311.pyc new file mode 100644 index 00000000..8ce35fcc Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabpolicy_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabschedule_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabschedule_facts.cpython-311.pyc new file mode 100644 index 00000000..6e70dd15 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabschedule_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabschedule_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabschedule_info.cpython-311.pyc new file mode 100644 index 00000000..1df9dd7b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabschedule_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualmachine_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualmachine_facts.cpython-311.pyc new file mode 100644 index 00000000..16ee9dc7 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualmachine_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualmachine_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualmachine_info.cpython-311.pyc new file mode 100644 index 00000000..b2e8512d Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualmachine_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualnetwork_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualnetwork_facts.cpython-311.pyc new file mode 100644 index 00000000..7e5cc596 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualnetwork_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualnetwork_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualnetwork_info.cpython-311.pyc new file mode 100644 index 00000000..99e31842 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_devtestlabvirtualnetwork_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnsrecordset_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnsrecordset_facts.cpython-311.pyc new file mode 100644 index 00000000..f9bda470 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnsrecordset_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnsrecordset_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnsrecordset_info.cpython-311.pyc new file mode 100644 index 00000000..a38e9db4 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnsrecordset_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnszone_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnszone_facts.cpython-311.pyc new file mode 100644 index 00000000..ea612680 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnszone_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnszone_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnszone_info.cpython-311.pyc new file mode 100644 index 00000000..f58aa9ec Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_dnszone_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_functionapp_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_functionapp_facts.cpython-311.pyc new file mode 100644 index 00000000..e0473b31 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_functionapp_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_functionapp_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_functionapp_info.cpython-311.pyc new file mode 100644 index 00000000..aa808b29 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_functionapp_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_hdinsightcluster_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_hdinsightcluster_facts.cpython-311.pyc new file mode 100644 index 00000000..c01b77e0 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_hdinsightcluster_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_hdinsightcluster_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_hdinsightcluster_info.cpython-311.pyc new file mode 100644 index 00000000..bfccdba1 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_hdinsightcluster_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_image_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_image_facts.cpython-311.pyc new file mode 100644 index 00000000..760969d3 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_image_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_image_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_image_info.cpython-311.pyc new file mode 100644 index 00000000..1a3a9a43 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_image_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_loadbalancer_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loadbalancer_facts.cpython-311.pyc new file mode 100644 index 00000000..4d1ec65b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loadbalancer_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_loadbalancer_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loadbalancer_info.cpython-311.pyc new file mode 100644 index 00000000..d36a1b49 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loadbalancer_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_lock_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_lock_facts.cpython-311.pyc new file mode 100644 index 00000000..b19c2e9d Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_lock_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_lock_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_lock_info.cpython-311.pyc new file mode 100644 index 00000000..d37d3ff7 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_lock_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_loganalyticsworkspace_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loganalyticsworkspace_facts.cpython-311.pyc new file mode 100644 index 00000000..5f3a464c Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loganalyticsworkspace_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_loganalyticsworkspace_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loganalyticsworkspace_info.cpython-311.pyc new file mode 100644 index 00000000..c307b749 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_loganalyticsworkspace_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_managed_disk.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_managed_disk.cpython-311.pyc new file mode 100644 index 00000000..b2e7704c Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_managed_disk.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_managed_disk_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_managed_disk_facts.cpython-311.pyc new file mode 100644 index 00000000..72fba728 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_managed_disk_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk.cpython-311.pyc new file mode 100644 index 00000000..aaebe356 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk_facts.cpython-311.pyc new file mode 100644 index 00000000..a3e7933f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk_info.cpython-311.pyc new file mode 100644 index 00000000..288ea356 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_manageddisk_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbconfiguration_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbconfiguration_facts.cpython-311.pyc new file mode 100644 index 00000000..ce906141 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbconfiguration_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbconfiguration_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbconfiguration_info.cpython-311.pyc new file mode 100644 index 00000000..b0721532 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbconfiguration_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbdatabase_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbdatabase_facts.cpython-311.pyc new file mode 100644 index 00000000..15c0184f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbdatabase_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbdatabase_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbdatabase_info.cpython-311.pyc new file mode 100644 index 00000000..170e49cd Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbdatabase_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbfirewallrule_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbfirewallrule_facts.cpython-311.pyc new file mode 100644 index 00000000..354e683b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbfirewallrule_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbfirewallrule_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbfirewallrule_info.cpython-311.pyc new file mode 100644 index 00000000..d852cd0f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbfirewallrule_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbserver_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbserver_facts.cpython-311.pyc new file mode 100644 index 00000000..1f58aa48 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbserver_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbserver_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbserver_info.cpython-311.pyc new file mode 100644 index 00000000..349b82d1 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mariadbserver_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlconfiguration_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlconfiguration_facts.cpython-311.pyc new file mode 100644 index 00000000..ca362d98 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlconfiguration_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlconfiguration_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlconfiguration_info.cpython-311.pyc new file mode 100644 index 00000000..8d944bde Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlconfiguration_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqldatabase_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqldatabase_facts.cpython-311.pyc new file mode 100644 index 00000000..c5b7a0e3 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqldatabase_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqldatabase_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqldatabase_info.cpython-311.pyc new file mode 100644 index 00000000..24e776da Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqldatabase_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlfirewallrule_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlfirewallrule_facts.cpython-311.pyc new file mode 100644 index 00000000..6cb7f69b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlfirewallrule_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlfirewallrule_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlfirewallrule_info.cpython-311.pyc new file mode 100644 index 00000000..24282519 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlfirewallrule_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlserver_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlserver_facts.cpython-311.pyc new file mode 100644 index 00000000..61d5c7ee Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlserver_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlserver_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlserver_info.cpython-311.pyc new file mode 100644 index 00000000..a3a016bc Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_mysqlserver_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_networkinterface_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_networkinterface_facts.cpython-311.pyc new file mode 100644 index 00000000..32b3f1f6 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_networkinterface_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_networkinterface_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_networkinterface_info.cpython-311.pyc new file mode 100644 index 00000000..3dc6325f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_networkinterface_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlconfiguration_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlconfiguration_facts.cpython-311.pyc new file mode 100644 index 00000000..a1866adf Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlconfiguration_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlconfiguration_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlconfiguration_info.cpython-311.pyc new file mode 100644 index 00000000..62c5d62b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlconfiguration_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqldatabase_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqldatabase_facts.cpython-311.pyc new file mode 100644 index 00000000..b6216e08 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqldatabase_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqldatabase_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqldatabase_info.cpython-311.pyc new file mode 100644 index 00000000..6d145df4 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqldatabase_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlfirewallrule_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlfirewallrule_facts.cpython-311.pyc new file mode 100644 index 00000000..d1374951 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlfirewallrule_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlfirewallrule_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlfirewallrule_info.cpython-311.pyc new file mode 100644 index 00000000..413850c9 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlfirewallrule_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlserver_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlserver_facts.cpython-311.pyc new file mode 100644 index 00000000..b1c1fd34 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlserver_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlserver_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlserver_info.cpython-311.pyc new file mode 100644 index 00000000..1e614a7e Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_postgresqlserver_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_publicipaddress_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_publicipaddress_facts.cpython-311.pyc new file mode 100644 index 00000000..c5cadadb Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_publicipaddress_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_publicipaddress_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_publicipaddress_info.cpython-311.pyc new file mode 100644 index 00000000..4f41e2ee Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_publicipaddress_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_rediscache_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_rediscache_facts.cpython-311.pyc new file mode 100644 index 00000000..7408a74c Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_rediscache_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_rediscache_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_rediscache_info.cpython-311.pyc new file mode 100644 index 00000000..e54f9704 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_rediscache_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_resource_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resource_facts.cpython-311.pyc new file mode 100644 index 00000000..77902445 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resource_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_resource_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resource_info.cpython-311.pyc new file mode 100644 index 00000000..e691d917 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resource_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_resourcegroup_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resourcegroup_facts.cpython-311.pyc new file mode 100644 index 00000000..0893717a Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resourcegroup_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_resourcegroup_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resourcegroup_info.cpython-311.pyc new file mode 100644 index 00000000..5e35b5ba Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_resourcegroup_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_roleassignment_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roleassignment_facts.cpython-311.pyc new file mode 100644 index 00000000..c86e6424 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roleassignment_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_roleassignment_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roleassignment_info.cpython-311.pyc new file mode 100644 index 00000000..2f581aae Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roleassignment_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_roledefinition_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roledefinition_facts.cpython-311.pyc new file mode 100644 index 00000000..2e26fb29 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roledefinition_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_roledefinition_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roledefinition_info.cpython-311.pyc new file mode 100644 index 00000000..4b22a25f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_roledefinition_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_routetable_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_routetable_facts.cpython-311.pyc new file mode 100644 index 00000000..0af2530b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_routetable_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_routetable_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_routetable_info.cpython-311.pyc new file mode 100644 index 00000000..d354e7b5 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_routetable_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_securitygroup_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_securitygroup_facts.cpython-311.pyc new file mode 100644 index 00000000..affb9492 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_securitygroup_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_securitygroup_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_securitygroup_info.cpython-311.pyc new file mode 100644 index 00000000..ecbc2e90 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_securitygroup_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_servicebus_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_servicebus_facts.cpython-311.pyc new file mode 100644 index 00000000..645032c6 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_servicebus_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_servicebus_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_servicebus_info.cpython-311.pyc new file mode 100644 index 00000000..ced5c615 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_servicebus_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqldatabase_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqldatabase_facts.cpython-311.pyc new file mode 100644 index 00000000..41a9844b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqldatabase_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqldatabase_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqldatabase_info.cpython-311.pyc new file mode 100644 index 00000000..4d59c893 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqldatabase_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlfirewallrule_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlfirewallrule_facts.cpython-311.pyc new file mode 100644 index 00000000..000db5ee Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlfirewallrule_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlfirewallrule_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlfirewallrule_info.cpython-311.pyc new file mode 100644 index 00000000..8bdde11b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlfirewallrule_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlserver_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlserver_facts.cpython-311.pyc new file mode 100644 index 00000000..b810f897 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlserver_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlserver_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlserver_info.cpython-311.pyc new file mode 100644 index 00000000..64dd8b8a Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_sqlserver_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_storageaccount_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_storageaccount_facts.cpython-311.pyc new file mode 100644 index 00000000..8f55fa3f Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_storageaccount_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_storageaccount_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_storageaccount_info.cpython-311.pyc new file mode 100644 index 00000000..a208e6ab Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_storageaccount_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_subnet_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_subnet_facts.cpython-311.pyc new file mode 100644 index 00000000..460b2933 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_subnet_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_subnet_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_subnet_info.cpython-311.pyc new file mode 100644 index 00000000..9644873c Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_subnet_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerendpoint_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerendpoint_facts.cpython-311.pyc new file mode 100644 index 00000000..846c1e5d Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerendpoint_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerendpoint_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerendpoint_info.cpython-311.pyc new file mode 100644 index 00000000..fd9ff2d8 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerendpoint_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerprofile_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerprofile_facts.cpython-311.pyc new file mode 100644 index 00000000..072f357b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerprofile_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerprofile_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerprofile_info.cpython-311.pyc new file mode 100644 index 00000000..eed09e3b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_trafficmanagerprofile_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_extension.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_extension.cpython-311.pyc new file mode 100644 index 00000000..533f2b91 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_extension.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_facts.cpython-311.pyc new file mode 100644 index 00000000..89e6a220 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_info.cpython-311.pyc new file mode 100644 index 00000000..cd499ec5 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_scaleset.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_scaleset.cpython-311.pyc new file mode 100644 index 00000000..0678d7a9 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_scaleset.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_scaleset_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_scaleset_facts.cpython-311.pyc new file mode 100644 index 00000000..8f694548 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachine_scaleset_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension.cpython-311.pyc new file mode 100644 index 00000000..e6651066 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension_facts.cpython-311.pyc new file mode 100644 index 00000000..14598aa5 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension_info.cpython-311.pyc new file mode 100644 index 00000000..119518c4 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineextension_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineimage_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineimage_facts.cpython-311.pyc new file mode 100644 index 00000000..991bd417 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineimage_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineimage_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineimage_info.cpython-311.pyc new file mode 100644 index 00000000..73c45561 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachineimage_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset.cpython-311.pyc new file mode 100644 index 00000000..0af10668 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset_facts.cpython-311.pyc new file mode 100644 index 00000000..71506fab Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset_info.cpython-311.pyc new file mode 100644 index 00000000..ce4a09f0 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescaleset_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetextension_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetextension_facts.cpython-311.pyc new file mode 100644 index 00000000..29acc60a Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetextension_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetextension_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetextension_info.cpython-311.pyc new file mode 100644 index 00000000..601c649b Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetextension_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetinstance_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetinstance_facts.cpython-311.pyc new file mode 100644 index 00000000..567cd762 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetinstance_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetinstance_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetinstance_info.cpython-311.pyc new file mode 100644 index 00000000..8ed58aa7 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualmachinescalesetinstance_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetwork_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetwork_facts.cpython-311.pyc new file mode 100644 index 00000000..b8fc0c1c Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetwork_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetwork_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetwork_info.cpython-311.pyc new file mode 100644 index 00000000..15ea58f5 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetwork_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetworkpeering_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetworkpeering_facts.cpython-311.pyc new file mode 100644 index 00000000..8718b394 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetworkpeering_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetworkpeering_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetworkpeering_info.cpython-311.pyc new file mode 100644 index 00000000..9d9f72e2 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_virtualnetworkpeering_info.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_webapp_facts.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_webapp_facts.cpython-311.pyc new file mode 100644 index 00000000..fbca5f48 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_webapp_facts.cpython-311.pyc differ diff --git a/collection/community/azure/plugins/modules/__pycache__/azure_rm_webapp_info.cpython-311.pyc b/collection/community/azure/plugins/modules/__pycache__/azure_rm_webapp_info.cpython-311.pyc new file mode 100644 index 00000000..1f5e79b7 Binary files /dev/null and b/collection/community/azure/plugins/modules/__pycache__/azure_rm_webapp_info.cpython-311.pyc differ diff --git a/collection/community/azure/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc b/collection/community/azure/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc new file mode 100644 index 00000000..9e886299 Binary files /dev/null and b/collection/community/azure/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc differ diff --git a/collection/community/azure/tests/utils/shippable/__pycache__/timing.cpython-311.pyc b/collection/community/azure/tests/utils/shippable/__pycache__/timing.cpython-311.pyc new file mode 100644 index 00000000..1bb7298b Binary files /dev/null and b/collection/community/azure/tests/utils/shippable/__pycache__/timing.cpython-311.pyc differ diff --git a/collection/community/crypto/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc b/collection/community/crypto/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc new file mode 100644 index 00000000..eddec7ff Binary files /dev/null and b/collection/community/crypto/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc differ diff --git a/collection/community/crypto/.azure-pipelines/scripts/__pycache__/publish-codecov.cpython-311.pyc b/collection/community/crypto/.azure-pipelines/scripts/__pycache__/publish-codecov.cpython-311.pyc new file mode 100644 index 00000000..05a072c1 Binary files /dev/null and b/collection/community/crypto/.azure-pipelines/scripts/__pycache__/publish-codecov.cpython-311.pyc differ diff --git a/collection/community/crypto/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc b/collection/community/crypto/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc new file mode 100644 index 00000000..73be9dec Binary files /dev/null and b/collection/community/crypto/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/action/__pycache__/openssl_privatekey_pipe.cpython-311.pyc b/collection/community/crypto/plugins/action/__pycache__/openssl_privatekey_pipe.cpython-311.pyc new file mode 100644 index 00000000..7c795b61 Binary files /dev/null and b/collection/community/crypto/plugins/action/__pycache__/openssl_privatekey_pipe.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/doc_fragments/__pycache__/acme.cpython-311.pyc b/collection/community/crypto/plugins/doc_fragments/__pycache__/acme.cpython-311.pyc new file mode 100644 index 00000000..d990e024 Binary files /dev/null and b/collection/community/crypto/plugins/doc_fragments/__pycache__/acme.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/doc_fragments/__pycache__/ecs_credential.cpython-311.pyc b/collection/community/crypto/plugins/doc_fragments/__pycache__/ecs_credential.cpython-311.pyc new file mode 100644 index 00000000..5dd3b93b Binary files /dev/null and b/collection/community/crypto/plugins/doc_fragments/__pycache__/ecs_credential.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/doc_fragments/__pycache__/module_certificate.cpython-311.pyc b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_certificate.cpython-311.pyc new file mode 100644 index 00000000..3a944f68 Binary files /dev/null and b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/doc_fragments/__pycache__/module_csr.cpython-311.pyc b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_csr.cpython-311.pyc new file mode 100644 index 00000000..f198d6c7 Binary files /dev/null and b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_csr.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/doc_fragments/__pycache__/module_privatekey.cpython-311.pyc b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_privatekey.cpython-311.pyc new file mode 100644 index 00000000..b41037ef Binary files /dev/null and b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_privatekey.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/doc_fragments/__pycache__/module_privatekey_convert.cpython-311.pyc b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_privatekey_convert.cpython-311.pyc new file mode 100644 index 00000000..89fb8b27 Binary files /dev/null and b/collection/community/crypto/plugins/doc_fragments/__pycache__/module_privatekey_convert.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/__pycache__/_version.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/__pycache__/_version.cpython-311.pyc new file mode 100644 index 00000000..0fbd3383 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/__pycache__/_version.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/__pycache__/io.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/__pycache__/io.cpython-311.pyc new file mode 100644 index 00000000..470d3256 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/__pycache__/io.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/__pycache__/version.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/__pycache__/version.cpython-311.pyc new file mode 100644 index 00000000..1bca4bc0 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/__pycache__/version.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/account.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/account.cpython-311.pyc new file mode 100644 index 00000000..83f6f60b Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/account.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/acme.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/acme.cpython-311.pyc new file mode 100644 index 00000000..81fa7ba5 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/acme.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/backend_cryptography.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/backend_cryptography.cpython-311.pyc new file mode 100644 index 00000000..2967ccc6 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/backend_cryptography.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/backend_openssl_cli.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/backend_openssl_cli.cpython-311.pyc new file mode 100644 index 00000000..52f98b44 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/backend_openssl_cli.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/backends.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/backends.cpython-311.pyc new file mode 100644 index 00000000..c057d82b Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/backends.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/certificates.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/certificates.cpython-311.pyc new file mode 100644 index 00000000..91d6a86d Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/certificates.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/challenges.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/challenges.cpython-311.pyc new file mode 100644 index 00000000..fdd0106a Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/challenges.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/errors.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/errors.cpython-311.pyc new file mode 100644 index 00000000..aa3ee936 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/errors.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/io.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/io.cpython-311.pyc new file mode 100644 index 00000000..0e1d23cc Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/io.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/orders.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/orders.cpython-311.pyc new file mode 100644 index 00000000..d3234aa2 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/orders.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/acme/__pycache__/utils.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/acme/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..fab4c2e4 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/acme/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_asn1.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_asn1.cpython-311.pyc new file mode 100644 index 00000000..9b229a1f Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_asn1.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_obj2txt.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_obj2txt.cpython-311.pyc new file mode 100644 index 00000000..96a8fb13 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_obj2txt.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_objects.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_objects.cpython-311.pyc new file mode 100644 index 00000000..b551ccab Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_objects.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_objects_data.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_objects_data.cpython-311.pyc new file mode 100644 index 00000000..9452ceb6 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/_objects_data.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/basic.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/basic.cpython-311.pyc new file mode 100644 index 00000000..87a6433e Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/basic.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/cryptography_crl.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/cryptography_crl.cpython-311.pyc new file mode 100644 index 00000000..2a829f5e Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/cryptography_crl.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/cryptography_support.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/cryptography_support.cpython-311.pyc new file mode 100644 index 00000000..ed0f6044 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/cryptography_support.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/math.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/math.cpython-311.pyc new file mode 100644 index 00000000..dfcd5a60 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/math.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/openssh.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/openssh.cpython-311.pyc new file mode 100644 index 00000000..d3d57e8c Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/openssh.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/pem.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/pem.cpython-311.pyc new file mode 100644 index 00000000..c24a0421 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/pem.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/__pycache__/support.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/support.cpython-311.pyc new file mode 100644 index 00000000..6be75e12 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/__pycache__/support.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate.cpython-311.pyc new file mode 100644 index 00000000..117c6e57 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_acme.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_acme.cpython-311.pyc new file mode 100644 index 00000000..0e07dd5b Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_acme.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_entrust.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_entrust.cpython-311.pyc new file mode 100644 index 00000000..a7833beb Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_entrust.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_info.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_info.cpython-311.pyc new file mode 100644 index 00000000..af3d4c4d Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_ownca.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_ownca.cpython-311.pyc new file mode 100644 index 00000000..518e5129 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_ownca.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_selfsigned.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_selfsigned.cpython-311.pyc new file mode 100644 index 00000000..cf12ba87 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/certificate_selfsigned.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/common.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..18489e66 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/common.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/crl_info.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/crl_info.cpython-311.pyc new file mode 100644 index 00000000..b79151d3 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/crl_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/csr.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/csr.cpython-311.pyc new file mode 100644 index 00000000..ed252e21 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/csr.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/csr_info.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/csr_info.cpython-311.pyc new file mode 100644 index 00000000..a38f5a04 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/csr_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey.cpython-311.pyc new file mode 100644 index 00000000..cda8b503 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey_convert.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey_convert.cpython-311.pyc new file mode 100644 index 00000000..6e365863 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey_convert.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey_info.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey_info.cpython-311.pyc new file mode 100644 index 00000000..62e4fa28 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/privatekey_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/publickey_info.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/publickey_info.cpython-311.pyc new file mode 100644 index 00000000..a98632fe Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/crypto/module_backends/__pycache__/publickey_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/ecs/__pycache__/api.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/ecs/__pycache__/api.cpython-311.pyc new file mode 100644 index 00000000..54b122cc Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/ecs/__pycache__/api.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/openssh/__pycache__/certificate.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/openssh/__pycache__/certificate.cpython-311.pyc new file mode 100644 index 00000000..ca34bedc Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/openssh/__pycache__/certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/openssh/__pycache__/cryptography.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/openssh/__pycache__/cryptography.cpython-311.pyc new file mode 100644 index 00000000..001fb19b Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/openssh/__pycache__/cryptography.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/openssh/__pycache__/utils.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/openssh/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..bd4ab6d6 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/openssh/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/openssh/backends/__pycache__/common.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/openssh/backends/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..66457c62 Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/openssh/backends/__pycache__/common.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/module_utils/openssh/backends/__pycache__/keypair_backend.cpython-311.pyc b/collection/community/crypto/plugins/module_utils/openssh/backends/__pycache__/keypair_backend.cpython-311.pyc new file mode 100644 index 00000000..93904a8a Binary files /dev/null and b/collection/community/crypto/plugins/module_utils/openssh/backends/__pycache__/keypair_backend.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/acme_account.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/acme_account.cpython-311.pyc new file mode 100644 index 00000000..1c229894 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/acme_account.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/acme_account_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/acme_account_info.cpython-311.pyc new file mode 100644 index 00000000..34400259 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/acme_account_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/acme_certificate.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/acme_certificate.cpython-311.pyc new file mode 100644 index 00000000..56f8b68a Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/acme_certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/acme_certificate_revoke.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/acme_certificate_revoke.cpython-311.pyc new file mode 100644 index 00000000..60bac556 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/acme_certificate_revoke.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/acme_challenge_cert_helper.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/acme_challenge_cert_helper.cpython-311.pyc new file mode 100644 index 00000000..3fbc5728 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/acme_challenge_cert_helper.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/acme_inspect.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/acme_inspect.cpython-311.pyc new file mode 100644 index 00000000..9ddfd293 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/acme_inspect.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/certificate_complete_chain.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/certificate_complete_chain.cpython-311.pyc new file mode 100644 index 00000000..2fa6e63c Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/certificate_complete_chain.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/crypto_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/crypto_info.cpython-311.pyc new file mode 100644 index 00000000..dd3f0c5e Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/crypto_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/ecs_certificate.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/ecs_certificate.cpython-311.pyc new file mode 100644 index 00000000..743baf01 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/ecs_certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/ecs_domain.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/ecs_domain.cpython-311.pyc new file mode 100644 index 00000000..e7c0d916 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/ecs_domain.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/get_certificate.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/get_certificate.cpython-311.pyc new file mode 100644 index 00000000..dbe0aa8a Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/get_certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/luks_device.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/luks_device.cpython-311.pyc new file mode 100644 index 00000000..55398a99 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/luks_device.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssh_cert.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssh_cert.cpython-311.pyc new file mode 100644 index 00000000..2188a7a1 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssh_cert.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssh_keypair.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssh_keypair.cpython-311.pyc new file mode 100644 index 00000000..43449868 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssh_keypair.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_csr.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_csr.cpython-311.pyc new file mode 100644 index 00000000..6ac78e19 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_csr.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_csr_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_csr_info.cpython-311.pyc new file mode 100644 index 00000000..328ae873 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_csr_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_csr_pipe.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_csr_pipe.cpython-311.pyc new file mode 100644 index 00000000..5ce01aeb Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_csr_pipe.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_dhparam.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_dhparam.cpython-311.pyc new file mode 100644 index 00000000..e1ea4400 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_dhparam.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_pkcs12.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_pkcs12.cpython-311.pyc new file mode 100644 index 00000000..d48bde52 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_pkcs12.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey.cpython-311.pyc new file mode 100644 index 00000000..2fd0b7ce Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_convert.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_convert.cpython-311.pyc new file mode 100644 index 00000000..b275b9b4 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_convert.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_info.cpython-311.pyc new file mode 100644 index 00000000..c2aacce4 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_pipe.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_pipe.cpython-311.pyc new file mode 100644 index 00000000..9eb0c2bd Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_privatekey_pipe.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_publickey.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_publickey.cpython-311.pyc new file mode 100644 index 00000000..4283ebd6 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_publickey.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_publickey_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_publickey_info.cpython-311.pyc new file mode 100644 index 00000000..4ffc0111 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_publickey_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_signature.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_signature.cpython-311.pyc new file mode 100644 index 00000000..0f5ebfb2 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_signature.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/openssl_signature_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/openssl_signature_info.cpython-311.pyc new file mode 100644 index 00000000..e58107ad Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/openssl_signature_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/x509_certificate.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/x509_certificate.cpython-311.pyc new file mode 100644 index 00000000..c0204ff7 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/x509_certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/x509_certificate_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/x509_certificate_info.cpython-311.pyc new file mode 100644 index 00000000..1f62c0be Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/x509_certificate_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/x509_certificate_pipe.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/x509_certificate_pipe.cpython-311.pyc new file mode 100644 index 00000000..c23cfc2b Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/x509_certificate_pipe.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/x509_crl.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/x509_crl.cpython-311.pyc new file mode 100644 index 00000000..bcc2de91 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/x509_crl.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/modules/__pycache__/x509_crl_info.cpython-311.pyc b/collection/community/crypto/plugins/modules/__pycache__/x509_crl_info.cpython-311.pyc new file mode 100644 index 00000000..d929c598 Binary files /dev/null and b/collection/community/crypto/plugins/modules/__pycache__/x509_crl_info.cpython-311.pyc differ diff --git a/collection/community/crypto/plugins/plugin_utils/__pycache__/action_module.cpython-311.pyc b/collection/community/crypto/plugins/plugin_utils/__pycache__/action_module.cpython-311.pyc new file mode 100644 index 00000000..68a2c469 Binary files /dev/null and b/collection/community/crypto/plugins/plugin_utils/__pycache__/action_module.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/integration/targets/get_certificate/files/__pycache__/process_certs.cpython-311.pyc b/collection/community/crypto/tests/integration/targets/get_certificate/files/__pycache__/process_certs.cpython-311.pyc new file mode 100644 index 00000000..4c20acb1 Binary files /dev/null and b/collection/community/crypto/tests/integration/targets/get_certificate/files/__pycache__/process_certs.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/integration/targets/prepare_jinja2_compat/filter_plugins/__pycache__/jinja_compatibility.cpython-311.pyc b/collection/community/crypto/tests/integration/targets/prepare_jinja2_compat/filter_plugins/__pycache__/jinja_compatibility.cpython-311.pyc new file mode 100644 index 00000000..44ea7d01 Binary files /dev/null and b/collection/community/crypto/tests/integration/targets/prepare_jinja2_compat/filter_plugins/__pycache__/jinja_compatibility.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/integration/targets/prepare_jinja2_compat/test_plugins/__pycache__/jinja_compatibility.cpython-311.pyc b/collection/community/crypto/tests/integration/targets/prepare_jinja2_compat/test_plugins/__pycache__/jinja_compatibility.cpython-311.pyc new file mode 100644 index 00000000..29344ded Binary files /dev/null and b/collection/community/crypto/tests/integration/targets/prepare_jinja2_compat/test_plugins/__pycache__/jinja_compatibility.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/integration/targets/setup_python_info/filter_plugins/__pycache__/version_filter.cpython-311.pyc b/collection/community/crypto/tests/integration/targets/setup_python_info/filter_plugins/__pycache__/version_filter.cpython-311.pyc new file mode 100644 index 00000000..2fb13e29 Binary files /dev/null and b/collection/community/crypto/tests/integration/targets/setup_python_info/filter_plugins/__pycache__/version_filter.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc b/collection/community/crypto/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc new file mode 100644 index 00000000..c563fab6 Binary files /dev/null and b/collection/community/crypto/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc b/collection/community/crypto/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc new file mode 100644 index 00000000..5d8f4669 Binary files /dev/null and b/collection/community/crypto/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/__pycache__/__init__.cpython-311.pyc b/collection/community/crypto/tests/unit/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..745fee17 Binary files /dev/null and b/collection/community/crypto/tests/unit/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/crypto/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..decdcb0f Binary files /dev/null and b/collection/community/crypto/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/community/crypto/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..335d2ca1 Binary files /dev/null and b/collection/community/crypto/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/crypto/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..dc9659a3 Binary files /dev/null and b/collection/community/crypto/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/crypto/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..339af27c Binary files /dev/null and b/collection/community/crypto/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1fa7886c Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/__init__.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..71f3d16d Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/backend_data.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/backend_data.cpython-311.pyc new file mode 100644 index 00000000..e4523d6e Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/backend_data.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_backend_cryptography.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_backend_cryptography.cpython-311.pyc new file mode 100644 index 00000000..bd806790 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_backend_cryptography.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_backend_openssl_cli.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_backend_openssl_cli.cpython-311.pyc new file mode 100644 index 00000000..c3a79b9f Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_backend_openssl_cli.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_challenges.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_challenges.cpython-311.pyc new file mode 100644 index 00000000..f215dbac Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_challenges.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_errors.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_errors.cpython-311.pyc new file mode 100644 index 00000000..8659d171 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_errors.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_io.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_io.cpython-311.pyc new file mode 100644 index 00000000..343b8d84 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_io.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_orders.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_orders.cpython-311.pyc new file mode 100644 index 00000000..25f210ee Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_orders.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_utils.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_utils.cpython-311.pyc new file mode 100644 index 00000000..155d83c5 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/acme/__pycache__/test_utils.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/__init__.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..a6d827d6 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/test_asn1.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/test_asn1.cpython-311.pyc new file mode 100644 index 00000000..977ace35 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/test_asn1.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/test_cryptography_support.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/test_cryptography_support.cpython-311.pyc new file mode 100644 index 00000000..a024c18d Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/crypto/__pycache__/test_cryptography_support.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_certificate.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_certificate.cpython-311.pyc new file mode 100644 index 00000000..cd2905ac Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_certificate.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_cryptography.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_cryptography.cpython-311.pyc new file mode 100644 index 00000000..b69bb63a Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_cryptography.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_utils.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_utils.cpython-311.pyc new file mode 100644 index 00000000..8d3376be Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/module_utils/openssh/__pycache__/test_utils.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..bb2626b9 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/modules/__pycache__/test_luks_device.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/modules/__pycache__/test_luks_device.cpython-311.pyc new file mode 100644 index 00000000..d48259a0 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/modules/__pycache__/test_luks_device.cpython-311.pyc differ diff --git a/collection/community/crypto/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc b/collection/community/crypto/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..ad2f93b8 Binary files /dev/null and b/collection/community/crypto/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/dns/__pycache__/update-docs-fragments.cpython-311.pyc b/collection/community/dns/__pycache__/update-docs-fragments.cpython-311.pyc new file mode 100644 index 00000000..57aec182 Binary files /dev/null and b/collection/community/dns/__pycache__/update-docs-fragments.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/hetzner.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/hetzner.cpython-311.pyc new file mode 100644 index 00000000..fd2951f1 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/hetzner.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/hosttech.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/hosttech.cpython-311.pyc new file mode 100644 index 00000000..8a0688f3 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/hosttech.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/inventory_records.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/inventory_records.cpython-311.pyc new file mode 100644 index 00000000..48f7bd38 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/inventory_records.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/module_record.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record.cpython-311.pyc new file mode 100644 index 00000000..d5b47c0c Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_info.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_info.cpython-311.pyc new file mode 100644 index 00000000..3d807376 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_set.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_set.cpython-311.pyc new file mode 100644 index 00000000..6943c0d7 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_set.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_set_info.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_set_info.cpython-311.pyc new file mode 100644 index 00000000..a54762d8 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_set_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_sets.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_sets.cpython-311.pyc new file mode 100644 index 00000000..5ced9325 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/module_record_sets.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/module_zone_info.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/module_zone_info.cpython-311.pyc new file mode 100644 index 00000000..3819e83c Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/module_zone_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/doc_fragments/__pycache__/options.cpython-311.pyc b/collection/community/dns/plugins/doc_fragments/__pycache__/options.cpython-311.pyc new file mode 100644 index 00000000..edea18e7 Binary files /dev/null and b/collection/community/dns/plugins/doc_fragments/__pycache__/options.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/filter/__pycache__/domain_suffix.cpython-311.pyc b/collection/community/dns/plugins/filter/__pycache__/domain_suffix.cpython-311.pyc new file mode 100644 index 00000000..866ef5af Binary files /dev/null and b/collection/community/dns/plugins/filter/__pycache__/domain_suffix.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/inventory/__pycache__/hetzner_dns_records.cpython-311.pyc b/collection/community/dns/plugins/inventory/__pycache__/hetzner_dns_records.cpython-311.pyc new file mode 100644 index 00000000..5461e27f Binary files /dev/null and b/collection/community/dns/plugins/inventory/__pycache__/hetzner_dns_records.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/inventory/__pycache__/hosttech_dns_records.cpython-311.pyc b/collection/community/dns/plugins/inventory/__pycache__/hosttech_dns_records.cpython-311.pyc new file mode 100644 index 00000000..f79259fb Binary files /dev/null and b/collection/community/dns/plugins/inventory/__pycache__/hosttech_dns_records.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/argspec.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/argspec.cpython-311.pyc new file mode 100644 index 00000000..d4e6e7f5 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/argspec.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/http.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/http.cpython-311.pyc new file mode 100644 index 00000000..809c688b Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/http.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/json_api_helper.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/json_api_helper.cpython-311.pyc new file mode 100644 index 00000000..18318271 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/json_api_helper.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/names.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/names.cpython-311.pyc new file mode 100644 index 00000000..d6ce09d9 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/names.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/options.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/options.cpython-311.pyc new file mode 100644 index 00000000..cd3cf1b5 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/options.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/provider.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/provider.cpython-311.pyc new file mode 100644 index 00000000..74e74ae8 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/provider.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/record.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/record.cpython-311.pyc new file mode 100644 index 00000000..319e3cb1 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/record.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/resolver.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/resolver.cpython-311.pyc new file mode 100644 index 00000000..5af37c2a Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/resolver.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/wsdl.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/wsdl.cpython-311.pyc new file mode 100644 index 00000000..5fb33466 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/wsdl.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/zone.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/zone.cpython-311.pyc new file mode 100644 index 00000000..058d92f8 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/zone.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/zone_record_api.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/zone_record_api.cpython-311.pyc new file mode 100644 index 00000000..696c3c80 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/zone_record_api.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/__pycache__/zone_record_helpers.cpython-311.pyc b/collection/community/dns/plugins/module_utils/__pycache__/zone_record_helpers.cpython-311.pyc new file mode 100644 index 00000000..86894dfd Binary files /dev/null and b/collection/community/dns/plugins/module_utils/__pycache__/zone_record_helpers.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/conversion/__pycache__/base.cpython-311.pyc b/collection/community/dns/plugins/module_utils/conversion/__pycache__/base.cpython-311.pyc new file mode 100644 index 00000000..fbf42736 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/conversion/__pycache__/base.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/conversion/__pycache__/converter.cpython-311.pyc b/collection/community/dns/plugins/module_utils/conversion/__pycache__/converter.cpython-311.pyc new file mode 100644 index 00000000..05cdc851 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/conversion/__pycache__/converter.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/conversion/__pycache__/txt.cpython-311.pyc b/collection/community/dns/plugins/module_utils/conversion/__pycache__/txt.cpython-311.pyc new file mode 100644 index 00000000..7ad26f95 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/conversion/__pycache__/txt.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/hetzner/__pycache__/api.cpython-311.pyc b/collection/community/dns/plugins/module_utils/hetzner/__pycache__/api.cpython-311.pyc new file mode 100644 index 00000000..c885b18f Binary files /dev/null and b/collection/community/dns/plugins/module_utils/hetzner/__pycache__/api.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/hosttech/__pycache__/api.cpython-311.pyc b/collection/community/dns/plugins/module_utils/hosttech/__pycache__/api.cpython-311.pyc new file mode 100644 index 00000000..4f0609bf Binary files /dev/null and b/collection/community/dns/plugins/module_utils/hosttech/__pycache__/api.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/hosttech/__pycache__/json_api.cpython-311.pyc b/collection/community/dns/plugins/module_utils/hosttech/__pycache__/json_api.cpython-311.pyc new file mode 100644 index 00000000..05848f1b Binary files /dev/null and b/collection/community/dns/plugins/module_utils/hosttech/__pycache__/json_api.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/hosttech/__pycache__/wsdl_api.cpython-311.pyc b/collection/community/dns/plugins/module_utils/hosttech/__pycache__/wsdl_api.cpython-311.pyc new file mode 100644 index 00000000..c6fcb9b9 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/hosttech/__pycache__/wsdl_api.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/_utils.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/_utils.cpython-311.pyc new file mode 100644 index 00000000..18413e45 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/_utils.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/record.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/record.cpython-311.pyc new file mode 100644 index 00000000..bcd76454 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/record.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/record_info.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/record_info.cpython-311.pyc new file mode 100644 index 00000000..c67d9a5f Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/record_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/record_set.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/record_set.cpython-311.pyc new file mode 100644 index 00000000..f553c109 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/record_set.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/record_set_info.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/record_set_info.cpython-311.pyc new file mode 100644 index 00000000..dfb50c74 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/record_set_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/record_sets.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/record_sets.cpython-311.pyc new file mode 100644 index 00000000..09c0817e Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/record_sets.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/module_utils/module/__pycache__/zone_info.cpython-311.pyc b/collection/community/dns/plugins/module_utils/module/__pycache__/zone_info.cpython-311.pyc new file mode 100644 index 00000000..79d76d57 Binary files /dev/null and b/collection/community/dns/plugins/module_utils/module/__pycache__/zone_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record.cpython-311.pyc new file mode 100644 index 00000000..b135d002 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_info.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_info.cpython-311.pyc new file mode 100644 index 00000000..121f20f2 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_set.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_set.cpython-311.pyc new file mode 100644 index 00000000..edd0180e Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_set.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_set_info.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_set_info.cpython-311.pyc new file mode 100644 index 00000000..d46dd098 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_set_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_sets.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_sets.cpython-311.pyc new file mode 100644 index 00000000..b2bfbcf7 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_record_sets.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_zone_info.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_zone_info.cpython-311.pyc new file mode 100644 index 00000000..99674af4 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hetzner_dns_zone_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record.cpython-311.pyc new file mode 100644 index 00000000..72067648 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_info.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_info.cpython-311.pyc new file mode 100644 index 00000000..aed18be6 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_set.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_set.cpython-311.pyc new file mode 100644 index 00000000..feedd79e Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_set.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_set_info.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_set_info.cpython-311.pyc new file mode 100644 index 00000000..184b79c4 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_set_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_sets.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_sets.cpython-311.pyc new file mode 100644 index 00000000..df8ef649 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_record_sets.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_records.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_records.cpython-311.pyc new file mode 100644 index 00000000..cf1fd350 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_records.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_zone_info.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_zone_info.cpython-311.pyc new file mode 100644 index 00000000..0cf37512 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/hosttech_dns_zone_info.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/modules/__pycache__/wait_for_txt.cpython-311.pyc b/collection/community/dns/plugins/modules/__pycache__/wait_for_txt.cpython-311.pyc new file mode 100644 index 00000000..16a2b621 Binary files /dev/null and b/collection/community/dns/plugins/modules/__pycache__/wait_for_txt.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/plugin_utils/__pycache__/public_suffix.cpython-311.pyc b/collection/community/dns/plugins/plugin_utils/__pycache__/public_suffix.cpython-311.pyc new file mode 100644 index 00000000..9b8b7bab Binary files /dev/null and b/collection/community/dns/plugins/plugin_utils/__pycache__/public_suffix.cpython-311.pyc differ diff --git a/collection/community/dns/plugins/plugin_utils/inventory/__pycache__/records.cpython-311.pyc b/collection/community/dns/plugins/plugin_utils/inventory/__pycache__/records.cpython-311.pyc new file mode 100644 index 00000000..fe9ef574 Binary files /dev/null and b/collection/community/dns/plugins/plugin_utils/inventory/__pycache__/records.cpython-311.pyc differ diff --git a/collection/community/dns/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc b/collection/community/dns/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc new file mode 100644 index 00000000..e02dc54b Binary files /dev/null and b/collection/community/dns/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc differ diff --git a/collection/community/dns/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc b/collection/community/dns/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc new file mode 100644 index 00000000..36bc693e Binary files /dev/null and b/collection/community/dns/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc differ diff --git a/collection/community/dns/tests/sanity/extra/__pycache__/update-docs-fragments.cpython-311.pyc b/collection/community/dns/tests/sanity/extra/__pycache__/update-docs-fragments.cpython-311.pyc new file mode 100644 index 00000000..b2f1b38a Binary files /dev/null and b/collection/community/dns/tests/sanity/extra/__pycache__/update-docs-fragments.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/inventory/__pycache__/test_hetzner_dns_records.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/inventory/__pycache__/test_hetzner_dns_records.cpython-311.pyc new file mode 100644 index 00000000..806fb39f Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/inventory/__pycache__/test_hetzner_dns_records.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/inventory/__pycache__/test_hosttech_dns_records.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/inventory/__pycache__/test_hosttech_dns_records.cpython-311.pyc new file mode 100644 index 00000000..ec504555 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/inventory/__pycache__/test_hosttech_dns_records.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/helper.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/helper.cpython-311.pyc new file mode 100644 index 00000000..ed8b99ad Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/helper.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/resolver_helper.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/resolver_helper.cpython-311.pyc new file mode 100644 index 00000000..7804a3d3 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/resolver_helper.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_argspec.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_argspec.cpython-311.pyc new file mode 100644 index 00000000..610f11c1 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_argspec.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_json_api_helper.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_json_api_helper.cpython-311.pyc new file mode 100644 index 00000000..dcb96f33 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_json_api_helper.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_names.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_names.cpython-311.pyc new file mode 100644 index 00000000..75a41e4a Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_names.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_record.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_record.cpython-311.pyc new file mode 100644 index 00000000..5eac5a01 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_record.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_resolver.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_resolver.cpython-311.pyc new file mode 100644 index 00000000..a0432da8 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_resolver.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_wsdl.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_wsdl.cpython-311.pyc new file mode 100644 index 00000000..cb1f79a9 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_wsdl.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_zone.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_zone.cpython-311.pyc new file mode 100644 index 00000000..fac8196f Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/__pycache__/test_zone.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/conversion/__pycache__/test_converter.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/conversion/__pycache__/test_converter.cpython-311.pyc new file mode 100644 index 00000000..1d7dac98 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/conversion/__pycache__/test_converter.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/conversion/__pycache__/test_txt.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/conversion/__pycache__/test_txt.cpython-311.pyc new file mode 100644 index 00000000..47c50a41 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/conversion/__pycache__/test_txt.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/hetzner/__pycache__/test_api.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/hetzner/__pycache__/test_api.cpython-311.pyc new file mode 100644 index 00000000..effdaafd Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/hetzner/__pycache__/test_api.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/hosttech/__pycache__/test_api.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/hosttech/__pycache__/test_api.cpython-311.pyc new file mode 100644 index 00000000..8174227a Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/hosttech/__pycache__/test_api.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/hosttech/__pycache__/test_json_api.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/hosttech/__pycache__/test_json_api.cpython-311.pyc new file mode 100644 index 00000000..3e89b279 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/hosttech/__pycache__/test_json_api.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/module_utils/module/__pycache__/test__utils.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/module_utils/module/__pycache__/test__utils.cpython-311.pyc new file mode 100644 index 00000000..79a1884f Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/module_utils/module/__pycache__/test__utils.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/hetzner.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/hetzner.cpython-311.pyc new file mode 100644 index 00000000..8d93cf13 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/hetzner.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/hosttech.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/hosttech.cpython-311.pyc new file mode 100644 index 00000000..5133a492 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/hosttech.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record.cpython-311.pyc new file mode 100644 index 00000000..0967bbdb Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_info.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_info.cpython-311.pyc new file mode 100644 index 00000000..737e6a4f Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_info.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_set.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_set.cpython-311.pyc new file mode 100644 index 00000000..9fe46f60 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_set.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_set_info.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_set_info.cpython-311.pyc new file mode 100644 index 00000000..52449f5f Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_set_info.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_sets.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_sets.cpython-311.pyc new file mode 100644 index 00000000..fdcd28c7 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_record_sets.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_zone_info.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_zone_info.cpython-311.pyc new file mode 100644 index 00000000..b7f41850 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hetzner_dns_zone_info.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record.cpython-311.pyc new file mode 100644 index 00000000..53731887 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_info.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_info.cpython-311.pyc new file mode 100644 index 00000000..8654a59b Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_info.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_set.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_set.cpython-311.pyc new file mode 100644 index 00000000..923e1787 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_set.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_set_info.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_set_info.cpython-311.pyc new file mode 100644 index 00000000..698bd912 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_set_info.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_sets.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_sets.cpython-311.pyc new file mode 100644 index 00000000..464cee5a Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_record_sets.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_zone_info.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_zone_info.cpython-311.pyc new file mode 100644 index 00000000..b95c9c68 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_hosttech_dns_zone_info.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_wait_for_txt.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_wait_for_txt.cpython-311.pyc new file mode 100644 index 00000000..1b360bd0 Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/modules/__pycache__/test_wait_for_txt.cpython-311.pyc differ diff --git a/collection/community/dns/tests/unit/plugins/plugin_utils/__pycache__/test_public_suffix.cpython-311.pyc b/collection/community/dns/tests/unit/plugins/plugin_utils/__pycache__/test_public_suffix.cpython-311.pyc new file mode 100644 index 00000000..72e9f09a Binary files /dev/null and b/collection/community/dns/tests/unit/plugins/plugin_utils/__pycache__/test_public_suffix.cpython-311.pyc differ diff --git a/collection/community/docker/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc b/collection/community/docker/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc new file mode 100644 index 00000000..41662246 Binary files /dev/null and b/collection/community/docker/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc differ diff --git a/collection/community/docker/.azure-pipelines/scripts/__pycache__/publish-codecov.cpython-311.pyc b/collection/community/docker/.azure-pipelines/scripts/__pycache__/publish-codecov.cpython-311.pyc new file mode 100644 index 00000000..80950c97 Binary files /dev/null and b/collection/community/docker/.azure-pipelines/scripts/__pycache__/publish-codecov.cpython-311.pyc differ diff --git a/collection/community/docker/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc b/collection/community/docker/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc new file mode 100644 index 00000000..31b17254 Binary files /dev/null and b/collection/community/docker/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/connection/__pycache__/docker.cpython-311.pyc b/collection/community/docker/plugins/connection/__pycache__/docker.cpython-311.pyc new file mode 100644 index 00000000..49d6f083 Binary files /dev/null and b/collection/community/docker/plugins/connection/__pycache__/docker.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/connection/__pycache__/docker_api.cpython-311.pyc b/collection/community/docker/plugins/connection/__pycache__/docker_api.cpython-311.pyc new file mode 100644 index 00000000..c93d7ff1 Binary files /dev/null and b/collection/community/docker/plugins/connection/__pycache__/docker_api.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/connection/__pycache__/nsenter.cpython-311.pyc b/collection/community/docker/plugins/connection/__pycache__/nsenter.cpython-311.pyc new file mode 100644 index 00000000..b85dbb8a Binary files /dev/null and b/collection/community/docker/plugins/connection/__pycache__/nsenter.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/doc_fragments/__pycache__/docker.cpython-311.pyc b/collection/community/docker/plugins/doc_fragments/__pycache__/docker.cpython-311.pyc new file mode 100644 index 00000000..50bc45d5 Binary files /dev/null and b/collection/community/docker/plugins/doc_fragments/__pycache__/docker.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/inventory/__pycache__/docker_containers.cpython-311.pyc b/collection/community/docker/plugins/inventory/__pycache__/docker_containers.cpython-311.pyc new file mode 100644 index 00000000..62152cc9 Binary files /dev/null and b/collection/community/docker/plugins/inventory/__pycache__/docker_containers.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/inventory/__pycache__/docker_machine.cpython-311.pyc b/collection/community/docker/plugins/inventory/__pycache__/docker_machine.cpython-311.pyc new file mode 100644 index 00000000..6534e100 Binary files /dev/null and b/collection/community/docker/plugins/inventory/__pycache__/docker_machine.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/inventory/__pycache__/docker_swarm.cpython-311.pyc b/collection/community/docker/plugins/inventory/__pycache__/docker_swarm.cpython-311.pyc new file mode 100644 index 00000000..ccaad31f Binary files /dev/null and b/collection/community/docker/plugins/inventory/__pycache__/docker_swarm.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..e60ae419 Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/_version.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/_version.cpython-311.pyc new file mode 100644 index 00000000..e3f53df0 Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/_version.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/common.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..4eaeda34 Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/common.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/socket_handler.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/socket_handler.cpython-311.pyc new file mode 100644 index 00000000..b4076f7b Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/socket_handler.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/socket_helper.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/socket_helper.cpython-311.pyc new file mode 100644 index 00000000..a99ceaab Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/socket_helper.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/swarm.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/swarm.cpython-311.pyc new file mode 100644 index 00000000..f9c30d1a Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/swarm.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/module_utils/__pycache__/version.cpython-311.pyc b/collection/community/docker/plugins/module_utils/__pycache__/version.cpython-311.pyc new file mode 100644 index 00000000..d3c1de49 Binary files /dev/null and b/collection/community/docker/plugins/module_utils/__pycache__/version.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/current_container_facts.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/current_container_facts.cpython-311.pyc new file mode 100644 index 00000000..b03cdfa5 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/current_container_facts.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_compose.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_compose.cpython-311.pyc new file mode 100644 index 00000000..ad67e230 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_compose.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_config.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_config.cpython-311.pyc new file mode 100644 index 00000000..e0cea06d Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_config.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_container.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_container.cpython-311.pyc new file mode 100644 index 00000000..874e99fc Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_container.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_container_exec.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_container_exec.cpython-311.pyc new file mode 100644 index 00000000..a8f07d52 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_container_exec.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_container_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_container_info.cpython-311.pyc new file mode 100644 index 00000000..ae85fdc7 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_container_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_host_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_host_info.cpython-311.pyc new file mode 100644 index 00000000..b83e6c48 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_host_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_image.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_image.cpython-311.pyc new file mode 100644 index 00000000..7961edf5 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_image.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_image_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_image_info.cpython-311.pyc new file mode 100644 index 00000000..d6196122 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_image_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_image_load.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_image_load.cpython-311.pyc new file mode 100644 index 00000000..84905295 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_image_load.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_login.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_login.cpython-311.pyc new file mode 100644 index 00000000..94ce7284 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_login.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_network.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_network.cpython-311.pyc new file mode 100644 index 00000000..453ea8d7 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_network.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_network_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_network_info.cpython-311.pyc new file mode 100644 index 00000000..24d93917 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_network_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_node.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_node.cpython-311.pyc new file mode 100644 index 00000000..4835a207 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_node.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_node_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_node_info.cpython-311.pyc new file mode 100644 index 00000000..212b11ac Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_node_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_plugin.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_plugin.cpython-311.pyc new file mode 100644 index 00000000..cf15388f Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_plugin.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_prune.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_prune.cpython-311.pyc new file mode 100644 index 00000000..9a661f2c Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_prune.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_secret.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_secret.cpython-311.pyc new file mode 100644 index 00000000..d951a264 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_secret.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_stack.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_stack.cpython-311.pyc new file mode 100644 index 00000000..c20cf274 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_stack.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_stack_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_stack_info.cpython-311.pyc new file mode 100644 index 00000000..aa187e60 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_stack_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_stack_task_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_stack_task_info.cpython-311.pyc new file mode 100644 index 00000000..10cc3ec5 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_stack_task_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_swarm.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_swarm.cpython-311.pyc new file mode 100644 index 00000000..633c0db4 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_swarm.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_swarm_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_swarm_info.cpython-311.pyc new file mode 100644 index 00000000..71494d85 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_swarm_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_swarm_service.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_swarm_service.cpython-311.pyc new file mode 100644 index 00000000..00a7665d Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_swarm_service.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_swarm_service_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_swarm_service_info.cpython-311.pyc new file mode 100644 index 00000000..f53a6827 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_swarm_service_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_volume.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_volume.cpython-311.pyc new file mode 100644 index 00000000..d93b56ce Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_volume.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/modules/__pycache__/docker_volume_info.cpython-311.pyc b/collection/community/docker/plugins/modules/__pycache__/docker_volume_info.cpython-311.pyc new file mode 100644 index 00000000..613d0370 Binary files /dev/null and b/collection/community/docker/plugins/modules/__pycache__/docker_volume_info.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/plugin_utils/__pycache__/common.cpython-311.pyc b/collection/community/docker/plugins/plugin_utils/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..b89d2886 Binary files /dev/null and b/collection/community/docker/plugins/plugin_utils/__pycache__/common.cpython-311.pyc differ diff --git a/collection/community/docker/plugins/plugin_utils/__pycache__/socket_handler.cpython-311.pyc b/collection/community/docker/plugins/plugin_utils/__pycache__/socket_handler.cpython-311.pyc new file mode 100644 index 00000000..03835400 Binary files /dev/null and b/collection/community/docker/plugins/plugin_utils/__pycache__/socket_handler.cpython-311.pyc differ diff --git a/collection/community/docker/tests/integration/targets/docker_container/filter_plugins/__pycache__/ipaddr_tools.cpython-311.pyc b/collection/community/docker/tests/integration/targets/docker_container/filter_plugins/__pycache__/ipaddr_tools.cpython-311.pyc new file mode 100644 index 00000000..68901735 Binary files /dev/null and b/collection/community/docker/tests/integration/targets/docker_container/filter_plugins/__pycache__/ipaddr_tools.cpython-311.pyc differ diff --git a/collection/community/docker/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc b/collection/community/docker/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc new file mode 100644 index 00000000..6310cbf7 Binary files /dev/null and b/collection/community/docker/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc differ diff --git a/collection/community/docker/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc b/collection/community/docker/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc new file mode 100644 index 00000000..ccb5c7fe Binary files /dev/null and b/collection/community/docker/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/docker/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..b486da31 Binary files /dev/null and b/collection/community/docker/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/community/docker/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..aca22429 Binary files /dev/null and b/collection/community/docker/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/docker/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..1ace947b Binary files /dev/null and b/collection/community/docker/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/docker/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..1960406c Binary files /dev/null and b/collection/community/docker/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/connection/__pycache__/test_docker.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/connection/__pycache__/test_docker.cpython-311.pyc new file mode 100644 index 00000000..38cec2a8 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/connection/__pycache__/test_docker.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/inventory/__pycache__/test_docker_containers.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/inventory/__pycache__/test_docker_containers.cpython-311.pyc new file mode 100644 index 00000000..596743a9 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/inventory/__pycache__/test_docker_containers.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..9dadee3c Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/module_utils/__pycache__/test_common.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/module_utils/__pycache__/test_common.cpython-311.pyc new file mode 100644 index 00000000..0c8e01f3 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/module_utils/__pycache__/test_common.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..b6306b58 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/modules/__pycache__/conftest.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/modules/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..4992cd79 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/modules/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_container.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_container.cpython-311.pyc new file mode 100644 index 00000000..1638266f Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_container.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_network.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_network.cpython-311.pyc new file mode 100644 index 00000000..ec07efbd Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_network.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_swarm_service.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_swarm_service.cpython-311.pyc new file mode 100644 index 00000000..d144d023 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_swarm_service.cpython-311.pyc differ diff --git a/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_volume.cpython-311.pyc b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_volume.cpython-311.pyc new file mode 100644 index 00000000..460864f8 Binary files /dev/null and b/collection/community/docker/tests/unit/plugins/modules/__pycache__/test_docker_volume.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/httpapi/__pycache__/fortianalyzer.cpython-311.pyc b/collection/community/fortios/plugins/httpapi/__pycache__/fortianalyzer.cpython-311.pyc new file mode 100644 index 00000000..1b7fc8ef Binary files /dev/null and b/collection/community/fortios/plugins/httpapi/__pycache__/fortianalyzer.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/httpapi/__pycache__/fortimanager.cpython-311.pyc b/collection/community/fortios/plugins/httpapi/__pycache__/fortimanager.cpython-311.pyc new file mode 100644 index 00000000..1aee5844 Binary files /dev/null and b/collection/community/fortios/plugins/httpapi/__pycache__/fortimanager.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/module_utils/fortianalyzer/__pycache__/common.cpython-311.pyc b/collection/community/fortios/plugins/module_utils/fortianalyzer/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..bdcd75ed Binary files /dev/null and b/collection/community/fortios/plugins/module_utils/fortianalyzer/__pycache__/common.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/module_utils/fortianalyzer/__pycache__/fortianalyzer.cpython-311.pyc b/collection/community/fortios/plugins/module_utils/fortianalyzer/__pycache__/fortianalyzer.cpython-311.pyc new file mode 100644 index 00000000..5200d02a Binary files /dev/null and b/collection/community/fortios/plugins/module_utils/fortianalyzer/__pycache__/fortianalyzer.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/faz_device.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/faz_device.cpython-311.pyc new file mode 100644 index 00000000..2c9dd7a5 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/faz_device.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_device.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device.cpython-311.pyc new file mode 100644 index 00000000..28b3d474 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_config.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_config.cpython-311.pyc new file mode 100644 index 00000000..01045a0e Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_config.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_group.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_group.cpython-311.pyc new file mode 100644 index 00000000..c0f09f33 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_group.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_provision_template.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_provision_template.cpython-311.pyc new file mode 100644 index 00000000..4cfd28cf Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_device_provision_template.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_address.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_address.cpython-311.pyc new file mode 100644 index 00000000..995fa42f Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_address.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_ippool.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_ippool.cpython-311.pyc new file mode 100644 index 00000000..872634c1 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_ippool.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_ippool6.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_ippool6.cpython-311.pyc new file mode 100644 index 00000000..07845b1b Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_ippool6.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_service.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_service.cpython-311.pyc new file mode 100644 index 00000000..0a8e536a Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_service.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_vip.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_vip.cpython-311.pyc new file mode 100644 index 00000000..7d62e9da Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwobj_vip.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwpol_ipv4.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwpol_ipv4.cpython-311.pyc new file mode 100644 index 00000000..81267124 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwpol_ipv4.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwpol_package.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwpol_package.cpython-311.pyc new file mode 100644 index 00000000..98107f54 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_fwpol_package.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_ha.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_ha.cpython-311.pyc new file mode 100644 index 00000000..f9b46425 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_ha.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_provisioning.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_provisioning.cpython-311.pyc new file mode 100644 index 00000000..55af3154 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_provisioning.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_query.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_query.cpython-311.pyc new file mode 100644 index 00000000..0066b650 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_query.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_script.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_script.cpython-311.pyc new file mode 100644 index 00000000..786b5bec Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_script.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_appctrl.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_appctrl.cpython-311.pyc new file mode 100644 index 00000000..7df4c428 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_appctrl.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_av.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_av.cpython-311.pyc new file mode 100644 index 00000000..b0adb69f Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_av.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_dns.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_dns.cpython-311.pyc new file mode 100644 index 00000000..1756230a Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_dns.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_ips.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_ips.cpython-311.pyc new file mode 100644 index 00000000..e9facd5e Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_ips.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_profile_group.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_profile_group.cpython-311.pyc new file mode 100644 index 00000000..585636ca Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_profile_group.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_proxy.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_proxy.cpython-311.pyc new file mode 100644 index 00000000..c4fd1a23 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_proxy.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_spam.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_spam.cpython-311.pyc new file mode 100644 index 00000000..7ce15d6c Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_spam.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_ssl_ssh.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_ssl_ssh.cpython-311.pyc new file mode 100644 index 00000000..300b70cf Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_ssl_ssh.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_voip.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_voip.cpython-311.pyc new file mode 100644 index 00000000..8ab7a382 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_voip.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_waf.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_waf.cpython-311.pyc new file mode 100644 index 00000000..1942451e Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_waf.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_wanopt.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_wanopt.cpython-311.pyc new file mode 100644 index 00000000..9181b834 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_wanopt.cpython-311.pyc differ diff --git a/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_web.cpython-311.pyc b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_web.cpython-311.pyc new file mode 100644 index 00000000..81ad2ac5 Binary files /dev/null and b/collection/community/fortios/plugins/modules/__pycache__/fmgr_secprof_web.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/fortios/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..4be7416d Binary files /dev/null and b/collection/community/fortios/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/fortios/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..dab08c3f Binary files /dev/null and b/collection/community/fortios/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/fortios/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..b2601299 Binary files /dev/null and b/collection/community/fortios/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/fortimanager_module.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/fortimanager_module.cpython-311.pyc new file mode 100644 index 00000000..5930a112 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/fortimanager_module.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device.cpython-311.pyc new file mode 100644 index 00000000..7e3bb473 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_config.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_config.cpython-311.pyc new file mode 100644 index 00000000..ce069a31 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_config.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_group.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_group.cpython-311.pyc new file mode 100644 index 00000000..f715b4e7 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_group.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_provision_template.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_provision_template.cpython-311.pyc new file mode 100644 index 00000000..f648953f Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_device_provision_template.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_address.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_address.cpython-311.pyc new file mode 100644 index 00000000..232fa397 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_address.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_ippool.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_ippool.cpython-311.pyc new file mode 100644 index 00000000..1524ec98 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_ippool.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_ippool6.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_ippool6.cpython-311.pyc new file mode 100644 index 00000000..d685d452 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_ippool6.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_service.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_service.cpython-311.pyc new file mode 100644 index 00000000..a4e252aa Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_service.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_vip.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_vip.cpython-311.pyc new file mode 100644 index 00000000..dafb0d1b Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwobj_vip.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwpol_ipv4.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwpol_ipv4.cpython-311.pyc new file mode 100644 index 00000000..0af88157 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwpol_ipv4.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwpol_package.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwpol_package.cpython-311.pyc new file mode 100644 index 00000000..169d5805 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_fwpol_package.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_ha.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_ha.cpython-311.pyc new file mode 100644 index 00000000..30a3a06a Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_ha.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_provisioning.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_provisioning.cpython-311.pyc new file mode 100644 index 00000000..2e04abdc Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_provisioning.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_query.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_query.cpython-311.pyc new file mode 100644 index 00000000..7367d24e Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_query.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_script.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_script.cpython-311.pyc new file mode 100644 index 00000000..cb6b333a Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_script.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_appctrl.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_appctrl.cpython-311.pyc new file mode 100644 index 00000000..68e859dc Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_appctrl.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_av.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_av.cpython-311.pyc new file mode 100644 index 00000000..7ee01057 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_av.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_dns.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_dns.cpython-311.pyc new file mode 100644 index 00000000..730ff8c3 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_dns.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_ips.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_ips.cpython-311.pyc new file mode 100644 index 00000000..4c45c3ea Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_ips.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_profile_group.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_profile_group.cpython-311.pyc new file mode 100644 index 00000000..94c1af73 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_profile_group.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_proxy.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_proxy.cpython-311.pyc new file mode 100644 index 00000000..f0167bad Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_proxy.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_spam.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_spam.cpython-311.pyc new file mode 100644 index 00000000..7fcdb66f Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_spam.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_ssl_ssh.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_ssl_ssh.cpython-311.pyc new file mode 100644 index 00000000..b2624b59 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_ssl_ssh.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_voip.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_voip.cpython-311.pyc new file mode 100644 index 00000000..b80bb753 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_voip.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_waf.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_waf.cpython-311.pyc new file mode 100644 index 00000000..c7811ae2 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_waf.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_wanopt.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_wanopt.cpython-311.pyc new file mode 100644 index 00000000..0e57d60d Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_wanopt.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_web.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_web.cpython-311.pyc new file mode 100644 index 00000000..f47abc27 Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/test_fmgr_secprof_web.cpython-311.pyc differ diff --git a/collection/community/fortios/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..67cca4fd Binary files /dev/null and b/collection/community/fortios/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll/galaxy.yml b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll/galaxy.yml new file mode 100644 index 00000000..f66a8af4 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll/galaxy.yml @@ -0,0 +1,7 @@ +namespace: testns +name: testcoll +version: 0.0.1 +authors: + - Ansible (https://github.com/ansible) +description: null +tags: [community] diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll/plugins/modules/collection_module.py b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll/plugins/modules/collection_module.py new file mode 100644 index 00000000..8db51c39 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll/plugins/modules/collection_module.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# (c) 2021, Felix Fontein +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +DOCUMENTATION = ''' +--- +module: collection_module +short_description: Test collection module +description: + - This is a test module in a local collection. +author: "Felix Fontein (@felixfontein)" +options: {} +''' + +EXAMPLES = ''' # ''' + +RETURN = ''' # ''' + +from ansible.module_utils.basic import AnsibleModule + + +def main(): + AnsibleModule(argument_spec={}).exit_json() + + +if __name__ == '__main__': + main() diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/FILES.json b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/FILES.json new file mode 100644 index 00000000..99eb4c0b --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/FILES.json @@ -0,0 +1,40 @@ +{ + "files": [ + { + "name": ".", + "ftype": "dir", + "chksum_type": null, + "chksum_sha256": null, + "format": 1 + }, + { + "name": "README.md", + "ftype": "file", + "chksum_type": "sha256", + "chksum_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "format": 1 + }, + { + "name": "plugins", + "ftype": "dir", + "chksum_type": null, + "chksum_sha256": null, + "format": 1 + }, + { + "name": "plugins/modules", + "ftype": "dir", + "chksum_type": null, + "chksum_sha256": null, + "format": 1 + }, + { + "name": "plugins/modules/collection_module.py", + "ftype": "file", + "chksum_type": "sha256", + "chksum_sha256": "c3f0114d080c409c58c8846be8da7b91137b38eaf2d24f72a4a61a303f925f4d", + "format": 1 + } + ], + "format": 1 +} \ No newline at end of file diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/MANIFEST.json b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/MANIFEST.json new file mode 100644 index 00000000..f1d009a7 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/MANIFEST.json @@ -0,0 +1,30 @@ +{ + "collection_info": { + "namespace": "testns", + "name": "testcoll_mf", + "version": "0.0.1", + "authors": [ + "Ansible (https://github.com/ansible)" + ], + "readme": "README.md", + "tags": [ + "community" + ], + "description": null, + "license": [], + "license_file": null, + "dependencies": {}, + "repository": null, + "documentation": null, + "homepage": null, + "issues": null + }, + "file_manifest_file": { + "name": "FILES.json", + "ftype": "file", + "chksum_type": "sha256", + "chksum_sha256": "025818f18fcae5c9f78d778ae6e246ecffed6d56a886ffbc145cb66d54e9951e", + "format": 1 + }, + "format": 1 +} \ No newline at end of file diff --git a/.gitmodules b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/README.md similarity index 100% rename from .gitmodules rename to collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/README.md diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/plugins/modules/collection_module.py b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/plugins/modules/collection_module.py new file mode 100644 index 00000000..8db51c39 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_mf/plugins/modules/collection_module.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# (c) 2021, Felix Fontein +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +DOCUMENTATION = ''' +--- +module: collection_module +short_description: Test collection module +description: + - This is a test module in a local collection. +author: "Felix Fontein (@felixfontein)" +options: {} +''' + +EXAMPLES = ''' # ''' + +RETURN = ''' # ''' + +from ansible.module_utils.basic import AnsibleModule + + +def main(): + AnsibleModule(argument_spec={}).exit_json() + + +if __name__ == '__main__': + main() diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nothing/plugins/modules/collection_module.py b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nothing/plugins/modules/collection_module.py new file mode 100644 index 00000000..8db51c39 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nothing/plugins/modules/collection_module.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# (c) 2021, Felix Fontein +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +DOCUMENTATION = ''' +--- +module: collection_module +short_description: Test collection module +description: + - This is a test module in a local collection. +author: "Felix Fontein (@felixfontein)" +options: {} +''' + +EXAMPLES = ''' # ''' + +RETURN = ''' # ''' + +from ansible.module_utils.basic import AnsibleModule + + +def main(): + AnsibleModule(argument_spec={}).exit_json() + + +if __name__ == '__main__': + main() diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nv/galaxy.yml b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nv/galaxy.yml new file mode 100644 index 00000000..599a47e6 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nv/galaxy.yml @@ -0,0 +1,6 @@ +namespace: testns +name: testcoll_nv +authors: + - Ansible (https://github.com/ansible) +description: null +tags: [community] diff --git a/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nv/plugins/modules/collection_module.py b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nv/plugins/modules/collection_module.py new file mode 100644 index 00000000..8db51c39 --- /dev/null +++ b/collection/community/general/tests/integration/targets/lookup_collection_version/collections/ansible_collections/testns/testcoll_nv/plugins/modules/collection_module.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# (c) 2021, Felix Fontein +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +DOCUMENTATION = ''' +--- +module: collection_module +short_description: Test collection module +description: + - This is a test module in a local collection. +author: "Felix Fontein (@felixfontein)" +options: {} +''' + +EXAMPLES = ''' # ''' + +RETURN = ''' # ''' + +from ansible.module_utils.basic import AnsibleModule + + +def main(): + AnsibleModule(argument_spec={}).exit_json() + + +if __name__ == '__main__': + main() diff --git a/collection/community/general/tests/integration/targets/test_a_module/collections/ansible_collections/testns/testcoll/galaxy.yml b/collection/community/general/tests/integration/targets/test_a_module/collections/ansible_collections/testns/testcoll/galaxy.yml new file mode 100644 index 00000000..f66a8af4 --- /dev/null +++ b/collection/community/general/tests/integration/targets/test_a_module/collections/ansible_collections/testns/testcoll/galaxy.yml @@ -0,0 +1,7 @@ +namespace: testns +name: testcoll +version: 0.0.1 +authors: + - Ansible (https://github.com/ansible) +description: null +tags: [community] diff --git a/collection/community/general/tests/integration/targets/test_a_module/collections/ansible_collections/testns/testcoll/plugins/modules/collection_module.py b/collection/community/general/tests/integration/targets/test_a_module/collections/ansible_collections/testns/testcoll/plugins/modules/collection_module.py new file mode 100644 index 00000000..8db51c39 --- /dev/null +++ b/collection/community/general/tests/integration/targets/test_a_module/collections/ansible_collections/testns/testcoll/plugins/modules/collection_module.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# (c) 2021, Felix Fontein +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +DOCUMENTATION = ''' +--- +module: collection_module +short_description: Test collection module +description: + - This is a test module in a local collection. +author: "Felix Fontein (@felixfontein)" +options: {} +''' + +EXAMPLES = ''' # ''' + +RETURN = ''' # ''' + +from ansible.module_utils.basic import AnsibleModule + + +def main(): + AnsibleModule(argument_spec={}).exit_json() + + +if __name__ == '__main__': + main() diff --git a/collection/community/google/plugins/doc_fragments/__pycache__/_gcp.cpython-311.pyc b/collection/community/google/plugins/doc_fragments/__pycache__/_gcp.cpython-311.pyc new file mode 100644 index 00000000..5854507f Binary files /dev/null and b/collection/community/google/plugins/doc_fragments/__pycache__/_gcp.cpython-311.pyc differ diff --git a/collection/community/google/plugins/lookup/__pycache__/gcp_storage_file.cpython-311.pyc b/collection/community/google/plugins/lookup/__pycache__/gcp_storage_file.cpython-311.pyc new file mode 100644 index 00000000..96e20679 Binary files /dev/null and b/collection/community/google/plugins/lookup/__pycache__/gcp_storage_file.cpython-311.pyc differ diff --git a/collection/community/google/plugins/module_utils/__pycache__/gce.cpython-311.pyc b/collection/community/google/plugins/module_utils/__pycache__/gce.cpython-311.pyc new file mode 100644 index 00000000..f164d73e Binary files /dev/null and b/collection/community/google/plugins/module_utils/__pycache__/gce.cpython-311.pyc differ diff --git a/collection/community/google/plugins/module_utils/__pycache__/gcp.cpython-311.pyc b/collection/community/google/plugins/module_utils/__pycache__/gcp.cpython-311.pyc new file mode 100644 index 00000000..c7c31b02 Binary files /dev/null and b/collection/community/google/plugins/module_utils/__pycache__/gcp.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gc_storage.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gc_storage.cpython-311.pyc new file mode 100644 index 00000000..02906f34 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gc_storage.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_eip.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_eip.cpython-311.pyc new file mode 100644 index 00000000..cba05d14 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_eip.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_img.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_img.cpython-311.pyc new file mode 100644 index 00000000..5d94a857 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_img.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_instance_template.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_instance_template.cpython-311.pyc new file mode 100644 index 00000000..d7975dbe Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_instance_template.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_labels.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_labels.cpython-311.pyc new file mode 100644 index 00000000..47d51ebe Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_labels.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_lb.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_lb.cpython-311.pyc new file mode 100644 index 00000000..16b13daa Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_lb.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_mig.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_mig.cpython-311.pyc new file mode 100644 index 00000000..2d935ec8 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_mig.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_net.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_net.cpython-311.pyc new file mode 100644 index 00000000..ca220056 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_net.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_pd.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_pd.cpython-311.pyc new file mode 100644 index 00000000..5a7e1b13 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_pd.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_snapshot.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_snapshot.cpython-311.pyc new file mode 100644 index 00000000..64957fd2 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_snapshot.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gce_tag.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gce_tag.cpython-311.pyc new file mode 100644 index 00000000..69c536ed Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gce_tag.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gcpubsub.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gcpubsub.cpython-311.pyc new file mode 100644 index 00000000..165ef685 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gcpubsub.cpython-311.pyc differ diff --git a/collection/community/google/plugins/modules/__pycache__/gcpubsub_info.cpython-311.pyc b/collection/community/google/plugins/modules/__pycache__/gcpubsub_info.cpython-311.pyc new file mode 100644 index 00000000..ee157978 Binary files /dev/null and b/collection/community/google/plugins/modules/__pycache__/gcpubsub_info.cpython-311.pyc differ diff --git a/collection/community/google/scripts/inventory/__pycache__/gce.cpython-311.pyc b/collection/community/google/scripts/inventory/__pycache__/gce.cpython-311.pyc new file mode 100644 index 00000000..54573e6f Binary files /dev/null and b/collection/community/google/scripts/inventory/__pycache__/gce.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/google/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..2981e8f7 Binary files /dev/null and b/collection/community/google/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/google/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..62349644 Binary files /dev/null and b/collection/community/google/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/google/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..08c96f6b Binary files /dev/null and b/collection/community/google/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/google/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..0df13788 Binary files /dev/null and b/collection/community/google/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/plugins/module_utils/__pycache__/test_auth.cpython-311.pyc b/collection/community/google/tests/unit/plugins/module_utils/__pycache__/test_auth.cpython-311.pyc new file mode 100644 index 00000000..63ebc189 Binary files /dev/null and b/collection/community/google/tests/unit/plugins/module_utils/__pycache__/test_auth.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/plugins/module_utils/__pycache__/test_utils.cpython-311.pyc b/collection/community/google/tests/unit/plugins/module_utils/__pycache__/test_utils.cpython-311.pyc new file mode 100644 index 00000000..2e05c35b Binary files /dev/null and b/collection/community/google/tests/unit/plugins/module_utils/__pycache__/test_utils.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/google/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1f36d770 Binary files /dev/null and b/collection/community/google/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/google/tests/unit/plugins/modules/__pycache__/test_gce_tag.cpython-311.pyc b/collection/community/google/tests/unit/plugins/modules/__pycache__/test_gce_tag.cpython-311.pyc new file mode 100644 index 00000000..8e062961 Binary files /dev/null and b/collection/community/google/tests/unit/plugins/modules/__pycache__/test_gce_tag.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/callback/__pycache__/__init__.cpython-311.pyc b/collection/community/grafana/plugins/callback/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..913eb635 Binary files /dev/null and b/collection/community/grafana/plugins/callback/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/callback/__pycache__/grafana_annotations.cpython-311.pyc b/collection/community/grafana/plugins/callback/__pycache__/grafana_annotations.cpython-311.pyc new file mode 100644 index 00000000..94c4c528 Binary files /dev/null and b/collection/community/grafana/plugins/callback/__pycache__/grafana_annotations.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/community/grafana/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c2b2b40d Binary files /dev/null and b/collection/community/grafana/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/doc_fragments/__pycache__/api_key.cpython-311.pyc b/collection/community/grafana/plugins/doc_fragments/__pycache__/api_key.cpython-311.pyc new file mode 100644 index 00000000..f68e2467 Binary files /dev/null and b/collection/community/grafana/plugins/doc_fragments/__pycache__/api_key.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/doc_fragments/__pycache__/basic_auth.cpython-311.pyc b/collection/community/grafana/plugins/doc_fragments/__pycache__/basic_auth.cpython-311.pyc new file mode 100644 index 00000000..1fd0722a Binary files /dev/null and b/collection/community/grafana/plugins/doc_fragments/__pycache__/basic_auth.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/lookup/__pycache__/__init__.cpython-311.pyc b/collection/community/grafana/plugins/lookup/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..53507e56 Binary files /dev/null and b/collection/community/grafana/plugins/lookup/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/lookup/__pycache__/grafana_dashboard.cpython-311.pyc b/collection/community/grafana/plugins/lookup/__pycache__/grafana_dashboard.cpython-311.pyc new file mode 100644 index 00000000..dd32be51 Binary files /dev/null and b/collection/community/grafana/plugins/lookup/__pycache__/grafana_dashboard.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/module_utils/__pycache__/base.cpython-311.pyc b/collection/community/grafana/plugins/module_utils/__pycache__/base.cpython-311.pyc new file mode 100644 index 00000000..bdfcdad6 Binary files /dev/null and b/collection/community/grafana/plugins/module_utils/__pycache__/base.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..cc37d464 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_dashboard.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_dashboard.cpython-311.pyc new file mode 100644 index 00000000..73ec5ad4 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_dashboard.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_datasource.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_datasource.cpython-311.pyc new file mode 100644 index 00000000..94717345 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_datasource.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_folder.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_folder.cpython-311.pyc new file mode 100644 index 00000000..f1efdf8c Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_folder.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_notification_channel.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_notification_channel.cpython-311.pyc new file mode 100644 index 00000000..ca4e1342 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_notification_channel.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_organization.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_organization.cpython-311.pyc new file mode 100644 index 00000000..3625819a Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_organization.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_plugin.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_plugin.cpython-311.pyc new file mode 100644 index 00000000..96a0f459 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_plugin.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_team.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_team.cpython-311.pyc new file mode 100644 index 00000000..94ace980 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_team.cpython-311.pyc differ diff --git a/collection/community/grafana/plugins/modules/__pycache__/grafana_user.cpython-311.pyc b/collection/community/grafana/plugins/modules/__pycache__/grafana_user.cpython-311.pyc new file mode 100644 index 00000000..269119f1 Binary files /dev/null and b/collection/community/grafana/plugins/modules/__pycache__/grafana_user.cpython-311.pyc differ diff --git a/collection/community/grafana/tests/unit/modules/grafana/grafana_plugin/__pycache__/test_grafana_plugin.cpython-311.pyc b/collection/community/grafana/tests/unit/modules/grafana/grafana_plugin/__pycache__/test_grafana_plugin.cpython-311.pyc new file mode 100644 index 00000000..880c621d Binary files /dev/null and b/collection/community/grafana/tests/unit/modules/grafana/grafana_plugin/__pycache__/test_grafana_plugin.cpython-311.pyc differ diff --git a/collection/community/grafana/tests/unit/modules/grafana/grafana_team/__pycache__/test_grafana_team.cpython-311.pyc b/collection/community/grafana/tests/unit/modules/grafana/grafana_team/__pycache__/test_grafana_team.cpython-311.pyc new file mode 100644 index 00000000..ae5bbb16 Binary files /dev/null and b/collection/community/grafana/tests/unit/modules/grafana/grafana_team/__pycache__/test_grafana_team.cpython-311.pyc differ diff --git a/collection/community/grafana/tests/unit/modules/grafana/grafana_user/__pycache__/test_grafana_user.cpython-311.pyc b/collection/community/grafana/tests/unit/modules/grafana/grafana_user/__pycache__/test_grafana_user.cpython-311.pyc new file mode 100644 index 00000000..b0534851 Binary files /dev/null and b/collection/community/grafana/tests/unit/modules/grafana/grafana_user/__pycache__/test_grafana_user.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/.github/actions/ansible-codecov/__pycache__/process.cpython-311.pyc b/collection/community/hashi_vault/.github/actions/ansible-codecov/__pycache__/process.cpython-311.pyc new file mode 100644 index 00000000..c612fdef Binary files /dev/null and b/collection/community/hashi_vault/.github/actions/ansible-codecov/__pycache__/process.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/.github/actions/docker-image-versions/__pycache__/versions.cpython-311.pyc b/collection/community/hashi_vault/.github/actions/docker-image-versions/__pycache__/versions.cpython-311.pyc new file mode 100644 index 00000000..e0a0a169 Binary files /dev/null and b/collection/community/hashi_vault/.github/actions/docker-image-versions/__pycache__/versions.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/docs/preview/__pycache__/conf.cpython-311.pyc b/collection/community/hashi_vault/docs/preview/__pycache__/conf.cpython-311.pyc new file mode 100644 index 00000000..60bd89a5 Binary files /dev/null and b/collection/community/hashi_vault/docs/preview/__pycache__/conf.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/auth.cpython-311.pyc b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/auth.cpython-311.pyc new file mode 100644 index 00000000..25f3f19a Binary files /dev/null and b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/auth.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/connection.cpython-311.pyc b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/connection.cpython-311.pyc new file mode 100644 index 00000000..2d65f0ed Binary files /dev/null and b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/connection.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/token_create.cpython-311.pyc b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/token_create.cpython-311.pyc new file mode 100644 index 00000000..2ee1b9bb Binary files /dev/null and b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/token_create.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/wrapping.cpython-311.pyc b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/wrapping.cpython-311.pyc new file mode 100644 index 00000000..6f40acec Binary files /dev/null and b/collection/community/hashi_vault/plugins/doc_fragments/__pycache__/wrapping.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/filter/__pycache__/vault_login_token.cpython-311.pyc b/collection/community/hashi_vault/plugins/filter/__pycache__/vault_login_token.cpython-311.pyc new file mode 100644 index 00000000..47e399c4 Binary files /dev/null and b/collection/community/hashi_vault/plugins/filter/__pycache__/vault_login_token.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/lookup/__pycache__/hashi_vault.cpython-311.pyc b/collection/community/hashi_vault/plugins/lookup/__pycache__/hashi_vault.cpython-311.pyc new file mode 100644 index 00000000..813a485c Binary files /dev/null and b/collection/community/hashi_vault/plugins/lookup/__pycache__/hashi_vault.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_login.cpython-311.pyc b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_login.cpython-311.pyc new file mode 100644 index 00000000..d6e9f7a6 Binary files /dev/null and b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_login.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_read.cpython-311.pyc b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_read.cpython-311.pyc new file mode 100644 index 00000000..472cfb96 Binary files /dev/null and b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_read.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_token_create.cpython-311.pyc b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_token_create.cpython-311.pyc new file mode 100644 index 00000000..783c3b89 Binary files /dev/null and b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_token_create.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_write.cpython-311.pyc b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_write.cpython-311.pyc new file mode 100644 index 00000000..b4bc488c Binary files /dev/null and b/collection/community/hashi_vault/plugins/lookup/__pycache__/vault_write.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_approle.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_approle.cpython-311.pyc new file mode 100644 index 00000000..f3ba5c3b Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_approle.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_aws_iam.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_aws_iam.cpython-311.pyc new file mode 100644 index 00000000..dbeba97f Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_aws_iam.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_cert.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_cert.cpython-311.pyc new file mode 100644 index 00000000..be3e751a Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_cert.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_jwt.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_jwt.cpython-311.pyc new file mode 100644 index 00000000..3faf6b88 Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_jwt.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_ldap.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_ldap.cpython-311.pyc new file mode 100644 index 00000000..af54b2fb Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_ldap.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_none.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_none.cpython-311.pyc new file mode 100644 index 00000000..bdf76713 Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_none.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_token.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_token.cpython-311.pyc new file mode 100644 index 00000000..a9985dec Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_token.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_userpass.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_userpass.cpython-311.pyc new file mode 100644 index 00000000..4fcbc7c5 Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_auth_method_userpass.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_authenticator.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_authenticator.cpython-311.pyc new file mode 100644 index 00000000..af106d32 Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_authenticator.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_connection_options.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_connection_options.cpython-311.pyc new file mode 100644 index 00000000..64f54f32 Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_connection_options.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_hashi_vault_common.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_hashi_vault_common.cpython-311.pyc new file mode 100644 index 00000000..5c0fda91 Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_hashi_vault_common.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/module_utils/__pycache__/_hashi_vault_module.cpython-311.pyc b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_hashi_vault_module.cpython-311.pyc new file mode 100644 index 00000000..6a44b19a Binary files /dev/null and b/collection/community/hashi_vault/plugins/module_utils/__pycache__/_hashi_vault_module.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/modules/__pycache__/vault_login.cpython-311.pyc b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_login.cpython-311.pyc new file mode 100644 index 00000000..12eb7a19 Binary files /dev/null and b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_login.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/modules/__pycache__/vault_pki_generate_certificate.cpython-311.pyc b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_pki_generate_certificate.cpython-311.pyc new file mode 100644 index 00000000..36281411 Binary files /dev/null and b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_pki_generate_certificate.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/modules/__pycache__/vault_read.cpython-311.pyc b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_read.cpython-311.pyc new file mode 100644 index 00000000..7114038e Binary files /dev/null and b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_read.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/modules/__pycache__/vault_token_create.cpython-311.pyc b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_token_create.cpython-311.pyc new file mode 100644 index 00000000..10832035 Binary files /dev/null and b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_token_create.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/modules/__pycache__/vault_write.cpython-311.pyc b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_write.cpython-311.pyc new file mode 100644 index 00000000..80a96264 Binary files /dev/null and b/collection/community/hashi_vault/plugins/modules/__pycache__/vault_write.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/plugin_utils/__pycache__/_hashi_vault_lookup_base.cpython-311.pyc b/collection/community/hashi_vault/plugins/plugin_utils/__pycache__/_hashi_vault_lookup_base.cpython-311.pyc new file mode 100644 index 00000000..5ba3f285 Binary files /dev/null and b/collection/community/hashi_vault/plugins/plugin_utils/__pycache__/_hashi_vault_lookup_base.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/plugins/plugin_utils/__pycache__/_hashi_vault_plugin.cpython-311.pyc b/collection/community/hashi_vault/plugins/plugin_utils/__pycache__/_hashi_vault_plugin.cpython-311.pyc new file mode 100644 index 00000000..e183e387 Binary files /dev/null and b/collection/community/hashi_vault/plugins/plugin_utils/__pycache__/_hashi_vault_plugin.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_enable_auth.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_enable_auth.cpython-311.pyc new file mode 100644 index 00000000..1d979c06 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_enable_auth.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_enable_engine.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_enable_engine.cpython-311.pyc new file mode 100644 index 00000000..507e5b6b Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_enable_engine.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_kv_put.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_kv_put.cpython-311.pyc new file mode 100644 index 00000000..ec099426 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_kv_put.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_policy_put.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_policy_put.cpython-311.pyc new file mode 100644 index 00000000..a59783e0 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_policy_put.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_read.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_read.cpython-311.pyc new file mode 100644 index 00000000..39e57251 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_read.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_token_create.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_token_create.cpython-311.pyc new file mode 100644 index 00000000..4c7a24b5 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_token_create.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_write.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_write.cpython-311.pyc new file mode 100644 index 00000000..8dc3e646 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_ci_write.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_test_auth.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_test_auth.cpython-311.pyc new file mode 100644 index 00000000..307c5f4b Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_test_auth.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_test_connection.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_test_connection.cpython-311.pyc new file mode 100644 index 00000000..c36151e7 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/library/__pycache__/vault_test_connection.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/lookup_plugins/__pycache__/vault_test_auth.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/lookup_plugins/__pycache__/vault_test_auth.cpython-311.pyc new file mode 100644 index 00000000..fd536b95 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/lookup_plugins/__pycache__/vault_test_auth.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/lookup_plugins/__pycache__/vault_test_connection.cpython-311.pyc b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/lookup_plugins/__pycache__/vault_test_connection.cpython-311.pyc new file mode 100644 index 00000000..15f7eed8 Binary files /dev/null and b/collection/community/hashi_vault/tests/integration/targets/setup_vault_test_plugins/lookup_plugins/__pycache__/vault_test_connection.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/__pycache__/conftest.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..73ac784d Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..fbc9cbb5 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..f96bd63d Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..e87e60c7 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..8d23dae4 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/filter/__pycache__/test_filter_vault_login_token.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/filter/__pycache__/test_filter_vault_login_token.cpython-311.pyc new file mode 100644 index 00000000..4f75df3b Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/filter/__pycache__/test_filter_vault_login_token.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_hashi_vault.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_hashi_vault.cpython-311.pyc new file mode 100644 index 00000000..c5552e33 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_hashi_vault.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_login.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_login.cpython-311.pyc new file mode 100644 index 00000000..cfa5c831 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_login.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_read.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_read.cpython-311.pyc new file mode 100644 index 00000000..d9089bf4 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_read.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_token_create.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_token_create.cpython-311.pyc new file mode 100644 index 00000000..c1e4874e Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_token_create.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_write.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_write.cpython-311.pyc new file mode 100644 index 00000000..1aff8640 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/lookup/__pycache__/test_vault_write.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_connection_options.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_connection_options.cpython-311.pyc new file mode 100644 index 00000000..be72a354 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_connection_options.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_helper.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_helper.cpython-311.pyc new file mode 100644 index 00000000..4a2d6dc2 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_helper.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_option_group_base.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_option_group_base.cpython-311.pyc new file mode 100644 index 00000000..fe354d88 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/__pycache__/test_hashi_vault_option_group_base.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/conftest.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..b194388c Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_approle.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_approle.cpython-311.pyc new file mode 100644 index 00000000..c2581e48 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_approle.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_aws_iam.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_aws_iam.cpython-311.pyc new file mode 100644 index 00000000..ec67e434 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_aws_iam.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_cert.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_cert.cpython-311.pyc new file mode 100644 index 00000000..01c75e00 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_cert.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_jwt.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_jwt.cpython-311.pyc new file mode 100644 index 00000000..6b6cf69c Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_jwt.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_ldap.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_ldap.cpython-311.pyc new file mode 100644 index 00000000..000d1367 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_ldap.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_none.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_none.cpython-311.pyc new file mode 100644 index 00000000..3d4e3f5d Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_none.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_token.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_token.cpython-311.pyc new file mode 100644 index 00000000..4639605a Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_token.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_userpass.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_userpass.cpython-311.pyc new file mode 100644 index 00000000..6757d500 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_auth_userpass.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_hashi_vault_auth_method_base.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_hashi_vault_auth_method_base.cpython-311.pyc new file mode 100644 index 00000000..99362570 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_hashi_vault_auth_method_base.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_hashi_vault_authenticator.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_hashi_vault_authenticator.cpython-311.pyc new file mode 100644 index 00000000..4a619747 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/authentication/__pycache__/test_hashi_vault_authenticator.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/option_adapter/__pycache__/conftest.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/option_adapter/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..63d85721 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/option_adapter/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/module_utils/option_adapter/__pycache__/test_hashi_vault_option_adapter.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/module_utils/option_adapter/__pycache__/test_hashi_vault_option_adapter.cpython-311.pyc new file mode 100644 index 00000000..49edf06c Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/module_utils/option_adapter/__pycache__/test_hashi_vault_option_adapter.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/conftest.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..45c000aa Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_pki_generate_certificate.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_pki_generate_certificate.cpython-311.pyc new file mode 100644 index 00000000..d73ae4b5 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_pki_generate_certificate.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_token_create.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_token_create.cpython-311.pyc new file mode 100644 index 00000000..582b034c Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_token_create.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_write.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_write.cpython-311.pyc new file mode 100644 index 00000000..c916a098 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/modules/__pycache__/test_vault_write.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/base/__pycache__/test_hashi_vault_lookup_base.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/base/__pycache__/test_hashi_vault_lookup_base.cpython-311.pyc new file mode 100644 index 00000000..5cd06676 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/base/__pycache__/test_hashi_vault_lookup_base.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/base/__pycache__/test_hashi_vault_plugin.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/base/__pycache__/test_hashi_vault_plugin.cpython-311.pyc new file mode 100644 index 00000000..d9ffd52b Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/base/__pycache__/test_hashi_vault_plugin.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/option_adapter/__pycache__/conftest.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/option_adapter/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..4facb563 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/option_adapter/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/option_adapter/__pycache__/test_hashi_vault_option_adapter.cpython-311.pyc b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/option_adapter/__pycache__/test_hashi_vault_option_adapter.cpython-311.pyc new file mode 100644 index 00000000..5fe1b8d8 Binary files /dev/null and b/collection/community/hashi_vault/tests/unit/plugins/plugin_utils/option_adapter/__pycache__/test_hashi_vault_option_adapter.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/doc_fragments/__pycache__/robot.cpython-311.pyc b/collection/community/hrobot/plugins/doc_fragments/__pycache__/robot.cpython-311.pyc new file mode 100644 index 00000000..1d81ded0 Binary files /dev/null and b/collection/community/hrobot/plugins/doc_fragments/__pycache__/robot.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/inventory/__pycache__/robot.cpython-311.pyc b/collection/community/hrobot/plugins/inventory/__pycache__/robot.cpython-311.pyc new file mode 100644 index 00000000..5d331505 Binary files /dev/null and b/collection/community/hrobot/plugins/inventory/__pycache__/robot.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/module_utils/__pycache__/failover.cpython-311.pyc b/collection/community/hrobot/plugins/module_utils/__pycache__/failover.cpython-311.pyc new file mode 100644 index 00000000..9bca3dc4 Binary files /dev/null and b/collection/community/hrobot/plugins/module_utils/__pycache__/failover.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/module_utils/__pycache__/robot.cpython-311.pyc b/collection/community/hrobot/plugins/module_utils/__pycache__/robot.cpython-311.pyc new file mode 100644 index 00000000..74fc1e9f Binary files /dev/null and b/collection/community/hrobot/plugins/module_utils/__pycache__/robot.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/boot.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/boot.cpython-311.pyc new file mode 100644 index 00000000..804db116 Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/boot.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/failover_ip.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/failover_ip.cpython-311.pyc new file mode 100644 index 00000000..a6fe438f Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/failover_ip.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/failover_ip_info.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/failover_ip_info.cpython-311.pyc new file mode 100644 index 00000000..609c429d Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/failover_ip_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/firewall.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/firewall.cpython-311.pyc new file mode 100644 index 00000000..60fc599b Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/firewall.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/firewall_info.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/firewall_info.cpython-311.pyc new file mode 100644 index 00000000..66cc8bbf Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/firewall_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/reset.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/reset.cpython-311.pyc new file mode 100644 index 00000000..ab02de05 Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/reset.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/reverse_dns.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/reverse_dns.cpython-311.pyc new file mode 100644 index 00000000..25d74d21 Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/reverse_dns.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/server.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/server.cpython-311.pyc new file mode 100644 index 00000000..de8b6d1b Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/server.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/server_info.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/server_info.cpython-311.pyc new file mode 100644 index 00000000..9af8bcb7 Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/server_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/ssh_key.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/ssh_key.cpython-311.pyc new file mode 100644 index 00000000..740828b0 Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/ssh_key.cpython-311.pyc differ diff --git a/collection/community/hrobot/plugins/modules/__pycache__/ssh_key_info.cpython-311.pyc b/collection/community/hrobot/plugins/modules/__pycache__/ssh_key_info.cpython-311.pyc new file mode 100644 index 00000000..226f4312 Binary files /dev/null and b/collection/community/hrobot/plugins/modules/__pycache__/ssh_key_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/ee/roles/smoke/library/__pycache__/smoke_ipaddress.cpython-311.pyc b/collection/community/hrobot/tests/ee/roles/smoke/library/__pycache__/smoke_ipaddress.cpython-311.pyc new file mode 100644 index 00000000..36775970 Binary files /dev/null and b/collection/community/hrobot/tests/ee/roles/smoke/library/__pycache__/smoke_ipaddress.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc b/collection/community/hrobot/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc new file mode 100644 index 00000000..514b5184 Binary files /dev/null and b/collection/community/hrobot/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc b/collection/community/hrobot/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc new file mode 100644 index 00000000..baf74cac Binary files /dev/null and b/collection/community/hrobot/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/inventory/__pycache__/test_robot.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/inventory/__pycache__/test_robot.cpython-311.pyc new file mode 100644 index 00000000..beffcca5 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/inventory/__pycache__/test_robot.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/module_utils/__pycache__/test_failover.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/module_utils/__pycache__/test_failover.cpython-311.pyc new file mode 100644 index 00000000..efac8e9e Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/module_utils/__pycache__/test_failover.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/module_utils/__pycache__/test_robot.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/module_utils/__pycache__/test_robot.cpython-311.pyc new file mode 100644 index 00000000..ce53966c Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/module_utils/__pycache__/test_robot.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_boot.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_boot.cpython-311.pyc new file mode 100644 index 00000000..e72b01a4 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_boot.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_failover_ip.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_failover_ip.cpython-311.pyc new file mode 100644 index 00000000..d529d254 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_failover_ip.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_failover_ip_info.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_failover_ip_info.cpython-311.pyc new file mode 100644 index 00000000..82f5551d Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_failover_ip_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_firewall.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_firewall.cpython-311.pyc new file mode 100644 index 00000000..b4644935 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_firewall.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_firewall_info.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_firewall_info.cpython-311.pyc new file mode 100644 index 00000000..d0937f49 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_firewall_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_reset.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_reset.cpython-311.pyc new file mode 100644 index 00000000..45ea3402 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_reset.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_reverse_dns.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_reverse_dns.cpython-311.pyc new file mode 100644 index 00000000..847a7dd9 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_reverse_dns.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_server.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_server.cpython-311.pyc new file mode 100644 index 00000000..da4c0ba0 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_server.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_server_info.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_server_info.cpython-311.pyc new file mode 100644 index 00000000..4ee260c7 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_server_info.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_ssh_key.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_ssh_key.cpython-311.pyc new file mode 100644 index 00000000..19aef5ed Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_ssh_key.cpython-311.pyc differ diff --git a/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_ssh_key_info.cpython-311.pyc b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_ssh_key_info.cpython-311.pyc new file mode 100644 index 00000000..35116447 Binary files /dev/null and b/collection/community/hrobot/tests/unit/plugins/modules/__pycache__/test_ssh_key_info.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/doc_fragments/__pycache__/kubevirt_common_options.cpython-311.pyc b/collection/community/kubevirt/plugins/doc_fragments/__pycache__/kubevirt_common_options.cpython-311.pyc new file mode 100644 index 00000000..131f60aa Binary files /dev/null and b/collection/community/kubevirt/plugins/doc_fragments/__pycache__/kubevirt_common_options.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/doc_fragments/__pycache__/kubevirt_vm_options.cpython-311.pyc b/collection/community/kubevirt/plugins/doc_fragments/__pycache__/kubevirt_vm_options.cpython-311.pyc new file mode 100644 index 00000000..92ac0f88 Binary files /dev/null and b/collection/community/kubevirt/plugins/doc_fragments/__pycache__/kubevirt_vm_options.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/inventory/__pycache__/kubevirt.cpython-311.pyc b/collection/community/kubevirt/plugins/inventory/__pycache__/kubevirt.cpython-311.pyc new file mode 100644 index 00000000..a38f5a0f Binary files /dev/null and b/collection/community/kubevirt/plugins/inventory/__pycache__/kubevirt.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/module_utils/__pycache__/kubevirt.cpython-311.pyc b/collection/community/kubevirt/plugins/module_utils/__pycache__/kubevirt.cpython-311.pyc new file mode 100644 index 00000000..bbf2deb4 Binary files /dev/null and b/collection/community/kubevirt/plugins/module_utils/__pycache__/kubevirt.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_cdi_upload.cpython-311.pyc b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_cdi_upload.cpython-311.pyc new file mode 100644 index 00000000..4088437a Binary files /dev/null and b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_cdi_upload.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_preset.cpython-311.pyc b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_preset.cpython-311.pyc new file mode 100644 index 00000000..9e79a73b Binary files /dev/null and b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_preset.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_pvc.cpython-311.pyc b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_pvc.cpython-311.pyc new file mode 100644 index 00000000..7e98239c Binary files /dev/null and b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_pvc.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_rs.cpython-311.pyc b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_rs.cpython-311.pyc new file mode 100644 index 00000000..6d36f423 Binary files /dev/null and b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_rs.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_template.cpython-311.pyc b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_template.cpython-311.pyc new file mode 100644 index 00000000..1ebd3c6d Binary files /dev/null and b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_template.cpython-311.pyc differ diff --git a/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_vm.cpython-311.pyc b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_vm.cpython-311.pyc new file mode 100644 index 00000000..6d90480f Binary files /dev/null and b/collection/community/kubevirt/plugins/modules/__pycache__/kubevirt_vm.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/integration/targets/inventory_kubevirt/__pycache__/inventory_diff.cpython-311.pyc b/collection/community/kubevirt/tests/integration/targets/inventory_kubevirt/__pycache__/inventory_diff.cpython-311.pyc new file mode 100644 index 00000000..40455932 Binary files /dev/null and b/collection/community/kubevirt/tests/integration/targets/inventory_kubevirt/__pycache__/inventory_diff.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/integration/targets/inventory_kubevirt/__pycache__/server.cpython-311.pyc b/collection/community/kubevirt/tests/integration/targets/inventory_kubevirt/__pycache__/server.cpython-311.pyc new file mode 100644 index 00000000..e47d5aeb Binary files /dev/null and b/collection/community/kubevirt/tests/integration/targets/inventory_kubevirt/__pycache__/server.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/kubevirt/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c0436545 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/kubevirt/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..77ec17c0 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/kubevirt/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..09af4fb9 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/plugins/module_utils/__pycache__/test_kubevirt.cpython-311.pyc b/collection/community/kubevirt/tests/unit/plugins/module_utils/__pycache__/test_kubevirt.cpython-311.pyc new file mode 100644 index 00000000..3eaf7ca4 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/plugins/module_utils/__pycache__/test_kubevirt.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c4d723e5 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/kubevirt_fixtures.cpython-311.pyc b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/kubevirt_fixtures.cpython-311.pyc new file mode 100644 index 00000000..15a0530c Binary files /dev/null and b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/kubevirt_fixtures.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/test_kubevirt_rs.cpython-311.pyc b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/test_kubevirt_rs.cpython-311.pyc new file mode 100644 index 00000000..570a2679 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/test_kubevirt_rs.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/test_kubevirt_vm.cpython-311.pyc b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/test_kubevirt_vm.cpython-311.pyc new file mode 100644 index 00000000..9426d4f5 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/test_kubevirt_vm.cpython-311.pyc differ diff --git a/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..7c25c788 Binary files /dev/null and b/collection/community/kubevirt/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/postgresql/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc b/collection/community/postgresql/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc new file mode 100644 index 00000000..31ae5378 Binary files /dev/null and b/collection/community/postgresql/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc differ diff --git a/collection/community/postgresql/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc b/collection/community/postgresql/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc new file mode 100644 index 00000000..e8721b6c Binary files /dev/null and b/collection/community/postgresql/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/doc_fragments/__pycache__/postgres.cpython-311.pyc b/collection/community/postgresql/plugins/doc_fragments/__pycache__/postgres.cpython-311.pyc new file mode 100644 index 00000000..ddd09f1f Binary files /dev/null and b/collection/community/postgresql/plugins/doc_fragments/__pycache__/postgres.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/module_utils/__pycache__/_version.cpython-311.pyc b/collection/community/postgresql/plugins/module_utils/__pycache__/_version.cpython-311.pyc new file mode 100644 index 00000000..7a9f5d3d Binary files /dev/null and b/collection/community/postgresql/plugins/module_utils/__pycache__/_version.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/module_utils/__pycache__/database.cpython-311.pyc b/collection/community/postgresql/plugins/module_utils/__pycache__/database.cpython-311.pyc new file mode 100644 index 00000000..ce9baabb Binary files /dev/null and b/collection/community/postgresql/plugins/module_utils/__pycache__/database.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/module_utils/__pycache__/postgres.cpython-311.pyc b/collection/community/postgresql/plugins/module_utils/__pycache__/postgres.cpython-311.pyc new file mode 100644 index 00000000..4e397bc9 Binary files /dev/null and b/collection/community/postgresql/plugins/module_utils/__pycache__/postgres.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/module_utils/__pycache__/saslprep.cpython-311.pyc b/collection/community/postgresql/plugins/module_utils/__pycache__/saslprep.cpython-311.pyc new file mode 100644 index 00000000..fc9fba4e Binary files /dev/null and b/collection/community/postgresql/plugins/module_utils/__pycache__/saslprep.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/module_utils/__pycache__/version.cpython-311.pyc b/collection/community/postgresql/plugins/module_utils/__pycache__/version.cpython-311.pyc new file mode 100644 index 00000000..62536bcf Binary files /dev/null and b/collection/community/postgresql/plugins/module_utils/__pycache__/version.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_copy.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_copy.cpython-311.pyc new file mode 100644 index 00000000..02f9e5b9 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_copy.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_db.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_db.cpython-311.pyc new file mode 100644 index 00000000..4a6308b5 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_db.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_ext.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_ext.cpython-311.pyc new file mode 100644 index 00000000..f284aee4 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_ext.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_idx.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_idx.cpython-311.pyc new file mode 100644 index 00000000..551a7ca7 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_idx.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_info.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_info.cpython-311.pyc new file mode 100644 index 00000000..41082830 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_info.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_lang.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_lang.cpython-311.pyc new file mode 100644 index 00000000..fd18951d Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_lang.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_membership.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_membership.cpython-311.pyc new file mode 100644 index 00000000..842343e3 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_membership.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_owner.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_owner.cpython-311.pyc new file mode 100644 index 00000000..3e9d8718 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_owner.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_pg_hba.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_pg_hba.cpython-311.pyc new file mode 100644 index 00000000..05095b08 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_pg_hba.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_ping.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_ping.cpython-311.pyc new file mode 100644 index 00000000..2eba1a25 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_ping.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_privs.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_privs.cpython-311.pyc new file mode 100644 index 00000000..2fbac261 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_privs.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_publication.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_publication.cpython-311.pyc new file mode 100644 index 00000000..27eeb7d2 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_publication.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_query.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_query.cpython-311.pyc new file mode 100644 index 00000000..d928eac6 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_query.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_schema.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_schema.cpython-311.pyc new file mode 100644 index 00000000..74dcc3b0 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_schema.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_sequence.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_sequence.cpython-311.pyc new file mode 100644 index 00000000..54234816 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_sequence.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_set.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_set.cpython-311.pyc new file mode 100644 index 00000000..6f3312d0 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_set.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_slot.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_slot.cpython-311.pyc new file mode 100644 index 00000000..0fa7c490 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_slot.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_subscription.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_subscription.cpython-311.pyc new file mode 100644 index 00000000..d0db63b3 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_subscription.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_table.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_table.cpython-311.pyc new file mode 100644 index 00000000..43d07718 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_table.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_tablespace.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_tablespace.cpython-311.pyc new file mode 100644 index 00000000..d2004540 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_tablespace.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_user.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_user.cpython-311.pyc new file mode 100644 index 00000000..ecd3d552 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_user.cpython-311.pyc differ diff --git a/collection/community/postgresql/plugins/modules/__pycache__/postgresql_user_obj_stat_info.cpython-311.pyc b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_user_obj_stat_info.cpython-311.pyc new file mode 100644 index 00000000..d77f7286 Binary files /dev/null and b/collection/community/postgresql/plugins/modules/__pycache__/postgresql_user_obj_stat_info.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc b/collection/community/postgresql/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc new file mode 100644 index 00000000..a290b54f Binary files /dev/null and b/collection/community/postgresql/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..d8999789 Binary files /dev/null and b/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/test_postgres.cpython-311.pyc b/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/test_postgres.cpython-311.pyc new file mode 100644 index 00000000..70bd1ef2 Binary files /dev/null and b/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/test_postgres.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/test_saslprep.cpython-311.pyc b/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/test_saslprep.cpython-311.pyc new file mode 100644 index 00000000..f70b2e85 Binary files /dev/null and b/collection/community/postgresql/tests/unit/plugins/module_utils/__pycache__/test_saslprep.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/postgresql/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..18e6c3bb Binary files /dev/null and b/collection/community/postgresql/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/unit/plugins/modules/__pycache__/test_postgresql_set.cpython-311.pyc b/collection/community/postgresql/tests/unit/plugins/modules/__pycache__/test_postgresql_set.cpython-311.pyc new file mode 100644 index 00000000..c42a06cb Binary files /dev/null and b/collection/community/postgresql/tests/unit/plugins/modules/__pycache__/test_postgresql_set.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc b/collection/community/postgresql/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc new file mode 100644 index 00000000..14901b55 Binary files /dev/null and b/collection/community/postgresql/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc differ diff --git a/collection/community/postgresql/tests/utils/shippable/__pycache__/timing.cpython-311.pyc b/collection/community/postgresql/tests/utils/shippable/__pycache__/timing.cpython-311.pyc new file mode 100644 index 00000000..15e19419 Binary files /dev/null and b/collection/community/postgresql/tests/utils/shippable/__pycache__/timing.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc b/collection/community/rabbitmq/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc new file mode 100644 index 00000000..3aa8c9b1 Binary files /dev/null and b/collection/community/rabbitmq/.azure-pipelines/scripts/__pycache__/combine-coverage.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc b/collection/community/rabbitmq/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc new file mode 100644 index 00000000..02557b3d Binary files /dev/null and b/collection/community/rabbitmq/.azure-pipelines/scripts/__pycache__/time-command.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/community/rabbitmq/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1b55d8c6 Binary files /dev/null and b/collection/community/rabbitmq/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/doc_fragments/__pycache__/rabbitmq.cpython-311.pyc b/collection/community/rabbitmq/plugins/doc_fragments/__pycache__/rabbitmq.cpython-311.pyc new file mode 100644 index 00000000..5dac3d77 Binary files /dev/null and b/collection/community/rabbitmq/plugins/doc_fragments/__pycache__/rabbitmq.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/lookup/__pycache__/rabbitmq.cpython-311.pyc b/collection/community/rabbitmq/plugins/lookup/__pycache__/rabbitmq.cpython-311.pyc new file mode 100644 index 00000000..846e666e Binary files /dev/null and b/collection/community/rabbitmq/plugins/lookup/__pycache__/rabbitmq.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/module_utils/__pycache__/rabbitmq.cpython-311.pyc b/collection/community/rabbitmq/plugins/module_utils/__pycache__/rabbitmq.cpython-311.pyc new file mode 100644 index 00000000..2b16e323 Binary files /dev/null and b/collection/community/rabbitmq/plugins/module_utils/__pycache__/rabbitmq.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_binding.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_binding.cpython-311.pyc new file mode 100644 index 00000000..f8a4a9a7 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_binding.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_exchange.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_exchange.cpython-311.pyc new file mode 100644 index 00000000..308382b9 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_exchange.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_feature_flag.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_feature_flag.cpython-311.pyc new file mode 100644 index 00000000..72d5a8b5 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_feature_flag.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_global_parameter.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_global_parameter.cpython-311.pyc new file mode 100644 index 00000000..59a08767 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_global_parameter.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_parameter.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_parameter.cpython-311.pyc new file mode 100644 index 00000000..d3bab47b Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_parameter.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_plugin.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_plugin.cpython-311.pyc new file mode 100644 index 00000000..801a404b Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_plugin.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_policy.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_policy.cpython-311.pyc new file mode 100644 index 00000000..6d6252f9 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_policy.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_publish.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_publish.cpython-311.pyc new file mode 100644 index 00000000..a38ef1f3 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_publish.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_queue.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_queue.cpython-311.pyc new file mode 100644 index 00000000..46bfef30 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_queue.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_upgrade.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_upgrade.cpython-311.pyc new file mode 100644 index 00000000..8050998c Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_upgrade.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_user.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_user.cpython-311.pyc new file mode 100644 index 00000000..7bc99229 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_user.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_user_limits.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_user_limits.cpython-311.pyc new file mode 100644 index 00000000..c7916991 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_user_limits.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_vhost.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_vhost.cpython-311.pyc new file mode 100644 index 00000000..59b7a34a Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_vhost.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_vhost_limits.cpython-311.pyc b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_vhost_limits.cpython-311.pyc new file mode 100644 index 00000000..de7a8db1 Binary files /dev/null and b/collection/community/rabbitmq/plugins/modules/__pycache__/rabbitmq_vhost_limits.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..253cc1a0 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..05d96e13 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..5209c81c Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..bbfb1e61 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/mock/__pycache__/__init__.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/mock/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c9b6a777 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/mock/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/mock/__pycache__/loader.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/mock/__pycache__/loader.cpython-311.pyc new file mode 100644 index 00000000..a142f9a3 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/mock/__pycache__/loader.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/mock/__pycache__/path.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/mock/__pycache__/path.cpython-311.pyc new file mode 100644 index 00000000..2772c6b2 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/mock/__pycache__/path.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/mock/__pycache__/procenv.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/mock/__pycache__/procenv.cpython-311.pyc new file mode 100644 index 00000000..48d05495 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/mock/__pycache__/procenv.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc new file mode 100644 index 00000000..816d631e Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc new file mode 100644 index 00000000..40462b74 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/modules/__pycache__/rabbitmq_user_fixtures.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/modules/__pycache__/rabbitmq_user_fixtures.cpython-311.pyc new file mode 100644 index 00000000..80f9a39d Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/modules/__pycache__/rabbitmq_user_fixtures.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_feature_flag.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_feature_flag.cpython-311.pyc new file mode 100644 index 00000000..801a0932 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_feature_flag.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_global_parameter.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_global_parameter.cpython-311.pyc new file mode 100644 index 00000000..25dfa612 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_global_parameter.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_upgrade.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_upgrade.cpython-311.pyc new file mode 100644 index 00000000..27b1d674 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_upgrade.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_user.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_user.cpython-311.pyc new file mode 100644 index 00000000..adacbd8f Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/modules/__pycache__/test_rabbitmq_user.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/unit/modules/__pycache__/utils.cpython-311.pyc b/collection/community/rabbitmq/tests/unit/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..4cd53c60 Binary files /dev/null and b/collection/community/rabbitmq/tests/unit/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc b/collection/community/rabbitmq/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc new file mode 100644 index 00000000..fefb2b60 Binary files /dev/null and b/collection/community/rabbitmq/tests/utils/shippable/__pycache__/check_matrix.cpython-311.pyc differ diff --git a/collection/community/rabbitmq/tests/utils/shippable/__pycache__/timing.cpython-311.pyc b/collection/community/rabbitmq/tests/utils/shippable/__pycache__/timing.cpython-311.pyc new file mode 100644 index 00000000..936054df Binary files /dev/null and b/collection/community/rabbitmq/tests/utils/shippable/__pycache__/timing.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/cliconf/__pycache__/routeros.cpython-311.pyc b/collection/community/routeros/plugins/cliconf/__pycache__/routeros.cpython-311.pyc new file mode 100644 index 00000000..a1713cdf Binary files /dev/null and b/collection/community/routeros/plugins/cliconf/__pycache__/routeros.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/filter/__pycache__/quoting.cpython-311.pyc b/collection/community/routeros/plugins/filter/__pycache__/quoting.cpython-311.pyc new file mode 100644 index 00000000..d639baab Binary files /dev/null and b/collection/community/routeros/plugins/filter/__pycache__/quoting.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/routeros/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..ed14ac08 Binary files /dev/null and b/collection/community/routeros/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/module_utils/__pycache__/quoting.cpython-311.pyc b/collection/community/routeros/plugins/module_utils/__pycache__/quoting.cpython-311.pyc new file mode 100644 index 00000000..6a037f65 Binary files /dev/null and b/collection/community/routeros/plugins/module_utils/__pycache__/quoting.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/module_utils/__pycache__/routeros.cpython-311.pyc b/collection/community/routeros/plugins/module_utils/__pycache__/routeros.cpython-311.pyc new file mode 100644 index 00000000..d811d43c Binary files /dev/null and b/collection/community/routeros/plugins/module_utils/__pycache__/routeros.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/modules/__pycache__/api.cpython-311.pyc b/collection/community/routeros/plugins/modules/__pycache__/api.cpython-311.pyc new file mode 100644 index 00000000..0985cdff Binary files /dev/null and b/collection/community/routeros/plugins/modules/__pycache__/api.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/modules/__pycache__/command.cpython-311.pyc b/collection/community/routeros/plugins/modules/__pycache__/command.cpython-311.pyc new file mode 100644 index 00000000..22e01a00 Binary files /dev/null and b/collection/community/routeros/plugins/modules/__pycache__/command.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/modules/__pycache__/facts.cpython-311.pyc b/collection/community/routeros/plugins/modules/__pycache__/facts.cpython-311.pyc new file mode 100644 index 00000000..d0072323 Binary files /dev/null and b/collection/community/routeros/plugins/modules/__pycache__/facts.cpython-311.pyc differ diff --git a/collection/community/routeros/plugins/terminal/__pycache__/routeros.cpython-311.pyc b/collection/community/routeros/plugins/terminal/__pycache__/routeros.cpython-311.pyc new file mode 100644 index 00000000..29a48c88 Binary files /dev/null and b/collection/community/routeros/plugins/terminal/__pycache__/routeros.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc b/collection/community/routeros/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc new file mode 100644 index 00000000..0c0e0b58 Binary files /dev/null and b/collection/community/routeros/tests/sanity/extra/__pycache__/extra-docs.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc b/collection/community/routeros/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc new file mode 100644 index 00000000..06acf1e7 Binary files /dev/null and b/collection/community/routeros/tests/sanity/extra/__pycache__/no-unwanted-files.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/routeros/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..ff19eb7e Binary files /dev/null and b/collection/community/routeros/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/community/routeros/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..8e405f3f Binary files /dev/null and b/collection/community/routeros/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/routeros/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..489e8ac4 Binary files /dev/null and b/collection/community/routeros/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/routeros/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..2c0b4ef5 Binary files /dev/null and b/collection/community/routeros/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/module_utils/__pycache__/test_quoting.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/module_utils/__pycache__/test_quoting.cpython-311.pyc new file mode 100644 index 00000000..f92b0ef7 Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/module_utils/__pycache__/test_quoting.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..cab6fb4b Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/__pycache__/routeros_module.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/routeros_module.cpython-311.pyc new file mode 100644 index 00000000..db6324d8 Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/routeros_module.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_api.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_api.cpython-311.pyc new file mode 100644 index 00000000..1caea1bd Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_api.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_command.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_command.cpython-311.pyc new file mode 100644 index 00000000..d7826bf1 Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_command.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_facts.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_facts.cpython-311.pyc new file mode 100644 index 00000000..19b6a363 Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/test_facts.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..308c94e2 Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/routeros/tests/unit/plugins/modules/fixtures/__pycache__/__init__.cpython-311.pyc b/collection/community/routeros/tests/unit/plugins/modules/fixtures/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..18161214 Binary files /dev/null and b/collection/community/routeros/tests/unit/plugins/modules/fixtures/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/.vscode/extensions.json b/collection/community/sap/.vscode/extensions.json new file mode 100644 index 00000000..1450d869 --- /dev/null +++ b/collection/community/sap/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "redhat.ansible" + ] +} diff --git a/collection/community/sap/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..2bbfc8a2 Binary files /dev/null and b/collection/community/sap/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..48594a02 Binary files /dev/null and b/collection/community/sap/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/hana_query.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/hana_query.cpython-311.pyc new file mode 100644 index 00000000..eedaeb04 Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/hana_query.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/sap_company.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/sap_company.cpython-311.pyc new file mode 100644 index 00000000..8d24b6a7 Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/sap_company.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/sap_snote.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/sap_snote.cpython-311.pyc new file mode 100644 index 00000000..74c8300c Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/sap_snote.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/sap_system_facts.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/sap_system_facts.cpython-311.pyc new file mode 100644 index 00000000..2d95145c Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/sap_system_facts.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/sap_task_list_execute.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/sap_task_list_execute.cpython-311.pyc new file mode 100644 index 00000000..9dc5b227 Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/sap_task_list_execute.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/sap_user.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/sap_user.cpython-311.pyc new file mode 100644 index 00000000..e00c580f Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/sap_user.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/__pycache__/sapcar_extract.cpython-311.pyc b/collection/community/sap/plugins/modules/__pycache__/sapcar_extract.cpython-311.pyc new file mode 100644 index 00000000..eebc48f7 Binary files /dev/null and b/collection/community/sap/plugins/modules/__pycache__/sapcar_extract.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/database/saphana/__pycache__/hana_query.cpython-311.pyc b/collection/community/sap/plugins/modules/database/saphana/__pycache__/hana_query.cpython-311.pyc new file mode 100644 index 00000000..af134788 Binary files /dev/null and b/collection/community/sap/plugins/modules/database/saphana/__pycache__/hana_query.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/files/__pycache__/sapcar_extract.cpython-311.pyc b/collection/community/sap/plugins/modules/files/__pycache__/sapcar_extract.cpython-311.pyc new file mode 100644 index 00000000..d619f47f Binary files /dev/null and b/collection/community/sap/plugins/modules/files/__pycache__/sapcar_extract.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/identity/__pycache__/sap_company.cpython-311.pyc b/collection/community/sap/plugins/modules/identity/__pycache__/sap_company.cpython-311.pyc new file mode 100644 index 00000000..6ff9f345 Binary files /dev/null and b/collection/community/sap/plugins/modules/identity/__pycache__/sap_company.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/identity/__pycache__/sap_user.cpython-311.pyc b/collection/community/sap/plugins/modules/identity/__pycache__/sap_user.cpython-311.pyc new file mode 100644 index 00000000..04152a6d Binary files /dev/null and b/collection/community/sap/plugins/modules/identity/__pycache__/sap_user.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/system/__pycache__/sap_snote.cpython-311.pyc b/collection/community/sap/plugins/modules/system/__pycache__/sap_snote.cpython-311.pyc new file mode 100644 index 00000000..32873399 Binary files /dev/null and b/collection/community/sap/plugins/modules/system/__pycache__/sap_snote.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/system/__pycache__/sap_system_facts.cpython-311.pyc b/collection/community/sap/plugins/modules/system/__pycache__/sap_system_facts.cpython-311.pyc new file mode 100644 index 00000000..6956d456 Binary files /dev/null and b/collection/community/sap/plugins/modules/system/__pycache__/sap_system_facts.cpython-311.pyc differ diff --git a/collection/community/sap/plugins/modules/system/__pycache__/sap_task_list_execute.cpython-311.pyc b/collection/community/sap/plugins/modules/system/__pycache__/sap_task_list_execute.cpython-311.pyc new file mode 100644 index 00000000..49247f9d Binary files /dev/null and b/collection/community/sap/plugins/modules/system/__pycache__/sap_task_list_execute.cpython-311.pyc differ diff --git a/collection/community/sap/tests/integration/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/integration/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..334a719b Binary files /dev/null and b/collection/community/sap/tests/integration/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/integration/targets/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/integration/targets/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..93c22de4 Binary files /dev/null and b/collection/community/sap/tests/integration/targets/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/sanity/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/sanity/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..07389cd4 Binary files /dev/null and b/collection/community/sap/tests/sanity/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..bc3a9168 Binary files /dev/null and b/collection/community/sap/tests/unit/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..bf660833 Binary files /dev/null and b/collection/community/sap/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/community/sap/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..fd2390e4 Binary files /dev/null and b/collection/community/sap/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/community/sap/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..f39866f3 Binary files /dev/null and b/collection/community/sap/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/community/sap/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..1531f0e3 Binary files /dev/null and b/collection/community/sap/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/mock/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/mock/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..5c939080 Binary files /dev/null and b/collection/community/sap/tests/unit/mock/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/mock/__pycache__/loader.cpython-311.pyc b/collection/community/sap/tests/unit/mock/__pycache__/loader.cpython-311.pyc new file mode 100644 index 00000000..a448b018 Binary files /dev/null and b/collection/community/sap/tests/unit/mock/__pycache__/loader.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/mock/__pycache__/path.cpython-311.pyc b/collection/community/sap/tests/unit/mock/__pycache__/path.cpython-311.pyc new file mode 100644 index 00000000..4d83e980 Binary files /dev/null and b/collection/community/sap/tests/unit/mock/__pycache__/path.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/mock/__pycache__/procenv.cpython-311.pyc b/collection/community/sap/tests/unit/mock/__pycache__/procenv.cpython-311.pyc new file mode 100644 index 00000000..63af7e54 Binary files /dev/null and b/collection/community/sap/tests/unit/mock/__pycache__/procenv.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc b/collection/community/sap/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc new file mode 100644 index 00000000..a11475dd Binary files /dev/null and b/collection/community/sap/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc b/collection/community/sap/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc new file mode 100644 index 00000000..2e97af29 Binary files /dev/null and b/collection/community/sap/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..8bcd5fc7 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..4d1ab6c0 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..7fe305ec Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/database/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/database/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..853cfbc0 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/database/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/database/saphana/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/database/saphana/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..4e7d1479 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/database/saphana/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/database/saphana/__pycache__/test_hana_query.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/database/saphana/__pycache__/test_hana_query.cpython-311.pyc new file mode 100644 index 00000000..2814ec01 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/database/saphana/__pycache__/test_hana_query.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/files/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/files/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..9b944432 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/files/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/files/__pycache__/test_sapcar_extract.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/files/__pycache__/test_sapcar_extract.cpython-311.pyc new file mode 100644 index 00000000..f1657a2b Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/files/__pycache__/test_sapcar_extract.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/identity/__pycache__/test_sap_company.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/identity/__pycache__/test_sap_company.cpython-311.pyc new file mode 100644 index 00000000..32f02962 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/identity/__pycache__/test_sap_company.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/identity/__pycache__/test_sap_user.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/identity/__pycache__/test_sap_user.cpython-311.pyc new file mode 100644 index 00000000..883d3495 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/identity/__pycache__/test_sap_user.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/__init__.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..d9fedbf0 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_snote.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_snote.cpython-311.pyc new file mode 100644 index 00000000..ffbc5b41 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_snote.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_system_facts.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_system_facts.cpython-311.pyc new file mode 100644 index 00000000..71bd6d26 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_system_facts.cpython-311.pyc differ diff --git a/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_task_list_execute.cpython-311.pyc b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_task_list_execute.cpython-311.pyc new file mode 100644 index 00000000..22792751 Binary files /dev/null and b/collection/community/sap/tests/unit/plugins/modules/system/__pycache__/test_sap_task_list_execute.cpython-311.pyc differ diff --git a/collection/community/windows/.vscode/extensions.json b/collection/community/windows/.vscode/extensions.json new file mode 100644 index 00000000..a877e78b --- /dev/null +++ b/collection/community/windows/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "ms-python.python", + "ms-vscode.powershell", + ] +} diff --git a/collection/community/windows/.vscode/settings.json b/collection/community/windows/.vscode/settings.json new file mode 100644 index 00000000..33734b21 --- /dev/null +++ b/collection/community/windows/.vscode/settings.json @@ -0,0 +1,30 @@ +{ + "python.testing.pytestArgs": [ + "tests/unit", + "-vv" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "python.analysis.extraPaths": [ + "${workspaceFolder}/../../../", + ], + + "powershell.codeFormatting.addWhitespaceAroundPipe": true, + "powershell.codeFormatting.alignPropertyValuePairs": false, + "powershell.codeFormatting.autoCorrectAliases": true, + "powershell.codeFormatting.ignoreOneLineBlock": true, + "powershell.codeFormatting.newLineAfterCloseBrace": true, + "powershell.codeFormatting.newLineAfterOpenBrace": true, + "powershell.codeFormatting.openBraceOnSameLine": true, + "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", + "powershell.codeFormatting.whitespaceAfterSeparator": true, + "powershell.codeFormatting.whitespaceAroundOperator": true, + "powershell.codeFormatting.whitespaceBeforeOpenBrace": true, + "powershell.codeFormatting.whitespaceBeforeOpenParen": true, + "powershell.codeFormatting.whitespaceBetweenParameters": true, + "powershell.codeFormatting.whitespaceInsideBrace": true, + "powershell.scriptAnalysis.enable": true, + "[powershell]": { + "editor.formatOnSave": true, + }, +} diff --git a/collection/community/windows/tests/integration/targets/win_domain_user/.DS_Store b/collection/community/windows/tests/integration/targets/win_domain_user/.DS_Store new file mode 100644 index 00000000..f112d67c Binary files /dev/null and b/collection/community/windows/tests/integration/targets/win_domain_user/.DS_Store differ diff --git a/collection/containers/podman/__pycache__/setup.cpython-311.pyc b/collection/containers/podman/__pycache__/setup.cpython-311.pyc new file mode 100644 index 00000000..47325911 Binary files /dev/null and b/collection/containers/podman/__pycache__/setup.cpython-311.pyc differ diff --git a/collection/containers/podman/ansible-collection-containers-podman.spec b/collection/containers/podman/ansible-collection-containers-podman.spec new file mode 100644 index 00000000..01b1af74 --- /dev/null +++ b/collection/containers/podman/ansible-collection-containers-podman.spec @@ -0,0 +1,40 @@ +%global collection_namespace containers +%global collection_name podman + +Name: ansible-collection-%{collection_namespace}-%{collection_name} +Version: XXX +Release: 1%{?dist} +Summary: Podman Ansible collection for Podman containers + +License: GPLv3+ +URL: %{ansible_collection_url} +Source: https://github.com/containers/ansible-podman-collections/archive/%{version}.tar.gz + +BuildRequires: (ansible >= 2.9.10 or ansible-core >= 2.11.0) + +BuildArch: noarch + +%description +%{summary}. + +%prep +%autosetup -n ansible-podman-collections-%{version} +sed -i -e 's/version:.*/version: %{version}/' galaxy.yml +find -type f ! -executable -name '*.py' -print -exec sed -i -e '1{\@^#!.*@d}' '{}' + +rm -fvr changelogs/ ci/ contrib/ tests/ ./galaxy.yml.in .github/ .gitignore + +%build +%ansible_collection_build + +%install +%ansible_collection_install + +%files +%license COPYING +%doc README.md +%{ansible_collection_files} + +%changelog + +* Tue Feb 09 2021 Sagi Shnaidman - 1.4.1-1 +- Initial package diff --git a/collection/containers/podman/plugins/connection/__pycache__/__init__.cpython-311.pyc b/collection/containers/podman/plugins/connection/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..6e9f3565 Binary files /dev/null and b/collection/containers/podman/plugins/connection/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/connection/__pycache__/buildah.cpython-311.pyc b/collection/containers/podman/plugins/connection/__pycache__/buildah.cpython-311.pyc new file mode 100644 index 00000000..1493d6e9 Binary files /dev/null and b/collection/containers/podman/plugins/connection/__pycache__/buildah.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/connection/__pycache__/podman.cpython-311.pyc b/collection/containers/podman/plugins/connection/__pycache__/podman.cpython-311.pyc new file mode 100644 index 00000000..99703c02 Binary files /dev/null and b/collection/containers/podman/plugins/connection/__pycache__/podman.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/containers/podman/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..daeed539 Binary files /dev/null and b/collection/containers/podman/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/module_utils/podman/__pycache__/__init__.cpython-311.pyc b/collection/containers/podman/plugins/module_utils/podman/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..e3ca33e9 Binary files /dev/null and b/collection/containers/podman/plugins/module_utils/podman/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/module_utils/podman/__pycache__/common.cpython-311.pyc b/collection/containers/podman/plugins/module_utils/podman/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..e90a527c Binary files /dev/null and b/collection/containers/podman/plugins/module_utils/podman/__pycache__/common.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/module_utils/podman/__pycache__/podman_container_lib.cpython-311.pyc b/collection/containers/podman/plugins/module_utils/podman/__pycache__/podman_container_lib.cpython-311.pyc new file mode 100644 index 00000000..6da97a67 Binary files /dev/null and b/collection/containers/podman/plugins/module_utils/podman/__pycache__/podman_container_lib.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/module_utils/podman/__pycache__/podman_pod_lib.cpython-311.pyc b/collection/containers/podman/plugins/module_utils/podman/__pycache__/podman_pod_lib.cpython-311.pyc new file mode 100644 index 00000000..b653d75d Binary files /dev/null and b/collection/containers/podman/plugins/module_utils/podman/__pycache__/podman_pod_lib.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..960792d2 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_container.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_container.cpython-311.pyc new file mode 100644 index 00000000..e658fcac Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_container.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_container_info.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_container_info.cpython-311.pyc new file mode 100644 index 00000000..ff42e2c9 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_container_info.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_containers.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_containers.cpython-311.pyc new file mode 100644 index 00000000..75d3aac7 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_containers.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_export.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_export.cpython-311.pyc new file mode 100644 index 00000000..7ecca3dc Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_export.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_image.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_image.cpython-311.pyc new file mode 100644 index 00000000..b9b4644b Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_image.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_image_info.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_image_info.cpython-311.pyc new file mode 100644 index 00000000..f8fcde0c Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_image_info.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_import.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_import.cpython-311.pyc new file mode 100644 index 00000000..5f32b86e Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_import.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_load.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_load.cpython-311.pyc new file mode 100644 index 00000000..f494c63d Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_load.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_login.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_login.cpython-311.pyc new file mode 100644 index 00000000..852426ac Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_login.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_login_info.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_login_info.cpython-311.pyc new file mode 100644 index 00000000..917cfcbb Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_login_info.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_logout.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_logout.cpython-311.pyc new file mode 100644 index 00000000..a292c48f Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_logout.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_network.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_network.cpython-311.pyc new file mode 100644 index 00000000..c0ee8c96 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_network.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_network_info.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_network_info.cpython-311.pyc new file mode 100644 index 00000000..4ae6d304 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_network_info.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_play.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_play.cpython-311.pyc new file mode 100644 index 00000000..d61aa876 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_play.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_pod.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_pod.cpython-311.pyc new file mode 100644 index 00000000..5276b486 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_pod.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_pod_info.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_pod_info.cpython-311.pyc new file mode 100644 index 00000000..1f0dd864 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_pod_info.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_save.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_save.cpython-311.pyc new file mode 100644 index 00000000..9db01206 Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_save.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_secret.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_secret.cpython-311.pyc new file mode 100644 index 00000000..c0da13bf Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_secret.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_tag.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_tag.cpython-311.pyc new file mode 100644 index 00000000..b0fb223e Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_tag.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_volume.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_volume.cpython-311.pyc new file mode 100644 index 00000000..28909d7b Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_volume.cpython-311.pyc differ diff --git a/collection/containers/podman/plugins/modules/__pycache__/podman_volume_info.cpython-311.pyc b/collection/containers/podman/plugins/modules/__pycache__/podman_volume_info.cpython-311.pyc new file mode 100644 index 00000000..0a25231e Binary files /dev/null and b/collection/containers/podman/plugins/modules/__pycache__/podman_volume_info.cpython-311.pyc differ diff --git a/collection/containers/podman/tests/integration/targets/__pycache__/__init__.cpython-311.pyc b/collection/containers/podman/tests/integration/targets/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..9bf24fe8 Binary files /dev/null and b/collection/containers/podman/tests/integration/targets/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_account.cpython-311.pyc b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_account.cpython-311.pyc new file mode 100644 index 00000000..c73dedba Binary files /dev/null and b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_account.cpython-311.pyc differ diff --git a/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_authentication.cpython-311.pyc b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_authentication.cpython-311.pyc new file mode 100644 index 00000000..f8706b64 Binary files /dev/null and b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_authentication.cpython-311.pyc differ diff --git a/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_credential.cpython-311.pyc b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_credential.cpython-311.pyc new file mode 100644 index 00000000..75a0c17a Binary files /dev/null and b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_credential.cpython-311.pyc differ diff --git a/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_user.cpython-311.pyc b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_user.cpython-311.pyc new file mode 100644 index 00000000..74e2f094 Binary files /dev/null and b/collection/cyberark/pas/plugins/modules/__pycache__/cyberark_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/httpapi/__pycache__/fortimanager.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/httpapi/__pycache__/fortimanager.cpython-311.pyc new file mode 100644 index 00000000..1cd23be8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/httpapi/__pycache__/fortimanager.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..9ce20577 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/common.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..744e53c7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/common.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/exported_schema.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/exported_schema.cpython-311.pyc new file mode 100644 index 00000000..3b94a9c7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/exported_schema.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/fortimanager.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/fortimanager.cpython-311.pyc new file mode 100644 index 00000000..22fe6926 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/fortimanager.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/napi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/napi.cpython-311.pyc new file mode 100644 index 00000000..068ef1be Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/module_utils/__pycache__/napi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_adom_options.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_adom_options.cpython-311.pyc new file mode 100644 index 00000000..2b729e6e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_adom_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_mmschecksum.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_mmschecksum.cpython-311.pyc new file mode 100644 index 00000000..de08d634 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_mmschecksum.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_mmschecksum_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_mmschecksum_entries.cpython-311.pyc new file mode 100644 index 00000000..44b31f07 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_mmschecksum_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_notification.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_notification.cpython-311.pyc new file mode 100644 index 00000000..7fec6319 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_notification.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_notification_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_notification_entries.cpython-311.pyc new file mode 100644 index 00000000..49b3c818 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_notification_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile.cpython-311.pyc new file mode 100644 index 00000000..58e3a9e4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_cifs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_cifs.cpython-311.pyc new file mode 100644 index 00000000..4bb8f16f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_cifs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_contentdisarm.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_contentdisarm.cpython-311.pyc new file mode 100644 index 00000000..60651a19 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_contentdisarm.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_ftp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_ftp.cpython-311.pyc new file mode 100644 index 00000000..d7f0f434 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_ftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_http.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_http.cpython-311.pyc new file mode 100644 index 00000000..35703c1b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_http.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_imap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_imap.cpython-311.pyc new file mode 100644 index 00000000..de34533e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_imap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_mapi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_mapi.cpython-311.pyc new file mode 100644 index 00000000..779bac0e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_mapi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_nacquar.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_nacquar.cpython-311.pyc new file mode 100644 index 00000000..e348bb8a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_nacquar.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_nntp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_nntp.cpython-311.pyc new file mode 100644 index 00000000..7d383232 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_nntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_outbreakprevention.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_outbreakprevention.cpython-311.pyc new file mode 100644 index 00000000..6745b0dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_outbreakprevention.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_pop3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_pop3.cpython-311.pyc new file mode 100644 index 00000000..3ee74423 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_pop3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_smb.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_smb.cpython-311.pyc new file mode 100644 index 00000000..9ee9e9e6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_smb.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_smtp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_smtp.cpython-311.pyc new file mode 100644 index 00000000..e95d176f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_smtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_ssh.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_ssh.cpython-311.pyc new file mode 100644 index 00000000..6e8ba06f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_antivirus_profile_ssh.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_apcfgprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_apcfgprofile.cpython-311.pyc new file mode 100644 index 00000000..dd68aee7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_apcfgprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_apcfgprofile_commandlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_apcfgprofile_commandlist.cpython-311.pyc new file mode 100644 index 00000000..ec85cf7f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_apcfgprofile_commandlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_categories.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_categories.cpython-311.pyc new file mode 100644 index 00000000..d7824b14 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_categories.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_custom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_custom.cpython-311.pyc new file mode 100644 index 00000000..4b8433e8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_group.cpython-311.pyc new file mode 100644 index 00000000..d1f9ef39 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list.cpython-311.pyc new file mode 100644 index 00000000..2efd8d18 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_defaultnetworkservices.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_defaultnetworkservices.cpython-311.pyc new file mode 100644 index 00000000..6521ed78 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_defaultnetworkservices.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries.cpython-311.pyc new file mode 100644 index 00000000..4ac7419a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries_parameters.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries_parameters.cpython-311.pyc new file mode 100644 index 00000000..b0ca9e30 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries_parameters.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries_parameters_members.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries_parameters_members.cpython-311.pyc new file mode 100644 index 00000000..7ad7b5d8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_application_list_entries_parameters_members.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_authentication_scheme.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_authentication_scheme.cpython-311.pyc new file mode 100644 index 00000000..cc173f99 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_authentication_scheme.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bleprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bleprofile.cpython-311.pyc new file mode 100644 index 00000000..de4b1cb7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bleprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bonjourprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bonjourprofile.cpython-311.pyc new file mode 100644 index 00000000..de22b77e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bonjourprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bonjourprofile_policylist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bonjourprofile_policylist.cpython-311.pyc new file mode 100644 index 00000000..4350e350 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_bonjourprofile_policylist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_certificate_template.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_certificate_template.cpython-311.pyc new file mode 100644 index 00000000..e4e4d593 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_certificate_template.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_domaincontroller.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_domaincontroller.cpython-311.pyc new file mode 100644 index 00000000..ff91faae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_domaincontroller.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile.cpython-311.pyc new file mode 100644 index 00000000..da52d06e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_filefilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_filefilter.cpython-311.pyc new file mode 100644 index 00000000..f21a3ccc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_filefilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_filefilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_filefilter_entries.cpython-311.pyc new file mode 100644 index 00000000..3d27e336 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_filefilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_serverkeytab.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_serverkeytab.cpython-311.pyc new file mode 100644 index 00000000..8ef2c468 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_cifs_profile_serverkeytab.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_clone.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_clone.cpython-311.pyc new file mode 100644 index 00000000..4e4cb8eb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_clone.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_credentialstore_domaincontroller.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_credentialstore_domaincontroller.cpython-311.pyc new file mode 100644 index 00000000..b2ccf8ec Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_credentialstore_domaincontroller.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_device_profile_fortianalyzer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_device_profile_fortianalyzer.cpython-311.pyc new file mode 100644 index 00000000..ed8d431c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_device_profile_fortianalyzer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_device_profile_fortiguard.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_device_profile_fortiguard.cpython-311.pyc new file mode 100644 index 00000000..7fb8714b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_device_profile_fortiguard.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_import.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_import.cpython-311.pyc new file mode 100644 index 00000000..d225bd50 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_import.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_fortianalyzer_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_fortianalyzer_setting.cpython-311.pyc new file mode 100644 index 00000000..3392f46d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_fortianalyzer_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_fortianalyzercloud_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_fortianalyzercloud_setting.cpython-311.pyc new file mode 100644 index 00000000..ae5962d2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_fortianalyzercloud_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_syslogd_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_syslogd_filter.cpython-311.pyc new file mode 100644 index 00000000..bb63f876 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_syslogd_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_syslogd_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_syslogd_setting.cpython-311.pyc new file mode 100644 index 00000000..0ca46466 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_log_syslogd_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_centralmanagement.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_centralmanagement.cpython-311.pyc new file mode 100644 index 00000000..08c65d56 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_centralmanagement.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_centralmanagement_serverlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_centralmanagement_serverlist.cpython-311.pyc new file mode 100644 index 00000000..91c87de5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_centralmanagement_serverlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_dns.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_dns.cpython-311.pyc new file mode 100644 index 00000000..6c00b260 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_dns.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_emailserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_emailserver.cpython-311.pyc new file mode 100644 index 00000000..ff4e7d57 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_emailserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_global.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_global.cpython-311.pyc new file mode 100644 index 00000000..1a51de08 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_ntp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_ntp.cpython-311.pyc new file mode 100644 index 00000000..ff5eb5f7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_ntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_ntp_ntpserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_ntp_ntpserver.cpython-311.pyc new file mode 100644 index 00000000..1914e37c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_ntp_ntpserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_admin.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_admin.cpython-311.pyc new file mode 100644 index 00000000..f57c1f0b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_alertmail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_alertmail.cpython-311.pyc new file mode 100644 index 00000000..e23a9e07 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_alertmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_auth.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_auth.cpython-311.pyc new file mode 100644 index 00000000..eba80e14 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_auth.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_devicedetectionportal.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_devicedetectionportal.cpython-311.pyc new file mode 100644 index 00000000..347ffba7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_devicedetectionportal.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_ec.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_ec.cpython-311.pyc new file mode 100644 index 00000000..45015e5f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_ec.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_fortiguardwf.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_fortiguardwf.cpython-311.pyc new file mode 100644 index 00000000..bace7491 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_fortiguardwf.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_ftp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_ftp.cpython-311.pyc new file mode 100644 index 00000000..7076f710 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_ftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_http.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_http.cpython-311.pyc new file mode 100644 index 00000000..76dbf2ac Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_http.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_mail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_mail.cpython-311.pyc new file mode 100644 index 00000000..b0155992 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_mail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_mms.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_mms.cpython-311.pyc new file mode 100644 index 00000000..44df3782 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_mms.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_nacquar.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_nacquar.cpython-311.pyc new file mode 100644 index 00000000..11dfc839 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_nacquar.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_nntp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_nntp.cpython-311.pyc new file mode 100644 index 00000000..953d4749 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_nntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_spam.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_spam.cpython-311.pyc new file mode 100644 index 00000000..32f9f7d9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_spam.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_sslvpn.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_sslvpn.cpython-311.pyc new file mode 100644 index 00000000..9fddab0f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_sslvpn.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_trafficquota.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_trafficquota.cpython-311.pyc new file mode 100644 index 00000000..8bee7025 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_trafficquota.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_utm.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_utm.cpython-311.pyc new file mode 100644 index 00000000..4044d667 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_utm.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_webproxy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_webproxy.cpython-311.pyc new file mode 100644 index 00000000..0bf474c1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_replacemsg_webproxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community.cpython-311.pyc new file mode 100644 index 00000000..db8379a6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community_hosts.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community_hosts.cpython-311.pyc new file mode 100644 index 00000000..d05717a3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community_hosts.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community_hosts6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community_hosts6.cpython-311.pyc new file mode 100644 index 00000000..78c6b60f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_community_hosts6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_sysinfo.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_sysinfo.cpython-311.pyc new file mode 100644 index 00000000..0f1155c6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_sysinfo.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_user.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_user.cpython-311.pyc new file mode 100644 index 00000000..1c3a56b2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_devprof_system_snmp_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_filepattern.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_filepattern.cpython-311.pyc new file mode 100644 index 00000000..cff0f08a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_filepattern.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_filepattern_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_filepattern_entries.cpython-311.pyc new file mode 100644 index 00000000..fc44f4e7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_filepattern_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_fpsensitivity.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_fpsensitivity.cpython-311.pyc new file mode 100644 index 00000000..c4d51195 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_fpsensitivity.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensitivity.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensitivity.cpython-311.pyc new file mode 100644 index 00000000..032b93ab Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensitivity.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensor.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensor.cpython-311.pyc new file mode 100644 index 00000000..1f678f05 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensor.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensor_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensor_filter.cpython-311.pyc new file mode 100644 index 00000000..990a2b47 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dlp_sensor_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_domainfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_domainfilter.cpython-311.pyc new file mode 100644 index 00000000..caf84f05 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_domainfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_domainfilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_domainfilter_entries.cpython-311.pyc new file mode 100644 index 00000000..f5a0037c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_domainfilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..d43a664c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_dnstranslation.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_dnstranslation.cpython-311.pyc new file mode 100644 index 00000000..db768c82 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_dnstranslation.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_domainfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_domainfilter.cpython-311.pyc new file mode 100644 index 00000000..d3a6a5b2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_domainfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_ftgddns.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_ftgddns.cpython-311.pyc new file mode 100644 index 00000000..9931116f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_ftgddns.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_ftgddns_filters.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_ftgddns_filters.cpython-311.pyc new file mode 100644 index 00000000..a845e9ee Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dnsfilter_profile_ftgddns_filters.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_add_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_add_device.cpython-311.pyc new file mode 100644 index 00000000..ea9c9661 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_add_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_add_devlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_add_devlist.cpython-311.pyc new file mode 100644 index 00000000..728b3d3d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_add_devlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_changehaseq.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_changehaseq.cpython-311.pyc new file mode 100644 index 00000000..3dc70340 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_changehaseq.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_del_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_del_device.cpython-311.pyc new file mode 100644 index 00000000..dd3c5757 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_del_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_del_devlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_del_devlist.cpython-311.pyc new file mode 100644 index 00000000..a4fb0e15 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_del_devlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_discover_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_discover_device.cpython-311.pyc new file mode 100644 index 00000000..936afbd8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_discover_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_import_devlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_import_devlist.cpython-311.pyc new file mode 100644 index 00000000..690511dc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_import_devlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_reload_devlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_reload_devlist.cpython-311.pyc new file mode 100644 index 00000000..13e03c23 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_reload_devlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_update_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_update_device.cpython-311.pyc new file mode 100644 index 00000000..9766483e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_update_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_update_devlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_update_devlist.cpython-311.pyc new file mode 100644 index 00000000..f3cead36 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvm_cmd_update_devlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_adom.cpython-311.pyc new file mode 100644 index 00000000..f67e1810 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_adom_objectmember.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_adom_objectmember.cpython-311.pyc new file mode 100644 index 00000000..28100ee7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_adom_objectmember.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device.cpython-311.pyc new file mode 100644 index 00000000..830da64b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device_replace_sn.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device_replace_sn.cpython-311.pyc new file mode 100644 index 00000000..ae606c6b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device_replace_sn.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device_vdom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device_vdom.cpython-311.pyc new file mode 100644 index 00000000..cbc6138e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_device_vdom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_folder.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_folder.cpython-311.pyc new file mode 100644 index 00000000..fb713cef Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_folder.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_group.cpython-311.pyc new file mode 100644 index 00000000..fb53eb6c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_group_objectmember.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_group_objectmember.cpython-311.pyc new file mode 100644 index 00000000..bc774a2d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_group_objectmember.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_adom.cpython-311.pyc new file mode 100644 index 00000000..63d69524 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_device.cpython-311.pyc new file mode 100644 index 00000000..d238e1dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_group.cpython-311.pyc new file mode 100644 index 00000000..19e57e01 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_metafields_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_revision.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_revision.cpython-311.pyc new file mode 100644 index 00000000..1304bbd2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_revision.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script.cpython-311.pyc new file mode 100644 index 00000000..2a3b5e25 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_execute.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_execute.cpython-311.pyc new file mode 100644 index 00000000..b1947682 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_execute.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_objectmember.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_objectmember.cpython-311.pyc new file mode 100644 index 00000000..66128158 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_objectmember.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_scriptschedule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_scriptschedule.cpython-311.pyc new file mode 100644 index 00000000..abc51a15 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_script_scriptschedule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_approve.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_approve.cpython-311.pyc new file mode 100644 index 00000000..3aaf31c9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_approve.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_discard.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_discard.cpython-311.pyc new file mode 100644 index 00000000..8857f91a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_discard.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_drop.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_drop.cpython-311.pyc new file mode 100644 index 00000000..e6195d64 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_drop.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_reject.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_reject.cpython-311.pyc new file mode 100644 index 00000000..fbe918c0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_reject.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_repair.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_repair.cpython-311.pyc new file mode 100644 index 00000000..e8e34244 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_repair.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_revert.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_revert.cpython-311.pyc new file mode 100644 index 00000000..efb014ae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_revert.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_review.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_review.cpython-311.pyc new file mode 100644 index 00000000..20d9b282 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_review.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_save.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_save.cpython-311.pyc new file mode 100644 index 00000000..3e6b1f4a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_save.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_start.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_start.cpython-311.pyc new file mode 100644 index 00000000..648afd36 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_start.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_submit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_submit.cpython-311.pyc new file mode 100644 index 00000000..f1abd2f9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workflow_submit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit.cpython-311.pyc new file mode 100644 index 00000000..0e2b3f8d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_dev.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_dev.cpython-311.pyc new file mode 100644 index 00000000..703b666e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_dev.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_obj.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_obj.cpython-311.pyc new file mode 100644 index 00000000..5bf8e636 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_obj.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_pkg.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_pkg.cpython-311.pyc new file mode 100644 index 00000000..b4495556 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_commit_pkg.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock.cpython-311.pyc new file mode 100644 index 00000000..da732fbd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_dev.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_dev.cpython-311.pyc new file mode 100644 index 00000000..3bce1ea0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_dev.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_obj.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_obj.cpython-311.pyc new file mode 100644 index 00000000..710a7c59 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_obj.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_pkg.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_pkg.cpython-311.pyc new file mode 100644 index 00000000..ae51b0b1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_lock_pkg.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock.cpython-311.pyc new file mode 100644 index 00000000..87613a35 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_dev.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_dev.cpython-311.pyc new file mode 100644 index 00000000..314c386d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_dev.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_obj.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_obj.cpython-311.pyc new file mode 100644 index 00000000..fcdbd077 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_obj.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_pkg.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_pkg.cpython-311.pyc new file mode 100644 index 00000000..1d2928ba Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dvmdb_workspace_unlock_pkg.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_address.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_address.cpython-311.pyc new file mode 100644 index 00000000..65e5d010 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_address_dynamicaddrmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_address_dynamicaddrmapping.cpython-311.pyc new file mode 100644 index 00000000..471877ec Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_address_dynamicaddrmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_certificate_local.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_certificate_local.cpython-311.pyc new file mode 100644 index 00000000..94799f99 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_certificate_local.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_certificate_local_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_certificate_local_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..34a982fa Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_certificate_local_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_input_interface.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_input_interface.cpython-311.pyc new file mode 100644 index 00000000..60155389 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_input_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_input_interface_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_input_interface_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..e17ff79b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_input_interface_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface.cpython-311.pyc new file mode 100644 index 00000000..8a69f27d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..7dad1900 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface_platformmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface_platformmapping.cpython-311.pyc new file mode 100644 index 00000000..1f4da199 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_interface_platformmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_ippool.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_ippool.cpython-311.pyc new file mode 100644 index 00000000..c276f233 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_ippool.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_multicast_interface.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_multicast_interface.cpython-311.pyc new file mode 100644 index 00000000..e8f556cc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_multicast_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_multicast_interface_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_multicast_interface_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..510fe945 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_multicast_interface_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vip.cpython-311.pyc new file mode 100644 index 00000000..7b7499a3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_members.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_members.cpython-311.pyc new file mode 100644 index 00000000..53036e4a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_members.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_members_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_members_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..10d9db34 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_members_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_neighbor.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_neighbor.cpython-311.pyc new file mode 100644 index 00000000..3860507b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_neighbor.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_neighbor_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_neighbor_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..53739cd1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_neighbor_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_server.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_server.cpython-311.pyc new file mode 100644 index 00000000..354467dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_server_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_server_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..83a8af72 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_virtualwanlink_server_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vpntunnel.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vpntunnel.cpython-311.pyc new file mode 100644 index 00000000..214b1690 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vpntunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vpntunnel_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vpntunnel_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..a77a075b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_dynamic_vpntunnel_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_blockallowlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_blockallowlist.cpython-311.pyc new file mode 100644 index 00000000..98ca0d0b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_blockallowlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_blockallowlist_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_blockallowlist_entries.cpython-311.pyc new file mode 100644 index 00000000..5f4eea8f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_blockallowlist_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bwl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bwl.cpython-311.pyc new file mode 100644 index 00000000..eb4abd9e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bwl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bwl_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bwl_entries.cpython-311.pyc new file mode 100644 index 00000000..88d58790 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bwl_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bword.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bword.cpython-311.pyc new file mode 100644 index 00000000..768c1386 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bword.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bword_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bword_entries.cpython-311.pyc new file mode 100644 index 00000000..25973044 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_bword_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_dnsbl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_dnsbl.cpython-311.pyc new file mode 100644 index 00000000..4a81a653 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_dnsbl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_dnsbl_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_dnsbl_entries.cpython-311.pyc new file mode 100644 index 00000000..14e10b9e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_dnsbl_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_fortishield.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_fortishield.cpython-311.pyc new file mode 100644 index 00000000..500a5b37 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_fortishield.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_iptrust.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_iptrust.cpython-311.pyc new file mode 100644 index 00000000..70726ce4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_iptrust.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_iptrust_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_iptrust_entries.cpython-311.pyc new file mode 100644 index 00000000..6c143e54 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_iptrust_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_mheader.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_mheader.cpython-311.pyc new file mode 100644 index 00000000..ede58c0b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_mheader.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_mheader_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_mheader_entries.cpython-311.pyc new file mode 100644 index 00000000..2901569e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_mheader_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_options.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_options.cpython-311.pyc new file mode 100644 index 00000000..31e16e8c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..e99c56b9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_filefilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_filefilter.cpython-311.pyc new file mode 100644 index 00000000..47a866fb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_filefilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_filefilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_filefilter_entries.cpython-311.pyc new file mode 100644 index 00000000..d32a2f89 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_filefilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_gmail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_gmail.cpython-311.pyc new file mode 100644 index 00000000..0e062ce9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_gmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_imap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_imap.cpython-311.pyc new file mode 100644 index 00000000..f7721d7e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_imap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_mapi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_mapi.cpython-311.pyc new file mode 100644 index 00000000..ced393ff Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_mapi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_msnhotmail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_msnhotmail.cpython-311.pyc new file mode 100644 index 00000000..b9f27b4a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_msnhotmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_otherwebmails.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_otherwebmails.cpython-311.pyc new file mode 100644 index 00000000..851be132 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_otherwebmails.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_pop3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_pop3.cpython-311.pyc new file mode 100644 index 00000000..a4cacd35 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_pop3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_smtp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_smtp.cpython-311.pyc new file mode 100644 index 00000000..b3443528 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_emailfilter_profile_smtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_exec_fgfm_reclaimdevtunnel.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_exec_fgfm_reclaimdevtunnel.cpython-311.pyc new file mode 100644 index 00000000..af6aaece Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_exec_fgfm_reclaimdevtunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_export_playbooks.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_export_playbooks.cpython-311.pyc new file mode 100644 index 00000000..d07af54d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_export_playbooks.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_dataplan.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_dataplan.cpython-311.pyc new file mode 100644 index 00000000..5e4c5b56 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_dataplan.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_simprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_simprofile.cpython-311.pyc new file mode 100644 index 00000000..1c7ce98f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_simprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_simprofile_autoswitchprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_simprofile_autoswitchprofile.cpython-311.pyc new file mode 100644 index 00000000..2b2e9841 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_simprofile_autoswitchprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_template.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_template.cpython-311.pyc new file mode 100644 index 00000000..baf54209 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_extendercontroller_template.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fact.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fact.cpython-311.pyc new file mode 100644 index 00000000..b2624b03 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fact.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_filefilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_filefilter_profile.cpython-311.pyc new file mode 100644 index 00000000..faf1fa0e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_filefilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_filefilter_profile_rules.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_filefilter_profile_rules.cpython-311.pyc new file mode 100644 index 00000000..5e303a78 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_filefilter_profile_rules.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy.cpython-311.pyc new file mode 100644 index 00000000..fd4da38b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway.cpython-311.pyc new file mode 100644 index 00000000..f4433721 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway_realservers.cpython-311.pyc new file mode 100644 index 00000000..aa308908 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway_sslciphersuites.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway_sslciphersuites.cpython-311.pyc new file mode 100644 index 00000000..18cb2ae7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_apigateway_sslciphersuites.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_realservers.cpython-311.pyc new file mode 100644 index 00000000..7e5a7a0c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_serverpubkeyauthsettings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_serverpubkeyauthsettings.cpython-311.pyc new file mode 100644 index 00000000..1f179215 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_serverpubkeyauthsettings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_serverpubkeyauthsettings_certextension.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_serverpubkeyauthsettings_certextension.cpython-311.pyc new file mode 100644 index 00000000..67e41aff Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_accessproxy_serverpubkeyauthsettings_certextension.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address.cpython-311.pyc new file mode 100644 index 00000000..9d500f14 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6.cpython-311.pyc new file mode 100644 index 00000000..789017b7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..8cd8dc6f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_dynamicmapping_subnetsegment.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_dynamicmapping_subnetsegment.cpython-311.pyc new file mode 100644 index 00000000..e76a21dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_dynamicmapping_subnetsegment.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_list.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_list.cpython-311.pyc new file mode 100644 index 00000000..52017c25 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_subnetsegment.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_subnetsegment.cpython-311.pyc new file mode 100644 index 00000000..dbdf562e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_subnetsegment.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_tagging.cpython-311.pyc new file mode 100644 index 00000000..c16ab3ad Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template.cpython-311.pyc new file mode 100644 index 00000000..6a848453 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template_subnetsegment.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template_subnetsegment.cpython-311.pyc new file mode 100644 index 00000000..aeab7ef5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template_subnetsegment.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template_subnetsegment_values.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template_subnetsegment_values.cpython-311.pyc new file mode 100644 index 00000000..b6ce9811 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address6template_subnetsegment_values.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..66f6baae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_list.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_list.cpython-311.pyc new file mode 100644 index 00000000..4754b00d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_tagging.cpython-311.pyc new file mode 100644 index 00000000..0207895e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_address_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp.cpython-311.pyc new file mode 100644 index 00000000..c11bdd10 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6.cpython-311.pyc new file mode 100644 index 00000000..231aaf03 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..b5e42770 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6_tagging.cpython-311.pyc new file mode 100644 index 00000000..0f627435 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp6_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..b3e5d3dc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp_tagging.cpython-311.pyc new file mode 100644 index 00000000..bc247ec8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_addrgrp_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_carrierendpointbwl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_carrierendpointbwl.cpython-311.pyc new file mode 100644 index 00000000..eae0b355 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_carrierendpointbwl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_carrierendpointbwl_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_carrierendpointbwl_entries.cpython-311.pyc new file mode 100644 index 00000000..5a696e95 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_carrierendpointbwl_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_decryptedtrafficmirror.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_decryptedtrafficmirror.cpython-311.pyc new file mode 100644 index 00000000..1e69ecfc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_decryptedtrafficmirror.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp.cpython-311.pyc new file mode 100644 index 00000000..b76bf1d3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_apn.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_apn.cpython-311.pyc new file mode 100644 index 00000000..342080c4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_apn.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ieremovepolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ieremovepolicy.cpython-311.pyc new file mode 100644 index 00000000..2e4ceba3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ieremovepolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ievalidation.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ievalidation.cpython-311.pyc new file mode 100644 index 00000000..bb638212 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ievalidation.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_imsi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_imsi.cpython-311.pyc new file mode 100644 index 00000000..77ac9ac4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_imsi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ippolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ippolicy.cpython-311.pyc new file mode 100644 index 00000000..6597f69c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_ippolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimit.cpython-311.pyc new file mode 100644 index 00000000..63df0652 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv0.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv0.cpython-311.pyc new file mode 100644 index 00000000..16d57a3d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv0.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv1.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv1.cpython-311.pyc new file mode 100644 index 00000000..52ecbd09 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv1.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv2.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv2.cpython-311.pyc new file mode 100644 index 00000000..6317e5b5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_messageratelimitv2.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_noippolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_noippolicy.cpython-311.pyc new file mode 100644 index 00000000..af9e9766 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_noippolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_perapnshaper.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_perapnshaper.cpython-311.pyc new file mode 100644 index 00000000..d74a4f91 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_perapnshaper.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_policy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_policy.cpython-311.pyc new file mode 100644 index 00000000..6bed7721 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_policyv2.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_policyv2.cpython-311.pyc new file mode 100644 index 00000000..6c78b409 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_gtp_policyv2.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_identitybasedroute.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_identitybasedroute.cpython-311.pyc new file mode 100644 index 00000000..efee45c7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_identitybasedroute.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_identitybasedroute_rule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_identitybasedroute_rule.cpython-311.pyc new file mode 100644 index 00000000..c3a792cc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_identitybasedroute_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservice.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservice.cpython-311.pyc new file mode 100644 index 00000000..bf018253 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservice.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservice_entry.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservice_entry.cpython-311.pyc new file mode 100644 index 00000000..316e1980 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservice_entry.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition.cpython-311.pyc new file mode 100644 index 00000000..f0917fbd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition_entry.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition_entry.cpython-311.pyc new file mode 100644 index 00000000..5afc66f1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition_entry.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition_entry_portrange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition_entry_portrange.cpython-311.pyc new file mode 100644 index 00000000..34126472 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetserviceaddition_entry_portrange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom.cpython-311.pyc new file mode 100644 index 00000000..7da55ada Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_disableentry.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_disableentry.cpython-311.pyc new file mode 100644 index 00000000..e9ecce07 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_disableentry.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_disableentry_iprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_disableentry_iprange.cpython-311.pyc new file mode 100644 index 00000000..d6566dad Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_disableentry_iprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_entry.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_entry.cpython-311.pyc new file mode 100644 index 00000000..7a98d96f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_entry.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_entry_portrange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_entry_portrange.cpython-311.pyc new file mode 100644 index 00000000..ce254d6a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustom_entry_portrange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustomgroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustomgroup.cpython-311.pyc new file mode 100644 index 00000000..558b8f7b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicecustomgroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicegroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicegroup.cpython-311.pyc new file mode 100644 index 00000000..22d028b1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicegroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicename.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicename.cpython-311.pyc new file mode 100644 index 00000000..d1001b63 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_internetservicename.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool.cpython-311.pyc new file mode 100644 index 00000000..abc041a0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool6.cpython-311.pyc new file mode 100644 index 00000000..62eb2cec Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool6_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool6_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..2e95bd15 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool6_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..379df6f1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ippool_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ldbmonitor.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ldbmonitor.cpython-311.pyc new file mode 100644 index 00000000..fc89b415 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ldbmonitor.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile.cpython-311.pyc new file mode 100644 index 00000000..3d8daae0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_dupe.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_dupe.cpython-311.pyc new file mode 100644 index 00000000..3df1778d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_dupe.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_flood.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_flood.cpython-311.pyc new file mode 100644 index 00000000..9e06d12a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_flood.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_notification.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_notification.cpython-311.pyc new file mode 100644 index 00000000..5b09e37c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_notification.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_notifmsisdn.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_notifmsisdn.cpython-311.pyc new file mode 100644 index 00000000..9869b0bb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_notifmsisdn.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_outbreakprevention.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_outbreakprevention.cpython-311.pyc new file mode 100644 index 00000000..d3137718 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_mmsprofile_outbreakprevention.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress.cpython-311.pyc new file mode 100644 index 00000000..143bef5d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress6.cpython-311.pyc new file mode 100644 index 00000000..6f2b044c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress6_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress6_tagging.cpython-311.pyc new file mode 100644 index 00000000..97e4f21a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress6_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress_tagging.cpython-311.pyc new file mode 100644 index 00000000..e04f6a5a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_multicastaddress_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profilegroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profilegroup.cpython-311.pyc new file mode 100644 index 00000000..07534e86 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profilegroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions.cpython-311.pyc new file mode 100644 index 00000000..2227488f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs.cpython-311.pyc new file mode 100644 index 00000000..f5d9c69d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_filefilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_filefilter.cpython-311.pyc new file mode 100644 index 00000000..79d515aa Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_filefilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_filefilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_filefilter_entries.cpython-311.pyc new file mode 100644 index 00000000..864229b4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_filefilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_serverkeytab.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_serverkeytab.cpython-311.pyc new file mode 100644 index 00000000..cb5f2cfc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_cifs_serverkeytab.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_dns.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_dns.cpython-311.pyc new file mode 100644 index 00000000..8d5918d1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_dns.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_ftp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_ftp.cpython-311.pyc new file mode 100644 index 00000000..dd03e8f2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_ftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_http.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_http.cpython-311.pyc new file mode 100644 index 00000000..0a569b8c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_http.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_imap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_imap.cpython-311.pyc new file mode 100644 index 00000000..2ef919fd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_imap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_mailsignature.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_mailsignature.cpython-311.pyc new file mode 100644 index 00000000..eebb4ac5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_mailsignature.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_mapi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_mapi.cpython-311.pyc new file mode 100644 index 00000000..f7509fc8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_mapi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_nntp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_nntp.cpython-311.pyc new file mode 100644 index 00000000..3e397b82 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_nntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_pop3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_pop3.cpython-311.pyc new file mode 100644 index 00000000..5e04d113 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_pop3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_smtp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_smtp.cpython-311.pyc new file mode 100644 index 00000000..346d4698 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_smtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_ssh.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_ssh.cpython-311.pyc new file mode 100644 index 00000000..6bb68975 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_profileprotocoloptions_ssh.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress.cpython-311.pyc new file mode 100644 index 00000000..1806457c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress_headergroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress_headergroup.cpython-311.pyc new file mode 100644 index 00000000..1df36502 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress_headergroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress_tagging.cpython-311.pyc new file mode 100644 index 00000000..f26820a3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddress_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddrgrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddrgrp.cpython-311.pyc new file mode 100644 index 00000000..86427d93 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddrgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddrgrp_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddrgrp_tagging.cpython-311.pyc new file mode 100644 index 00000000..2da7ab45 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_proxyaddrgrp_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_group.cpython-311.pyc new file mode 100644 index 00000000..f9a5b1f4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_onetime.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_onetime.cpython-311.pyc new file mode 100644 index 00000000..8fc5af3b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_onetime.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_recurring.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_recurring.cpython-311.pyc new file mode 100644 index 00000000..40b3a21a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_schedule_recurring.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_category.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_category.cpython-311.pyc new file mode 100644 index 00000000..a8c76875 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_category.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_custom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_custom.cpython-311.pyc new file mode 100644 index 00000000..92965abe Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_group.cpython-311.pyc new file mode 100644 index 00000000..81161656 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_service_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shaper_peripshaper.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shaper_peripshaper.cpython-311.pyc new file mode 100644 index 00000000..fd6965ac Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shaper_peripshaper.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shaper_trafficshaper.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shaper_trafficshaper.cpython-311.pyc new file mode 100644 index 00000000..a0763dc5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shaper_trafficshaper.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shapingprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shapingprofile.cpython-311.pyc new file mode 100644 index 00000000..17b7793c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shapingprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shapingprofile_shapingentries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shapingprofile_shapingentries.cpython-311.pyc new file mode 100644 index 00000000..d9ac18d4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_shapingprofile_shapingentries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ssh_localca.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ssh_localca.cpython-311.pyc new file mode 100644 index 00000000..dd548c92 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_ssh_localca.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile.cpython-311.pyc new file mode 100644 index 00000000..89f54acf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_dot.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_dot.cpython-311.pyc new file mode 100644 index 00000000..d9ba378e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_dot.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ftps.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ftps.cpython-311.pyc new file mode 100644 index 00000000..b40ee826 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ftps.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_https.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_https.cpython-311.pyc new file mode 100644 index 00000000..c297b955 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_https.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_imaps.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_imaps.cpython-311.pyc new file mode 100644 index 00000000..fbc12f38 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_imaps.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_pop3s.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_pop3s.cpython-311.pyc new file mode 100644 index 00000000..a15a3f40 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_pop3s.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_smtps.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_smtps.cpython-311.pyc new file mode 100644 index 00000000..dc501301 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_smtps.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ssh.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ssh.cpython-311.pyc new file mode 100644 index 00000000..96b5af55 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ssh.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ssl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ssl.cpython-311.pyc new file mode 100644 index 00000000..316a20fb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_ssl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_sslexempt.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_sslexempt.cpython-311.pyc new file mode 100644 index 00000000..b57a4849 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_sslexempt.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_sslserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_sslserver.cpython-311.pyc new file mode 100644 index 00000000..cf4c2af0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_sslsshprofile_sslserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_trafficclass.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_trafficclass.cpython-311.pyc new file mode 100644 index 00000000..c7523c26 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_trafficclass.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip.cpython-311.pyc new file mode 100644 index 00000000..09154453 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46.cpython-311.pyc new file mode 100644 index 00000000..13bd82ee Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..ce94a0c1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46_realservers.cpython-311.pyc new file mode 100644 index 00000000..16f82336 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip46_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6.cpython-311.pyc new file mode 100644 index 00000000..218fa802 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64.cpython-311.pyc new file mode 100644 index 00000000..dbd8dafb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..50a4d7fd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64_realservers.cpython-311.pyc new file mode 100644 index 00000000..6b4c08f3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip64_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..bac5a5ae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_realservers.cpython-311.pyc new file mode 100644 index 00000000..aee938b2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_sslciphersuites.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_sslciphersuites.cpython-311.pyc new file mode 100644 index 00000000..f507e4b9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_sslciphersuites.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_sslserverciphersuites.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_sslserverciphersuites.cpython-311.pyc new file mode 100644 index 00000000..9e5c278a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip6_sslserverciphersuites.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..7c7a088f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping_realservers.cpython-311.pyc new file mode 100644 index 00000000..267bdd97 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping_sslciphersuites.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping_sslciphersuites.cpython-311.pyc new file mode 100644 index 00000000..c693d002 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_dynamicmapping_sslciphersuites.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_realservers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_realservers.cpython-311.pyc new file mode 100644 index 00000000..d28ca9f1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_realservers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_sslciphersuites.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_sslciphersuites.cpython-311.pyc new file mode 100644 index 00000000..6fd569d5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_sslciphersuites.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_sslserverciphersuites.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_sslserverciphersuites.cpython-311.pyc new file mode 100644 index 00000000..e410fbaa Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vip_sslserverciphersuites.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp.cpython-311.pyc new file mode 100644 index 00000000..3ae34c6c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp46.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp46.cpython-311.pyc new file mode 100644 index 00000000..4da77392 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp46.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp6.cpython-311.pyc new file mode 100644 index 00000000..c6e39675 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp64.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp64.cpython-311.pyc new file mode 100644 index 00000000..5658ca16 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp64.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..284ff759 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_vipgrp_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_wildcardfqdn_custom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_wildcardfqdn_custom.cpython-311.pyc new file mode 100644 index 00000000..a1635d3e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_wildcardfqdn_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_wildcardfqdn_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_wildcardfqdn_group.cpython-311.pyc new file mode 100644 index 00000000..67863fb4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_firewall_wildcardfqdn_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_analyzer_virusreport.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_analyzer_virusreport.cpython-311.pyc new file mode 100644 index 00000000..f2ba269b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_analyzer_virusreport.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_avips_advancedlog.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_avips_advancedlog.cpython-311.pyc new file mode 100644 index 00000000..d3e88495 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_avips_advancedlog.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_avips_webproxy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_avips_webproxy.cpython-311.pyc new file mode 100644 index 00000000..aa6af9f8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_avips_webproxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_customurllist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_customurllist.cpython-311.pyc new file mode 100644 index 00000000..a8625707 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_customurllist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_diskquota.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_diskquota.cpython-311.pyc new file mode 100644 index 00000000..68df697a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_diskquota.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fctservices.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fctservices.cpython-311.pyc new file mode 100644 index 00000000..f823e0a1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fctservices.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting.cpython-311.pyc new file mode 100644 index 00000000..7e2f8cc0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverride.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverride.cpython-311.pyc new file mode 100644 index 00000000..e939074e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverride.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverridetoclient.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverridetoclient.cpython-311.pyc new file mode 100644 index 00000000..a3c96065 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverridetoclient.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverridetoclient_announceip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverridetoclient_announceip.cpython-311.pyc new file mode 100644 index 00000000..bcb391ba Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_pushoverridetoclient_announceip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_serveroverride.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_serveroverride.cpython-311.pyc new file mode 100644 index 00000000..4aa75ae5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_serveroverride.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_serveroverride_servlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_serveroverride_servlist.cpython-311.pyc new file mode 100644 index 00000000..d36ac10f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_serveroverride_servlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_updateschedule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_updateschedule.cpython-311.pyc new file mode 100644 index 00000000..1c04ab13 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fdssetting_updateschedule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fwmsetting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fwmsetting.cpython-311.pyc new file mode 100644 index 00000000..d6a82600 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_fwmsetting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_multilayer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_multilayer.cpython-311.pyc new file mode 100644 index 00000000..c1424ba3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_multilayer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_publicnetwork.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_publicnetwork.cpython-311.pyc new file mode 100644 index 00000000..bf247e14 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_publicnetwork.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveraccesspriorities.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveraccesspriorities.cpython-311.pyc new file mode 100644 index 00000000..d0cbda4b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveraccesspriorities.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveraccesspriorities_privateserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveraccesspriorities_privateserver.cpython-311.pyc new file mode 100644 index 00000000..09f6ea79 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveraccesspriorities_privateserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveroverridestatus.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveroverridestatus.cpython-311.pyc new file mode 100644 index 00000000..a5779c3d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_serveroverridestatus.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_service.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_service.cpython-311.pyc new file mode 100644 index 00000000..7c9ea26e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_service.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting.cpython-311.pyc new file mode 100644 index 00000000..4fdcebd8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting_serveroverride.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting_serveroverride.cpython-311.pyc new file mode 100644 index 00000000..dd98c898 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting_serveroverride.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting_serveroverride_servlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting_serveroverride_servlist.cpython-311.pyc new file mode 100644 index 00000000..cb25a494 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_fgdsetting_serveroverride_servlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_webproxy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_webproxy.cpython-311.pyc new file mode 100644 index 00000000..defcdb0c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fmupdate_webspam_webproxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan.cpython-311.pyc new file mode 100644 index 00000000..4925fce6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver.cpython-311.pyc new file mode 100644 index 00000000..2681498a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_excluderange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_excluderange.cpython-311.pyc new file mode 100644 index 00000000..ffd6516f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_excluderange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_iprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_iprange.cpython-311.pyc new file mode 100644 index 00000000..e58dd2d9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_iprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_options.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_options.cpython-311.pyc new file mode 100644 index 00000000..d064b75e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_reservedaddress.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_reservedaddress.cpython-311.pyc new file mode 100644 index 00000000..c1ec0fa5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dhcpserver_reservedaddress.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..82fa5b35 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver.cpython-311.pyc new file mode 100644 index 00000000..8a81ffb1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_excluderange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_excluderange.cpython-311.pyc new file mode 100644 index 00000000..9cb92b1d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_excluderange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_iprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_iprange.cpython-311.pyc new file mode 100644 index 00000000..d8515dfb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_iprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_options.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_options.cpython-311.pyc new file mode 100644 index 00000000..fd741a4b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_reservedaddress.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_reservedaddress.cpython-311.pyc new file mode 100644 index 00000000..ea0523d8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_dhcpserver_reservedaddress.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface.cpython-311.pyc new file mode 100644 index 00000000..b82f56cc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6.cpython-311.pyc new file mode 100644 index 00000000..456166c8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6delegatedprefixlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6delegatedprefixlist.cpython-311.pyc new file mode 100644 index 00000000..64efb5a9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6delegatedprefixlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6extraaddr.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6extraaddr.cpython-311.pyc new file mode 100644 index 00000000..1ef1df30 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6extraaddr.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6prefixlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6prefixlist.cpython-311.pyc new file mode 100644 index 00000000..620cc1f1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_ip6prefixlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_vrrp6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_vrrp6.cpython-311.pyc new file mode 100644 index 00000000..71ea5562 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_ipv6_vrrp6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_secondaryip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_secondaryip.cpython-311.pyc new file mode 100644 index 00000000..bfc91dde Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_dynamicmapping_interface_secondaryip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface.cpython-311.pyc new file mode 100644 index 00000000..d0714728 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6.cpython-311.pyc new file mode 100644 index 00000000..6c7935b2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6delegatedprefixlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6delegatedprefixlist.cpython-311.pyc new file mode 100644 index 00000000..63810e90 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6delegatedprefixlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6extraaddr.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6extraaddr.cpython-311.pyc new file mode 100644 index 00000000..a98c8a25 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6extraaddr.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6prefixlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6prefixlist.cpython-311.pyc new file mode 100644 index 00000000..56269220 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_ip6prefixlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_vrrp6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_vrrp6.cpython-311.pyc new file mode 100644 index 00000000..998ab2cc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_ipv6_vrrp6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_secondaryip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_secondaryip.cpython-311.pyc new file mode 100644 index 00000000..67c07928 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_secondaryip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_vrrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_vrrp.cpython-311.pyc new file mode 100644 index 00000000..17a80650 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_fsp_vlan_interface_vrrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_generic.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_generic.cpython-311.pyc new file mode 100644 index 00000000..e580b90c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_generic.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_apn.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_apn.cpython-311.pyc new file mode 100644 index 00000000..bdf8ec81 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_apn.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_apngrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_apngrp.cpython-311.pyc new file mode 100644 index 00000000..ebdd23d4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_apngrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_iewhitelist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_iewhitelist.cpython-311.pyc new file mode 100644 index 00000000..508f011c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_iewhitelist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_iewhitelist_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_iewhitelist_entries.cpython-311.pyc new file mode 100644 index 00000000..58841d97 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_iewhitelist_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_messagefilterv0v1.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_messagefilterv0v1.cpython-311.pyc new file mode 100644 index 00000000..125cdb98 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_messagefilterv0v1.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_messagefilterv2.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_messagefilterv2.cpython-311.pyc new file mode 100644 index 00000000..63b25cac Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_messagefilterv2.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_tunnellimit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_tunnellimit.cpython-311.pyc new file mode 100644 index 00000000..f2b973da Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_gtp_tunnellimit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqp3gppcellular.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqp3gppcellular.cpython-311.pyc new file mode 100644 index 00000000..966e9e78 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqp3gppcellular.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqp3gppcellular_mccmnclist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqp3gppcellular_mccmnclist.cpython-311.pyc new file mode 100644 index 00000000..1a2970dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqp3gppcellular_mccmnclist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpipaddresstype.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpipaddresstype.cpython-311.pyc new file mode 100644 index 00000000..d9c164d2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpipaddresstype.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm.cpython-311.pyc new file mode 100644 index 00000000..ac81c629 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist.cpython-311.pyc new file mode 100644 index 00000000..76c2e2e9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist_eapmethod.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist_eapmethod.cpython-311.pyc new file mode 100644 index 00000000..09e70200 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist_eapmethod.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist_eapmethod_authparam.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist_eapmethod_authparam.cpython-311.pyc new file mode 100644 index 00000000..0a5f4ad1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnairealm_nailist_eapmethod_authparam.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnetworkauthtype.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnetworkauthtype.cpython-311.pyc new file mode 100644 index 00000000..9022a98a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpnetworkauthtype.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqproamingconsortium.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqproamingconsortium.cpython-311.pyc new file mode 100644 index 00000000..ee598146 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqproamingconsortium.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqproamingconsortium_oilist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqproamingconsortium_oilist.cpython-311.pyc new file mode 100644 index 00000000..7e9d41e2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqproamingconsortium_oilist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpvenuename.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpvenuename.cpython-311.pyc new file mode 100644 index 00000000..4e3f1a2e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpvenuename.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpvenuename_valuelist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpvenuename_valuelist.cpython-311.pyc new file mode 100644 index 00000000..9c25d044 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_anqpvenuename_valuelist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpconncapability.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpconncapability.cpython-311.pyc new file mode 100644 index 00000000..aa4fe79e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpconncapability.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpoperatorname.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpoperatorname.cpython-311.pyc new file mode 100644 index 00000000..8873f290 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpoperatorname.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpoperatorname_valuelist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpoperatorname_valuelist.cpython-311.pyc new file mode 100644 index 00000000..a786aa97 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpoperatorname_valuelist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider.cpython-311.pyc new file mode 100644 index 00000000..75a0968c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider_friendlyname.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider_friendlyname.cpython-311.pyc new file mode 100644 index 00000000..0c07acaa Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider_friendlyname.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider_servicedescription.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider_servicedescription.cpython-311.pyc new file mode 100644 index 00000000..181aa9f3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qposuprovider_servicedescription.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpwanmetric.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpwanmetric.cpython-311.pyc new file mode 100644 index 00000000..e1079fdc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_h2qpwanmetric.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_hsprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_hsprofile.cpython-311.pyc new file mode 100644 index 00000000..9e675c06 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_hsprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap.cpython-311.pyc new file mode 100644 index 00000000..8b8755fb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap_dscpexcept.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap_dscpexcept.cpython-311.pyc new file mode 100644 index 00000000..96dbe995 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap_dscpexcept.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap_dscprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap_dscprange.cpython-311.pyc new file mode 100644 index 00000000..e6c2cb1f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_hotspot20_qosmap_dscprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile.cpython-311.pyc new file mode 100644 index 00000000..e5879ad4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_icapheaders.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_icapheaders.cpython-311.pyc new file mode 100644 index 00000000..d9aa738c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_icapheaders.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_respmodforwardrules.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_respmodforwardrules.cpython-311.pyc new file mode 100644 index 00000000..cd7f42ce Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_respmodforwardrules.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_respmodforwardrules_headergroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_respmodforwardrules_headergroup.cpython-311.pyc new file mode 100644 index 00000000..2a93b433 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_profile_respmodforwardrules_headergroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_server.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_server.cpython-311.pyc new file mode 100644 index 00000000..8997ab7f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_icap_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_custom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_custom.cpython-311.pyc new file mode 100644 index 00000000..af9bae5c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor.cpython-311.pyc new file mode 100644 index 00000000..0f0d00de Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor_entries.cpython-311.pyc new file mode 100644 index 00000000..e5a46d14 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor_entries_exemptip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor_entries_exemptip.cpython-311.pyc new file mode 100644 index 00000000..68b815ce Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_ips_sensor_entries_exemptip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_log_customfield.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_log_customfield.cpython-311.pyc new file mode 100644 index 00000000..6a0d7879 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_log_customfield.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_metafields_system_admin_user.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_metafields_system_admin_user.cpython-311.pyc new file mode 100644 index 00000000..371b36d1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_metafields_system_admin_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_move.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_move.cpython-311.pyc new file mode 100644 index 00000000..43ed1c4c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_move.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile.cpython-311.pyc new file mode 100644 index 00000000..c6ea5e27 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile_mpskgroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile_mpskgroup.cpython-311.pyc new file mode 100644 index 00000000..155a740e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile_mpskgroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile_mpskgroup_mpskkey.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile_mpskgroup_mpskkey.cpython-311.pyc new file mode 100644 index 00000000..891aa220 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_mpskprofile_mpskgroup_mpskkey.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_authentication_rule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_authentication_rule.cpython-311.pyc new file mode 100644 index 00000000..f1e1806a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_authentication_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_authentication_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_authentication_setting.cpython-311.pyc new file mode 100644 index 00000000..5ee535b1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_authentication_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_central_dnat.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_central_dnat.cpython-311.pyc new file mode 100644 index 00000000..c365b05c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_central_dnat.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_central_dnat6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_central_dnat6.cpython-311.pyc new file mode 100644 index 00000000..a9140aa7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_central_dnat6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_centralsnatmap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_centralsnatmap.cpython-311.pyc new file mode 100644 index 00000000..c3a76e28 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_centralsnatmap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_consolidated_policy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_consolidated_policy.cpython-311.pyc new file mode 100644 index 00000000..43f313f5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_consolidated_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_consolidated_policy_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_consolidated_policy_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..9fb874c9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_consolidated_policy_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy.cpython-311.pyc new file mode 100644 index 00000000..54e4b31b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy6.cpython-311.pyc new file mode 100644 index 00000000..2c2656d9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy6_anomaly.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy6_anomaly.cpython-311.pyc new file mode 100644 index 00000000..0ed50555 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy6_anomaly.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy_anomaly.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy_anomaly.cpython-311.pyc new file mode 100644 index 00000000..80faf57b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_dospolicy_anomaly.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy.cpython-311.pyc new file mode 100644 index 00000000..2313ed98 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy6.cpython-311.pyc new file mode 100644 index 00000000..b8f09999 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy6_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy6_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..1066e774 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy6_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..5994f9ff Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_interfacepolicy_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_localinpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_localinpolicy.cpython-311.pyc new file mode 100644 index 00000000..dca63906 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_localinpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_localinpolicy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_localinpolicy6.cpython-311.pyc new file mode 100644 index 00000000..c8393b5c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_localinpolicy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_multicastpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_multicastpolicy.cpython-311.pyc new file mode 100644 index 00000000..91b32684 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_multicastpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_multicastpolicy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_multicastpolicy6.cpython-311.pyc new file mode 100644 index 00000000..62b40949 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_multicastpolicy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy.cpython-311.pyc new file mode 100644 index 00000000..add81c70 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy46.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy46.cpython-311.pyc new file mode 100644 index 00000000..43c58a5e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy46.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy6.cpython-311.pyc new file mode 100644 index 00000000..85946b4c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy64.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy64.cpython-311.pyc new file mode 100644 index 00000000..e67abc60 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy64.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy6_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy6_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..80572e47 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy6_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..0fad0c3f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_vpndstnode.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_vpndstnode.cpython-311.pyc new file mode 100644 index 00000000..72c2a288 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_vpndstnode.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_vpnsrcnode.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_vpnsrcnode.cpython-311.pyc new file mode 100644 index 00000000..7c1403ac Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_policy_vpnsrcnode.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_proxypolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_proxypolicy.cpython-311.pyc new file mode 100644 index 00000000..7b45c94c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_proxypolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_proxypolicy_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_proxypolicy_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..b94341c9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_proxypolicy_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_securitypolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_securitypolicy.cpython-311.pyc new file mode 100644 index 00000000..bf699411 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_securitypolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_securitypolicy_sectionvalue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_securitypolicy_sectionvalue.cpython-311.pyc new file mode 100644 index 00000000..f0f81901 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_securitypolicy_sectionvalue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_shapingpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_shapingpolicy.cpython-311.pyc new file mode 100644 index 00000000..9e09362b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_firewall_shapingpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_policy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_policy.cpython-311.pyc new file mode 100644 index 00000000..71ddc3b6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_policy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_policy6.cpython-311.pyc new file mode 100644 index 00000000..e697b92f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_shapingpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_shapingpolicy.cpython-311.pyc new file mode 100644 index 00000000..99e7ab76 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_footer_shapingpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_policy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_policy.cpython-311.pyc new file mode 100644 index 00000000..284dab3c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_policy6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_policy6.cpython-311.pyc new file mode 100644 index 00000000..bef6946e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_shapingpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_shapingpolicy.cpython-311.pyc new file mode 100644 index 00000000..0ad964ad Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pkg_header_shapingpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_address.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_address.cpython-311.pyc new file mode 100644 index 00000000..b6d701a5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_addrgrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_addrgrp.cpython-311.pyc new file mode 100644 index 00000000..5211495e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_addrgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_centralsnatmap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_centralsnatmap.cpython-311.pyc new file mode 100644 index 00000000..25f1f696 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_centralsnatmap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_policy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_policy.cpython-311.pyc new file mode 100644 index 00000000..d6f81174 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_service_custom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_service_custom.cpython-311.pyc new file mode 100644 index 00000000..258bd70f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_service_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_service_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_service_group.cpython-311.pyc new file mode 100644 index 00000000..b98a6ad3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_metafields_firewall_service_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_reset_database.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_reset_database.cpython-311.pyc new file mode 100644 index 00000000..7e0e0404 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_reset_database.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_upgrade.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_upgrade.cpython-311.pyc new file mode 100644 index 00000000..8761baee Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_upgrade.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_commit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_commit.cpython-311.pyc new file mode 100644 index 00000000..9946aeaf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_commit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_lock.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_lock.cpython-311.pyc new file mode 100644 index 00000000..3dd36216 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_lock.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_unlock.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_unlock.cpython-311.pyc new file mode 100644 index 00000000..3bf5068f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_config_workspace_unlock.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_devprof_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_devprof_adom.cpython-311.pyc new file mode 100644 index 00000000..8f29f060 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_devprof_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_devprof_pkg.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_devprof_pkg.cpython-311.pyc new file mode 100644 index 00000000..829fc49f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_devprof_pkg.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg.cpython-311.pyc new file mode 100644 index 00000000..9cb45e3f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg_adom.cpython-311.pyc new file mode 100644 index 00000000..1d5f5322 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg_global.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg_global.cpython-311.pyc new file mode 100644 index 00000000..5cb0148d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_pkg_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_wanprof_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_wanprof_adom.cpython-311.pyc new file mode 100644 index 00000000..d7473c4a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_wanprof_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_wanprof_pkg.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_wanprof_pkg.cpython-311.pyc new file mode 100644 index 00000000..a9512302 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_pm_wanprof_pkg.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_qosprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_qosprofile.cpython-311.pyc new file mode 100644 index 00000000..d3df25cd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_qosprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_region.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_region.cpython-311.pyc new file mode 100644 index 00000000..5669f94c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_region.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_rename.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_rename.cpython-311.pyc new file mode 100644 index 00000000..7595afd7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_rename.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_abort.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_abort.cpython-311.pyc new file mode 100644 index 00000000..3edaa1bc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_abort.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_assign_package.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_assign_package.cpython-311.pyc new file mode 100644 index 00000000..4e248bec Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_assign_package.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_import_dev_objs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_import_dev_objs.cpython-311.pyc new file mode 100644 index 00000000..6ba61126 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_import_dev_objs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_device.cpython-311.pyc new file mode 100644 index 00000000..803ed587 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_package.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_package.cpython-311.pyc new file mode 100644 index 00000000..acdac51b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_package.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_preview.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_preview.cpython-311.pyc new file mode 100644 index 00000000..8137ca88 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_install_preview.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_cancel_install.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_cancel_install.cpython-311.pyc new file mode 100644 index 00000000..cd90788d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_cancel_install.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_clone.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_clone.cpython-311.pyc new file mode 100644 index 00000000..27b096df Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_clone.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_commit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_commit.cpython-311.pyc new file mode 100644 index 00000000..ffc69750 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_commit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_move.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_move.cpython-311.pyc new file mode 100644 index 00000000..0a364e2f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_package_move.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_pblock_clone.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_pblock_clone.cpython-311.pyc new file mode 100644 index 00000000..91ab9c7f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_pblock_clone.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_preview_result.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_preview_result.cpython-311.pyc new file mode 100644 index 00000000..9400707c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_preview_result.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_reinstall_package.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_reinstall_package.cpython-311.pyc new file mode 100644 index 00000000..693b700e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_reinstall_package.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_sign_certificate_template.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_sign_certificate_template.cpython-311.pyc new file mode 100644 index 00000000..0446c9f3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_securityconsole_sign_certificate_template.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bwl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bwl.cpython-311.pyc new file mode 100644 index 00000000..67aff57d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bwl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bwl_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bwl_entries.cpython-311.pyc new file mode 100644 index 00000000..0e6e5296 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bwl_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bword.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bword.cpython-311.pyc new file mode 100644 index 00000000..0808fb58 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bword.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bword_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bword_entries.cpython-311.pyc new file mode 100644 index 00000000..911854df Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_bword_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_dnsbl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_dnsbl.cpython-311.pyc new file mode 100644 index 00000000..db431c63 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_dnsbl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_dnsbl_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_dnsbl_entries.cpython-311.pyc new file mode 100644 index 00000000..a292cffe Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_dnsbl_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_iptrust.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_iptrust.cpython-311.pyc new file mode 100644 index 00000000..3197e132 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_iptrust.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_iptrust_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_iptrust_entries.cpython-311.pyc new file mode 100644 index 00000000..b273fbdb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_iptrust_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_mheader.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_mheader.cpython-311.pyc new file mode 100644 index 00000000..add71c4c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_mheader.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_mheader_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_mheader_entries.cpython-311.pyc new file mode 100644 index 00000000..87d4c17b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_mheader_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..58198f65 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_gmail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_gmail.cpython-311.pyc new file mode 100644 index 00000000..d20e8007 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_gmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_imap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_imap.cpython-311.pyc new file mode 100644 index 00000000..c2345854 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_imap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_mapi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_mapi.cpython-311.pyc new file mode 100644 index 00000000..9218e9e1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_mapi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_msnhotmail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_msnhotmail.cpython-311.pyc new file mode 100644 index 00000000..30ed8ad2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_msnhotmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_pop3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_pop3.cpython-311.pyc new file mode 100644 index 00000000..82477506 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_pop3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_smtp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_smtp.cpython-311.pyc new file mode 100644 index 00000000..c9a3bae7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_smtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_yahoomail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_yahoomail.cpython-311.pyc new file mode 100644 index 00000000..95cf9fc5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_spamfilter_profile_yahoomail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..f2fbf7c1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_filefilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_filefilter.cpython-311.pyc new file mode 100644 index 00000000..de6b3dbf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_filefilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_filefilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_filefilter_entries.cpython-311.pyc new file mode 100644 index 00000000..ba437040 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_filefilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_shellcommands.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_shellcommands.cpython-311.pyc new file mode 100644 index 00000000..b9190806 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sshfilter_profile_shellcommands.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_customcommand.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_customcommand.cpython-311.pyc new file mode 100644 index 00000000..7388fbb1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_customcommand.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile.cpython-311.pyc new file mode 100644 index 00000000..ad358b5f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_customtlvs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_customtlvs.cpython-311.pyc new file mode 100644 index 00000000..60d1c54a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_customtlvs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_medlocationservice.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_medlocationservice.cpython-311.pyc new file mode 100644 index 00000000..ff2cb473 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_medlocationservice.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_mednetworkpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_mednetworkpolicy.cpython-311.pyc new file mode 100644 index 00000000..e68065bc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_lldpprofile_mednetworkpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch.cpython-311.pyc new file mode 100644 index 00000000..ebc92572 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_8021xsettings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_8021xsettings.cpython-311.pyc new file mode 100644 index 00000000..b9bf0b0b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_8021xsettings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_customcommand.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_customcommand.cpython-311.pyc new file mode 100644 index 00000000..c8dfc7af Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_customcommand.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_igmpsnooping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_igmpsnooping.cpython-311.pyc new file mode 100644 index 00000000..a97da2d3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_igmpsnooping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ipsourceguard.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ipsourceguard.cpython-311.pyc new file mode 100644 index 00000000..d3078319 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ipsourceguard.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ipsourceguard_bindingentry.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ipsourceguard_bindingentry.cpython-311.pyc new file mode 100644 index 00000000..451d30f0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ipsourceguard_bindingentry.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_mirror.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_mirror.cpython-311.pyc new file mode 100644 index 00000000..fb4e7728 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_mirror.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ports.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ports.cpython-311.pyc new file mode 100644 index 00000000..da978fb2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_ports.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_remotelog.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_remotelog.cpython-311.pyc new file mode 100644 index 00000000..5e70cf0c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_remotelog.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpcommunity.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpcommunity.cpython-311.pyc new file mode 100644 index 00000000..e239fa35 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpcommunity.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpcommunity_hosts.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpcommunity_hosts.cpython-311.pyc new file mode 100644 index 00000000..03b3541e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpcommunity_hosts.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpsysinfo.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpsysinfo.cpython-311.pyc new file mode 100644 index 00000000..198c5dbf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpsysinfo.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmptrapthreshold.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmptrapthreshold.cpython-311.pyc new file mode 100644 index 00000000..32f978af Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmptrapthreshold.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpuser.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpuser.cpython-311.pyc new file mode 100644 index 00000000..b1ebc585 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_snmpuser.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_stormcontrol.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_stormcontrol.cpython-311.pyc new file mode 100644 index 00000000..cae7035e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_stormcontrol.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_stpsettings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_stpsettings.cpython-311.pyc new file mode 100644 index 00000000..c8af6313 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_stpsettings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_switchlog.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_switchlog.cpython-311.pyc new file mode 100644 index 00000000..5a4900cd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_switchlog.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_switchstpsettings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_switchstpsettings.cpython-311.pyc new file mode 100644 index 00000000..7d14ed89 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_managedswitch_switchstpsettings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_dot1pmap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_dot1pmap.cpython-311.pyc new file mode 100644 index 00000000..782df4ce Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_dot1pmap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_ipdscpmap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_ipdscpmap.cpython-311.pyc new file mode 100644 index 00000000..ae993368 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_ipdscpmap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_ipdscpmap_map.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_ipdscpmap_map.cpython-311.pyc new file mode 100644 index 00000000..f33b6d40 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_ipdscpmap_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_qospolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_qospolicy.cpython-311.pyc new file mode 100644 index 00000000..e144acc4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_qospolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_queuepolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_queuepolicy.cpython-311.pyc new file mode 100644 index 00000000..13d97d45 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_queuepolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_queuepolicy_cosqueue.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_queuepolicy_cosqueue.cpython-311.pyc new file mode 100644 index 00000000..c28c1107 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_qos_queuepolicy_cosqueue.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_securitypolicy_8021x.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_securitypolicy_8021x.cpython-311.pyc new file mode 100644 index 00000000..b994e453 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_securitypolicy_8021x.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_securitypolicy_captiveportal.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_securitypolicy_captiveportal.cpython-311.pyc new file mode 100644 index 00000000..1d91ba36 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_switchcontroller_securitypolicy_captiveportal.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_api_sdnconnector.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_api_sdnconnector.cpython-311.pyc new file mode 100644 index 00000000..44cb4d1e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_api_sdnconnector.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_generate_wsdl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_generate_wsdl.cpython-311.pyc new file mode 100644 index 00000000..92261351 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_generate_wsdl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_login_challenge.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_login_challenge.cpython-311.pyc new file mode 100644 index 00000000..963a2f8b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_login_challenge.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_login_user.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_login_user.cpython-311.pyc new file mode 100644 index 00000000..ca7ebd90 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_login_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_logout.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_logout.cpython-311.pyc new file mode 100644 index 00000000..e0866338 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_logout.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_proxy_json.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_proxy_json.cpython-311.pyc new file mode 100644 index 00000000..cdccdbb8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_proxy_json.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_reboot.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_reboot.cpython-311.pyc new file mode 100644 index 00000000..58e40c1d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_sys_reboot.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_group.cpython-311.pyc new file mode 100644 index 00000000..5c7a4ae0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_group_member.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_group_member.cpython-311.pyc new file mode 100644 index 00000000..69bf7a4e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_group_member.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_ldap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_ldap.cpython-311.pyc new file mode 100644 index 00000000..352a8f42 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_ldap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_ldap_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_ldap_adom.cpython-311.pyc new file mode 100644 index 00000000..eeaf2572 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_ldap_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_profile.cpython-311.pyc new file mode 100644 index 00000000..0f6c2cad Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_profile_datamaskcustomfields.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_profile_datamaskcustomfields.cpython-311.pyc new file mode 100644 index 00000000..67e35f5a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_profile_datamaskcustomfields.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_radius.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_radius.cpython-311.pyc new file mode 100644 index 00000000..762a872f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_radius.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_setting.cpython-311.pyc new file mode 100644 index 00000000..30f3e8d3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_tacacs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_tacacs.cpython-311.pyc new file mode 100644 index 00000000..1f5e9054 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_tacacs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user.cpython-311.pyc new file mode 100644 index 00000000..805b681f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_adom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_adom.cpython-311.pyc new file mode 100644 index 00000000..acf6ff38 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_adom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_adomexclude.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_adomexclude.cpython-311.pyc new file mode 100644 index 00000000..bc0339b6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_adomexclude.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_appfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_appfilter.cpython-311.pyc new file mode 100644 index 00000000..f5dff08b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_appfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_dashboard.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_dashboard.cpython-311.pyc new file mode 100644 index 00000000..efeae6ce Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_dashboard.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_dashboardtabs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_dashboardtabs.cpython-311.pyc new file mode 100644 index 00000000..e6ef2669 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_dashboardtabs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_ipsfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_ipsfilter.cpython-311.pyc new file mode 100644 index 00000000..0731ae48 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_ipsfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_metadata.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_metadata.cpython-311.pyc new file mode 100644 index 00000000..292443fd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_metadata.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_policypackage.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_policypackage.cpython-311.pyc new file mode 100644 index 00000000..445369e9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_policypackage.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_restrictdevvdom.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_restrictdevvdom.cpython-311.pyc new file mode 100644 index 00000000..aa4ae00c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_restrictdevvdom.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_webfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_webfilter.cpython-311.pyc new file mode 100644 index 00000000..39a16476 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_admin_user_webfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertconsole.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertconsole.cpython-311.pyc new file mode 100644 index 00000000..c3a9063d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertconsole.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertemail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertemail.cpython-311.pyc new file mode 100644 index 00000000..9bddaa8b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertemail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertevent.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertevent.cpython-311.pyc new file mode 100644 index 00000000..b2797dfc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertevent.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertevent_alertdestination.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertevent_alertdestination.cpython-311.pyc new file mode 100644 index 00000000..a851ce8e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_alertevent_alertdestination.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete.cpython-311.pyc new file mode 100644 index 00000000..5dee3486 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_dlpfilesautodeletion.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_dlpfilesautodeletion.cpython-311.pyc new file mode 100644 index 00000000..8bd9c3c9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_dlpfilesautodeletion.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_logautodeletion.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_logautodeletion.cpython-311.pyc new file mode 100644 index 00000000..e6ce2deb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_logautodeletion.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_quarantinefilesautodeletion.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_quarantinefilesautodeletion.cpython-311.pyc new file mode 100644 index 00000000..3b39f312 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_quarantinefilesautodeletion.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_reportautodeletion.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_reportautodeletion.cpython-311.pyc new file mode 100644 index 00000000..bb631d6b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_autodelete_reportautodeletion.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_backup_allsettings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_backup_allsettings.cpython-311.pyc new file mode 100644 index 00000000..0bfafa71 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_backup_allsettings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_ca.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_ca.cpython-311.pyc new file mode 100644 index 00000000..ed9ef4ae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_ca.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_crl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_crl.cpython-311.pyc new file mode 100644 index 00000000..dd3bf63b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_crl.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_local.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_local.cpython-311.pyc new file mode 100644 index 00000000..2c88da94 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_local.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_oftp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_oftp.cpython-311.pyc new file mode 100644 index 00000000..79c94f5d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_oftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_remote.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_remote.cpython-311.pyc new file mode 100644 index 00000000..dfe4147a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_remote.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_ssh.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_ssh.cpython-311.pyc new file mode 100644 index 00000000..351eab51 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_certificate_ssh.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_connector.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_connector.cpython-311.pyc new file mode 100644 index 00000000..40feccd2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_connector.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_customlanguage.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_customlanguage.cpython-311.pyc new file mode 100644 index 00000000..3fb3a3ad Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_customlanguage.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server.cpython-311.pyc new file mode 100644 index 00000000..406b1e02 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_excluderange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_excluderange.cpython-311.pyc new file mode 100644 index 00000000..0799a469 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_excluderange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_iprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_iprange.cpython-311.pyc new file mode 100644 index 00000000..218b538a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_iprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_options.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_options.cpython-311.pyc new file mode 100644 index 00000000..677598a0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_reservedaddress.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_reservedaddress.cpython-311.pyc new file mode 100644 index 00000000..7e67a96e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dhcp_server_reservedaddress.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dm.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dm.cpython-311.pyc new file mode 100644 index 00000000..f79e19ba Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dm.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dns.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dns.cpython-311.pyc new file mode 100644 index 00000000..7cfe5812 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_dns.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_docker.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_docker.cpython-311.pyc new file mode 100644 index 00000000..3d0dacd1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_docker.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_externalresource.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_externalresource.cpython-311.pyc new file mode 100644 index 00000000..68a1feb7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_externalresource.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fips.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fips.cpython-311.pyc new file mode 100644 index 00000000..415f93ae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fips.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiguard.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiguard.cpython-311.pyc new file mode 100644 index 00000000..797ced8e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiguard.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiview_autocache.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiview_autocache.cpython-311.pyc new file mode 100644 index 00000000..920a33b6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiview_autocache.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiview_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiview_setting.cpython-311.pyc new file mode 100644 index 00000000..bc8f77dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_fortiview_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipcountry.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipcountry.cpython-311.pyc new file mode 100644 index 00000000..396ee5b7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipcountry.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride.cpython-311.pyc new file mode 100644 index 00000000..3e648dbd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride_ip6range.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride_ip6range.cpython-311.pyc new file mode 100644 index 00000000..2f223a0b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride_ip6range.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride_iprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride_iprange.cpython-311.pyc new file mode 100644 index 00000000..8dd0c148 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_geoipoverride_iprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_global.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_global.cpython-311.pyc new file mode 100644 index 00000000..84df9f9d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_guiact.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_guiact.cpython-311.pyc new file mode 100644 index 00000000..60dee03f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_guiact.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ha.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ha.cpython-311.pyc new file mode 100644 index 00000000..9b249f7a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ha.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ha_peer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ha_peer.cpython-311.pyc new file mode 100644 index 00000000..447ba282 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ha_peer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_interface.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_interface.cpython-311.pyc new file mode 100644 index 00000000..fb41e5bb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_interface_ipv6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_interface_ipv6.cpython-311.pyc new file mode 100644 index 00000000..a613aba3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_interface_ipv6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_disk_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_disk_filter.cpython-311.pyc new file mode 100644 index 00000000..a69fed8f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_disk_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_disk_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_disk_setting.cpython-311.pyc new file mode 100644 index 00000000..cabf72b1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_disk_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer2_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer2_filter.cpython-311.pyc new file mode 100644 index 00000000..7ba54179 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer2_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer2_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer2_setting.cpython-311.pyc new file mode 100644 index 00000000..957282ee Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer2_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer3_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer3_filter.cpython-311.pyc new file mode 100644 index 00000000..07e79693 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer3_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer3_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer3_setting.cpython-311.pyc new file mode 100644 index 00000000..cde608d4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer3_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer_filter.cpython-311.pyc new file mode 100644 index 00000000..c3cb5c67 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer_setting.cpython-311.pyc new file mode 100644 index 00000000..5697df91 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_fortianalyzer_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_memory_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_memory_filter.cpython-311.pyc new file mode 100644 index 00000000..a8f5ee83 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_memory_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_memory_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_memory_setting.cpython-311.pyc new file mode 100644 index 00000000..1a96001a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_memory_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_setting.cpython-311.pyc new file mode 100644 index 00000000..0e0ab1b2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd2_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd2_filter.cpython-311.pyc new file mode 100644 index 00000000..96aef792 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd2_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd2_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd2_setting.cpython-311.pyc new file mode 100644 index 00000000..d25b7561 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd2_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd3_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd3_filter.cpython-311.pyc new file mode 100644 index 00000000..8903d641 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd3_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd3_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd3_setting.cpython-311.pyc new file mode 100644 index 00000000..6b7ef2a4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd3_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd_filter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd_filter.cpython-311.pyc new file mode 100644 index 00000000..d1766f0c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd_setting.cpython-311.pyc new file mode 100644 index 00000000..9deddb12 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_locallog_syslogd_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_alert.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_alert.cpython-311.pyc new file mode 100644 index 00000000..b16a7af7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_alert.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_devicedisable.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_devicedisable.cpython-311.pyc new file mode 100644 index 00000000..46230f40 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_devicedisable.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_interfacestats.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_interfacestats.cpython-311.pyc new file mode 100644 index 00000000..cfef34c4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_interfacestats.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ioc.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ioc.cpython-311.pyc new file mode 100644 index 00000000..5316b8fd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ioc.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_maildomain.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_maildomain.cpython-311.pyc new file mode 100644 index 00000000..f9982ed0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_maildomain.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ratelimit.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ratelimit.cpython-311.pyc new file mode 100644 index 00000000..6dd16f0a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ratelimit.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ratelimit_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ratelimit_device.cpython-311.pyc new file mode 100644 index 00000000..6bcf8338 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_ratelimit_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings.cpython-311.pyc new file mode 100644 index 00000000..198e8e0b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollinganalyzer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollinganalyzer.cpython-311.pyc new file mode 100644 index 00000000..ba6a8107 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollinganalyzer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollinglocal.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollinglocal.cpython-311.pyc new file mode 100644 index 00000000..e65dcc7f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollinglocal.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollingregular.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollingregular.cpython-311.pyc new file mode 100644 index 00000000..7bad2684 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_log_settings_rollingregular.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile.cpython-311.pyc new file mode 100644 index 00000000..6a65a058 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile_devicefilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile_devicefilter.cpython-311.pyc new file mode 100644 index 00000000..fdf89283 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile_devicefilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile_logfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile_logfilter.cpython-311.pyc new file mode 100644 index 00000000..129557a7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_clientprofile_logfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_serversettings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_serversettings.cpython-311.pyc new file mode 100644 index 00000000..a6227966 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_logfetch_serversettings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_mail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_mail.cpython-311.pyc new file mode 100644 index 00000000..3e8468d4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_mail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_mcpolicydisabledadoms.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_mcpolicydisabledadoms.cpython-311.pyc new file mode 100644 index 00000000..bc047d14 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_mcpolicydisabledadoms.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_meta.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_meta.cpython-311.pyc new file mode 100644 index 00000000..2a006dcd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_meta.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_meta_sysmetafields.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_meta_sysmetafields.cpython-311.pyc new file mode 100644 index 00000000..872c7568 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_meta_sysmetafields.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_metadata_admins.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_metadata_admins.cpython-311.pyc new file mode 100644 index 00000000..f4762e2f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_metadata_admins.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ntp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ntp.cpython-311.pyc new file mode 100644 index 00000000..b782638b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ntp_ntpserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ntp_ntpserver.cpython-311.pyc new file mode 100644 index 00000000..e2a1b313 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_ntp_ntpserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_objecttagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_objecttagging.cpython-311.pyc new file mode 100644 index 00000000..b608e1b4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_objecttagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_passwordpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_passwordpolicy.cpython-311.pyc new file mode 100644 index 00000000..1488cb46 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_passwordpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup.cpython-311.pyc new file mode 100644 index 00000000..a38366e7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_admin.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_admin.cpython-311.pyc new file mode 100644 index 00000000..a1791153 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_alertmail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_alertmail.cpython-311.pyc new file mode 100644 index 00000000..27a4f438 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_alertmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_auth.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_auth.cpython-311.pyc new file mode 100644 index 00000000..fa746c24 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_auth.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_automation.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_automation.cpython-311.pyc new file mode 100644 index 00000000..06116dc4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_automation.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_custommessage.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_custommessage.cpython-311.pyc new file mode 100644 index 00000000..e5d58af0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_custommessage.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_devicedetectionportal.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_devicedetectionportal.cpython-311.pyc new file mode 100644 index 00000000..e3bf7b7d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_devicedetectionportal.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_ec.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_ec.cpython-311.pyc new file mode 100644 index 00000000..a9a01b49 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_ec.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_fortiguardwf.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_fortiguardwf.cpython-311.pyc new file mode 100644 index 00000000..caf4b557 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_fortiguardwf.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_ftp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_ftp.cpython-311.pyc new file mode 100644 index 00000000..dde4dfcd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_ftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_http.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_http.cpython-311.pyc new file mode 100644 index 00000000..21b8c9b1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_http.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_icap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_icap.cpython-311.pyc new file mode 100644 index 00000000..3495b810 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_icap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mail.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mail.cpython-311.pyc new file mode 100644 index 00000000..d3f152ef Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mail.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm1.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm1.cpython-311.pyc new file mode 100644 index 00000000..7bd9d63c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm1.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm3.cpython-311.pyc new file mode 100644 index 00000000..1d1cdf09 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm4.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm4.cpython-311.pyc new file mode 100644 index 00000000..1dac693b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm4.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm7.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm7.cpython-311.pyc new file mode 100644 index 00000000..9eab273a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mm7.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mms.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mms.cpython-311.pyc new file mode 100644 index 00000000..aaf058c9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_mms.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_nacquar.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_nacquar.cpython-311.pyc new file mode 100644 index 00000000..09e81325 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_nacquar.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_nntp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_nntp.cpython-311.pyc new file mode 100644 index 00000000..ee3512cf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_nntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_spam.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_spam.cpython-311.pyc new file mode 100644 index 00000000..88afaa44 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_spam.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_sslvpn.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_sslvpn.cpython-311.pyc new file mode 100644 index 00000000..e93880cc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_sslvpn.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_trafficquota.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_trafficquota.cpython-311.pyc new file mode 100644 index 00000000..bbf1a161 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_trafficquota.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_utm.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_utm.cpython-311.pyc new file mode 100644 index 00000000..38b9bf07 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_utm.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_webproxy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_webproxy.cpython-311.pyc new file mode 100644 index 00000000..2c04b397 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsggroup_webproxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsgimage.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsgimage.cpython-311.pyc new file mode 100644 index 00000000..a613d676 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_replacemsgimage.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_autocache.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_autocache.cpython-311.pyc new file mode 100644 index 00000000..e70a554a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_autocache.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_estbrowsetime.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_estbrowsetime.cpython-311.pyc new file mode 100644 index 00000000..851756f6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_estbrowsetime.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group.cpython-311.pyc new file mode 100644 index 00000000..2696b3c9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group_chartalternative.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group_chartalternative.cpython-311.pyc new file mode 100644 index 00000000..52ecf19e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group_chartalternative.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group_groupby.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group_groupby.cpython-311.pyc new file mode 100644 index 00000000..ba3e1bda Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_group_groupby.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_setting.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_setting.cpython-311.pyc new file mode 100644 index 00000000..2bf07a93 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_report_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_route.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_route.cpython-311.pyc new file mode 100644 index 00000000..3d62fc1a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_route.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_route6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_route6.cpython-311.pyc new file mode 100644 index 00000000..d4b55c83 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_route6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_saml.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_saml.cpython-311.pyc new file mode 100644 index 00000000..a71c93f7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_saml.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_saml_fabricidp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_saml_fabricidp.cpython-311.pyc new file mode 100644 index 00000000..5718ff71 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_saml_fabricidp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector.cpython-311.pyc new file mode 100644 index 00000000..79ed929e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_externalip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_externalip.cpython-311.pyc new file mode 100644 index 00000000..7280b84c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_externalip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_nic.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_nic.cpython-311.pyc new file mode 100644 index 00000000..9ad50deb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_nic.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_nic_ip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_nic_ip.cpython-311.pyc new file mode 100644 index 00000000..7065407c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_nic_ip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_route.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_route.cpython-311.pyc new file mode 100644 index 00000000..73a9941b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_route.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_routetable.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_routetable.cpython-311.pyc new file mode 100644 index 00000000..78e53b2a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_routetable.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_routetable_route.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_routetable_route.cpython-311.pyc new file mode 100644 index 00000000..a23acf95 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sdnconnector_routetable_route.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_smsserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_smsserver.cpython-311.pyc new file mode 100644 index 00000000..0185c130 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_smsserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sniffer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sniffer.cpython-311.pyc new file mode 100644 index 00000000..04f10a94 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sniffer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community.cpython-311.pyc new file mode 100644 index 00000000..f1199c87 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community_hosts.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community_hosts.cpython-311.pyc new file mode 100644 index 00000000..2ec67e77 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community_hosts.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community_hosts6.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community_hosts6.cpython-311.pyc new file mode 100644 index 00000000..436af5be Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_community_hosts6.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_sysinfo.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_sysinfo.cpython-311.pyc new file mode 100644 index 00000000..5ee7a495 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_sysinfo.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_user.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_user.cpython-311.pyc new file mode 100644 index 00000000..56723116 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_snmp_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_socfabric.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_socfabric.cpython-311.pyc new file mode 100644 index 00000000..ba9179d2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_socfabric.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql.cpython-311.pyc new file mode 100644 index 00000000..61109dfe Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_customindex.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_customindex.cpython-311.pyc new file mode 100644 index 00000000..bf84057b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_customindex.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_customskipidx.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_customskipidx.cpython-311.pyc new file mode 100644 index 00000000..337437f3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_customskipidx.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_tsindexfield.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_tsindexfield.cpython-311.pyc new file mode 100644 index 00000000..dce9e9c0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_sql_tsindexfield.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_syslog.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_syslog.cpython-311.pyc new file mode 100644 index 00000000..19141a7c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_syslog.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_virtualwirepair.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_virtualwirepair.cpython-311.pyc new file mode 100644 index 00000000..9fbd5fc5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_virtualwirepair.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_workflow_approvalmatrix.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_workflow_approvalmatrix.cpython-311.pyc new file mode 100644 index 00000000..5eae64b6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_workflow_approvalmatrix.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_workflow_approvalmatrix_approver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_workflow_approvalmatrix_approver.cpython-311.pyc new file mode 100644 index 00000000..04ae521b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_system_workflow_approvalmatrix_approver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_template.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_template.cpython-311.pyc new file mode 100644 index 00000000..126dbfb9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_template.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_templategroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_templategroup.cpython-311.pyc new file mode 100644 index 00000000..c91654d2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_templategroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_adgrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_adgrp.cpython-311.pyc new file mode 100644 index 00000000..3e457c4e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_adgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_clearpass.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_clearpass.cpython-311.pyc new file mode 100644 index 00000000..6415be0a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_clearpass.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device.cpython-311.pyc new file mode 100644 index 00000000..709a79a4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..331727a6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device_tagging.cpython-311.pyc new file mode 100644 index 00000000..77d75c8a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_device_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicecategory.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicecategory.cpython-311.pyc new file mode 100644 index 00000000..c598baed Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicecategory.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup.cpython-311.pyc new file mode 100644 index 00000000..74afa40c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..63801c0d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup_tagging.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup_tagging.cpython-311.pyc new file mode 100644 index 00000000..85829763 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_devicegroup_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_domaincontroller.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_domaincontroller.cpython-311.pyc new file mode 100644 index 00000000..b237b338 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_domaincontroller.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_domaincontroller_extraserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_domaincontroller_extraserver.cpython-311.pyc new file mode 100644 index 00000000..02f71d2c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_domaincontroller_extraserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_exchange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_exchange.cpython-311.pyc new file mode 100644 index 00000000..d623eefc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_exchange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fortitoken.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fortitoken.cpython-311.pyc new file mode 100644 index 00000000..2f2dc6ed Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fortitoken.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fsso.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fsso.cpython-311.pyc new file mode 100644 index 00000000..b7650ed6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fsso.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fsso_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fsso_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..aa3baccd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fsso_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fssopolling.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fssopolling.cpython-311.pyc new file mode 100644 index 00000000..f1a772f1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fssopolling.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fssopolling_adgrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fssopolling_adgrp.cpython-311.pyc new file mode 100644 index 00000000..053ddc44 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_fssopolling_adgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group.cpython-311.pyc new file mode 100644 index 00000000..adaf69cb Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group_guest.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group_guest.cpython-311.pyc new file mode 100644 index 00000000..6613974e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group_guest.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group_match.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group_match.cpython-311.pyc new file mode 100644 index 00000000..b2cf505b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_group_match.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_krbkeytab.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_krbkeytab.cpython-311.pyc new file mode 100644 index 00000000..b36d2974 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_krbkeytab.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_ldap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_ldap.cpython-311.pyc new file mode 100644 index 00000000..5e18b545 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_ldap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_ldap_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_ldap_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..95b47139 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_ldap_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_local.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_local.cpython-311.pyc new file mode 100644 index 00000000..54ca8870 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_local.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_nsx.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_nsx.cpython-311.pyc new file mode 100644 index 00000000..404a42d5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_nsx.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_passwordpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_passwordpolicy.cpython-311.pyc new file mode 100644 index 00000000..be1fdabf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_passwordpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_peer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_peer.cpython-311.pyc new file mode 100644 index 00000000..96c35094 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_peer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_peergrp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_peergrp.cpython-311.pyc new file mode 100644 index 00000000..1930ca01 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_peergrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_pop3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_pop3.cpython-311.pyc new file mode 100644 index 00000000..40fd9ce5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_pop3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_pxgrid.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_pxgrid.cpython-311.pyc new file mode 100644 index 00000000..ac640d37 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_pxgrid.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius.cpython-311.pyc new file mode 100644 index 00000000..59ba52d9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_accountingserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_accountingserver.cpython-311.pyc new file mode 100644 index 00000000..cd15bcff Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_accountingserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..2f86f207 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_dynamicmapping_accountingserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_dynamicmapping_accountingserver.cpython-311.pyc new file mode 100644 index 00000000..2649080e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_radius_dynamicmapping_accountingserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_saml.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_saml.cpython-311.pyc new file mode 100644 index 00000000..ee896111 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_saml.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_securityexemptlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_securityexemptlist.cpython-311.pyc new file mode 100644 index 00000000..ce1efc19 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_securityexemptlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_securityexemptlist_rule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_securityexemptlist_rule.cpython-311.pyc new file mode 100644 index 00000000..65aaa1dc Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_securityexemptlist_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_tacacs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_tacacs.cpython-311.pyc new file mode 100644 index 00000000..fcd3a2a9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_tacacs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_tacacs_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_tacacs_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..cac09ef9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_tacacs_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_vcenter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_vcenter.cpython-311.pyc new file mode 100644 index 00000000..cef7c471 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_vcenter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_vcenter_rule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_vcenter_rule.cpython-311.pyc new file mode 100644 index 00000000..acbdf32f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_user_vcenter_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_utmprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_utmprofile.cpython-311.pyc new file mode 100644 index 00000000..07bf92ac Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_utmprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap.cpython-311.pyc new file mode 100644 index 00000000..cb6b5828 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_dynamicmapping.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_dynamicmapping.cpython-311.pyc new file mode 100644 index 00000000..e30a2e0f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_dynamicmapping.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_macfilterlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_macfilterlist.cpython-311.pyc new file mode 100644 index 00000000..d91a173f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_macfilterlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_mpskkey.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_mpskkey.cpython-311.pyc new file mode 100644 index 00000000..13b559c2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_mpskkey.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_portalmessageoverrides.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_portalmessageoverrides.cpython-311.pyc new file mode 100644 index 00000000..004ce793 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_portalmessageoverrides.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_vlanpool.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_vlanpool.cpython-311.pyc new file mode 100644 index 00000000..066c353f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vap_vlanpool.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vapgroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vapgroup.cpython-311.pyc new file mode 100644 index 00000000..57542a5b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vapgroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile.cpython-311.pyc new file mode 100644 index 00000000..b69808ba Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile_fortiguardcategory.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile_fortiguardcategory.cpython-311.pyc new file mode 100644 index 00000000..95ead9a6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile_fortiguardcategory.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile_fortiguardcategory_filters.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile_fortiguardcategory_filters.cpython-311.pyc new file mode 100644 index 00000000..cef59153 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_profile_fortiguardcategory_filters.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_youtubechannelfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_youtubechannelfilter.cpython-311.pyc new file mode 100644 index 00000000..f6d5e0d4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_youtubechannelfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_youtubechannelfilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_youtubechannelfilter_entries.cpython-311.pyc new file mode 100644 index 00000000..dad7efac Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_videofilter_youtubechannelfilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile.cpython-311.pyc new file mode 100644 index 00000000..e52567d5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile_sccp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile_sccp.cpython-311.pyc new file mode 100644 index 00000000..b6edf7b7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile_sccp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile_sip.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile_sip.cpython-311.pyc new file mode 100644 index 00000000..70b32266 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_voip_profile_sip.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_ca.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_ca.cpython-311.pyc new file mode 100644 index 00000000..46e77ba5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_ca.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_ocspserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_ocspserver.cpython-311.pyc new file mode 100644 index 00000000..0293ee37 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_ocspserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_remote.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_remote.cpython-311.pyc new file mode 100644 index 00000000..0f1cb015 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_certificate_remote.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_ssl_settings.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_ssl_settings.cpython-311.pyc new file mode 100644 index 00000000..fcd2f684 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_ssl_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_ssl_settings_authenticationrule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_ssl_settings_authenticationrule.cpython-311.pyc new file mode 100644 index 00000000..a8f3748a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpn_ssl_settings_authenticationrule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node.cpython-311.pyc new file mode 100644 index 00000000..47032373 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_iprange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_iprange.cpython-311.pyc new file mode 100644 index 00000000..f36499a2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_iprange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_ipv4excluderange.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_ipv4excluderange.cpython-311.pyc new file mode 100644 index 00000000..d0335764 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_ipv4excluderange.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_protectedsubnet.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_protectedsubnet.cpython-311.pyc new file mode 100644 index 00000000..3ac9aa8c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_protectedsubnet.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_summaryaddr.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_summaryaddr.cpython-311.pyc new file mode 100644 index 00000000..d0e2c897 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_node_summaryaddr.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_vpntable.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_vpntable.cpython-311.pyc new file mode 100644 index 00000000..3fc1b189 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnmgr_vpntable.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_hostchecksoftware.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_hostchecksoftware.cpython-311.pyc new file mode 100644 index 00000000..2ed3b7bd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_hostchecksoftware.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_hostchecksoftware_checkitemlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_hostchecksoftware_checkitemlist.cpython-311.pyc new file mode 100644 index 00000000..eb0dbe08 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_hostchecksoftware_checkitemlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal.cpython-311.pyc new file mode 100644 index 00000000..bd7acd53 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup.cpython-311.pyc new file mode 100644 index 00000000..04340601 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup_bookmarks.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup_bookmarks.cpython-311.pyc new file mode 100644 index 00000000..cef4a095 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup_bookmarks.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup_bookmarks_formdata.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup_bookmarks_formdata.cpython-311.pyc new file mode 100644 index 00000000..07deb5da Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_bookmarkgroup_bookmarks_formdata.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_macaddrcheckrule.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_macaddrcheckrule.cpython-311.pyc new file mode 100644 index 00000000..7216493c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_macaddrcheckrule.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_oschecklist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_oschecklist.cpython-311.pyc new file mode 100644 index 00000000..9988a9a5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_oschecklist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_splitdns.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_splitdns.cpython-311.pyc new file mode 100644 index 00000000..4f243e24 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_portal_splitdns.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_realm.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_realm.cpython-311.pyc new file mode 100644 index 00000000..02907dea Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_vpnsslweb_realm.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_mainclass.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_mainclass.cpython-311.pyc new file mode 100644 index 00000000..2970e927 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_mainclass.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile.cpython-311.pyc new file mode 100644 index 00000000..83471051 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_addresslist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_addresslist.cpython-311.pyc new file mode 100644 index 00000000..d0f024ae Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_addresslist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint.cpython-311.pyc new file mode 100644 index 00000000..1bc8c460 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_contentlength.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_contentlength.cpython-311.pyc new file mode 100644 index 00000000..0cda72a6 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_contentlength.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_exception.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_exception.cpython-311.pyc new file mode 100644 index 00000000..9f9972fa Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_exception.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_headerlength.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_headerlength.cpython-311.pyc new file mode 100644 index 00000000..5fef6177 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_headerlength.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_hostname.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_hostname.cpython-311.pyc new file mode 100644 index 00000000..3bf56e88 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_hostname.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_linelength.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_linelength.cpython-311.pyc new file mode 100644 index 00000000..c4f883d3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_linelength.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_malformed.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_malformed.cpython-311.pyc new file mode 100644 index 00000000..ad110574 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_malformed.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxcookie.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxcookie.cpython-311.pyc new file mode 100644 index 00000000..dfcc4315 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxcookie.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxheaderline.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxheaderline.cpython-311.pyc new file mode 100644 index 00000000..f935c7d0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxheaderline.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxrangesegment.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxrangesegment.cpython-311.pyc new file mode 100644 index 00000000..fd69826f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxrangesegment.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxurlparam.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxurlparam.cpython-311.pyc new file mode 100644 index 00000000..bfbf5017 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_maxurlparam.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_method.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_method.cpython-311.pyc new file mode 100644 index 00000000..881ae577 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_method.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_paramlength.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_paramlength.cpython-311.pyc new file mode 100644 index 00000000..ccdcc777 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_paramlength.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_urlparamlength.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_urlparamlength.cpython-311.pyc new file mode 100644 index 00000000..095c6c12 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_urlparamlength.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_version.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_version.cpython-311.pyc new file mode 100644 index 00000000..4d3a91f8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_constraint_version.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_method.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_method.cpython-311.pyc new file mode 100644 index 00000000..b4155de5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_method.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_method_methodpolicy.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_method_methodpolicy.cpython-311.pyc new file mode 100644 index 00000000..84062422 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_method_methodpolicy.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature.cpython-311.pyc new file mode 100644 index 00000000..ed005d9c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature_customsignature.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature_customsignature.cpython-311.pyc new file mode 100644 index 00000000..d217acff Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature_customsignature.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature_mainclass.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature_mainclass.cpython-311.pyc new file mode 100644 index 00000000..27f8351a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_signature_mainclass.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_urlaccess.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_urlaccess.cpython-311.pyc new file mode 100644 index 00000000..4e4640f0 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_urlaccess.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_urlaccess_accesspattern.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_urlaccess_accesspattern.cpython-311.pyc new file mode 100644 index 00000000..81677095 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_profile_urlaccess_accesspattern.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_signature.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_signature.cpython-311.pyc new file mode 100644 index 00000000..337dff13 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_signature.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_subclass.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_subclass.cpython-311.pyc new file mode 100644 index 00000000..0328ef80 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_waf_subclass.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wagprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wagprofile.cpython-311.pyc new file mode 100644 index 00000000..b07906a9 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wagprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_authgroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_authgroup.cpython-311.pyc new file mode 100644 index 00000000..0797f555 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_authgroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_peer.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_peer.cpython-311.pyc new file mode 100644 index 00000000..98988aef Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_peer.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile.cpython-311.pyc new file mode 100644 index 00000000..6e9c9659 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_cifs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_cifs.cpython-311.pyc new file mode 100644 index 00000000..00b8a1bd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_cifs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_ftp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_ftp.cpython-311.pyc new file mode 100644 index 00000000..cd9e75e7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_ftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_http.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_http.cpython-311.pyc new file mode 100644 index 00000000..3de0f80c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_http.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_mapi.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_mapi.cpython-311.pyc new file mode 100644 index 00000000..e7679780 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_mapi.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_tcp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_tcp.cpython-311.pyc new file mode 100644 index 00000000..1bcf9cca Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanopt_profile_tcp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan.cpython-311.pyc new file mode 100644 index 00000000..f9cf030b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_duplication.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_duplication.cpython-311.pyc new file mode 100644 index 00000000..f599ef47 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_duplication.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_healthcheck.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_healthcheck.cpython-311.pyc new file mode 100644 index 00000000..983fc72e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_healthcheck.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_healthcheck_sla.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_healthcheck_sla.cpython-311.pyc new file mode 100644 index 00000000..83a1d1f3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_healthcheck_sla.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_members.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_members.cpython-311.pyc new file mode 100644 index 00000000..95470c30 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_members.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_neighbor.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_neighbor.cpython-311.pyc new file mode 100644 index 00000000..9924f3bd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_neighbor.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_service.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_service.cpython-311.pyc new file mode 100644 index 00000000..e69d10b2 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_service.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_service_sla.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_service_sla.cpython-311.pyc new file mode 100644 index 00000000..9b698a79 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_service_sla.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_zone.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_zone.cpython-311.pyc new file mode 100644 index 00000000..608a6c5c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_sdwan_zone.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink.cpython-311.pyc new file mode 100644 index 00000000..36bcadf4 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_healthcheck.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_healthcheck.cpython-311.pyc new file mode 100644 index 00000000..20914050 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_healthcheck.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_healthcheck_sla.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_healthcheck_sla.cpython-311.pyc new file mode 100644 index 00000000..ebd034d1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_healthcheck_sla.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_members.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_members.cpython-311.pyc new file mode 100644 index 00000000..3389ce23 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_members.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_neighbor.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_neighbor.cpython-311.pyc new file mode 100644 index 00000000..4c4016b3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_neighbor.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_service.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_service.cpython-311.pyc new file mode 100644 index 00000000..2f07f051 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_service.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_service_sla.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_service_sla.cpython-311.pyc new file mode 100644 index 00000000..55b3e2db Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wanprof_system_virtualwanlink_service_sla.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_categories.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_categories.cpython-311.pyc new file mode 100644 index 00000000..48d58762 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_categories.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_content.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_content.cpython-311.pyc new file mode 100644 index 00000000..35402836 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_content.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_content_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_content_entries.cpython-311.pyc new file mode 100644 index 00000000..c40d3fda Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_content_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_contentheader.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_contentheader.cpython-311.pyc new file mode 100644 index 00000000..88bb9a76 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_contentheader.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_contentheader_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_contentheader_entries.cpython-311.pyc new file mode 100644 index 00000000..8ebd8d67 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_contentheader_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_ftgdlocalcat.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_ftgdlocalcat.cpython-311.pyc new file mode 100644 index 00000000..3d42f949 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_ftgdlocalcat.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_ftgdlocalrating.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_ftgdlocalrating.cpython-311.pyc new file mode 100644 index 00000000..38e2bc4d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_ftgdlocalrating.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..9b3189f7 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish.cpython-311.pyc new file mode 100644 index 00000000..2eaf0487 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish_custompatterns.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish_custompatterns.cpython-311.pyc new file mode 100644 index 00000000..9a03f82b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish_custompatterns.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish_inspectionentries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish_inspectionentries.cpython-311.pyc new file mode 100644 index 00000000..f069c099 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_antiphish_inspectionentries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_filefilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_filefilter.cpython-311.pyc new file mode 100644 index 00000000..b3f59c19 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_filefilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_filefilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_filefilter_entries.cpython-311.pyc new file mode 100644 index 00000000..01c7e74d Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_filefilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf.cpython-311.pyc new file mode 100644 index 00000000..ecb1bb92 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf_filters.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf_filters.cpython-311.pyc new file mode 100644 index 00000000..6db5ace5 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf_filters.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf_quota.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf_quota.cpython-311.pyc new file mode 100644 index 00000000..25230e46 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_ftgdwf_quota.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_override.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_override.cpython-311.pyc new file mode 100644 index 00000000..22c6eab8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_override.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_urlextraction.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_urlextraction.cpython-311.pyc new file mode 100644 index 00000000..0c82ac48 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_urlextraction.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_web.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_web.cpython-311.pyc new file mode 100644 index 00000000..e860a20c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_web.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_youtubechannelfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_youtubechannelfilter.cpython-311.pyc new file mode 100644 index 00000000..5e0bdfa3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_profile_youtubechannelfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_urlfilter.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_urlfilter.cpython-311.pyc new file mode 100644 index 00000000..2125ad04 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_urlfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_urlfilter_entries.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_urlfilter_entries.cpython-311.pyc new file mode 100644 index 00000000..9f6b2014 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webfilter_urlfilter_entries.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardserver.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardserver.cpython-311.pyc new file mode 100644 index 00000000..9eca9c4b Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardserver.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardservergroup.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardservergroup.cpython-311.pyc new file mode 100644 index 00000000..f51abe7a Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardservergroup.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardservergroup_serverlist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardservergroup_serverlist.cpython-311.pyc new file mode 100644 index 00000000..3df273bf Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_forwardservergroup_serverlist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_profile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_profile.cpython-311.pyc new file mode 100644 index 00000000..7abf317e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_profile_headers.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_profile_headers.cpython-311.pyc new file mode 100644 index 00000000..2d749ac1 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_profile_headers.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_wisp.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_wisp.cpython-311.pyc new file mode 100644 index 00000000..c89b217c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_webproxy_wisp.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_widsprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_widsprofile.cpython-311.pyc new file mode 100644 index 00000000..a6c99d29 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_widsprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile.cpython-311.pyc new file mode 100644 index 00000000..d33776dd Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_denymaclist.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_denymaclist.cpython-311.pyc new file mode 100644 index 00000000..0bffc0c3 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_denymaclist.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_lan.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_lan.cpython-311.pyc new file mode 100644 index 00000000..2b22447e Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_lan.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_lbs.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_lbs.cpython-311.pyc new file mode 100644 index 00000000..c882fbe8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_lbs.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_platform.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_platform.cpython-311.pyc new file mode 100644 index 00000000..522bfb07 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_platform.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio1.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio1.cpython-311.pyc new file mode 100644 index 00000000..6de35ce8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio1.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio2.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio2.cpython-311.pyc new file mode 100644 index 00000000..8d38ab4f Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio2.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio3.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio3.cpython-311.pyc new file mode 100644 index 00000000..ad9d3fef Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio3.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio4.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio4.cpython-311.pyc new file mode 100644 index 00000000..fb9abab8 Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_radio4.cpython-311.pyc differ diff --git a/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_splittunnelingacl.cpython-311.pyc b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_splittunnelingacl.cpython-311.pyc new file mode 100644 index 00000000..1345685c Binary files /dev/null and b/collection/fortinet/fortimanager/plugins/modules/__pycache__/fmgr_wtpprofile_splittunnelingacl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/doc_fragments/__pycache__/fortios.cpython-311.pyc b/collection/fortinet/fortios/plugins/doc_fragments/__pycache__/fortios.cpython-311.pyc new file mode 100644 index 00000000..ad76b085 Binary files /dev/null and b/collection/fortinet/fortios/plugins/doc_fragments/__pycache__/fortios.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/httpapi/__pycache__/fortios.cpython-311.pyc b/collection/fortinet/fortios/plugins/httpapi/__pycache__/fortios.cpython-311.pyc new file mode 100644 index 00000000..aedbe9c2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/httpapi/__pycache__/fortios.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..2b6cb106 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/common.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/common.cpython-311.pyc new file mode 100644 index 00000000..9b6e3612 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/common.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/fortimanager.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/fortimanager.cpython-311.pyc new file mode 100644 index 00000000..f3ce7d41 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortimanager/__pycache__/fortimanager.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..e921902e Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/comparison.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/comparison.cpython-311.pyc new file mode 100644 index 00000000..d126bd39 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/comparison.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/fortios.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/fortios.cpython-311.pyc new file mode 100644 index 00000000..0ee629f1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/__pycache__/fortios.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..f483d555 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/facts/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/facts/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c03dda73 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/facts/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/facts/__pycache__/facts.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/facts/__pycache__/facts.cpython-311.pyc new file mode 100644 index 00000000..f444778a Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/facts/__pycache__/facts.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/system/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/system/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..97f3e73a Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/system/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/system/__pycache__/system.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/system/__pycache__/system.cpython-311.pyc new file mode 100644 index 00000000..8071830f Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/argspec/system/__pycache__/system.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/facts/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..625010e1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/facts/__pycache__/facts.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/__pycache__/facts.cpython-311.pyc new file mode 100644 index 00000000..0a1159cc Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/__pycache__/facts.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/facts/system/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/system/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..11f58507 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/system/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/module_utils/fortios/facts/system/__pycache__/system.cpython-311.pyc b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/system/__pycache__/system.cpython-311.pyc new file mode 100644 index 00000000..7c245dd6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/module_utils/fortios/facts/system/__pycache__/system.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..156fae72 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_alertemail_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_alertemail_setting.cpython-311.pyc new file mode 100644 index 00000000..431f86b2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_alertemail_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_heuristic.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_heuristic.cpython-311.pyc new file mode 100644 index 00000000..c7eac3f8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_heuristic.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_mms_checksum.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_mms_checksum.cpython-311.pyc new file mode 100644 index 00000000..cf7b1df9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_mms_checksum.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_notification.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_notification.cpython-311.pyc new file mode 100644 index 00000000..cc8c005c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_notification.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_profile.cpython-311.pyc new file mode 100644 index 00000000..43446d9e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_quarantine.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_quarantine.cpython-311.pyc new file mode 100644 index 00000000..b59ab3f1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_quarantine.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_settings.cpython-311.pyc new file mode 100644 index 00000000..aec5013e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_antivirus_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_custom.cpython-311.pyc new file mode 100644 index 00000000..96ae84f3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_group.cpython-311.pyc new file mode 100644 index 00000000..746352a1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_list.cpython-311.pyc new file mode 100644 index 00000000..951e1057 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_name.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_name.cpython-311.pyc new file mode 100644 index 00000000..c6b16c33 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_name.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_rule_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_rule_settings.cpython-311.pyc new file mode 100644 index 00000000..278a75d7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_application_rule_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_rule.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_rule.cpython-311.pyc new file mode 100644 index 00000000..f94fe4c1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_scheme.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_scheme.cpython-311.pyc new file mode 100644 index 00000000..b10c1d66 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_scheme.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_setting.cpython-311.pyc new file mode 100644 index 00000000..62f06197 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_authentication_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_ca.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_ca.cpython-311.pyc new file mode 100644 index 00000000..3d631351 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_ca.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_crl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_crl.cpython-311.pyc new file mode 100644 index 00000000..d8782dcd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_crl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_local.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_local.cpython-311.pyc new file mode 100644 index 00000000..20a53d1c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_local.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_remote.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_remote.cpython-311.pyc new file mode 100644 index 00000000..2441f8b8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_certificate_remote.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_cifs_domain_controller.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_cifs_domain_controller.cpython-311.pyc new file mode 100644 index 00000000..fc8ae3c8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_cifs_domain_controller.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_cifs_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_cifs_profile.cpython-311.pyc new file mode 100644 index 00000000..4d994438 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_cifs_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_configuration_fact.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_configuration_fact.cpython-311.pyc new file mode 100644 index 00000000..53dbe057 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_configuration_fact.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_credential_store_domain_controller.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_credential_store_domain_controller.cpython-311.pyc new file mode 100644 index 00000000..b4d6bbcb Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_credential_store_domain_controller.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_filepattern.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_filepattern.cpython-311.pyc new file mode 100644 index 00000000..50f283e4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_filepattern.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_fp_doc_source.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_fp_doc_source.cpython-311.pyc new file mode 100644 index 00000000..cc8cc1ca Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_fp_doc_source.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_fp_sensitivity.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_fp_sensitivity.cpython-311.pyc new file mode 100644 index 00000000..06db1d41 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_fp_sensitivity.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_sensitivity.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_sensitivity.cpython-311.pyc new file mode 100644 index 00000000..01307886 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_sensitivity.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_sensor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_sensor.cpython-311.pyc new file mode 100644 index 00000000..6c0f58f3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_sensor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_settings.cpython-311.pyc new file mode 100644 index 00000000..6904685c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dlp_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dnsfilter_domain_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dnsfilter_domain_filter.cpython-311.pyc new file mode 100644 index 00000000..7bf90b8f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dnsfilter_domain_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dnsfilter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dnsfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..9d997a01 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dnsfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dpdk_cpus.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dpdk_cpus.cpython-311.pyc new file mode 100644 index 00000000..5b5de5e3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dpdk_cpus.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dpdk_global.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dpdk_global.cpython-311.pyc new file mode 100644 index 00000000..03496e75 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_dpdk_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_block_allow_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_block_allow_list.cpython-311.pyc new file mode 100644 index 00000000..d7044509 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_block_allow_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_bwl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_bwl.cpython-311.pyc new file mode 100644 index 00000000..8a7ed086 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_bwl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_bword.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_bword.cpython-311.pyc new file mode 100644 index 00000000..e9548ff6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_bword.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_dnsbl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_dnsbl.cpython-311.pyc new file mode 100644 index 00000000..6b930e5f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_dnsbl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_fortishield.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_fortishield.cpython-311.pyc new file mode 100644 index 00000000..de26b602 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_fortishield.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_iptrust.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_iptrust.cpython-311.pyc new file mode 100644 index 00000000..7f450ad6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_iptrust.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_mheader.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_mheader.cpython-311.pyc new file mode 100644 index 00000000..1068a29d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_mheader.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_options.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_options.cpython-311.pyc new file mode 100644 index 00000000..a0ad7d93 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..199bac42 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_emailfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_client.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_client.cpython-311.pyc new file mode 100644 index 00000000..14c4c0af Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_client.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_fctems.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_fctems.cpython-311.pyc new file mode 100644 index 00000000..8ebb3d58 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_fctems.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_forticlient_ems.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_forticlient_ems.cpython-311.pyc new file mode 100644 index 00000000..96c4a05c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_forticlient_ems.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_forticlient_registration_sync.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_forticlient_registration_sync.cpython-311.pyc new file mode 100644 index 00000000..55cbadfa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_forticlient_registration_sync.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_profile.cpython-311.pyc new file mode 100644 index 00000000..33282174 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_registered_forticlient.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_registered_forticlient.cpython-311.pyc new file mode 100644 index 00000000..bc143f3c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_registered_forticlient.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_settings.cpython-311.pyc new file mode 100644 index 00000000..3874cae7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_endpoint_control_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_export_config_playbook.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_export_config_playbook.cpython-311.pyc new file mode 100644 index 00000000..2edd6cf7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_export_config_playbook.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_controller_dataplan.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_controller_dataplan.cpython-311.pyc new file mode 100644 index 00000000..aa140143 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_controller_dataplan.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_controller_extender.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_controller_extender.cpython-311.pyc new file mode 100644 index 00000000..7b8e9887 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_controller_extender.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_extender_info.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_extender_info.cpython-311.pyc new file mode 100644 index 00000000..acee06f4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_extender_info.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_lte_carrier_by_mcc_mnc.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_lte_carrier_by_mcc_mnc.cpython-311.pyc new file mode 100644 index 00000000..c42dba6b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_lte_carrier_by_mcc_mnc.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_lte_carrier_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_lte_carrier_list.cpython-311.pyc new file mode 100644 index 00000000..53c1295d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_lte_carrier_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_modem_status.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_modem_status.cpython-311.pyc new file mode 100644 index 00000000..e25355f2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_modem_status.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_sys_info.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_sys_info.cpython-311.pyc new file mode 100644 index 00000000..bc2648cc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_extender_sys_info.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_file_filter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_file_filter_profile.cpython-311.pyc new file mode 100644 index 00000000..34caf204 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_file_filter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy.cpython-311.pyc new file mode 100644 index 00000000..8d8664ba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy6.cpython-311.pyc new file mode 100644 index 00000000..1739fd30 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy_ssh_client_cert.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy_ssh_client_cert.cpython-311.pyc new file mode 100644 index 00000000..7ca1e9af Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy_ssh_client_cert.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy_virtual_host.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy_virtual_host.cpython-311.pyc new file mode 100644 index 00000000..6fe0bd7a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_access_proxy_virtual_host.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_acl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_acl.cpython-311.pyc new file mode 100644 index 00000000..c68ef8ac Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_acl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_acl6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_acl6.cpython-311.pyc new file mode 100644 index 00000000..62e7bac0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_acl6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address.cpython-311.pyc new file mode 100644 index 00000000..b07f484b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address6.cpython-311.pyc new file mode 100644 index 00000000..8838f66f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address6_template.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address6_template.cpython-311.pyc new file mode 100644 index 00000000..9865d371 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_address6_template.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_addrgrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_addrgrp.cpython-311.pyc new file mode 100644 index 00000000..1b925e5b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_addrgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_addrgrp6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_addrgrp6.cpython-311.pyc new file mode 100644 index 00000000..2afd6694 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_addrgrp6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_auth_portal.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_auth_portal.cpython-311.pyc new file mode 100644 index 00000000..bea71989 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_auth_portal.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_carrier_endpoint_bwl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_carrier_endpoint_bwl.cpython-311.pyc new file mode 100644 index 00000000..d49bd544 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_carrier_endpoint_bwl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_central_snat_map.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_central_snat_map.cpython-311.pyc new file mode 100644 index 00000000..9055f97b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_central_snat_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_city.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_city.cpython-311.pyc new file mode 100644 index 00000000..594a478d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_city.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_consolidated_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_consolidated_policy.cpython-311.pyc new file mode 100644 index 00000000..3d71ba56 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_consolidated_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_country.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_country.cpython-311.pyc new file mode 100644 index 00000000..9ff4811e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_country.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_decrypted_traffic_mirror.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_decrypted_traffic_mirror.cpython-311.pyc new file mode 100644 index 00000000..f2db7553 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_decrypted_traffic_mirror.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dnstranslation.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dnstranslation.cpython-311.pyc new file mode 100644 index 00000000..cb5b7ff8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dnstranslation.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dos_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dos_policy.cpython-311.pyc new file mode 100644 index 00000000..466e8d0a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dos_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dos_policy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dos_policy6.cpython-311.pyc new file mode 100644 index 00000000..033d6e34 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_dos_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_gtp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_gtp.cpython-311.pyc new file mode 100644 index 00000000..22475fdc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_gtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_identity_based_route.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_identity_based_route.cpython-311.pyc new file mode 100644 index 00000000..3c883a26 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_identity_based_route.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_interface_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_interface_policy.cpython-311.pyc new file mode 100644 index 00000000..18a05e4f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_interface_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_interface_policy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_interface_policy6.cpython-311.pyc new file mode 100644 index 00000000..2063168f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_interface_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service.cpython-311.pyc new file mode 100644 index 00000000..8497a59b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_addition.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_addition.cpython-311.pyc new file mode 100644 index 00000000..e0660339 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_addition.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_append.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_append.cpython-311.pyc new file mode 100644 index 00000000..08d941ee Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_append.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_botnet.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_botnet.cpython-311.pyc new file mode 100644 index 00000000..ad42e3f7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_botnet.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_custom.cpython-311.pyc new file mode 100644 index 00000000..e2fa6fab Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_custom_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_custom_group.cpython-311.pyc new file mode 100644 index 00000000..18a1e032 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_custom_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_definition.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_definition.cpython-311.pyc new file mode 100644 index 00000000..dcb7ceee Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_definition.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_extension.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_extension.cpython-311.pyc new file mode 100644 index 00000000..1c8ae568 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_extension.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_group.cpython-311.pyc new file mode 100644 index 00000000..fe4dd093 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_ipbl_reason.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_ipbl_reason.cpython-311.pyc new file mode 100644 index 00000000..7f16fd5d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_ipbl_reason.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_ipbl_vendor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_ipbl_vendor.cpython-311.pyc new file mode 100644 index 00000000..91f94afc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_ipbl_vendor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_list.cpython-311.pyc new file mode 100644 index 00000000..314a122d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_name.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_name.cpython-311.pyc new file mode 100644 index 00000000..e130209f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_name.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_owner.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_owner.cpython-311.pyc new file mode 100644 index 00000000..c311bba9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_owner.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_reputation.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_reputation.cpython-311.pyc new file mode 100644 index 00000000..8c23e5e3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_reputation.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_sld.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_sld.cpython-311.pyc new file mode 100644 index 00000000..47de7841 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_internet_service_sld.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ip_translation.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ip_translation.cpython-311.pyc new file mode 100644 index 00000000..fbc75dba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ip_translation.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipmacbinding_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipmacbinding_setting.cpython-311.pyc new file mode 100644 index 00000000..c8fbb806 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipmacbinding_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipmacbinding_table.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipmacbinding_table.cpython-311.pyc new file mode 100644 index 00000000..e53fbca1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipmacbinding_table.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ippool.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ippool.cpython-311.pyc new file mode 100644 index 00000000..13cbec89 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ippool.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ippool6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ippool6.cpython-311.pyc new file mode 100644 index 00000000..a31e0a4e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ippool6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_iprope_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_iprope_list.cpython-311.pyc new file mode 100644 index 00000000..2d73c320 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_iprope_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipv6_eh_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipv6_eh_filter.cpython-311.pyc new file mode 100644 index 00000000..5c4a28b2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ipv6_eh_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ldb_monitor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ldb_monitor.cpython-311.pyc new file mode 100644 index 00000000..43b548b1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ldb_monitor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_local_in_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_local_in_policy.cpython-311.pyc new file mode 100644 index 00000000..d7b93994 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_local_in_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_local_in_policy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_local_in_policy6.cpython-311.pyc new file mode 100644 index 00000000..1fa7f9c8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_local_in_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_mms_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_mms_profile.cpython-311.pyc new file mode 100644 index 00000000..2741717d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_mms_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_address.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_address.cpython-311.pyc new file mode 100644 index 00000000..7f8a8382 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_address6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_address6.cpython-311.pyc new file mode 100644 index 00000000..572f4648 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_address6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_policy.cpython-311.pyc new file mode 100644 index 00000000..7756ff75 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_policy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_policy6.cpython-311.pyc new file mode 100644 index 00000000..8314282c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_multicast_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_pfcp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_pfcp.cpython-311.pyc new file mode 100644 index 00000000..bf95e5af Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_pfcp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy.cpython-311.pyc new file mode 100644 index 00000000..e87ef349 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy46.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy46.cpython-311.pyc new file mode 100644 index 00000000..03133278 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy46.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy6.cpython-311.pyc new file mode 100644 index 00000000..9f98bf41 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy64.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy64.cpython-311.pyc new file mode 100644 index 00000000..2ee2001a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_policy64.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_profile_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_profile_group.cpython-311.pyc new file mode 100644 index 00000000..33164bf0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_profile_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_profile_protocol_options.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_profile_protocol_options.cpython-311.pyc new file mode 100644 index 00000000..224a0b0f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_profile_protocol_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proute.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proute.cpython-311.pyc new file mode 100644 index 00000000..16420ecd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proute.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_address.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_address.cpython-311.pyc new file mode 100644 index 00000000..7811e4c9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_addrgrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_addrgrp.cpython-311.pyc new file mode 100644 index 00000000..6eafef60 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_addrgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_policy.cpython-311.pyc new file mode 100644 index 00000000..4c002331 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_proxy_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_region.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_region.cpython-311.pyc new file mode 100644 index 00000000..d6460cb3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_region.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_group.cpython-311.pyc new file mode 100644 index 00000000..d78289b1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_onetime.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_onetime.cpython-311.pyc new file mode 100644 index 00000000..a01dd5f5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_onetime.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_recurring.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_recurring.cpython-311.pyc new file mode 100644 index 00000000..19b60d93 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_schedule_recurring.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_security_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_security_policy.cpython-311.pyc new file mode 100644 index 00000000..27425669 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_security_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_category.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_category.cpython-311.pyc new file mode 100644 index 00000000..2f1b70cd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_category.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_custom.cpython-311.pyc new file mode 100644 index 00000000..af646e1e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_group.cpython-311.pyc new file mode 100644 index 00000000..88d6dce7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_service_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaper_per_ip_shaper.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaper_per_ip_shaper.cpython-311.pyc new file mode 100644 index 00000000..b5baa3e6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaper_per_ip_shaper.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaper_traffic_shaper.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaper_traffic_shaper.cpython-311.pyc new file mode 100644 index 00000000..3c29e990 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaper_traffic_shaper.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaping_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaping_policy.cpython-311.pyc new file mode 100644 index 00000000..4c14475d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaping_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaping_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaping_profile.cpython-311.pyc new file mode 100644 index 00000000..a7d06d6d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_shaping_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_sniffer.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_sniffer.cpython-311.pyc new file mode 100644 index 00000000..7c2aa045 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_sniffer.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_host_key.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_host_key.cpython-311.pyc new file mode 100644 index 00000000..3ecddfaa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_host_key.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_local_ca.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_local_ca.cpython-311.pyc new file mode 100644 index 00000000..c6719661 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_local_ca.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_local_key.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_local_key.cpython-311.pyc new file mode 100644 index 00000000..1b1a5528 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_local_key.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_setting.cpython-311.pyc new file mode 100644 index 00000000..31f0ecba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssh_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_server.cpython-311.pyc new file mode 100644 index 00000000..6b33b52e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_setting.cpython-311.pyc new file mode 100644 index 00000000..bb2dffd5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_ssh_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_ssh_profile.cpython-311.pyc new file mode 100644 index 00000000..f6d4a10b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ssl_ssh_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_traffic_class.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_traffic_class.cpython-311.pyc new file mode 100644 index 00000000..842cc425 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_traffic_class.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ttl_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ttl_policy.cpython-311.pyc new file mode 100644 index 00000000..80440961 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_ttl_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vendor_mac.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vendor_mac.cpython-311.pyc new file mode 100644 index 00000000..d38b4d04 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vendor_mac.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip.cpython-311.pyc new file mode 100644 index 00000000..37c788a0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip46.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip46.cpython-311.pyc new file mode 100644 index 00000000..76d50f14 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip46.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip6.cpython-311.pyc new file mode 100644 index 00000000..99bf6386 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip64.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip64.cpython-311.pyc new file mode 100644 index 00000000..129f2b8d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vip64.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp.cpython-311.pyc new file mode 100644 index 00000000..a632d396 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp46.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp46.cpython-311.pyc new file mode 100644 index 00000000..8c22d63b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp46.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp6.cpython-311.pyc new file mode 100644 index 00000000..cdfc6486 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp64.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp64.cpython-311.pyc new file mode 100644 index 00000000..0de353da Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_vipgrp64.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_wildcard_fqdn_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_wildcard_fqdn_custom.cpython-311.pyc new file mode 100644 index 00000000..5cf08eac Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_wildcard_fqdn_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_wildcard_fqdn_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_wildcard_fqdn_group.cpython-311.pyc new file mode 100644 index 00000000..0e64f08e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_firewall_wildcard_fqdn_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ftp_proxy_explicit.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ftp_proxy_explicit.cpython-311.pyc new file mode 100644 index 00000000..0e48768b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ftp_proxy_explicit.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apn.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apn.cpython-311.pyc new file mode 100644 index 00000000..4e740eb1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apn.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apn_shaper.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apn_shaper.cpython-311.pyc new file mode 100644 index 00000000..457db1ec Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apn_shaper.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apngrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apngrp.cpython-311.pyc new file mode 100644 index 00000000..d60419aa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_apngrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_ie_allow_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_ie_allow_list.cpython-311.pyc new file mode 100644 index 00000000..93fd08f2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_ie_allow_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_ie_white_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_ie_white_list.cpython-311.pyc new file mode 100644 index 00000000..dcbc08a1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_ie_white_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_message_filter_v0v1.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_message_filter_v0v1.cpython-311.pyc new file mode 100644 index 00000000..5861b501 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_message_filter_v0v1.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_message_filter_v2.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_message_filter_v2.cpython-311.pyc new file mode 100644 index 00000000..d2dc58ed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_message_filter_v2.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_rat_timeout_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_rat_timeout_profile.cpython-311.pyc new file mode 100644 index 00000000..4a644015 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_rat_timeout_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_tunnel_limit.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_tunnel_limit.cpython-311.pyc new file mode 100644 index 00000000..b4d68bed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_gtp_tunnel_limit.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_nic.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_nic.cpython-311.pyc new file mode 100644 index 00000000..0d49154c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_nic.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_dce.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_dce.cpython-311.pyc new file mode 100644 index 00000000..b81f39fc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_dce.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_session_stats.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_session_stats.cpython-311.pyc new file mode 100644 index 00000000..4d429ed8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_session_stats.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_sse_stats.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_sse_stats.cpython-311.pyc new file mode 100644 index 00000000..103e8193 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_hardware_npu_np6_sse_stats.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_icap_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_icap_profile.cpython-311.pyc new file mode 100644 index 00000000..d4c4dc50 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_icap_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_icap_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_icap_server.cpython-311.pyc new file mode 100644 index 00000000..5a7daef8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_icap_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_custom.cpython-311.pyc new file mode 100644 index 00000000..80eeb572 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_decoder.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_decoder.cpython-311.pyc new file mode 100644 index 00000000..37627601 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_decoder.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_global.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_global.cpython-311.pyc new file mode 100644 index 00000000..8bc588ba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_rule.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_rule.cpython-311.pyc new file mode 100644 index 00000000..987d7daa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_rule_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_rule_settings.cpython-311.pyc new file mode 100644 index 00000000..9bf01c7f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_rule_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_sensor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_sensor.cpython-311.pyc new file mode 100644 index 00000000..f1efc82c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_sensor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_settings.cpython-311.pyc new file mode 100644 index 00000000..c93ebdd6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_view_map.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_view_map.cpython-311.pyc new file mode 100644 index 00000000..6d004c22 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ips_view_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_json_generic.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_json_generic.cpython-311.pyc new file mode 100644 index 00000000..196a388a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_json_generic.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_custom_field.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_custom_field.cpython-311.pyc new file mode 100644 index 00000000..b9e1c9fd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_custom_field.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_disk_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_disk_filter.cpython-311.pyc new file mode 100644 index 00000000..711275da Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_disk_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_disk_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_disk_setting.cpython-311.pyc new file mode 100644 index 00000000..909f3bd8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_disk_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_eventfilter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_eventfilter.cpython-311.pyc new file mode 100644 index 00000000..e0d95493 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_eventfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fact.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fact.cpython-311.pyc new file mode 100644 index 00000000..9354a4db Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fact.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_filter.cpython-311.pyc new file mode 100644 index 00000000..455c96f5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_override_filter.cpython-311.pyc new file mode 100644 index 00000000..26811d0f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_override_setting.cpython-311.pyc new file mode 100644 index 00000000..ee1603a5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_setting.cpython-311.pyc new file mode 100644 index 00000000..f2f9e39b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer2_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_filter.cpython-311.pyc new file mode 100644 index 00000000..34884a08 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_override_filter.cpython-311.pyc new file mode 100644 index 00000000..a453bcdb Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_override_setting.cpython-311.pyc new file mode 100644 index 00000000..0df50c78 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_setting.cpython-311.pyc new file mode 100644 index 00000000..7faacdf7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer3_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_filter.cpython-311.pyc new file mode 100644 index 00000000..85aec9da Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_override_filter.cpython-311.pyc new file mode 100644 index 00000000..28e03280 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_override_setting.cpython-311.pyc new file mode 100644 index 00000000..3e8ea4b0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_setting.cpython-311.pyc new file mode 100644 index 00000000..968777d2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_cloud_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_filter.cpython-311.pyc new file mode 100644 index 00000000..8f401b2c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_override_filter.cpython-311.pyc new file mode 100644 index 00000000..dbf6e285 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_override_setting.cpython-311.pyc new file mode 100644 index 00000000..c331e64e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_setting.cpython-311.pyc new file mode 100644 index 00000000..b3d1723e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortianalyzer_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_filter.cpython-311.pyc new file mode 100644 index 00000000..5db8e8f1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_override_filter.cpython-311.pyc new file mode 100644 index 00000000..77e69731 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_override_setting.cpython-311.pyc new file mode 100644 index 00000000..a2c34dc0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_setting.cpython-311.pyc new file mode 100644 index 00000000..36b6a8aa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_fortiguard_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_gui_display.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_gui_display.cpython-311.pyc new file mode 100644 index 00000000..0d290b7b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_gui_display.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_filter.cpython-311.pyc new file mode 100644 index 00000000..52dc8b05 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_global_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_global_setting.cpython-311.pyc new file mode 100644 index 00000000..9120416e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_global_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_setting.cpython-311.pyc new file mode 100644 index 00000000..305ff7ce Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_memory_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_null_device_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_null_device_filter.cpython-311.pyc new file mode 100644 index 00000000..ee9319ee Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_null_device_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_null_device_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_null_device_setting.cpython-311.pyc new file mode 100644 index 00000000..8edf3e33 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_null_device_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_setting.cpython-311.pyc new file mode 100644 index 00000000..eb7368d0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_filter.cpython-311.pyc new file mode 100644 index 00000000..5b6e6e12 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_override_filter.cpython-311.pyc new file mode 100644 index 00000000..2a3bbac8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_override_setting.cpython-311.pyc new file mode 100644 index 00000000..604c1bb4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_setting.cpython-311.pyc new file mode 100644 index 00000000..ea1ce156 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd2_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_filter.cpython-311.pyc new file mode 100644 index 00000000..4b576fed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_override_filter.cpython-311.pyc new file mode 100644 index 00000000..b4ca22bc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_override_setting.cpython-311.pyc new file mode 100644 index 00000000..ab6cf150 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_setting.cpython-311.pyc new file mode 100644 index 00000000..5a746a47 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd3_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_filter.cpython-311.pyc new file mode 100644 index 00000000..f3714c72 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_override_filter.cpython-311.pyc new file mode 100644 index 00000000..710ce3ea Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_override_setting.cpython-311.pyc new file mode 100644 index 00000000..6e06c1f1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_setting.cpython-311.pyc new file mode 100644 index 00000000..0f43a431 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd4_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_filter.cpython-311.pyc new file mode 100644 index 00000000..a63f2f2c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_override_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_override_filter.cpython-311.pyc new file mode 100644 index 00000000..af712175 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_override_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_override_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_override_setting.cpython-311.pyc new file mode 100644 index 00000000..44c30f89 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_override_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_setting.cpython-311.pyc new file mode 100644 index 00000000..e44799aa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_syslogd_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_threat_weight.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_threat_weight.cpython-311.pyc new file mode 100644 index 00000000..bea7231a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_threat_weight.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_webtrends_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_webtrends_filter.cpython-311.pyc new file mode 100644 index 00000000..09b1fa4f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_webtrends_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_webtrends_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_webtrends_setting.cpython-311.pyc new file mode 100644 index 00000000..b59495f9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_log_webtrends_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitor.cpython-311.pyc new file mode 100644 index 00000000..4f81c720 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitor_fact.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitor_fact.cpython-311.pyc new file mode 100644 index 00000000..2214e3cd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitor_fact.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitoring_np6_ipsec_engine.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitoring_np6_ipsec_engine.cpython-311.pyc new file mode 100644 index 00000000..ab228a01 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitoring_np6_ipsec_engine.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitoring_npu_hpe.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitoring_npu_hpe.cpython-311.pyc new file mode 100644 index 00000000..f36ec7c3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_monitoring_npu_hpe.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_nsxt_service_chain.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_nsxt_service_chain.cpython-311.pyc new file mode 100644 index 00000000..43454d8c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_nsxt_service_chain.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_nsxt_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_nsxt_setting.cpython-311.pyc new file mode 100644 index 00000000..9a41c129 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_nsxt_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_pfcp_message_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_pfcp_message_filter.cpython-311.pyc new file mode 100644 index 00000000..f363b21c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_pfcp_message_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_chart.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_chart.cpython-311.pyc new file mode 100644 index 00000000..9b501c56 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_chart.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_dataset.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_dataset.cpython-311.pyc new file mode 100644 index 00000000..7454c3db Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_dataset.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_layout.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_layout.cpython-311.pyc new file mode 100644 index 00000000..797af83c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_layout.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_setting.cpython-311.pyc new file mode 100644 index 00000000..3e3c9fb0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_style.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_style.cpython-311.pyc new file mode 100644 index 00000000..89b93ba5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_style.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_theme.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_theme.cpython-311.pyc new file mode 100644 index 00000000..6ec655ed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_report_theme.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_access_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_access_list.cpython-311.pyc new file mode 100644 index 00000000..f250ae47 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_access_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_access_list6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_access_list6.cpython-311.pyc new file mode 100644 index 00000000..39d0c6a5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_access_list6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_aspath_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_aspath_list.cpython-311.pyc new file mode 100644 index 00000000..01a96328 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_aspath_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_auth_path.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_auth_path.cpython-311.pyc new file mode 100644 index 00000000..8f1f58d0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_auth_path.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bfd.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bfd.cpython-311.pyc new file mode 100644 index 00000000..75f0655e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bfd.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bfd6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bfd6.cpython-311.pyc new file mode 100644 index 00000000..7b3812ac Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bfd6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bgp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bgp.cpython-311.pyc new file mode 100644 index 00000000..e0cd2c52 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_bgp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_community_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_community_list.cpython-311.pyc new file mode 100644 index 00000000..2e78f3a3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_community_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_isis.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_isis.cpython-311.pyc new file mode 100644 index 00000000..ee456c65 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_isis.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_key_chain.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_key_chain.cpython-311.pyc new file mode 100644 index 00000000..c03540a4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_key_chain.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast.cpython-311.pyc new file mode 100644 index 00000000..01ac3c42 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast6.cpython-311.pyc new file mode 100644 index 00000000..cf30aae3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast_flow.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast_flow.cpython-311.pyc new file mode 100644 index 00000000..6a75cb2d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_multicast_flow.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ospf.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ospf.cpython-311.pyc new file mode 100644 index 00000000..4a9a6e4e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ospf.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ospf6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ospf6.cpython-311.pyc new file mode 100644 index 00000000..136a550b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ospf6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_policy.cpython-311.pyc new file mode 100644 index 00000000..151e8783 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_policy6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_policy6.cpython-311.pyc new file mode 100644 index 00000000..94a9c33e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_policy6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_prefix_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_prefix_list.cpython-311.pyc new file mode 100644 index 00000000..57a22609 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_prefix_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_prefix_list6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_prefix_list6.cpython-311.pyc new file mode 100644 index 00000000..f8b6dbed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_prefix_list6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_rip.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_rip.cpython-311.pyc new file mode 100644 index 00000000..55d777ca Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_rip.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ripng.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ripng.cpython-311.pyc new file mode 100644 index 00000000..17064cb5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_ripng.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_route_map.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_route_map.cpython-311.pyc new file mode 100644 index 00000000..55c2e3a4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_route_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_setting.cpython-311.pyc new file mode 100644 index 00000000..a7b04402 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_static.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_static.cpython-311.pyc new file mode 100644 index 00000000..34c96188 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_static.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_static6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_static6.cpython-311.pyc new file mode 100644 index 00000000..f8e6e0af Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_router_static6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_sctp_filter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_sctp_filter_profile.cpython-311.pyc new file mode 100644 index 00000000..da7918b7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_sctp_filter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_bwl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_bwl.cpython-311.pyc new file mode 100644 index 00000000..2ce463a8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_bwl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_bword.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_bword.cpython-311.pyc new file mode 100644 index 00000000..51fba8be Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_bword.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_dnsbl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_dnsbl.cpython-311.pyc new file mode 100644 index 00000000..fa44cbe3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_dnsbl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_fortishield.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_fortishield.cpython-311.pyc new file mode 100644 index 00000000..531d13ba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_fortishield.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_iptrust.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_iptrust.cpython-311.pyc new file mode 100644 index 00000000..2bfc9318 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_iptrust.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_mheader.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_mheader.cpython-311.pyc new file mode 100644 index 00000000..7c6700a0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_mheader.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_options.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_options.cpython-311.pyc new file mode 100644 index 00000000..452fd921 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_options.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..3562ac5a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_spamfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ssh_filter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ssh_filter_profile.cpython-311.pyc new file mode 100644 index 00000000..77c2e9d4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_ssh_filter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_802_1x_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_802_1x_settings.cpython-311.pyc new file mode 100644 index 00000000..5bfc224b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_802_1x_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_custom.cpython-311.pyc new file mode 100644 index 00000000..2ad8a236 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_default.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_default.cpython-311.pyc new file mode 100644 index 00000000..21b6839f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_default.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_policy.cpython-311.pyc new file mode 100644 index 00000000..1ebca9fb Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_auto_config_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_custom_command.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_custom_command.cpython-311.pyc new file mode 100644 index 00000000..2b8429bb Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_custom_command.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_dynamic_port_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_dynamic_port_policy.cpython-311.pyc new file mode 100644 index 00000000..a14a3332 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_dynamic_port_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_flow_tracking.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_flow_tracking.cpython-311.pyc new file mode 100644 index 00000000..054a06b1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_flow_tracking.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_fortilink_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_fortilink_settings.cpython-311.pyc new file mode 100644 index 00000000..84c53ab0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_fortilink_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_global.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_global.cpython-311.pyc new file mode 100644 index 00000000..f1f5f645 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_igmp_snooping.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_igmp_snooping.cpython-311.pyc new file mode 100644 index 00000000..f913caf2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_igmp_snooping.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_initial_config_template.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_initial_config_template.cpython-311.pyc new file mode 100644 index 00000000..ea20ef5c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_initial_config_template.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_initial_config_vlans.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_initial_config_vlans.cpython-311.pyc new file mode 100644 index 00000000..e4920f70 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_initial_config_vlans.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_lldp_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_lldp_profile.cpython-311.pyc new file mode 100644 index 00000000..bbb24176 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_lldp_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_lldp_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_lldp_settings.cpython-311.pyc new file mode 100644 index 00000000..1139b9cd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_lldp_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_location.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_location.cpython-311.pyc new file mode 100644 index 00000000..0bb57bd9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_location.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_mac_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_mac_policy.cpython-311.pyc new file mode 100644 index 00000000..ac7646d9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_mac_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_mac_sync_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_mac_sync_settings.cpython-311.pyc new file mode 100644 index 00000000..44a2361c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_mac_sync_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_managed_switch.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_managed_switch.cpython-311.pyc new file mode 100644 index 00000000..75f15e22 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_managed_switch.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_nac_device.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_nac_device.cpython-311.pyc new file mode 100644 index 00000000..3d21607d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_nac_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_nac_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_nac_settings.cpython-311.pyc new file mode 100644 index 00000000..ff9d2250 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_nac_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_network_monitor_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_network_monitor_settings.cpython-311.pyc new file mode 100644 index 00000000..9f781c16 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_network_monitor_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_poe.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_poe.cpython-311.pyc new file mode 100644 index 00000000..e4da921d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_poe.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_port_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_port_policy.cpython-311.pyc new file mode 100644 index 00000000..14f2f35f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_port_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_ptp_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_ptp_policy.cpython-311.pyc new file mode 100644 index 00000000..04c686fc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_ptp_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_ptp_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_ptp_settings.cpython-311.pyc new file mode 100644 index 00000000..caee2e49 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_ptp_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_dot1p_map.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_dot1p_map.cpython-311.pyc new file mode 100644 index 00000000..3bdfab82 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_dot1p_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_ip_dscp_map.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_ip_dscp_map.cpython-311.pyc new file mode 100644 index 00000000..80091ba9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_ip_dscp_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_qos_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_qos_policy.cpython-311.pyc new file mode 100644 index 00000000..04371eb1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_qos_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_queue_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_queue_policy.cpython-311.pyc new file mode 100644 index 00000000..4faf1e1d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_qos_queue_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_quarantine.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_quarantine.cpython-311.pyc new file mode 100644 index 00000000..1fe31142 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_quarantine.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_remote_log.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_remote_log.cpython-311.pyc new file mode 100644 index 00000000..d4b4fb5e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_remote_log.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_802_1x.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_802_1x.cpython-311.pyc new file mode 100644 index 00000000..5ba4dbc1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_802_1x.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_captive_portal.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_captive_portal.cpython-311.pyc new file mode 100644 index 00000000..ef1a3e19 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_captive_portal.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_local_access.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_local_access.cpython-311.pyc new file mode 100644 index 00000000..687500e8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_security_policy_local_access.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_sflow.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_sflow.cpython-311.pyc new file mode 100644 index 00000000..2b5881f6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_sflow.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_community.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_community.cpython-311.pyc new file mode 100644 index 00000000..7fcf3b04 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_community.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_sysinfo.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_sysinfo.cpython-311.pyc new file mode 100644 index 00000000..58e257d9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_sysinfo.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_trap_threshold.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_trap_threshold.cpython-311.pyc new file mode 100644 index 00000000..5bc9e184 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_trap_threshold.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_user.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_user.cpython-311.pyc new file mode 100644 index 00000000..2fdb7394 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_snmp_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_storm_control.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_storm_control.cpython-311.pyc new file mode 100644 index 00000000..e7078dd4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_storm_control.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_storm_control_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_storm_control_policy.cpython-311.pyc new file mode 100644 index 00000000..2000ec63 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_storm_control_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_stp_instance.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_stp_instance.cpython-311.pyc new file mode 100644 index 00000000..6535843f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_stp_instance.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_stp_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_stp_settings.cpython-311.pyc new file mode 100644 index 00000000..3f1b5e81 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_stp_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_group.cpython-311.pyc new file mode 100644 index 00000000..5da0c161 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_interface_tag.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_interface_tag.cpython-311.pyc new file mode 100644 index 00000000..17e0e342 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_interface_tag.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_log.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_log.cpython-311.pyc new file mode 100644 index 00000000..a9068e86 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_log.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_profile.cpython-311.pyc new file mode 100644 index 00000000..0346c9ce Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_switch_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_system.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_system.cpython-311.pyc new file mode 100644 index 00000000..698bcd81 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_system.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_traffic_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_traffic_policy.cpython-311.pyc new file mode 100644 index 00000000..650b138a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_traffic_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_traffic_sniffer.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_traffic_sniffer.cpython-311.pyc new file mode 100644 index 00000000..1f1634ee Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_traffic_sniffer.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_virtual_port_pool.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_virtual_port_pool.cpython-311.pyc new file mode 100644 index 00000000..0fb52585 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_virtual_port_pool.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_vlan.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_vlan.cpython-311.pyc new file mode 100644 index 00000000..30d11376 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_vlan.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_vlan_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_vlan_policy.cpython-311.pyc new file mode 100644 index 00000000..ee2f6b2c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_switch_controller_vlan_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_3g_modem_custom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_3g_modem_custom.cpython-311.pyc new file mode 100644 index 00000000..94f7c23a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_3g_modem_custom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_accprofile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_accprofile.cpython-311.pyc new file mode 100644 index 00000000..6a3410bc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_accprofile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_acme.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_acme.cpython-311.pyc new file mode 100644 index 00000000..04cfee19 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_acme.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_admin.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_admin.cpython-311.pyc new file mode 100644 index 00000000..7986c326 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_affinity_interrupt.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_affinity_interrupt.cpython-311.pyc new file mode 100644 index 00000000..536d7d4f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_affinity_interrupt.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_affinity_packet_redistribution.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_affinity_packet_redistribution.cpython-311.pyc new file mode 100644 index 00000000..766a3c46 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_affinity_packet_redistribution.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_alarm.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_alarm.cpython-311.pyc new file mode 100644 index 00000000..bb4c0f29 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_alarm.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_alias.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_alias.cpython-311.pyc new file mode 100644 index 00000000..897ee3ae Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_alias.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_api_user.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_api_user.cpython-311.pyc new file mode 100644 index 00000000..dfb7f01a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_api_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_arp_table.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_arp_table.cpython-311.pyc new file mode 100644 index 00000000..ab6692ab Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_arp_table.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_auto_install.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_auto_install.cpython-311.pyc new file mode 100644 index 00000000..82407f31 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_auto_install.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_auto_script.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_auto_script.cpython-311.pyc new file mode 100644 index 00000000..3018dca1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_auto_script.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_action.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_action.cpython-311.pyc new file mode 100644 index 00000000..512af544 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_action.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_destination.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_destination.cpython-311.pyc new file mode 100644 index 00000000..9b0b6277 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_destination.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_stitch.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_stitch.cpython-311.pyc new file mode 100644 index 00000000..8b248ae6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_stitch.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_trigger.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_trigger.cpython-311.pyc new file mode 100644 index 00000000..f7350dcf Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_automation_trigger.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_push_update.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_push_update.cpython-311.pyc new file mode 100644 index 00000000..5ba8fb9b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_push_update.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_schedule.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_schedule.cpython-311.pyc new file mode 100644 index 00000000..cbc40da8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_schedule.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_tunneling.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_tunneling.cpython-311.pyc new file mode 100644 index 00000000..2f1cf9e6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_autoupdate_tunneling.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_central_management.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_central_management.cpython-311.pyc new file mode 100644 index 00000000..101c7751 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_central_management.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_cluster_sync.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_cluster_sync.cpython-311.pyc new file mode 100644 index 00000000..6a05408e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_cluster_sync.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_console.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_console.cpython-311.pyc new file mode 100644 index 00000000..a6c02da7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_console.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_csf.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_csf.cpython-311.pyc new file mode 100644 index 00000000..5c9587cf Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_csf.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_custom_language.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_custom_language.cpython-311.pyc new file mode 100644 index 00000000..e737d09c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_custom_language.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ddns.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ddns.cpython-311.pyc new file mode 100644 index 00000000..b23886b5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ddns.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dedicated_mgmt.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dedicated_mgmt.cpython-311.pyc new file mode 100644 index 00000000..e129fc22 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dedicated_mgmt.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dhcp6_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dhcp6_server.cpython-311.pyc new file mode 100644 index 00000000..b6b53ae6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dhcp6_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dhcp_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dhcp_server.cpython-311.pyc new file mode 100644 index 00000000..355a3430 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dhcp_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns.cpython-311.pyc new file mode 100644 index 00000000..779a9e8e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns64.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns64.cpython-311.pyc new file mode 100644 index 00000000..7a504186 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns64.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns_database.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns_database.cpython-311.pyc new file mode 100644 index 00000000..6f8f4f57 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns_database.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns_server.cpython-311.pyc new file mode 100644 index 00000000..eda35040 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dns_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dscp_based_priority.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dscp_based_priority.cpython-311.pyc new file mode 100644 index 00000000..16c78908 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_dscp_based_priority.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_email_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_email_server.cpython-311.pyc new file mode 100644 index 00000000..6e98285b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_email_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_external_resource.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_external_resource.cpython-311.pyc new file mode 100644 index 00000000..f82e213c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_external_resource.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_federated_upgrade.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_federated_upgrade.cpython-311.pyc new file mode 100644 index 00000000..dfba8a53 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_federated_upgrade.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fips_cc.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fips_cc.cpython-311.pyc new file mode 100644 index 00000000..564e9d05 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fips_cc.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fm.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fm.cpython-311.pyc new file mode 100644 index 00000000..15e936e2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fm.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortiai.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortiai.cpython-311.pyc new file mode 100644 index 00000000..34fd7908 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortiai.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortiguard.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortiguard.cpython-311.pyc new file mode 100644 index 00000000..2f3cdc9a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortiguard.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortimanager.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortimanager.cpython-311.pyc new file mode 100644 index 00000000..e765d28b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortimanager.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortisandbox.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortisandbox.cpython-311.pyc new file mode 100644 index 00000000..68e2d8d5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fortisandbox.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fsso_polling.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fsso_polling.cpython-311.pyc new file mode 100644 index 00000000..40238e85 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_fsso_polling.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ftm_push.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ftm_push.cpython-311.pyc new file mode 100644 index 00000000..4435ef6e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ftm_push.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geneve.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geneve.cpython-311.pyc new file mode 100644 index 00000000..b9d24fee Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geneve.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geoip_country.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geoip_country.cpython-311.pyc new file mode 100644 index 00000000..8941ec7d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geoip_country.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geoip_override.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geoip_override.cpython-311.pyc new file mode 100644 index 00000000..8d4f6179 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_geoip_override.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_gi_gk.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_gi_gk.cpython-311.pyc new file mode 100644 index 00000000..bfcd665f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_gi_gk.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_global.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_global.cpython-311.pyc new file mode 100644 index 00000000..42ed35e0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_gre_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_gre_tunnel.cpython-311.pyc new file mode 100644 index 00000000..8638d4be Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_gre_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ha.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ha.cpython-311.pyc new file mode 100644 index 00000000..fd40917f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ha.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ha_monitor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ha_monitor.cpython-311.pyc new file mode 100644 index 00000000..a814d99a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ha_monitor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ike.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ike.cpython-311.pyc new file mode 100644 index 00000000..ecc97f78 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ike.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_interface.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_interface.cpython-311.pyc new file mode 100644 index 00000000..c60c071b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipip_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipip_tunnel.cpython-311.pyc new file mode 100644 index 00000000..b18b0c51 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipip_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips.cpython-311.pyc new file mode 100644 index 00000000..cc3ba8cc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips_urlfilter_dns.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips_urlfilter_dns.cpython-311.pyc new file mode 100644 index 00000000..51781a59 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips_urlfilter_dns.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips_urlfilter_dns6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips_urlfilter_dns6.cpython-311.pyc new file mode 100644 index 00000000..0e9cefe8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ips_urlfilter_dns6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipsec_aggregate.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipsec_aggregate.cpython-311.pyc new file mode 100644 index 00000000..7a235d78 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipsec_aggregate.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipv6_neighbor_cache.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipv6_neighbor_cache.cpython-311.pyc new file mode 100644 index 00000000..2ca20891 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipv6_neighbor_cache.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipv6_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipv6_tunnel.cpython-311.pyc new file mode 100644 index 00000000..9252ef91 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ipv6_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_isf_queue_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_isf_queue_profile.cpython-311.pyc new file mode 100644 index 00000000..5be24582 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_isf_queue_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_link_monitor.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_link_monitor.cpython-311.pyc new file mode 100644 index 00000000..0ed70868 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_link_monitor.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_lldp_network_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_lldp_network_policy.cpython-311.pyc new file mode 100644 index 00000000..5eede3d7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_lldp_network_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_lte_modem.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_lte_modem.cpython-311.pyc new file mode 100644 index 00000000..b2eedfb2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_lte_modem.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mac_address_table.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mac_address_table.cpython-311.pyc new file mode 100644 index 00000000..5c238377 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mac_address_table.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_management_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_management_tunnel.cpython-311.pyc new file mode 100644 index 00000000..a845f391 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_management_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mem_mgr.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mem_mgr.cpython-311.pyc new file mode 100644 index 00000000..7d39d3f7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mem_mgr.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mobile_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mobile_tunnel.cpython-311.pyc new file mode 100644 index 00000000..72e23293 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_mobile_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_modem.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_modem.cpython-311.pyc new file mode 100644 index 00000000..a8fe7a7f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_modem.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_nat64.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_nat64.cpython-311.pyc new file mode 100644 index 00000000..204bf017 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_nat64.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_nd_proxy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_nd_proxy.cpython-311.pyc new file mode 100644 index 00000000..4868c884 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_nd_proxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_netflow.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_netflow.cpython-311.pyc new file mode 100644 index 00000000..88df8503 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_netflow.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_network_visibility.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_network_visibility.cpython-311.pyc new file mode 100644 index 00000000..85748dba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_network_visibility.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_np6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_np6.cpython-311.pyc new file mode 100644 index 00000000..0cef92ed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_np6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_npu.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_npu.cpython-311.pyc new file mode 100644 index 00000000..37fd3c50 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_npu.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ntp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ntp.cpython-311.pyc new file mode 100644 index 00000000..0cb6cf1b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_object_tagging.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_object_tagging.cpython-311.pyc new file mode 100644 index 00000000..bc92efdd Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_object_tagging.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_password_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_password_policy.cpython-311.pyc new file mode 100644 index 00000000..2b7e4aa8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_password_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_password_policy_guest_admin.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_password_policy_guest_admin.cpython-311.pyc new file mode 100644 index 00000000..694bda19 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_password_policy_guest_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_performance_top.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_performance_top.cpython-311.pyc new file mode 100644 index 00000000..942c8715 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_performance_top.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_physical_switch.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_physical_switch.cpython-311.pyc new file mode 100644 index 00000000..70d8ae6c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_physical_switch.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_pppoe_interface.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_pppoe_interface.cpython-311.pyc new file mode 100644 index 00000000..4fc60291 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_pppoe_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_probe_response.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_probe_response.cpython-311.pyc new file mode 100644 index 00000000..f1595727 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_probe_response.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_proxy_arp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_proxy_arp.cpython-311.pyc new file mode 100644 index 00000000..6e36f828 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_proxy_arp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ptp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ptp.cpython-311.pyc new file mode 100644 index 00000000..fb21bf45 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_ptp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_admin.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_admin.cpython-311.pyc new file mode 100644 index 00000000..cddee61a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_alertmail.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_alertmail.cpython-311.pyc new file mode 100644 index 00000000..a43aea6f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_alertmail.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_auth.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_auth.cpython-311.pyc new file mode 100644 index 00000000..f32498c2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_auth.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_automation.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_automation.cpython-311.pyc new file mode 100644 index 00000000..32f46908 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_automation.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_device_detection_portal.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_device_detection_portal.cpython-311.pyc new file mode 100644 index 00000000..94e2c706 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_device_detection_portal.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_ec.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_ec.cpython-311.pyc new file mode 100644 index 00000000..0ab82412 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_ec.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_fortiguard_wf.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_fortiguard_wf.cpython-311.pyc new file mode 100644 index 00000000..34c729cc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_fortiguard_wf.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_ftp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_ftp.cpython-311.pyc new file mode 100644 index 00000000..cf225ab0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_ftp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_group.cpython-311.pyc new file mode 100644 index 00000000..9d4617a5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_http.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_http.cpython-311.pyc new file mode 100644 index 00000000..9eb60f7a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_http.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_icap.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_icap.cpython-311.pyc new file mode 100644 index 00000000..41040984 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_icap.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_image.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_image.cpython-311.pyc new file mode 100644 index 00000000..e32c0ada Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_image.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mail.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mail.cpython-311.pyc new file mode 100644 index 00000000..1753c644 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mail.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm1.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm1.cpython-311.pyc new file mode 100644 index 00000000..7a030136 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm1.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm3.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm3.cpython-311.pyc new file mode 100644 index 00000000..ea0542c6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm3.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm4.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm4.cpython-311.pyc new file mode 100644 index 00000000..18760c21 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm4.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm7.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm7.cpython-311.pyc new file mode 100644 index 00000000..fb216fe5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mm7.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mms.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mms.cpython-311.pyc new file mode 100644 index 00000000..a4bfeaf6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_mms.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_nac_quar.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_nac_quar.cpython-311.pyc new file mode 100644 index 00000000..377484b9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_nac_quar.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_nntp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_nntp.cpython-311.pyc new file mode 100644 index 00000000..f47fc716 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_nntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_spam.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_spam.cpython-311.pyc new file mode 100644 index 00000000..01326809 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_spam.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_sslvpn.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_sslvpn.cpython-311.pyc new file mode 100644 index 00000000..9bb6884f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_sslvpn.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_traffic_quota.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_traffic_quota.cpython-311.pyc new file mode 100644 index 00000000..ddd076e3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_traffic_quota.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_utm.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_utm.cpython-311.pyc new file mode 100644 index 00000000..6a597347 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_utm.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_webproxy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_webproxy.cpython-311.pyc new file mode 100644 index 00000000..46538681 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_replacemsg_webproxy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_resource_limits.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_resource_limits.cpython-311.pyc new file mode 100644 index 00000000..17fe180c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_resource_limits.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_saml.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_saml.cpython-311.pyc new file mode 100644 index 00000000..5cb5a27e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_saml.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sdn_connector.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sdn_connector.cpython-311.pyc new file mode 100644 index 00000000..fd8c1701 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sdn_connector.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sdwan.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sdwan.cpython-311.pyc new file mode 100644 index 00000000..f5eef59b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sdwan.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_session_helper.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_session_helper.cpython-311.pyc new file mode 100644 index 00000000..eeb76deb Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_session_helper.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_session_ttl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_session_ttl.cpython-311.pyc new file mode 100644 index 00000000..79e73b7a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_session_ttl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_settings.cpython-311.pyc new file mode 100644 index 00000000..6dfa5a1d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sflow.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sflow.cpython-311.pyc new file mode 100644 index 00000000..9be11d75 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sflow.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sit_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sit_tunnel.cpython-311.pyc new file mode 100644 index 00000000..b6704f05 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sit_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_smc_ntp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_smc_ntp.cpython-311.pyc new file mode 100644 index 00000000..ae825344 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_smc_ntp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sms_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sms_server.cpython-311.pyc new file mode 100644 index 00000000..0b75334d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sms_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_community.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_community.cpython-311.pyc new file mode 100644 index 00000000..47b132f7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_community.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_sysinfo.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_sysinfo.cpython-311.pyc new file mode 100644 index 00000000..b7f9a813 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_sysinfo.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_user.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_user.cpython-311.pyc new file mode 100644 index 00000000..25734e71 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_snmp_user.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_speed_test_schedule.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_speed_test_schedule.cpython-311.pyc new file mode 100644 index 00000000..e3bc63cc Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_speed_test_schedule.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_speed_test_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_speed_test_server.cpython-311.pyc new file mode 100644 index 00000000..9d490eb0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_speed_test_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sso_admin.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sso_admin.cpython-311.pyc new file mode 100644 index 00000000..c38e6c88 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sso_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sso_forticloud_admin.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sso_forticloud_admin.cpython-311.pyc new file mode 100644 index 00000000..05eb99ec Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_sso_forticloud_admin.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_standalone_cluster.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_standalone_cluster.cpython-311.pyc new file mode 100644 index 00000000..68e6dddf Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_standalone_cluster.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_storage.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_storage.cpython-311.pyc new file mode 100644 index 00000000..6e7160a7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_storage.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_stp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_stp.cpython-311.pyc new file mode 100644 index 00000000..1e8e9c8a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_stp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_switch_interface.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_switch_interface.cpython-311.pyc new file mode 100644 index 00000000..0e1eb12b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_switch_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_tos_based_priority.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_tos_based_priority.cpython-311.pyc new file mode 100644 index 00000000..7406d0ae Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_tos_based_priority.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom.cpython-311.pyc new file mode 100644 index 00000000..7be0ff7b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_dns.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_dns.cpython-311.pyc new file mode 100644 index 00000000..2764f37e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_dns.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_exception.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_exception.cpython-311.pyc new file mode 100644 index 00000000..f3785aa8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_exception.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_link.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_link.cpython-311.pyc new file mode 100644 index 00000000..f18beda4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_link.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_netflow.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_netflow.cpython-311.pyc new file mode 100644 index 00000000..4cac9167 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_netflow.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_property.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_property.cpython-311.pyc new file mode 100644 index 00000000..54a8813e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_property.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_radius_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_radius_server.cpython-311.pyc new file mode 100644 index 00000000..aa6d7b59 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_radius_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_sflow.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_sflow.cpython-311.pyc new file mode 100644 index 00000000..8a3cc030 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vdom_sflow.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_switch.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_switch.cpython-311.pyc new file mode 100644 index 00000000..d59e0ce3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_switch.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_wan_link.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_wan_link.cpython-311.pyc new file mode 100644 index 00000000..aeee6849 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_wan_link.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_wire_pair.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_wire_pair.cpython-311.pyc new file mode 100644 index 00000000..963ab28d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_virtual_wire_pair.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vne_tunnel.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vne_tunnel.cpython-311.pyc new file mode 100644 index 00000000..fdf5dac9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vne_tunnel.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vxlan.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vxlan.cpython-311.pyc new file mode 100644 index 00000000..d8de4cf8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_vxlan.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_wccp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_wccp.cpython-311.pyc new file mode 100644 index 00000000..2110809d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_wccp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_zone.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_zone.cpython-311.pyc new file mode 100644 index 00000000..5cae2c9e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_system_zone.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_adgrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_adgrp.cpython-311.pyc new file mode 100644 index 00000000..87a9d45e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_adgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_certificate.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_certificate.cpython-311.pyc new file mode 100644 index 00000000..4a43cca3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_certificate.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device.cpython-311.pyc new file mode 100644 index 00000000..f30a5eee Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_access_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_access_list.cpython-311.pyc new file mode 100644 index 00000000..4b5f561b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_access_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_category.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_category.cpython-311.pyc new file mode 100644 index 00000000..8d619c6d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_category.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_group.cpython-311.pyc new file mode 100644 index 00000000..0081f912 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_device_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_domain_controller.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_domain_controller.cpython-311.pyc new file mode 100644 index 00000000..3a2ba902 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_domain_controller.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_exchange.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_exchange.cpython-311.pyc new file mode 100644 index 00000000..39b491a5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_exchange.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fortitoken.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fortitoken.cpython-311.pyc new file mode 100644 index 00000000..4527bd9c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fortitoken.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fsso.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fsso.cpython-311.pyc new file mode 100644 index 00000000..ddb23ce2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fsso.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fsso_polling.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fsso_polling.cpython-311.pyc new file mode 100644 index 00000000..a5b283e6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_fsso_polling.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_group.cpython-311.pyc new file mode 100644 index 00000000..331d79b2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_krb_keytab.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_krb_keytab.cpython-311.pyc new file mode 100644 index 00000000..9393763f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_krb_keytab.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_ldap.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_ldap.cpython-311.pyc new file mode 100644 index 00000000..95763b60 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_ldap.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_local.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_local.cpython-311.pyc new file mode 100644 index 00000000..f663bf02 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_local.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_nac_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_nac_policy.cpython-311.pyc new file mode 100644 index 00000000..a2b4a376 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_nac_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_password_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_password_policy.cpython-311.pyc new file mode 100644 index 00000000..e839190a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_password_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_peer.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_peer.cpython-311.pyc new file mode 100644 index 00000000..0ac65656 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_peer.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_peergrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_peergrp.cpython-311.pyc new file mode 100644 index 00000000..016bbdce Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_peergrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_pop3.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_pop3.cpython-311.pyc new file mode 100644 index 00000000..f14e9ba4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_pop3.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_quarantine.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_quarantine.cpython-311.pyc new file mode 100644 index 00000000..045e747d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_quarantine.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_radius.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_radius.cpython-311.pyc new file mode 100644 index 00000000..952c3af8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_radius.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_saml.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_saml.cpython-311.pyc new file mode 100644 index 00000000..dffc50ae Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_saml.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_security_exempt_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_security_exempt_list.cpython-311.pyc new file mode 100644 index 00000000..2ff0c389 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_security_exempt_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_setting.cpython-311.pyc new file mode 100644 index 00000000..8475ceca Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_tacacsplus.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_tacacsplus.cpython-311.pyc new file mode 100644 index 00000000..282c63d7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_user_tacacsplus.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_profile.cpython-311.pyc new file mode 100644 index 00000000..ef2334c2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_youtube_channel_filter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_youtube_channel_filter.cpython-311.pyc new file mode 100644 index 00000000..679e0a53 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_youtube_channel_filter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_youtube_key.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_youtube_key.cpython-311.pyc new file mode 100644 index 00000000..766703a7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_videofilter_youtube_key.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_voip_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_voip_profile.cpython-311.pyc new file mode 100644 index 00000000..4730d9a7 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_voip_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_ca.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_ca.cpython-311.pyc new file mode 100644 index 00000000..08382835 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_ca.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_crl.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_crl.cpython-311.pyc new file mode 100644 index 00000000..4314abef Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_crl.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_local.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_local.cpython-311.pyc new file mode 100644 index 00000000..e99a5a82 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_local.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_ocsp_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_ocsp_server.cpython-311.pyc new file mode 100644 index 00000000..7a1c99fa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_ocsp_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_remote.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_remote.cpython-311.pyc new file mode 100644 index 00000000..52657a17 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_remote.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_setting.cpython-311.pyc new file mode 100644 index 00000000..fe6336c8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_certificate_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ike_gateway.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ike_gateway.cpython-311.pyc new file mode 100644 index 00000000..4f6ba628 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ike_gateway.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_concentrator.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_concentrator.cpython-311.pyc new file mode 100644 index 00000000..2bcd29f2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_concentrator.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_forticlient.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_forticlient.cpython-311.pyc new file mode 100644 index 00000000..49b9b5be Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_forticlient.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_manualkey.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_manualkey.cpython-311.pyc new file mode 100644 index 00000000..33c8bc7c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_manualkey.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_manualkey_interface.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_manualkey_interface.cpython-311.pyc new file mode 100644 index 00000000..c3766f59 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_manualkey_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase1.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase1.cpython-311.pyc new file mode 100644 index 00000000..999f5bb9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase1.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase1_interface.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase1_interface.cpython-311.pyc new file mode 100644 index 00000000..d5324c6d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase1_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase2.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase2.cpython-311.pyc new file mode 100644 index 00000000..09c31095 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase2.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase2_interface.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase2_interface.cpython-311.pyc new file mode 100644 index 00000000..cd8558e4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ipsec_phase2_interface.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_l2tp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_l2tp.cpython-311.pyc new file mode 100644 index 00000000..df485fda Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_l2tp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ocvpn.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ocvpn.cpython-311.pyc new file mode 100644 index 00000000..833f4f0a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ocvpn.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_pptp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_pptp.cpython-311.pyc new file mode 100644 index 00000000..57bc7843 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_pptp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_client.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_client.cpython-311.pyc new file mode 100644 index 00000000..4675dc3c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_client.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_settings.cpython-311.pyc new file mode 100644 index 00000000..7274b643 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_host_check_software.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_host_check_software.cpython-311.pyc new file mode 100644 index 00000000..ab27ec8b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_host_check_software.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_portal.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_portal.cpython-311.pyc new file mode 100644 index 00000000..09919e6e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_portal.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_realm.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_realm.cpython-311.pyc new file mode 100644 index 00000000..8e0a25e8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_realm.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_user_bookmark.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_user_bookmark.cpython-311.pyc new file mode 100644 index 00000000..2c722a2c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_user_bookmark.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_user_group_bookmark.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_user_group_bookmark.cpython-311.pyc new file mode 100644 index 00000000..547fd821 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_vpn_ssl_web_user_group_bookmark.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_main_class.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_main_class.cpython-311.pyc new file mode 100644 index 00000000..11527005 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_main_class.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_profile.cpython-311.pyc new file mode 100644 index 00000000..c715df52 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_signature.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_signature.cpython-311.pyc new file mode 100644 index 00000000..905eede1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_signature.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_sub_class.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_sub_class.cpython-311.pyc new file mode 100644 index 00000000..a2078920 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_waf_sub_class.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_auth_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_auth_group.cpython-311.pyc new file mode 100644 index 00000000..5369114f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_auth_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_cache_service.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_cache_service.cpython-311.pyc new file mode 100644 index 00000000..2733ca1a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_cache_service.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_content_delivery_network_rule.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_content_delivery_network_rule.cpython-311.pyc new file mode 100644 index 00000000..29131a35 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_content_delivery_network_rule.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_peer.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_peer.cpython-311.pyc new file mode 100644 index 00000000..57367059 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_peer.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_profile.cpython-311.pyc new file mode 100644 index 00000000..7ac1d8ad Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_remote_storage.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_remote_storage.cpython-311.pyc new file mode 100644 index 00000000..bd54952c Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_remote_storage.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_settings.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_settings.cpython-311.pyc new file mode 100644 index 00000000..16d2c407 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_settings.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_webcache.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_webcache.cpython-311.pyc new file mode 100644 index 00000000..8b28976b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wanopt_webcache.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_debug_url.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_debug_url.cpython-311.pyc new file mode 100644 index 00000000..a715090e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_debug_url.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_explicit.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_explicit.cpython-311.pyc new file mode 100644 index 00000000..43796ab1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_explicit.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_forward_server.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_forward_server.cpython-311.pyc new file mode 100644 index 00000000..9d865f17 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_forward_server.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_forward_server_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_forward_server_group.cpython-311.pyc new file mode 100644 index 00000000..57f87ca1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_forward_server_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_global.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_global.cpython-311.pyc new file mode 100644 index 00000000..006bdad9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_profile.cpython-311.pyc new file mode 100644 index 00000000..d0328046 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_url_match.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_url_match.cpython-311.pyc new file mode 100644 index 00000000..4c0bec1a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_url_match.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_wisp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_wisp.cpython-311.pyc new file mode 100644 index 00000000..9609f847 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_web_proxy_wisp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_content.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_content.cpython-311.pyc new file mode 100644 index 00000000..45136c2b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_content.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_content_header.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_content_header.cpython-311.pyc new file mode 100644 index 00000000..2d14f29f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_content_header.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_fortiguard.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_fortiguard.cpython-311.pyc new file mode 100644 index 00000000..f5f01ba1 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_fortiguard.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ftgd_local_cat.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ftgd_local_cat.cpython-311.pyc new file mode 100644 index 00000000..da5d9bed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ftgd_local_cat.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ftgd_local_rating.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ftgd_local_rating.cpython-311.pyc new file mode 100644 index 00000000..6f874b13 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ftgd_local_rating.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_cache_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_cache_setting.cpython-311.pyc new file mode 100644 index 00000000..6c3f458e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_cache_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_setting.cpython-311.pyc new file mode 100644 index 00000000..6f200c15 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_setting6.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_setting6.cpython-311.pyc new file mode 100644 index 00000000..3b4c4a52 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_ips_urlfilter_setting6.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_override.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_override.cpython-311.pyc new file mode 100644 index 00000000..350a46c6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_override.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_profile.cpython-311.pyc new file mode 100644 index 00000000..04d0cfaa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_search_engine.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_search_engine.cpython-311.pyc new file mode 100644 index 00000000..7a1f737f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_search_engine.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_status.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_status.cpython-311.pyc new file mode 100644 index 00000000..f0c06511 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_status.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_urlfilter.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_urlfilter.cpython-311.pyc new file mode 100644 index 00000000..888db5a8 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_webfilter_urlfilter.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_access_control_list.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_access_control_list.cpython-311.pyc new file mode 100644 index 00000000..d8387f5d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_access_control_list.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_address.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_address.cpython-311.pyc new file mode 100644 index 00000000..d91f7cec Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_address.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_addrgrp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_addrgrp.cpython-311.pyc new file mode 100644 index 00000000..5b4d3c68 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_addrgrp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ap_status.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ap_status.cpython-311.pyc new file mode 100644 index 00000000..9fe823ef Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ap_status.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_apcfg_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_apcfg_profile.cpython-311.pyc new file mode 100644 index 00000000..a985b38e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_apcfg_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_arrp_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_arrp_profile.cpython-311.pyc new file mode 100644 index 00000000..3c0b69f4 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_arrp_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ble_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ble_profile.cpython-311.pyc new file mode 100644 index 00000000..e90fa4fa Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ble_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_bonjour_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_bonjour_profile.cpython-311.pyc new file mode 100644 index 00000000..899db419 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_bonjour_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_client_info.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_client_info.cpython-311.pyc new file mode 100644 index 00000000..f3a82fb9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_client_info.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_global.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_global.cpython-311.pyc new file mode 100644 index 00000000..3dfaf248 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_global.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_3gpp_cellular.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_3gpp_cellular.cpython-311.pyc new file mode 100644 index 00000000..a842ee89 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_3gpp_cellular.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_ip_address_type.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_ip_address_type.cpython-311.pyc new file mode 100644 index 00000000..30110f84 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_ip_address_type.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_nai_realm.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_nai_realm.cpython-311.pyc new file mode 100644 index 00000000..16d0aa6f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_nai_realm.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_network_auth_type.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_network_auth_type.cpython-311.pyc new file mode 100644 index 00000000..7e97807e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_network_auth_type.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_roaming_consortium.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_roaming_consortium.cpython-311.pyc new file mode 100644 index 00000000..3963b980 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_roaming_consortium.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_venue_name.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_venue_name.cpython-311.pyc new file mode 100644 index 00000000..90ab9bcb Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_anqp_venue_name.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_conn_capability.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_conn_capability.cpython-311.pyc new file mode 100644 index 00000000..858b7bec Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_conn_capability.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_operator_name.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_operator_name.cpython-311.pyc new file mode 100644 index 00000000..17f40a70 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_operator_name.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_osu_provider.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_osu_provider.cpython-311.pyc new file mode 100644 index 00000000..63b6dfd5 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_osu_provider.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_wan_metric.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_wan_metric.cpython-311.pyc new file mode 100644 index 00000000..dd2e91ba Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_h2qp_wan_metric.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_hs_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_hs_profile.cpython-311.pyc new file mode 100644 index 00000000..8c4de2e0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_hs_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_icon.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_icon.cpython-311.pyc new file mode 100644 index 00000000..60a98b16 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_icon.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_qos_map.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_qos_map.cpython-311.pyc new file mode 100644 index 00000000..02c98617 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_hotspot20_qos_map.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_inter_controller.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_inter_controller.cpython-311.pyc new file mode 100644 index 00000000..cfb1d0e9 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_inter_controller.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_log.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_log.cpython-311.pyc new file mode 100644 index 00000000..7b7356e3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_log.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_mpsk_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_mpsk_profile.cpython-311.pyc new file mode 100644 index 00000000..2e69b5f0 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_mpsk_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_nac_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_nac_profile.cpython-311.pyc new file mode 100644 index 00000000..0898de89 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_nac_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_qos_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_qos_profile.cpython-311.pyc new file mode 100644 index 00000000..46394339 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_qos_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_region.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_region.cpython-311.pyc new file mode 100644 index 00000000..75ad4585 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_region.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_rf_analysis.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_rf_analysis.cpython-311.pyc new file mode 100644 index 00000000..3c247e4b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_rf_analysis.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_setting.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_setting.cpython-311.pyc new file mode 100644 index 00000000..3bf8595a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_setting.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_snmp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_snmp.cpython-311.pyc new file mode 100644 index 00000000..c649c40f Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_snmp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_spectral_info.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_spectral_info.cpython-311.pyc new file mode 100644 index 00000000..4f1d8175 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_spectral_info.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ssid_policy.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ssid_policy.cpython-311.pyc new file mode 100644 index 00000000..1c7a4368 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_ssid_policy.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_status.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_status.cpython-311.pyc new file mode 100644 index 00000000..51dcab8d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_status.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_timers.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_timers.cpython-311.pyc new file mode 100644 index 00000000..e8a9e5ad Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_timers.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_utm_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_utm_profile.cpython-311.pyc new file mode 100644 index 00000000..730df560 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_utm_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap.cpython-311.pyc new file mode 100644 index 00000000..e2ec0b3b Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap_group.cpython-311.pyc new file mode 100644 index 00000000..dd0c213e Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap_status.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap_status.cpython-311.pyc new file mode 100644 index 00000000..488f2df3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_vap_status.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wag_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wag_profile.cpython-311.pyc new file mode 100644 index 00000000..f1ea6d5a Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wag_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wids_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wids_profile.cpython-311.pyc new file mode 100644 index 00000000..e3fa22e3 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wids_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp.cpython-311.pyc new file mode 100644 index 00000000..219ddb2d Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_group.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_group.cpython-311.pyc new file mode 100644 index 00000000..5e3970ed Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_group.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_profile.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_profile.cpython-311.pyc new file mode 100644 index 00000000..f6286db2 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_profile.cpython-311.pyc differ diff --git a/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_status.cpython-311.pyc b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_status.cpython-311.pyc new file mode 100644 index 00000000..87d8d7d6 Binary files /dev/null and b/collection/fortinet/fortios/plugins/modules/__pycache__/fortios_wireless_controller_wtp_status.cpython-311.pyc differ diff --git a/collection/gluster/gluster/plugins/modules/__pycache__/geo_rep.cpython-311.pyc b/collection/gluster/gluster/plugins/modules/__pycache__/geo_rep.cpython-311.pyc new file mode 100644 index 00000000..832d146d Binary files /dev/null and b/collection/gluster/gluster/plugins/modules/__pycache__/geo_rep.cpython-311.pyc differ diff --git a/collection/gluster/gluster/plugins/modules/__pycache__/gluster_heal_info.cpython-311.pyc b/collection/gluster/gluster/plugins/modules/__pycache__/gluster_heal_info.cpython-311.pyc new file mode 100644 index 00000000..5205c800 Binary files /dev/null and b/collection/gluster/gluster/plugins/modules/__pycache__/gluster_heal_info.cpython-311.pyc differ diff --git a/collection/gluster/gluster/plugins/modules/__pycache__/gluster_peer.cpython-311.pyc b/collection/gluster/gluster/plugins/modules/__pycache__/gluster_peer.cpython-311.pyc new file mode 100644 index 00000000..f4f42aee Binary files /dev/null and b/collection/gluster/gluster/plugins/modules/__pycache__/gluster_peer.cpython-311.pyc differ diff --git a/collection/gluster/gluster/plugins/modules/__pycache__/gluster_volume.cpython-311.pyc b/collection/gluster/gluster/plugins/modules/__pycache__/gluster_volume.cpython-311.pyc new file mode 100644 index 00000000..2d7d55f8 Binary files /dev/null and b/collection/gluster/gluster/plugins/modules/__pycache__/gluster_volume.cpython-311.pyc differ diff --git a/collection/google/cloud/molecule/gcloud/tests/__pycache__/test_default.cpython-311.pyc b/collection/google/cloud/molecule/gcloud/tests/__pycache__/test_default.cpython-311.pyc new file mode 100644 index 00000000..e6a6ae68 Binary files /dev/null and b/collection/google/cloud/molecule/gcloud/tests/__pycache__/test_default.cpython-311.pyc differ diff --git a/collection/google/cloud/molecule/gcsfuse/tests/__pycache__/test_default.cpython-311.pyc b/collection/google/cloud/molecule/gcsfuse/tests/__pycache__/test_default.cpython-311.pyc new file mode 100644 index 00000000..cae9c5bc Binary files /dev/null and b/collection/google/cloud/molecule/gcsfuse/tests/__pycache__/test_default.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/doc_fragments/__pycache__/gcp.cpython-311.pyc b/collection/google/cloud/plugins/doc_fragments/__pycache__/gcp.cpython-311.pyc new file mode 100644 index 00000000..4793172e Binary files /dev/null and b/collection/google/cloud/plugins/doc_fragments/__pycache__/gcp.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/filter/__pycache__/gcp_kms_filters.cpython-311.pyc b/collection/google/cloud/plugins/filter/__pycache__/gcp_kms_filters.cpython-311.pyc new file mode 100644 index 00000000..7aa3918f Binary files /dev/null and b/collection/google/cloud/plugins/filter/__pycache__/gcp_kms_filters.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/inventory/__pycache__/gcp_compute.cpython-311.pyc b/collection/google/cloud/plugins/inventory/__pycache__/gcp_compute.cpython-311.pyc new file mode 100644 index 00000000..3ddfe365 Binary files /dev/null and b/collection/google/cloud/plugins/inventory/__pycache__/gcp_compute.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/module_utils/__pycache__/gcp_utils.cpython-311.pyc b/collection/google/cloud/plugins/module_utils/__pycache__/gcp_utils.cpython-311.pyc new file mode 100644 index 00000000..f97c63c7 Binary files /dev/null and b/collection/google/cloud/plugins/module_utils/__pycache__/gcp_utils.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_appengine_firewall_rule.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_appengine_firewall_rule.cpython-311.pyc new file mode 100644 index 00000000..848b5933 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_appengine_firewall_rule.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_appengine_firewall_rule_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_appengine_firewall_rule_info.cpython-311.pyc new file mode 100644 index 00000000..b2d741b5 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_appengine_firewall_rule_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_dataset.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_dataset.cpython-311.pyc new file mode 100644 index 00000000..80c6eebd Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_dataset.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_dataset_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_dataset_info.cpython-311.pyc new file mode 100644 index 00000000..680a065e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_dataset_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_table.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_table.cpython-311.pyc new file mode 100644 index 00000000..9fb0aaea Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_table.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_table_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_table_info.cpython-311.pyc new file mode 100644 index 00000000..00e044b7 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigquery_table_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_bigtable_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigtable_instance.cpython-311.pyc new file mode 100644 index 00000000..0eedb123 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigtable_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_bigtable_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigtable_instance_info.cpython-311.pyc new file mode 100644 index 00000000..dffaceda Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_bigtable_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudbuild_trigger.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudbuild_trigger.cpython-311.pyc new file mode 100644 index 00000000..8325e5be Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudbuild_trigger.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudbuild_trigger_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudbuild_trigger_info.cpython-311.pyc new file mode 100644 index 00000000..a849455f Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudbuild_trigger_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudfunctions_cloud_function.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudfunctions_cloud_function.cpython-311.pyc new file mode 100644 index 00000000..8ae9efb2 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudfunctions_cloud_function.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudfunctions_cloud_function_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudfunctions_cloud_function_info.cpython-311.pyc new file mode 100644 index 00000000..f7df8090 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudfunctions_cloud_function_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudscheduler_job.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudscheduler_job.cpython-311.pyc new file mode 100644 index 00000000..a06df939 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudscheduler_job.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudscheduler_job_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudscheduler_job_info.cpython-311.pyc new file mode 100644 index 00000000..95c84f45 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudscheduler_job_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudtasks_queue.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudtasks_queue.cpython-311.pyc new file mode 100644 index 00000000..31db6091 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudtasks_queue.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudtasks_queue_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudtasks_queue_info.cpython-311.pyc new file mode 100644 index 00000000..32bc4d73 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_cloudtasks_queue_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_address.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_address.cpython-311.pyc new file mode 100644 index 00000000..eb6cf36e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_address.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_address_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_address_info.cpython-311.pyc new file mode 100644 index 00000000..f4fbb275 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_address_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_autoscaler.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_autoscaler.cpython-311.pyc new file mode 100644 index 00000000..a46925a9 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_autoscaler.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_autoscaler_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_autoscaler_info.cpython-311.pyc new file mode 100644 index 00000000..7a043c6a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_autoscaler_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_bucket.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_bucket.cpython-311.pyc new file mode 100644 index 00000000..b5bb89e6 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_bucket.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_bucket_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_bucket_info.cpython-311.pyc new file mode 100644 index 00000000..27f7735a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_bucket_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_service.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_service.cpython-311.pyc new file mode 100644 index 00000000..db212a66 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_service.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_service_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_service_info.cpython-311.pyc new file mode 100644 index 00000000..004d2b23 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_backend_service_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_disk.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_disk.cpython-311.pyc new file mode 100644 index 00000000..191cea6e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_disk.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_disk_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_disk_info.cpython-311.pyc new file mode 100644 index 00000000..6f3d5580 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_disk_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_external_vpn_gateway.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_external_vpn_gateway.cpython-311.pyc new file mode 100644 index 00000000..251d6fe9 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_external_vpn_gateway.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_external_vpn_gateway_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_external_vpn_gateway_info.cpython-311.pyc new file mode 100644 index 00000000..db350c25 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_external_vpn_gateway_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_firewall.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_firewall.cpython-311.pyc new file mode 100644 index 00000000..e51ec1c2 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_firewall.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_firewall_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_firewall_info.cpython-311.pyc new file mode 100644 index 00000000..dbe2904b Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_firewall_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_forwarding_rule.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_forwarding_rule.cpython-311.pyc new file mode 100644 index 00000000..2d49d69b Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_forwarding_rule.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_forwarding_rule_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_forwarding_rule_info.cpython-311.pyc new file mode 100644 index 00000000..635d107a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_forwarding_rule_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_address.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_address.cpython-311.pyc new file mode 100644 index 00000000..53bdbfd4 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_address.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_address_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_address_info.cpython-311.pyc new file mode 100644 index 00000000..f184f20d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_address_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_forwarding_rule.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_forwarding_rule.cpython-311.pyc new file mode 100644 index 00000000..8870fd93 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_forwarding_rule.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_forwarding_rule_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_forwarding_rule_info.cpython-311.pyc new file mode 100644 index 00000000..8525df7f Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_global_forwarding_rule_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_health_check.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_health_check.cpython-311.pyc new file mode 100644 index 00000000..84defe16 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_health_check.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_health_check_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_health_check_info.cpython-311.pyc new file mode 100644 index 00000000..6cf80608 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_health_check_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_http_health_check.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_http_health_check.cpython-311.pyc new file mode 100644 index 00000000..51334641 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_http_health_check.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_http_health_check_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_http_health_check_info.cpython-311.pyc new file mode 100644 index 00000000..8e6702f4 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_http_health_check_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_https_health_check.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_https_health_check.cpython-311.pyc new file mode 100644 index 00000000..40e41721 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_https_health_check.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_https_health_check_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_https_health_check_info.cpython-311.pyc new file mode 100644 index 00000000..a23b9740 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_https_health_check_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_image.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_image.cpython-311.pyc new file mode 100644 index 00000000..f8924364 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_image.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_image_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_image_info.cpython-311.pyc new file mode 100644 index 00000000..8e669d3e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_image_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance.cpython-311.pyc new file mode 100644 index 00000000..caed1532 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group.cpython-311.pyc new file mode 100644 index 00000000..eec7f54d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_info.cpython-311.pyc new file mode 100644 index 00000000..75fabd95 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_manager.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_manager.cpython-311.pyc new file mode 100644 index 00000000..6d37f2da Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_manager.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_manager_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_manager_info.cpython-311.pyc new file mode 100644 index 00000000..c6d7713a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_group_manager_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_info.cpython-311.pyc new file mode 100644 index 00000000..153a1dbf Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_template.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_template.cpython-311.pyc new file mode 100644 index 00000000..af15eed9 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_template.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_template_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_template_info.cpython-311.pyc new file mode 100644 index 00000000..fa68ede2 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_instance_template_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_interconnect_attachment.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_interconnect_attachment.cpython-311.pyc new file mode 100644 index 00000000..05e0e9de Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_interconnect_attachment.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_interconnect_attachment_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_interconnect_attachment_info.cpython-311.pyc new file mode 100644 index 00000000..9939f85d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_interconnect_attachment_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network.cpython-311.pyc new file mode 100644 index 00000000..39099cb5 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_endpoint_group.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_endpoint_group.cpython-311.pyc new file mode 100644 index 00000000..307061ad Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_endpoint_group.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_endpoint_group_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_endpoint_group_info.cpython-311.pyc new file mode 100644 index 00000000..4a15e484 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_endpoint_group_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_info.cpython-311.pyc new file mode 100644 index 00000000..62d89dcc Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_network_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_group.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_group.cpython-311.pyc new file mode 100644 index 00000000..c9535ddc Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_group.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_group_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_group_info.cpython-311.pyc new file mode 100644 index 00000000..512262de Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_group_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_template.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_template.cpython-311.pyc new file mode 100644 index 00000000..1f857d49 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_template.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_template_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_template_info.cpython-311.pyc new file mode 100644 index 00000000..59fed46b Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_node_template_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_autoscaler.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_autoscaler.cpython-311.pyc new file mode 100644 index 00000000..bbdef9bf Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_autoscaler.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_autoscaler_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_autoscaler_info.cpython-311.pyc new file mode 100644 index 00000000..e4f2f67c Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_autoscaler_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_backend_service.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_backend_service.cpython-311.pyc new file mode 100644 index 00000000..37c5516d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_backend_service.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_backend_service_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_backend_service_info.cpython-311.pyc new file mode 100644 index 00000000..821c3553 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_backend_service_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_disk.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_disk.cpython-311.pyc new file mode 100644 index 00000000..04c5a32a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_disk.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_disk_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_disk_info.cpython-311.pyc new file mode 100644 index 00000000..4229c6fa Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_disk_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_health_check.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_health_check.cpython-311.pyc new file mode 100644 index 00000000..b5af3594 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_health_check.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_health_check_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_health_check_info.cpython-311.pyc new file mode 100644 index 00000000..44c247a2 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_health_check_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_instance_group_manager.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_instance_group_manager.cpython-311.pyc new file mode 100644 index 00000000..4d92948d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_instance_group_manager.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_instance_group_manager_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_instance_group_manager_info.cpython-311.pyc new file mode 100644 index 00000000..92243c3e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_instance_group_manager_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_http_proxy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_http_proxy.cpython-311.pyc new file mode 100644 index 00000000..f2483d2e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_http_proxy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_http_proxy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_http_proxy_info.cpython-311.pyc new file mode 100644 index 00000000..41952837 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_http_proxy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_https_proxy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_https_proxy.cpython-311.pyc new file mode 100644 index 00000000..81babae4 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_https_proxy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_https_proxy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_https_proxy_info.cpython-311.pyc new file mode 100644 index 00000000..7b42ee84 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_target_https_proxy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_url_map.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_url_map.cpython-311.pyc new file mode 100644 index 00000000..3f6e124e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_url_map.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_url_map_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_url_map_info.cpython-311.pyc new file mode 100644 index 00000000..f8de18e8 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_region_url_map_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_reservation.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_reservation.cpython-311.pyc new file mode 100644 index 00000000..5086779d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_reservation.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_reservation_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_reservation_info.cpython-311.pyc new file mode 100644 index 00000000..c4fd81ee Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_reservation_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_resource_policy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_resource_policy.cpython-311.pyc new file mode 100644 index 00000000..57f0f469 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_resource_policy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_resource_policy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_resource_policy_info.cpython-311.pyc new file mode 100644 index 00000000..ed320f60 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_resource_policy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_route.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_route.cpython-311.pyc new file mode 100644 index 00000000..6e83a2bb Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_route.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_route_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_route_info.cpython-311.pyc new file mode 100644 index 00000000..7e72ffce Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_route_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_router.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_router.cpython-311.pyc new file mode 100644 index 00000000..eb0f35a0 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_router.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_router_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_router_info.cpython-311.pyc new file mode 100644 index 00000000..3bee9960 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_router_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_snapshot.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_snapshot.cpython-311.pyc new file mode 100644 index 00000000..0f5ea287 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_snapshot.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_snapshot_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_snapshot_info.cpython-311.pyc new file mode 100644 index 00000000..a683a167 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_snapshot_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_certificate.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_certificate.cpython-311.pyc new file mode 100644 index 00000000..40f86d2e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_certificate.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_certificate_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_certificate_info.cpython-311.pyc new file mode 100644 index 00000000..297e0eb0 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_certificate_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_policy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_policy.cpython-311.pyc new file mode 100644 index 00000000..5d4a7805 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_policy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_policy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_policy_info.cpython-311.pyc new file mode 100644 index 00000000..b894ea93 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_ssl_policy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_subnetwork.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_subnetwork.cpython-311.pyc new file mode 100644 index 00000000..564c068f Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_subnetwork.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_subnetwork_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_subnetwork_info.cpython-311.pyc new file mode 100644 index 00000000..035c2a24 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_subnetwork_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_http_proxy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_http_proxy.cpython-311.pyc new file mode 100644 index 00000000..e2b00977 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_http_proxy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_http_proxy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_http_proxy_info.cpython-311.pyc new file mode 100644 index 00000000..4fed631b Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_http_proxy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_https_proxy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_https_proxy.cpython-311.pyc new file mode 100644 index 00000000..23525e77 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_https_proxy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_https_proxy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_https_proxy_info.cpython-311.pyc new file mode 100644 index 00000000..4df364f1 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_https_proxy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_instance.cpython-311.pyc new file mode 100644 index 00000000..77851367 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_instance_info.cpython-311.pyc new file mode 100644 index 00000000..6f19da12 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_pool.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_pool.cpython-311.pyc new file mode 100644 index 00000000..93d35462 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_pool.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_pool_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_pool_info.cpython-311.pyc new file mode 100644 index 00000000..aa5a619c Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_pool_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_ssl_proxy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_ssl_proxy.cpython-311.pyc new file mode 100644 index 00000000..636e06ee Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_ssl_proxy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_ssl_proxy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_ssl_proxy_info.cpython-311.pyc new file mode 100644 index 00000000..1d202450 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_ssl_proxy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_tcp_proxy.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_tcp_proxy.cpython-311.pyc new file mode 100644 index 00000000..37c1adbb Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_tcp_proxy.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_tcp_proxy_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_tcp_proxy_info.cpython-311.pyc new file mode 100644 index 00000000..39efcc89 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_tcp_proxy_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_vpn_gateway.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_vpn_gateway.cpython-311.pyc new file mode 100644 index 00000000..ae95cfc4 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_vpn_gateway.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_vpn_gateway_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_vpn_gateway_info.cpython-311.pyc new file mode 100644 index 00000000..588af66f Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_target_vpn_gateway_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_url_map.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_url_map.cpython-311.pyc new file mode 100644 index 00000000..47ffb2cc Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_url_map.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_url_map_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_url_map_info.cpython-311.pyc new file mode 100644 index 00000000..c6e30064 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_url_map_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_vpn_tunnel.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_vpn_tunnel.cpython-311.pyc new file mode 100644 index 00000000..0307396c Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_vpn_tunnel.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_vpn_tunnel_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_vpn_tunnel_info.cpython-311.pyc new file mode 100644 index 00000000..0ee9f243 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_compute_vpn_tunnel_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_container_cluster.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_cluster.cpython-311.pyc new file mode 100644 index 00000000..981d6858 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_cluster.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_container_cluster_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_cluster_info.cpython-311.pyc new file mode 100644 index 00000000..c1dec3ff Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_cluster_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_container_node_pool.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_node_pool.cpython-311.pyc new file mode 100644 index 00000000..7d3c7f24 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_node_pool.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_container_node_pool_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_node_pool_info.cpython-311.pyc new file mode 100644 index 00000000..b27ec99e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_container_node_pool_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_managed_zone.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_managed_zone.cpython-311.pyc new file mode 100644 index 00000000..9f9b5f01 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_managed_zone.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_managed_zone_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_managed_zone_info.cpython-311.pyc new file mode 100644 index 00000000..a447bb26 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_managed_zone_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_resource_record_set.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_resource_record_set.cpython-311.pyc new file mode 100644 index 00000000..a28d88ee Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_resource_record_set.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_resource_record_set_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_resource_record_set_info.cpython-311.pyc new file mode 100644 index 00000000..12882bf6 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_dns_resource_record_set_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_filestore_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_filestore_instance.cpython-311.pyc new file mode 100644 index 00000000..3dda990f Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_filestore_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_filestore_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_filestore_instance_info.cpython-311.pyc new file mode 100644 index 00000000..16f24b58 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_filestore_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_role.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_role.cpython-311.pyc new file mode 100644 index 00000000..1e4840f3 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_role.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_role_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_role_info.cpython-311.pyc new file mode 100644 index 00000000..7dcec329 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_role_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account.cpython-311.pyc new file mode 100644 index 00000000..2292adad Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account_info.cpython-311.pyc new file mode 100644 index 00000000..5f056d9e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account_key.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account_key.cpython-311.pyc new file mode 100644 index 00000000..d1f647ca Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_iam_service_account_key.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_crypto_key.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_crypto_key.cpython-311.pyc new file mode 100644 index 00000000..3ed657eb Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_crypto_key.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_crypto_key_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_crypto_key_info.cpython-311.pyc new file mode 100644 index 00000000..af4dab62 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_crypto_key_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_key_ring.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_key_ring.cpython-311.pyc new file mode 100644 index 00000000..c128732c Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_key_ring.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_key_ring_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_key_ring_info.cpython-311.pyc new file mode 100644 index 00000000..96e48b13 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_kms_key_ring_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_logging_metric.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_logging_metric.cpython-311.pyc new file mode 100644 index 00000000..f48789ca Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_logging_metric.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_logging_metric_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_logging_metric_info.cpython-311.pyc new file mode 100644 index 00000000..d2f7b068 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_logging_metric_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_model.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_model.cpython-311.pyc new file mode 100644 index 00000000..22f9c690 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_model.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_model_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_model_info.cpython-311.pyc new file mode 100644 index 00000000..46de31c7 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_model_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_version.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_version.cpython-311.pyc new file mode 100644 index 00000000..9d6499f2 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_version.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_version_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_version_info.cpython-311.pyc new file mode 100644 index 00000000..f10c3320 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_mlengine_version_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_subscription.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_subscription.cpython-311.pyc new file mode 100644 index 00000000..70ff9d99 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_subscription.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_subscription_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_subscription_info.cpython-311.pyc new file mode 100644 index 00000000..3f0f4c1d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_subscription_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_topic.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_topic.cpython-311.pyc new file mode 100644 index 00000000..3980d2d8 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_topic.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_topic_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_topic_info.cpython-311.pyc new file mode 100644 index 00000000..e57cd0aa Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_pubsub_topic_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_redis_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_redis_instance.cpython-311.pyc new file mode 100644 index 00000000..fcb4e0d6 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_redis_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_redis_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_redis_instance_info.cpython-311.pyc new file mode 100644 index 00000000..de5fa56d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_redis_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_resourcemanager_project.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_resourcemanager_project.cpython-311.pyc new file mode 100644 index 00000000..123724b4 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_resourcemanager_project.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_resourcemanager_project_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_resourcemanager_project_info.cpython-311.pyc new file mode 100644 index 00000000..df2c3c05 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_resourcemanager_project_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_config.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_config.cpython-311.pyc new file mode 100644 index 00000000..41f6fc98 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_config.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_config_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_config_info.cpython-311.pyc new file mode 100644 index 00000000..d309e65e Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_config_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_variable.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_variable.cpython-311.pyc new file mode 100644 index 00000000..9c8a27bb Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_variable.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_variable_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_variable_info.cpython-311.pyc new file mode 100644 index 00000000..8ba6d76d Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_runtimeconfig_variable_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_serviceusage_service.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_serviceusage_service.cpython-311.pyc new file mode 100644 index 00000000..f0a36cc2 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_serviceusage_service.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_serviceusage_service_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_serviceusage_service_info.cpython-311.pyc new file mode 100644 index 00000000..4eceed78 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_serviceusage_service_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sourcerepo_repository.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sourcerepo_repository.cpython-311.pyc new file mode 100644 index 00000000..5a5ce691 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sourcerepo_repository.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sourcerepo_repository_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sourcerepo_repository_info.cpython-311.pyc new file mode 100644 index 00000000..dcb2a567 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sourcerepo_repository_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_database.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_database.cpython-311.pyc new file mode 100644 index 00000000..09c373fb Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_database.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_database_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_database_info.cpython-311.pyc new file mode 100644 index 00000000..9ced0acd Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_database_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_instance.cpython-311.pyc new file mode 100644 index 00000000..6c9cf50a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_instance_info.cpython-311.pyc new file mode 100644 index 00000000..c4c1eaec Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_spanner_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_database.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_database.cpython-311.pyc new file mode 100644 index 00000000..f5712ea0 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_database.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_database_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_database_info.cpython-311.pyc new file mode 100644 index 00000000..6516aed8 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_database_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_instance.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_instance.cpython-311.pyc new file mode 100644 index 00000000..7b107a86 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_instance.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_instance_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_instance_info.cpython-311.pyc new file mode 100644 index 00000000..4dd22bf5 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_instance_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_ssl_cert.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_ssl_cert.cpython-311.pyc new file mode 100644 index 00000000..58fed87c Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_ssl_cert.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_user.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_user.cpython-311.pyc new file mode 100644 index 00000000..9e24cad6 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_user.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_user_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_user_info.cpython-311.pyc new file mode 100644 index 00000000..ff0a7e2f Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_sql_user_info.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_bucket.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_bucket.cpython-311.pyc new file mode 100644 index 00000000..08d35c26 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_bucket.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_bucket_access_control.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_bucket_access_control.cpython-311.pyc new file mode 100644 index 00000000..d92d9068 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_bucket_access_control.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_default_object_acl.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_default_object_acl.cpython-311.pyc new file mode 100644 index 00000000..75db5f4a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_default_object_acl.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_object.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_object.cpython-311.pyc new file mode 100644 index 00000000..efa34f2a Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_storage_object.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_tpu_node.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_tpu_node.cpython-311.pyc new file mode 100644 index 00000000..d05b72d1 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_tpu_node.cpython-311.pyc differ diff --git a/collection/google/cloud/plugins/modules/__pycache__/gcp_tpu_node_info.cpython-311.pyc b/collection/google/cloud/plugins/modules/__pycache__/gcp_tpu_node_info.cpython-311.pyc new file mode 100644 index 00000000..23ce4004 Binary files /dev/null and b/collection/google/cloud/plugins/modules/__pycache__/gcp_tpu_node_info.cpython-311.pyc differ diff --git a/collection/google/cloud/roles/stackdriver_logging/molecule/default/tests/__pycache__/test_default.cpython-311.pyc b/collection/google/cloud/roles/stackdriver_logging/molecule/default/tests/__pycache__/test_default.cpython-311.pyc new file mode 100644 index 00000000..a1458e49 Binary files /dev/null and b/collection/google/cloud/roles/stackdriver_logging/molecule/default/tests/__pycache__/test_default.cpython-311.pyc differ diff --git a/collection/google/cloud/roles/stackdriver_monitoring/molecule/default/tests/__pycache__/test_default.cpython-311.pyc b/collection/google/cloud/roles/stackdriver_monitoring/molecule/default/tests/__pycache__/test_default.cpython-311.pyc new file mode 100644 index 00000000..c19d1bab Binary files /dev/null and b/collection/google/cloud/roles/stackdriver_monitoring/molecule/default/tests/__pycache__/test_default.cpython-311.pyc differ diff --git a/collection/google/cloud/tests/unit/plugins/__pycache__/test_gcp_utils.cpython-311.pyc b/collection/google/cloud/tests/unit/plugins/__pycache__/test_gcp_utils.cpython-311.pyc new file mode 100644 index 00000000..00c10c75 Binary files /dev/null and b/collection/google/cloud/tests/unit/plugins/__pycache__/test_gcp_utils.cpython-311.pyc differ diff --git a/collection/infoblox/nios_modules/plugins/.DS_Store b/collection/infoblox/nios_modules/plugins/.DS_Store new file mode 100644 index 00000000..a3e4274c Binary files /dev/null and b/collection/infoblox/nios_modules/plugins/.DS_Store differ diff --git a/collection/inspur/sm/__pycache__/__init__.cpython-311.pyc b/collection/inspur/sm/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..e35e14a9 Binary files /dev/null and b/collection/inspur/sm/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/.idea/.gitignore b/collection/inspur/sm/plugins/.idea/.gitignore new file mode 100644 index 00000000..e7e9d11d --- /dev/null +++ b/collection/inspur/sm/plugins/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml diff --git a/collection/inspur/sm/plugins/.idea/inspectionProfiles/profiles_settings.xml b/collection/inspur/sm/plugins/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/collection/inspur/sm/plugins/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/collection/inspur/sm/plugins/.idea/modules.xml b/collection/inspur/sm/plugins/.idea/modules.xml new file mode 100644 index 00000000..9aabe3f9 --- /dev/null +++ b/collection/inspur/sm/plugins/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/collection/inspur/sm/plugins/.idea/plugins.iml b/collection/inspur/sm/plugins/.idea/plugins.iml new file mode 100644 index 00000000..d0876a78 --- /dev/null +++ b/collection/inspur/sm/plugins/.idea/plugins.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/collection/inspur/sm/plugins/.idea/vcs.xml b/collection/inspur/sm/plugins/.idea/vcs.xml new file mode 100644 index 00000000..6c0b8635 --- /dev/null +++ b/collection/inspur/sm/plugins/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/collection/inspur/sm/plugins/doc_fragments/__pycache__/ism.cpython-311.pyc b/collection/inspur/sm/plugins/doc_fragments/__pycache__/ism.cpython-311.pyc new file mode 100644 index 00000000..b66ce45b Binary files /dev/null and b/collection/inspur/sm/plugins/doc_fragments/__pycache__/ism.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/inspur/sm/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1f07a231 Binary files /dev/null and b/collection/inspur/sm/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/module_utils/__pycache__/ism.cpython-311.pyc b/collection/inspur/sm/plugins/module_utils/__pycache__/ism.cpython-311.pyc new file mode 100644 index 00000000..71e49657 Binary files /dev/null and b/collection/inspur/sm/plugins/module_utils/__pycache__/ism.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..7d794390 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ad_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ad_group.cpython-311.pyc new file mode 100644 index 00000000..5b9503fa Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ad_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ad_group_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ad_group_info.cpython-311.pyc new file mode 100644 index 00000000..e3cdd854 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ad_group_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ad_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ad_info.cpython-311.pyc new file mode 100644 index 00000000..e34a8099 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ad_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/adapter_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/adapter_info.cpython-311.pyc new file mode 100644 index 00000000..fd06ebbc Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/adapter_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/add_ad_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/add_ad_group.cpython-311.pyc new file mode 100644 index 00000000..d09a1a34 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/add_ad_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/add_ldap_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/add_ldap_group.cpython-311.pyc new file mode 100644 index 00000000..4fd52d23 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/add_ldap_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/add_ldisk.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/add_ldisk.cpython-311.pyc new file mode 100644 index 00000000..4d701de3 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/add_ldisk.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/add_user.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/add_user.cpython-311.pyc new file mode 100644 index 00000000..03d8612d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/add_user.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/add_user_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/add_user_group.cpython-311.pyc new file mode 100644 index 00000000..7f90d838 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/add_user_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/alert_policy_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/alert_policy_info.cpython-311.pyc new file mode 100644 index 00000000..eac8bf8a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/alert_policy_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/audit_log_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/audit_log_info.cpython-311.pyc new file mode 100644 index 00000000..e08854ae Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/audit_log_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/auto_capture_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/auto_capture_info.cpython-311.pyc new file mode 100644 index 00000000..ae7e5875 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/auto_capture_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/backplane_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/backplane_info.cpython-311.pyc new file mode 100644 index 00000000..2d4b492a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/backplane_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/backup.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/backup.cpython-311.pyc new file mode 100644 index 00000000..8d253aff Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/backup.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/bios_export.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/bios_export.cpython-311.pyc new file mode 100644 index 00000000..00f8ce41 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/bios_export.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/bios_import.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/bios_import.cpython-311.pyc new file mode 100644 index 00000000..616d9edd Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/bios_import.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/bios_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/bios_info.cpython-311.pyc new file mode 100644 index 00000000..ab0f1477 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/bios_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/bmc_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/bmc_info.cpython-311.pyc new file mode 100644 index 00000000..8cb54cfd Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/bmc_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/boot_image_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/boot_image_info.cpython-311.pyc new file mode 100644 index 00000000..3311c28e Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/boot_image_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/boot_option_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/boot_option_info.cpython-311.pyc new file mode 100644 index 00000000..731ee26d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/boot_option_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/clear_audit_log.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/clear_audit_log.cpython-311.pyc new file mode 100644 index 00000000..1e9c9f09 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/clear_audit_log.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/clear_event_log.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/clear_event_log.cpython-311.pyc new file mode 100644 index 00000000..197fdb2e Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/clear_event_log.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/clear_system_log.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/clear_system_log.cpython-311.pyc new file mode 100644 index 00000000..26804bb7 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/clear_system_log.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/collect_blackbox.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/collect_blackbox.cpython-311.pyc new file mode 100644 index 00000000..32c77620 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/collect_blackbox.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/collect_log.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/collect_log.cpython-311.pyc new file mode 100644 index 00000000..ffe23f69 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/collect_log.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/connect_media_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/connect_media_info.cpython-311.pyc new file mode 100644 index 00000000..30be3aa4 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/connect_media_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/cpu_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/cpu_info.cpython-311.pyc new file mode 100644 index 00000000..a2155937 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/cpu_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/del_ad_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/del_ad_group.cpython-311.pyc new file mode 100644 index 00000000..980974e4 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/del_ad_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/del_ldap_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/del_ldap_group.cpython-311.pyc new file mode 100644 index 00000000..37ca0da0 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/del_ldap_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/del_session.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/del_session.cpython-311.pyc new file mode 100644 index 00000000..80d84937 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/del_session.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/del_user.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/del_user.cpython-311.pyc new file mode 100644 index 00000000..4bc261de Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/del_user.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/del_user_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/del_user_group.cpython-311.pyc new file mode 100644 index 00000000..88244771 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/del_user_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/dns_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/dns_info.cpython-311.pyc new file mode 100644 index 00000000..56659e21 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/dns_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/download_auto_screenshot.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/download_auto_screenshot.cpython-311.pyc new file mode 100644 index 00000000..7c0e81d4 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/download_auto_screenshot.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/download_manual_screenshot.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/download_manual_screenshot.cpython-311.pyc new file mode 100644 index 00000000..b75a419a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/download_manual_screenshot.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ad.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ad.cpython-311.pyc new file mode 100644 index 00000000..6e446840 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ad.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ad_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ad_group.cpython-311.pyc new file mode 100644 index 00000000..1d4bf712 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ad_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_alert_policy.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_alert_policy.cpython-311.pyc new file mode 100644 index 00000000..ceb25801 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_alert_policy.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_auto_capture.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_auto_capture.cpython-311.pyc new file mode 100644 index 00000000..9e80f28a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_auto_capture.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_bios.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_bios.cpython-311.pyc new file mode 100644 index 00000000..fc4f5b3e Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_bios.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_boot_image.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_boot_image.cpython-311.pyc new file mode 100644 index 00000000..e4d56859 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_boot_image.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_boot_option.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_boot_option.cpython-311.pyc new file mode 100644 index 00000000..3eb773c7 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_boot_option.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_connect_media.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_connect_media.cpython-311.pyc new file mode 100644 index 00000000..6468734f Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_connect_media.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_dns.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_dns.cpython-311.pyc new file mode 100644 index 00000000..c8998127 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_dns.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_event_log_policy.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_event_log_policy.cpython-311.pyc new file mode 100644 index 00000000..67c17e11 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_event_log_policy.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_fan.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_fan.cpython-311.pyc new file mode 100644 index 00000000..c968f0b2 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_fan.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_fru.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_fru.cpython-311.pyc new file mode 100644 index 00000000..5b251bc0 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_fru.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ipv4.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ipv4.cpython-311.pyc new file mode 100644 index 00000000..c81466ec Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ipv4.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ipv6.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ipv6.cpython-311.pyc new file mode 100644 index 00000000..7fbc38d4 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ipv6.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_kvm.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_kvm.cpython-311.pyc new file mode 100644 index 00000000..5bb252d7 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_kvm.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ldap.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ldap.cpython-311.pyc new file mode 100644 index 00000000..8f6db4d3 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ldap.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ldap_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ldap_group.cpython-311.pyc new file mode 100644 index 00000000..db96fd5d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ldap_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ldisk.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ldisk.cpython-311.pyc new file mode 100644 index 00000000..be9a7089 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ldisk.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_log_setting.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_log_setting.cpython-311.pyc new file mode 100644 index 00000000..f13c802a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_log_setting.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_manual_capture.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_manual_capture.cpython-311.pyc new file mode 100644 index 00000000..9b2e9cfd Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_manual_capture.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_media_instance.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_media_instance.cpython-311.pyc new file mode 100644 index 00000000..ae348ad2 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_media_instance.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ncsi.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ncsi.cpython-311.pyc new file mode 100644 index 00000000..c16cf814 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ncsi.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_network.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_network.cpython-311.pyc new file mode 100644 index 00000000..3357b365 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_network.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_network_bond.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_network_bond.cpython-311.pyc new file mode 100644 index 00000000..500a4a54 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_network_bond.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_network_link.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_network_link.cpython-311.pyc new file mode 100644 index 00000000..5734add0 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_network_link.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_ntp.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_ntp.cpython-311.pyc new file mode 100644 index 00000000..d9535476 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_ntp.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_pass_user.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_pass_user.cpython-311.pyc new file mode 100644 index 00000000..329d31c8 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_pass_user.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_pdisk.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_pdisk.cpython-311.pyc new file mode 100644 index 00000000..3465a8f8 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_pdisk.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_power_budget.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_power_budget.cpython-311.pyc new file mode 100644 index 00000000..2bac6fd2 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_power_budget.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_power_restore.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_power_restore.cpython-311.pyc new file mode 100644 index 00000000..256d91db Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_power_restore.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_power_status.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_power_status.cpython-311.pyc new file mode 100644 index 00000000..13327a98 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_power_status.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_preserve_config.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_preserve_config.cpython-311.pyc new file mode 100644 index 00000000..f48f173d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_preserve_config.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_priv_user.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_priv_user.cpython-311.pyc new file mode 100644 index 00000000..ac2a212b Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_priv_user.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_psu_config.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_psu_config.cpython-311.pyc new file mode 100644 index 00000000..54bab61f Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_psu_config.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_psu_peak.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_psu_peak.cpython-311.pyc new file mode 100644 index 00000000..aec5dc73 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_psu_peak.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_restore_factory_default.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_restore_factory_default.cpython-311.pyc new file mode 100644 index 00000000..55e8536a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_restore_factory_default.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_service.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_service.cpython-311.pyc new file mode 100644 index 00000000..d1fef6d0 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_service.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp.cpython-311.pyc new file mode 100644 index 00000000..7448f7a3 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp_com.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp_com.cpython-311.pyc new file mode 100644 index 00000000..15fbcdf2 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp_com.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp_dest.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp_dest.cpython-311.pyc new file mode 100644 index 00000000..ad0f01e6 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_smtp_dest.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_snmp.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_snmp.cpython-311.pyc new file mode 100644 index 00000000..50734589 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_snmp.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_snmp_trap.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_snmp_trap.cpython-311.pyc new file mode 100644 index 00000000..9d7a7867 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_snmp_trap.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_threshold.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_threshold.cpython-311.pyc new file mode 100644 index 00000000..31fa777f Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_threshold.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_uid.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_uid.cpython-311.pyc new file mode 100644 index 00000000..44507c97 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_uid.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_user_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_user_group.cpython-311.pyc new file mode 100644 index 00000000..97e54322 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_user_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_virtual_media.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_virtual_media.cpython-311.pyc new file mode 100644 index 00000000..eee216f7 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_virtual_media.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/edit_vlan.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/edit_vlan.cpython-311.pyc new file mode 100644 index 00000000..41e691d0 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/edit_vlan.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/event_log_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/event_log_info.cpython-311.pyc new file mode 100644 index 00000000..c64ca2d9 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/event_log_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/event_log_policy_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/event_log_policy_info.cpython-311.pyc new file mode 100644 index 00000000..88fbedf6 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/event_log_policy_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/fan_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/fan_info.cpython-311.pyc new file mode 100644 index 00000000..a7cfde19 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/fan_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/fru_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/fru_info.cpython-311.pyc new file mode 100644 index 00000000..665fe404 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/fru_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/fw_version_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/fw_version_info.cpython-311.pyc new file mode 100644 index 00000000..e47b905c Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/fw_version_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/gpu_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/gpu_info.cpython-311.pyc new file mode 100644 index 00000000..c41cf46a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/gpu_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/hard_disk_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/hard_disk_info.cpython-311.pyc new file mode 100644 index 00000000..9afbf132 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/hard_disk_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/kvm_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/kvm_info.cpython-311.pyc new file mode 100644 index 00000000..2af2ec61 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/kvm_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ldap_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ldap_group.cpython-311.pyc new file mode 100644 index 00000000..cc49ad7d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ldap_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ldap_group_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ldap_group_info.cpython-311.pyc new file mode 100644 index 00000000..db712def Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ldap_group_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ldap_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ldap_info.cpython-311.pyc new file mode 100644 index 00000000..3b86b54d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ldap_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ldisk_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ldisk_info.cpython-311.pyc new file mode 100644 index 00000000..65365305 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ldisk_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/log_setting_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/log_setting_info.cpython-311.pyc new file mode 100644 index 00000000..54b82a01 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/log_setting_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/media_instance_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/media_instance_info.cpython-311.pyc new file mode 100644 index 00000000..8f1cdab0 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/media_instance_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/mem_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/mem_info.cpython-311.pyc new file mode 100644 index 00000000..4304d7ac Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/mem_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ncsi_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ncsi_info.cpython-311.pyc new file mode 100644 index 00000000..e8794321 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ncsi_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/network_bond_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/network_bond_info.cpython-311.pyc new file mode 100644 index 00000000..0a62ed80 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/network_bond_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/network_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/network_info.cpython-311.pyc new file mode 100644 index 00000000..fbd1f551 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/network_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/network_link_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/network_link_info.cpython-311.pyc new file mode 100644 index 00000000..a6439c0a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/network_link_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/ntp_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/ntp_info.cpython-311.pyc new file mode 100644 index 00000000..57463e5d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/ntp_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/pcie_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/pcie_info.cpython-311.pyc new file mode 100644 index 00000000..922d446e Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/pcie_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/pdisk_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/pdisk_info.cpython-311.pyc new file mode 100644 index 00000000..dab2d986 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/pdisk_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/power_budget_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/power_budget_info.cpython-311.pyc new file mode 100644 index 00000000..44ccefad Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/power_budget_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/power_consumption_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/power_consumption_info.cpython-311.pyc new file mode 100644 index 00000000..73519b97 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/power_consumption_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/power_restore_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/power_restore_info.cpython-311.pyc new file mode 100644 index 00000000..3a95cfb4 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/power_restore_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/power_status_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/power_status_info.cpython-311.pyc new file mode 100644 index 00000000..5d635330 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/power_status_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/preserve_config_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/preserve_config_info.cpython-311.pyc new file mode 100644 index 00000000..e89ca566 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/preserve_config_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/psu_config_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/psu_config_info.cpython-311.pyc new file mode 100644 index 00000000..ba180202 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/psu_config_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/psu_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/psu_info.cpython-311.pyc new file mode 100644 index 00000000..fae1282f Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/psu_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/psu_peak_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/psu_peak_info.cpython-311.pyc new file mode 100644 index 00000000..b23cad47 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/psu_peak_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/raid_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/raid_info.cpython-311.pyc new file mode 100644 index 00000000..e8421260 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/raid_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/reset_bmc.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/reset_bmc.cpython-311.pyc new file mode 100644 index 00000000..14f42ea5 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/reset_bmc.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/reset_kvm.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/reset_kvm.cpython-311.pyc new file mode 100644 index 00000000..fcbd9d5a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/reset_kvm.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/restore.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/restore.cpython-311.pyc new file mode 100644 index 00000000..17d3927f Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/restore.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/self_test_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/self_test_info.cpython-311.pyc new file mode 100644 index 00000000..a7c53ef7 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/self_test_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/sensor_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/sensor_info.cpython-311.pyc new file mode 100644 index 00000000..bd7128f1 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/sensor_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/server_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/server_info.cpython-311.pyc new file mode 100644 index 00000000..a4412f19 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/server_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/service_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/service_info.cpython-311.pyc new file mode 100644 index 00000000..429d5d39 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/service_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/session_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/session_info.cpython-311.pyc new file mode 100644 index 00000000..3a07bb25 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/session_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/smtp_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/smtp_info.cpython-311.pyc new file mode 100644 index 00000000..faa46bcf Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/smtp_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/snmp_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/snmp_info.cpython-311.pyc new file mode 100644 index 00000000..1ba62f65 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/snmp_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/snmp_trap_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/snmp_trap_info.cpython-311.pyc new file mode 100644 index 00000000..df5da2a6 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/snmp_trap_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/system_log_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/system_log_info.cpython-311.pyc new file mode 100644 index 00000000..7c748017 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/system_log_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/temp_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/temp_info.cpython-311.pyc new file mode 100644 index 00000000..88fa2e7d Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/temp_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/threshold_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/threshold_info.cpython-311.pyc new file mode 100644 index 00000000..1178c1db Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/threshold_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/uid_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/uid_info.cpython-311.pyc new file mode 100644 index 00000000..8abde2fa Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/uid_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/update_cpld.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/update_cpld.cpython-311.pyc new file mode 100644 index 00000000..0c63297a Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/update_cpld.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/update_fw.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/update_fw.cpython-311.pyc new file mode 100644 index 00000000..6325bba1 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/update_fw.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/user.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/user.cpython-311.pyc new file mode 100644 index 00000000..b82a6415 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/user.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/user_group.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/user_group.cpython-311.pyc new file mode 100644 index 00000000..a872d0fe Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/user_group.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/user_group_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/user_group_info.cpython-311.pyc new file mode 100644 index 00000000..e28460a3 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/user_group_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/user_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/user_info.cpython-311.pyc new file mode 100644 index 00000000..38f52646 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/user_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/virtual_media_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/virtual_media_info.cpython-311.pyc new file mode 100644 index 00000000..d3277ede Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/virtual_media_info.cpython-311.pyc differ diff --git a/collection/inspur/sm/plugins/modules/__pycache__/volt_info.cpython-311.pyc b/collection/inspur/sm/plugins/modules/__pycache__/volt_info.cpython-311.pyc new file mode 100644 index 00000000..ce792dd9 Binary files /dev/null and b/collection/inspur/sm/plugins/modules/__pycache__/volt_info.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/action/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/action/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..733a6df4 Binary files /dev/null and b/collection/mellanox/onyx/plugins/action/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/action/__pycache__/onyx_config.cpython-311.pyc b/collection/mellanox/onyx/plugins/action/__pycache__/onyx_config.cpython-311.pyc new file mode 100644 index 00000000..8da8f1be Binary files /dev/null and b/collection/mellanox/onyx/plugins/action/__pycache__/onyx_config.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/cliconf/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/cliconf/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c472b4b5 Binary files /dev/null and b/collection/mellanox/onyx/plugins/cliconf/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/cliconf/__pycache__/onyx.cpython-311.pyc b/collection/mellanox/onyx/plugins/cliconf/__pycache__/onyx.cpython-311.pyc new file mode 100644 index 00000000..2fdbd050 Binary files /dev/null and b/collection/mellanox/onyx/plugins/cliconf/__pycache__/onyx.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..81e61aa7 Binary files /dev/null and b/collection/mellanox/onyx/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/doc_fragments/__pycache__/onyx.cpython-311.pyc b/collection/mellanox/onyx/plugins/doc_fragments/__pycache__/onyx.cpython-311.pyc new file mode 100644 index 00000000..e9c263a9 Binary files /dev/null and b/collection/mellanox/onyx/plugins/doc_fragments/__pycache__/onyx.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..a66a997d Binary files /dev/null and b/collection/mellanox/onyx/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/module_utils/network/onyx/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/module_utils/network/onyx/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..ca5b03ce Binary files /dev/null and b/collection/mellanox/onyx/plugins/module_utils/network/onyx/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/module_utils/network/onyx/__pycache__/onyx.cpython-311.pyc b/collection/mellanox/onyx/plugins/module_utils/network/onyx/__pycache__/onyx.cpython-311.pyc new file mode 100644 index 00000000..1051195e Binary files /dev/null and b/collection/mellanox/onyx/plugins/module_utils/network/onyx/__pycache__/onyx.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..86ac2894 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_aaa.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_aaa.cpython-311.pyc new file mode 100644 index 00000000..76cd7abb Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_aaa.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_bfd.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_bfd.cpython-311.pyc new file mode 100644 index 00000000..dc2ca652 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_bfd.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_bgp.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_bgp.cpython-311.pyc new file mode 100644 index 00000000..adca6343 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_bgp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_buffer_pool.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_buffer_pool.cpython-311.pyc new file mode 100644 index 00000000..1c293c26 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_buffer_pool.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_command.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_command.cpython-311.pyc new file mode 100644 index 00000000..cc5cd62f Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_command.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_config.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_config.cpython-311.pyc new file mode 100644 index 00000000..eb6f3d8e Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_config.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_facts.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_facts.cpython-311.pyc new file mode 100644 index 00000000..dd239992 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_facts.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp.cpython-311.pyc new file mode 100644 index 00000000..86cbe09c Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp_interface.cpython-311.pyc new file mode 100644 index 00000000..83d4961c Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp_vlan.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp_vlan.cpython-311.pyc new file mode 100644 index 00000000..9a0f5eed Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_igmp_vlan.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_interface.cpython-311.pyc new file mode 100644 index 00000000..1dca5ddb Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_l2_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_l2_interface.cpython-311.pyc new file mode 100644 index 00000000..9340e734 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_l2_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_l3_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_l3_interface.cpython-311.pyc new file mode 100644 index 00000000..f7faf100 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_l3_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_linkagg.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_linkagg.cpython-311.pyc new file mode 100644 index 00000000..ae4d2500 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_linkagg.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_lldp.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_lldp.cpython-311.pyc new file mode 100644 index 00000000..7c12a1eb Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_lldp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_lldp_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_lldp_interface.cpython-311.pyc new file mode 100644 index 00000000..1eb26672 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_lldp_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_magp.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_magp.cpython-311.pyc new file mode 100644 index 00000000..8878ce21 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_magp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_mlag_ipl.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_mlag_ipl.cpython-311.pyc new file mode 100644 index 00000000..d1c4852d Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_mlag_ipl.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_mlag_vip.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_mlag_vip.cpython-311.pyc new file mode 100644 index 00000000..86d45608 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_mlag_vip.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ntp.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ntp.cpython-311.pyc new file mode 100644 index 00000000..ae44b737 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ntp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ntp_servers_peers.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ntp_servers_peers.cpython-311.pyc new file mode 100644 index 00000000..b0d34ab0 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ntp_servers_peers.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ospf.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ospf.cpython-311.pyc new file mode 100644 index 00000000..fee1f770 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ospf.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_pfc_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_pfc_interface.cpython-311.pyc new file mode 100644 index 00000000..9176b5bb Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_pfc_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_protocol.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_protocol.cpython-311.pyc new file mode 100644 index 00000000..c1d0072a Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_protocol.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ptp_global.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ptp_global.cpython-311.pyc new file mode 100644 index 00000000..17be193a Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ptp_global.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ptp_interface.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ptp_interface.cpython-311.pyc new file mode 100644 index 00000000..68ecf356 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_ptp_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_qos.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_qos.cpython-311.pyc new file mode 100644 index 00000000..399b19af Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_qos.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp.cpython-311.pyc new file mode 100644 index 00000000..78475148 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp_hosts.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp_hosts.cpython-311.pyc new file mode 100644 index 00000000..8faa3110 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp_hosts.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp_users.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp_users.cpython-311.pyc new file mode 100644 index 00000000..c948a429 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_snmp_users.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_syslog_files.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_syslog_files.cpython-311.pyc new file mode 100644 index 00000000..f7287fbe Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_syslog_files.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_syslog_remote.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_syslog_remote.cpython-311.pyc new file mode 100644 index 00000000..d623511f Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_syslog_remote.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_traffic_class.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_traffic_class.cpython-311.pyc new file mode 100644 index 00000000..dca38f70 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_traffic_class.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_username.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_username.cpython-311.pyc new file mode 100644 index 00000000..548f15d8 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_username.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_vlan.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_vlan.cpython-311.pyc new file mode 100644 index 00000000..e7f4c0f2 Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_vlan.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_vxlan.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_vxlan.cpython-311.pyc new file mode 100644 index 00000000..27702c5f Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_vxlan.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_wjh.cpython-311.pyc b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_wjh.cpython-311.pyc new file mode 100644 index 00000000..2cf855ab Binary files /dev/null and b/collection/mellanox/onyx/plugins/modules/__pycache__/onyx_wjh.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/terminal/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/plugins/terminal/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..2b8d4f3e Binary files /dev/null and b/collection/mellanox/onyx/plugins/terminal/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/plugins/terminal/__pycache__/onyx.cpython-311.pyc b/collection/mellanox/onyx/plugins/terminal/__pycache__/onyx.cpython-311.pyc new file mode 100644 index 00000000..4181f777 Binary files /dev/null and b/collection/mellanox/onyx/plugins/terminal/__pycache__/onyx.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/__init__.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..7827b307 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/onyx_module.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/onyx_module.cpython-311.pyc new file mode 100644 index 00000000..3d38c6cf Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/onyx_module.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_aaa.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_aaa.cpython-311.pyc new file mode 100644 index 00000000..01ef3240 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_aaa.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_bfd.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_bfd.cpython-311.pyc new file mode 100644 index 00000000..e2f0b895 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_bfd.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_bgp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_bgp.cpython-311.pyc new file mode 100644 index 00000000..45f345d4 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_bgp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_buffer_pool.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_buffer_pool.cpython-311.pyc new file mode 100644 index 00000000..3601297d Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_buffer_pool.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_command.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_command.cpython-311.pyc new file mode 100644 index 00000000..d653641d Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_command.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_config.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_config.cpython-311.pyc new file mode 100644 index 00000000..798a87a9 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_config.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_facts.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_facts.cpython-311.pyc new file mode 100644 index 00000000..0969e931 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_facts.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp.cpython-311.pyc new file mode 100644 index 00000000..4e74db1e Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp_interface.cpython-311.pyc new file mode 100644 index 00000000..b6fc6b71 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp_vlan.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp_vlan.cpython-311.pyc new file mode 100644 index 00000000..6313541e Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_igmp_vlan.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_interface.cpython-311.pyc new file mode 100644 index 00000000..d9164a29 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_l2_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_l2_interface.cpython-311.pyc new file mode 100644 index 00000000..1713b6be Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_l2_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_l3_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_l3_interface.cpython-311.pyc new file mode 100644 index 00000000..cdf0c90a Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_l3_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_linkagg.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_linkagg.cpython-311.pyc new file mode 100644 index 00000000..ea6e0dd8 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_linkagg.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_lldp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_lldp.cpython-311.pyc new file mode 100644 index 00000000..7539428c Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_lldp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_lldp_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_lldp_interface.cpython-311.pyc new file mode 100644 index 00000000..ce643ad1 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_lldp_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_magp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_magp.cpython-311.pyc new file mode 100644 index 00000000..ab9360f5 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_magp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_mlag_ipl.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_mlag_ipl.cpython-311.pyc new file mode 100644 index 00000000..95dfe995 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_mlag_ipl.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_mlag_vip.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_mlag_vip.cpython-311.pyc new file mode 100644 index 00000000..f89c6957 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_mlag_vip.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ntp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ntp.cpython-311.pyc new file mode 100644 index 00000000..a536531b Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ntp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ntp_servers_peers.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ntp_servers_peers.cpython-311.pyc new file mode 100644 index 00000000..6f51c26e Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ntp_servers_peers.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ospf.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ospf.cpython-311.pyc new file mode 100644 index 00000000..e34880eb Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ospf.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_pfc_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_pfc_interface.cpython-311.pyc new file mode 100644 index 00000000..d165412d Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_pfc_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_protocol.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_protocol.cpython-311.pyc new file mode 100644 index 00000000..fd569412 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_protocol.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_protocols.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_protocols.cpython-311.pyc new file mode 100644 index 00000000..1ebacaee Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_protocols.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp.cpython-311.pyc new file mode 100644 index 00000000..0b87ae34 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp_global.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp_global.cpython-311.pyc new file mode 100644 index 00000000..a91c2836 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp_global.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp_interface.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp_interface.cpython-311.pyc new file mode 100644 index 00000000..8c9e535d Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_ptp_interface.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_qos.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_qos.cpython-311.pyc new file mode 100644 index 00000000..513e93e3 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_qos.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp.cpython-311.pyc new file mode 100644 index 00000000..507de1bb Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp_hosts.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp_hosts.cpython-311.pyc new file mode 100644 index 00000000..49f6773b Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp_hosts.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp_users.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp_users.cpython-311.pyc new file mode 100644 index 00000000..7e32db30 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_snmp_users.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_syslog_files.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_syslog_files.cpython-311.pyc new file mode 100644 index 00000000..4a120e2c Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_syslog_files.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_syslog_remote.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_syslog_remote.cpython-311.pyc new file mode 100644 index 00000000..5989a8fa Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_syslog_remote.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_traffic_class.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_traffic_class.cpython-311.pyc new file mode 100644 index 00000000..1e504e53 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_traffic_class.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_username.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_username.cpython-311.pyc new file mode 100644 index 00000000..964a4c1f Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_username.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_vlan.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_vlan.cpython-311.pyc new file mode 100644 index 00000000..8da93ef2 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_vlan.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_vxlan.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_vxlan.cpython-311.pyc new file mode 100644 index 00000000..4a5d798d Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_vxlan.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_wjh.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_wjh.cpython-311.pyc new file mode 100644 index 00000000..2b07e223 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/test_onyx_wjh.cpython-311.pyc differ diff --git a/collection/mellanox/onyx/tests/unit/modules/__pycache__/utils.cpython-311.pyc b/collection/mellanox/onyx/tests/unit/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..4553f788 Binary files /dev/null and b/collection/mellanox/onyx/tests/unit/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/aws/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..ed14d4a6 Binary files /dev/null and b/collection/netapp/aws/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/module_utils/__pycache__/netapp.cpython-311.pyc b/collection/netapp/aws/plugins/module_utils/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..28e2c425 Binary files /dev/null and b/collection/netapp/aws/plugins/module_utils/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/aws/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..026d0110 Binary files /dev/null and b/collection/netapp/aws/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_active_directory.cpython-311.pyc b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_active_directory.cpython-311.pyc new file mode 100644 index 00000000..674c0c4d Binary files /dev/null and b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_active_directory.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_filesystems.cpython-311.pyc b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_filesystems.cpython-311.pyc new file mode 100644 index 00000000..841e6b7f Binary files /dev/null and b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_filesystems.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_pool.cpython-311.pyc b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_pool.cpython-311.pyc new file mode 100644 index 00000000..454eecbf Binary files /dev/null and b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_pool.cpython-311.pyc differ diff --git a/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_snapshots.cpython-311.pyc b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_snapshots.cpython-311.pyc new file mode 100644 index 00000000..6b123f63 Binary files /dev/null and b/collection/netapp/aws/plugins/modules/__pycache__/aws_netapp_cvs_snapshots.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/aws/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..63cf8c61 Binary files /dev/null and b/collection/netapp/aws/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/aws/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..49c0f39a Binary files /dev/null and b/collection/netapp/aws/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/aws/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..38923706 Binary files /dev/null and b/collection/netapp/aws/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/aws/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..8464cf86 Binary files /dev/null and b/collection/netapp/aws/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc b/collection/netapp/aws/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc new file mode 100644 index 00000000..31b30bb7 Binary files /dev/null and b/collection/netapp/aws/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_active_directory.cpython-311.pyc b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_active_directory.cpython-311.pyc new file mode 100644 index 00000000..3bd3918e Binary files /dev/null and b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_active_directory.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_filesystems.cpython-311.pyc b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_filesystems.cpython-311.pyc new file mode 100644 index 00000000..06f43ea6 Binary files /dev/null and b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_filesystems.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_pool.cpython-311.pyc b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_pool.cpython-311.pyc new file mode 100644 index 00000000..d651a220 Binary files /dev/null and b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_pool.cpython-311.pyc differ diff --git a/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_snapshots.cpython-311.pyc b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_snapshots.cpython-311.pyc new file mode 100644 index 00000000..b235cb3e Binary files /dev/null and b/collection/netapp/aws/tests/unit/plugins/modules/__pycache__/test_aws_netapp_cvs_snapshots.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/doc_fragments/__pycache__/azure.cpython-311.pyc b/collection/netapp/azure/plugins/doc_fragments/__pycache__/azure.cpython-311.pyc new file mode 100644 index 00000000..cffc3280 Binary files /dev/null and b/collection/netapp/azure/plugins/doc_fragments/__pycache__/azure.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/doc_fragments/__pycache__/azure_tags.cpython-311.pyc b/collection/netapp/azure/plugins/doc_fragments/__pycache__/azure_tags.cpython-311.pyc new file mode 100644 index 00000000..2b6bc48d Binary files /dev/null and b/collection/netapp/azure/plugins/doc_fragments/__pycache__/azure_tags.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/azure/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..ff52038f Binary files /dev/null and b/collection/netapp/azure/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/module_utils/__pycache__/azure_rm_netapp_common.cpython-311.pyc b/collection/netapp/azure/plugins/module_utils/__pycache__/azure_rm_netapp_common.cpython-311.pyc new file mode 100644 index 00000000..c744c93e Binary files /dev/null and b/collection/netapp/azure/plugins/module_utils/__pycache__/azure_rm_netapp_common.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/azure/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..7cd6c315 Binary files /dev/null and b/collection/netapp/azure/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_account.cpython-311.pyc b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_account.cpython-311.pyc new file mode 100644 index 00000000..8f8f3784 Binary files /dev/null and b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_account.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_capacity_pool.cpython-311.pyc b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_capacity_pool.cpython-311.pyc new file mode 100644 index 00000000..552c43d8 Binary files /dev/null and b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_capacity_pool.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_snapshot.cpython-311.pyc b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_snapshot.cpython-311.pyc new file mode 100644 index 00000000..ed839d2a Binary files /dev/null and b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_volume.cpython-311.pyc b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_volume.cpython-311.pyc new file mode 100644 index 00000000..936534f0 Binary files /dev/null and b/collection/netapp/azure/plugins/modules/__pycache__/azure_rm_netapp_volume.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/azure/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..360fe4d9 Binary files /dev/null and b/collection/netapp/azure/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/azure/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..c080b5aa Binary files /dev/null and b/collection/netapp/azure/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/azure/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..df42acda Binary files /dev/null and b/collection/netapp/azure/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/azure/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..1bf8b6fd Binary files /dev/null and b/collection/netapp/azure/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc b/collection/netapp/azure/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc new file mode 100644 index 00000000..7c93a96a Binary files /dev/null and b/collection/netapp/azure/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_account.cpython-311.pyc b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_account.cpython-311.pyc new file mode 100644 index 00000000..e9e3504f Binary files /dev/null and b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_account.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_capacity_pool.cpython-311.pyc b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_capacity_pool.cpython-311.pyc new file mode 100644 index 00000000..82ea44aa Binary files /dev/null and b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_capacity_pool.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_snapshot.cpython-311.pyc b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_snapshot.cpython-311.pyc new file mode 100644 index 00000000..9ee6e0cd Binary files /dev/null and b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_volume.cpython-311.pyc b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_volume.cpython-311.pyc new file mode 100644 index 00000000..269a9165 Binary files /dev/null and b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_volume.cpython-311.pyc differ diff --git a/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_volume_import.cpython-311.pyc b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_volume_import.cpython-311.pyc new file mode 100644 index 00000000..b99b9754 Binary files /dev/null and b/collection/netapp/azure/tests/unit/plugins/modules/__pycache__/test_azure_rm_netapp_volume_import.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..45974919 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/module_utils/__pycache__/netapp.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/module_utils/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..3630cfbb Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/module_utils/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..6d8ca7bf Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_aggregate.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_aggregate.cpython-311.pyc new file mode 100644 index 00000000..f0dcfb7b Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_aggregate.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_aws_fsx.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_aws_fsx.cpython-311.pyc new file mode 100644 index 00000000..55e886fb Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_aws_fsx.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cifs_server.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cifs_server.cpython-311.pyc new file mode 100644 index 00000000..5d584d4a Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cifs_server.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_aws.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_aws.cpython-311.pyc new file mode 100644 index 00000000..482f1e58 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_aws.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_azure.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_azure.cpython-311.pyc new file mode 100644 index 00000000..5cfddb41 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_azure.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_gcp.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_gcp.cpython-311.pyc new file mode 100644 index 00000000..10d3c671 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_connector_gcp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_aws.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_aws.cpython-311.pyc new file mode 100644 index 00000000..2adb37f0 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_aws.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_azure.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_azure.cpython-311.pyc new file mode 100644 index 00000000..8afd24a7 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_azure.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_gcp.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_gcp.cpython-311.pyc new file mode 100644 index 00000000..323673c6 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_cvo_gcp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_info.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_info.cpython-311.pyc new file mode 100644 index 00000000..ce406c9a Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_info.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_nss_account.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_nss_account.cpython-311.pyc new file mode 100644 index 00000000..d96e6b12 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_nss_account.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_snapmirror.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_snapmirror.cpython-311.pyc new file mode 100644 index 00000000..fc70ac68 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_snapmirror.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_volume.cpython-311.pyc b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_volume.cpython-311.pyc new file mode 100644 index 00000000..cf38ee92 Binary files /dev/null and b/collection/netapp/cloudmanager/plugins/modules/__pycache__/na_cloudmanager_volume.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..e492b377 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..3fb6f5a7 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..755a7f08 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..f5655412 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc new file mode 100644 index 00000000..eed2f36f Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc new file mode 100644 index 00000000..3c8d83ec Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp_module_open.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp_module_open.cpython-311.pyc new file mode 100644 index 00000000..9f21ae22 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/module_utils/__pycache__/test_netapp_module_open.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_aggregate.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_aggregate.cpython-311.pyc new file mode 100644 index 00000000..923cd98e Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_aggregate.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_aws_fsx.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_aws_fsx.cpython-311.pyc new file mode 100644 index 00000000..3ed25b47 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_aws_fsx.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cifs_server.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cifs_server.cpython-311.pyc new file mode 100644 index 00000000..82b729c8 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cifs_server.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_aws.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_aws.cpython-311.pyc new file mode 100644 index 00000000..0dae19ea Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_aws.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_azure.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_azure.cpython-311.pyc new file mode 100644 index 00000000..3d8f05b5 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_azure.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_gcp.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_gcp.cpython-311.pyc new file mode 100644 index 00000000..849b524d Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_connector_gcp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_aws.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_aws.cpython-311.pyc new file mode 100644 index 00000000..ce0bd5db Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_aws.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_azure.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_azure.cpython-311.pyc new file mode 100644 index 00000000..72623304 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_azure.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_gcp.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_gcp.cpython-311.pyc new file mode 100644 index 00000000..5cf2df32 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_cvo_gcp.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_info.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_info.cpython-311.pyc new file mode 100644 index 00000000..79eff339 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_info.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_nss_account.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_nss_account.cpython-311.pyc new file mode 100644 index 00000000..e5d6189f Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_nss_account.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_snapmirror.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_snapmirror.cpython-311.pyc new file mode 100644 index 00000000..58bd9824 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_snapmirror.cpython-311.pyc differ diff --git a/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_volume.cpython-311.pyc b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_volume.cpython-311.pyc new file mode 100644 index 00000000..5b55fef1 Binary files /dev/null and b/collection/netapp/cloudmanager/tests/unit/plugins/modules/__pycache__/test_na_cloudmanager_volume.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/elementsw/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..fcfaf91f Binary files /dev/null and b/collection/netapp/elementsw/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp.cpython-311.pyc b/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..341ed193 Binary files /dev/null and b/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp_elementsw_module.cpython-311.pyc b/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp_elementsw_module.cpython-311.pyc new file mode 100644 index 00000000..d20bf5f4 Binary files /dev/null and b/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp_elementsw_module.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..4a8a134a Binary files /dev/null and b/collection/netapp/elementsw/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_access_group.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_access_group.cpython-311.pyc new file mode 100644 index 00000000..ea8dff69 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_access_group.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_access_group_volumes.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_access_group_volumes.cpython-311.pyc new file mode 100644 index 00000000..515ccc0e Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_access_group_volumes.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_account.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_account.cpython-311.pyc new file mode 100644 index 00000000..365bd605 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_account.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_admin_users.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_admin_users.cpython-311.pyc new file mode 100644 index 00000000..805ba84f Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_admin_users.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_backup.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_backup.cpython-311.pyc new file mode 100644 index 00000000..42b2739b Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_backup.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_check_connections.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_check_connections.cpython-311.pyc new file mode 100644 index 00000000..0484e9b5 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_check_connections.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster.cpython-311.pyc new file mode 100644 index 00000000..c4735a27 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_config.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_config.cpython-311.pyc new file mode 100644 index 00000000..c6406ea1 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_config.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_pair.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_pair.cpython-311.pyc new file mode 100644 index 00000000..b0f3d42c Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_pair.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_snmp.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_snmp.cpython-311.pyc new file mode 100644 index 00000000..3cb410f6 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_cluster_snmp.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_drive.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_drive.cpython-311.pyc new file mode 100644 index 00000000..9e5e9978 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_drive.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_info.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_info.cpython-311.pyc new file mode 100644 index 00000000..6f464702 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_info.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_initiators.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_initiators.cpython-311.pyc new file mode 100644 index 00000000..28cb031e Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_initiators.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_ldap.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_ldap.cpython-311.pyc new file mode 100644 index 00000000..2b9a8ddf Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_ldap.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_network_interfaces.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_network_interfaces.cpython-311.pyc new file mode 100644 index 00000000..64d7a41b Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_network_interfaces.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_node.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_node.cpython-311.pyc new file mode 100644 index 00000000..d67a3d24 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_node.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_qos_policy.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_qos_policy.cpython-311.pyc new file mode 100644 index 00000000..8b9b1976 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_qos_policy.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot.cpython-311.pyc new file mode 100644 index 00000000..d7e60c2b Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot_restore.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot_restore.cpython-311.pyc new file mode 100644 index 00000000..f7cd0ada Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot_restore.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot_schedule.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot_schedule.cpython-311.pyc new file mode 100644 index 00000000..d12a7be4 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_snapshot_schedule.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_vlan.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_vlan.cpython-311.pyc new file mode 100644 index 00000000..f0ed91bb Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_vlan.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume.cpython-311.pyc new file mode 100644 index 00000000..b9df509a Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume_clone.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume_clone.cpython-311.pyc new file mode 100644 index 00000000..cf258e40 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume_clone.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume_pair.cpython-311.pyc b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume_pair.cpython-311.pyc new file mode 100644 index 00000000..caf74386 Binary files /dev/null and b/collection/netapp/elementsw/plugins/modules/__pycache__/na_elementsw_volume_pair.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..377ef119 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..714120f0 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..e7f8c9f1 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..be0ce7e9 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_access_group.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_access_group.cpython-311.pyc new file mode 100644 index 00000000..7709f7dd Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_access_group.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_access_group_volumes.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_access_group_volumes.cpython-311.pyc new file mode 100644 index 00000000..bea29620 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_access_group_volumes.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_account.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_account.cpython-311.pyc new file mode 100644 index 00000000..f48d5a02 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_account.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster.cpython-311.pyc new file mode 100644 index 00000000..eebbf3bd Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster_config.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster_config.cpython-311.pyc new file mode 100644 index 00000000..7ca93760 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster_config.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster_snmp.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster_snmp.cpython-311.pyc new file mode 100644 index 00000000..ee6d999b Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_cluster_snmp.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_info.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_info.cpython-311.pyc new file mode 100644 index 00000000..2a577f89 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_info.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_initiators.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_initiators.cpython-311.pyc new file mode 100644 index 00000000..4c7e166d Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_initiators.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_network_interfaces.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_network_interfaces.cpython-311.pyc new file mode 100644 index 00000000..787a00b0 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_network_interfaces.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_nodes.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_nodes.cpython-311.pyc new file mode 100644 index 00000000..2632453d Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_nodes.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_qos_policy.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_qos_policy.cpython-311.pyc new file mode 100644 index 00000000..a4de02b2 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_qos_policy.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_template.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_template.cpython-311.pyc new file mode 100644 index 00000000..6f9c9542 Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_template.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_vlan.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_vlan.cpython-311.pyc new file mode 100644 index 00000000..3ceade8c Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_vlan.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_volume.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_volume.cpython-311.pyc new file mode 100644 index 00000000..bcc9a70c Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules/__pycache__/test_na_elementsw_volume.cpython-311.pyc differ diff --git a/collection/netapp/elementsw/tests/unit/plugins/modules_utils/__pycache__/test_netapp_module.cpython-311.pyc b/collection/netapp/elementsw/tests/unit/plugins/modules_utils/__pycache__/test_netapp_module.cpython-311.pyc new file mode 100644 index 00000000..f33a534e Binary files /dev/null and b/collection/netapp/elementsw/tests/unit/plugins/modules_utils/__pycache__/test_netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/ontap/changelogs/.DS_Store b/collection/netapp/ontap/changelogs/.DS_Store new file mode 100644 index 00000000..316ace4f Binary files /dev/null and b/collection/netapp/ontap/changelogs/.DS_Store differ diff --git a/collection/netapp/ontap/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/ontap/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..84066454 Binary files /dev/null and b/collection/netapp/ontap/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..69e1ea25 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp_elementsw_module.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp_elementsw_module.cpython-311.pyc new file mode 100644 index 00000000..fb16a0ae Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp_elementsw_module.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..a336ab44 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_application.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_application.cpython-311.pyc new file mode 100644 index 00000000..c4d7c1b7 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_application.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_flexcache.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_flexcache.cpython-311.pyc new file mode 100644 index 00000000..ea4277c9 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_flexcache.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_generic.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_generic.cpython-311.pyc new file mode 100644 index 00000000..ca09d584 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_generic.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_response_helpers.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_response_helpers.cpython-311.pyc new file mode 100644 index 00000000..9a9dc1e4 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_response_helpers.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_user.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_user.cpython-311.pyc new file mode 100644 index 00000000..20c0c455 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_user.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_volume.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_volume.cpython-311.pyc new file mode 100644 index 00000000..b57bc2c8 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_volume.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_vserver.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_vserver.cpython-311.pyc new file mode 100644 index 00000000..bd4778cb Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/rest_vserver.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/module_utils/__pycache__/zapis_svm.cpython-311.pyc b/collection/netapp/ontap/plugins/module_utils/__pycache__/zapis_svm.cpython-311.pyc new file mode 100644 index 00000000..0a8e06f1 Binary files /dev/null and b/collection/netapp/ontap/plugins/module_utils/__pycache__/zapis_svm.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_active_directory.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_active_directory.cpython-311.pyc new file mode 100644 index 00000000..916c5f47 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_active_directory.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_aggregate.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_aggregate.cpython-311.pyc new file mode 100644 index 00000000..31991728 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_aggregate.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_autosupport.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_autosupport.cpython-311.pyc new file mode 100644 index 00000000..dfddd9f6 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_autosupport.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_autosupport_invoke.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_autosupport_invoke.cpython-311.pyc new file mode 100644 index 00000000..d637cdde Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_autosupport_invoke.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_broadcast_domain.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_broadcast_domain.cpython-311.pyc new file mode 100644 index 00000000..7a8e5da8 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_broadcast_domain.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_broadcast_domain_ports.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_broadcast_domain_ports.cpython-311.pyc new file mode 100644 index 00000000..e38f8b9d Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_broadcast_domain_ports.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cg_snapshot.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cg_snapshot.cpython-311.pyc new file mode 100644 index 00000000..6f6280ff Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cg_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs.cpython-311.pyc new file mode 100644 index 00000000..86464dcc Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_acl.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_acl.cpython-311.pyc new file mode 100644 index 00000000..84fa05e2 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_acl.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_group_member.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_group_member.cpython-311.pyc new file mode 100644 index 00000000..0a626116 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_group_member.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_user_modify.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_user_modify.cpython-311.pyc new file mode 100644 index 00000000..89836178 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_user_modify.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_user_set_password.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_user_set_password.cpython-311.pyc new file mode 100644 index 00000000..3d600154 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_local_user_set_password.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_server.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_server.cpython-311.pyc new file mode 100644 index 00000000..ac8f21b8 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cifs_server.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster.cpython-311.pyc new file mode 100644 index 00000000..eac941f1 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster_ha.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster_ha.cpython-311.pyc new file mode 100644 index 00000000..a8038cf7 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster_ha.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster_peer.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster_peer.cpython-311.pyc new file mode 100644 index 00000000..71dbb640 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_cluster_peer.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_command.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_command.cpython-311.pyc new file mode 100644 index 00000000..324f765c Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_command.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_debug.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_debug.cpython-311.pyc new file mode 100644 index 00000000..423c4579 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_debug.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_disk_options.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_disk_options.cpython-311.pyc new file mode 100644 index 00000000..73859ee9 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_disk_options.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_disks.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_disks.cpython-311.pyc new file mode 100644 index 00000000..c2c9ca94 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_disks.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_dns.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_dns.cpython-311.pyc new file mode 100644 index 00000000..900323b0 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_dns.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_domain_tunnel.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_domain_tunnel.cpython-311.pyc new file mode 100644 index 00000000..22bfc947 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_domain_tunnel.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_efficiency_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_efficiency_policy.cpython-311.pyc new file mode 100644 index 00000000..bca9042c Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_efficiency_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_export_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_export_policy.cpython-311.pyc new file mode 100644 index 00000000..f80ff840 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_export_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_export_policy_rule.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_export_policy_rule.cpython-311.pyc new file mode 100644 index 00000000..3f77eb17 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_export_policy_rule.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fcp.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fcp.cpython-311.pyc new file mode 100644 index 00000000..0d51755a Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fcp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdsd.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdsd.cpython-311.pyc new file mode 100644 index 00000000..55e49efd Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdsd.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdsp.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdsp.cpython-311.pyc new file mode 100644 index 00000000..1da313ce Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdsp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdspt.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdspt.cpython-311.pyc new file mode 100644 index 00000000..9e24a920 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdspt.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdss.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdss.cpython-311.pyc new file mode 100644 index 00000000..f282323e Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fdss.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_file_directory_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_file_directory_policy.cpython-311.pyc new file mode 100644 index 00000000..55ed2bb9 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_file_directory_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_firewall_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_firewall_policy.cpython-311.pyc new file mode 100644 index 00000000..932b9c8a Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_firewall_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_firmware_upgrade.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_firmware_upgrade.cpython-311.pyc new file mode 100644 index 00000000..85fba3e2 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_firmware_upgrade.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_flexcache.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_flexcache.cpython-311.pyc new file mode 100644 index 00000000..b7862e11 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_flexcache.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_event.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_event.cpython-311.pyc new file mode 100644 index 00000000..baec3c82 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_event.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_ext_engine.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_ext_engine.cpython-311.pyc new file mode 100644 index 00000000..7babf549 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_ext_engine.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_policy.cpython-311.pyc new file mode 100644 index 00000000..23e5b12c Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_scope.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_scope.cpython-311.pyc new file mode 100644 index 00000000..6fe26857 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_scope.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_status.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_status.cpython-311.pyc new file mode 100644 index 00000000..a0f59352 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_fpolicy_status.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_igroup.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_igroup.cpython-311.pyc new file mode 100644 index 00000000..a321827e Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_igroup.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_igroup_initiator.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_igroup_initiator.cpython-311.pyc new file mode 100644 index 00000000..4babaff5 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_igroup_initiator.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_info.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_info.cpython-311.pyc new file mode 100644 index 00000000..4b4ad674 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_info.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_interface.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_interface.cpython-311.pyc new file mode 100644 index 00000000..86194187 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_interface.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ipspace.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ipspace.cpython-311.pyc new file mode 100644 index 00000000..a72cf427 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ipspace.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_iscsi.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_iscsi.cpython-311.pyc new file mode 100644 index 00000000..d555a8a2 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_iscsi.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_iscsi_security.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_iscsi_security.cpython-311.pyc new file mode 100644 index 00000000..1ba0fbf5 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_iscsi_security.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_job_schedule.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_job_schedule.cpython-311.pyc new file mode 100644 index 00000000..fe1773cb Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_job_schedule.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_kerberos_realm.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_kerberos_realm.cpython-311.pyc new file mode 100644 index 00000000..9ffd9b82 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_kerberos_realm.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ldap.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ldap.cpython-311.pyc new file mode 100644 index 00000000..a6f354de Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ldap.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ldap_client.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ldap_client.cpython-311.pyc new file mode 100644 index 00000000..082c7cfa Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ldap_client.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_license.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_license.cpython-311.pyc new file mode 100644 index 00000000..540fa5dd Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_license.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_log_forward.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_log_forward.cpython-311.pyc new file mode 100644 index 00000000..4ed58de3 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_log_forward.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_login_messages.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_login_messages.cpython-311.pyc new file mode 100644 index 00000000..296730cb Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_login_messages.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun.cpython-311.pyc new file mode 100644 index 00000000..293b6a0f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_copy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_copy.cpython-311.pyc new file mode 100644 index 00000000..396b1ebe Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_copy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_map.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_map.cpython-311.pyc new file mode 100644 index 00000000..ecd39348 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_map.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_map_reporting_nodes.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_map_reporting_nodes.cpython-311.pyc new file mode 100644 index 00000000..c5b5ac51 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_lun_map_reporting_nodes.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_mcc_mediator.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_mcc_mediator.cpython-311.pyc new file mode 100644 index 00000000..e7b742cb Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_mcc_mediator.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_metrocluster.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_metrocluster.cpython-311.pyc new file mode 100644 index 00000000..fb03332e Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_metrocluster.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_metrocluster_dr_group.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_metrocluster_dr_group.cpython-311.pyc new file mode 100644 index 00000000..55c17f8f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_metrocluster_dr_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_motd.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_motd.cpython-311.pyc new file mode 100644 index 00000000..a0f3c4b8 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_motd.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_name_service_switch.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_name_service_switch.cpython-311.pyc new file mode 100644 index 00000000..d3e290fc Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_name_service_switch.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ndmp.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ndmp.cpython-311.pyc new file mode 100644 index 00000000..1d6ceefc Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ndmp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_ifgrp.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_ifgrp.cpython-311.pyc new file mode 100644 index 00000000..1985d045 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_ifgrp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_port.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_port.cpython-311.pyc new file mode 100644 index 00000000..9d9a8c15 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_port.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_routes.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_routes.cpython-311.pyc new file mode 100644 index 00000000..333af213 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_routes.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_subnet.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_subnet.cpython-311.pyc new file mode 100644 index 00000000..82e25b27 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_subnet.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_vlan.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_vlan.cpython-311.pyc new file mode 100644 index 00000000..257aa70d Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_net_vlan.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nfs.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nfs.cpython-311.pyc new file mode 100644 index 00000000..08daf1ef Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nfs.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_node.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_node.cpython-311.pyc new file mode 100644 index 00000000..4e721a36 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_node.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntfs_dacl.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntfs_dacl.cpython-311.pyc new file mode 100644 index 00000000..14be8db7 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntfs_dacl.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntfs_sd.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntfs_sd.cpython-311.pyc new file mode 100644 index 00000000..10e141bb Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntfs_sd.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntp.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntp.cpython-311.pyc new file mode 100644 index 00000000..c355f8ef Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ntp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme.cpython-311.pyc new file mode 100644 index 00000000..5cd2c6fd Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme_namespace.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme_namespace.cpython-311.pyc new file mode 100644 index 00000000..75299da2 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme_namespace.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme_subsystem.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme_subsystem.cpython-311.pyc new file mode 100644 index 00000000..a0dc37fd Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_nvme_subsystem.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_object_store.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_object_store.cpython-311.pyc new file mode 100644 index 00000000..801b4b7f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_object_store.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_partitions.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_partitions.cpython-311.pyc new file mode 100644 index 00000000..0cf10b3a Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_partitions.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ports.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ports.cpython-311.pyc new file mode 100644 index 00000000..25e767cb Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ports.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_portset.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_portset.cpython-311.pyc new file mode 100644 index 00000000..b717f8e7 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_portset.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_publickey.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_publickey.cpython-311.pyc new file mode 100644 index 00000000..8038fce6 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_publickey.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qos_adaptive_policy_group.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qos_adaptive_policy_group.cpython-311.pyc new file mode 100644 index 00000000..f94b3609 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qos_adaptive_policy_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qos_policy_group.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qos_policy_group.cpython-311.pyc new file mode 100644 index 00000000..b99ca642 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qos_policy_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qtree.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qtree.cpython-311.pyc new file mode 100644 index 00000000..a844b6d9 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_qtree.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_quota_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_quota_policy.cpython-311.pyc new file mode 100644 index 00000000..6ebfefe7 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_quota_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_quotas.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_quotas.cpython-311.pyc new file mode 100644 index 00000000..6d0432a7 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_quotas.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_rest_cli.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_rest_cli.cpython-311.pyc new file mode 100644 index 00000000..a6de3f71 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_rest_cli.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_rest_info.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_rest_info.cpython-311.pyc new file mode 100644 index 00000000..e91e6676 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_rest_info.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_restit.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_restit.cpython-311.pyc new file mode 100644 index 00000000..ce5ae040 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_restit.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_certificates.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_certificates.cpython-311.pyc new file mode 100644 index 00000000..1ec30c58 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_certificates.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_config.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_config.cpython-311.pyc new file mode 100644 index 00000000..476012fb Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_config.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_key_manager.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_key_manager.cpython-311.pyc new file mode 100644 index 00000000..85cb3b31 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_security_key_manager.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_service_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_service_policy.cpython-311.pyc new file mode 100644 index 00000000..ba1519ce Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_service_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_service_processor_network.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_service_processor_network.cpython-311.pyc new file mode 100644 index 00000000..d31e00da Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_service_processor_network.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snaplock_clock.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snaplock_clock.cpython-311.pyc new file mode 100644 index 00000000..98bcdcf0 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snaplock_clock.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapmirror.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapmirror.cpython-311.pyc new file mode 100644 index 00000000..b67c4ad1 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapmirror.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapmirror_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapmirror_policy.cpython-311.pyc new file mode 100644 index 00000000..dffc2f9d Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapmirror_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapshot.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapshot.cpython-311.pyc new file mode 100644 index 00000000..0db91042 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapshot_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapshot_policy.cpython-311.pyc new file mode 100644 index 00000000..6fe3210a Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snapshot_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snmp.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snmp.cpython-311.pyc new file mode 100644 index 00000000..c7d5952c Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snmp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snmp_traphosts.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snmp_traphosts.cpython-311.pyc new file mode 100644 index 00000000..6a40bc78 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_snmp_traphosts.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_software_update.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_software_update.cpython-311.pyc new file mode 100644 index 00000000..f75d4050 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_software_update.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ssh_command.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ssh_command.cpython-311.pyc new file mode 100644 index 00000000..3826985f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ssh_command.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_storage_auto_giveback.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_storage_auto_giveback.cpython-311.pyc new file mode 100644 index 00000000..77384f19 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_storage_auto_giveback.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_storage_failover.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_storage_failover.cpython-311.pyc new file mode 100644 index 00000000..21b1dc1f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_storage_failover.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_svm.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_svm.cpython-311.pyc new file mode 100644 index 00000000..eabe7326 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_svm.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_svm_options.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_svm_options.cpython-311.pyc new file mode 100644 index 00000000..799f5d42 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_svm_options.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ucadapter.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ucadapter.cpython-311.pyc new file mode 100644 index 00000000..68351fbd Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_ucadapter.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_unix_group.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_unix_group.cpython-311.pyc new file mode 100644 index 00000000..f4927903 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_unix_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_unix_user.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_unix_user.cpython-311.pyc new file mode 100644 index 00000000..18a1b349 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_unix_user.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_user.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_user.cpython-311.pyc new file mode 100644 index 00000000..8ee3008f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_user.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_user_role.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_user_role.cpython-311.pyc new file mode 100644 index 00000000..e29ec5c3 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_user_role.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume.cpython-311.pyc new file mode 100644 index 00000000..94211e84 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_autosize.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_autosize.cpython-311.pyc new file mode 100644 index 00000000..2470495f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_autosize.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_clone.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_clone.cpython-311.pyc new file mode 100644 index 00000000..ac8d793e Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_clone.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_efficiency.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_efficiency.cpython-311.pyc new file mode 100644 index 00000000..9da9bf2b Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_efficiency.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_snaplock.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_snaplock.cpython-311.pyc new file mode 100644 index 00000000..4162f514 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_volume_snaplock.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan.cpython-311.pyc new file mode 100644 index 00000000..7ae671ac Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_on_access_policy.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_on_access_policy.cpython-311.pyc new file mode 100644 index 00000000..734e3a23 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_on_access_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_on_demand_task.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_on_demand_task.cpython-311.pyc new file mode 100644 index 00000000..7b1b1e2c Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_on_demand_task.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_scanner_pool.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_scanner_pool.cpython-311.pyc new file mode 100644 index 00000000..9092041d Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vscan_scanner_pool.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vserver_cifs_security.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vserver_cifs_security.cpython-311.pyc new file mode 100644 index 00000000..b6a05454 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vserver_cifs_security.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vserver_peer.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vserver_peer.cpython-311.pyc new file mode 100644 index 00000000..4c94e40d Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_vserver_peer.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_wait_for_condition.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_wait_for_condition.cpython-311.pyc new file mode 100644 index 00000000..91fd492f Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_wait_for_condition.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_wwpn_alias.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_wwpn_alias.cpython-311.pyc new file mode 100644 index 00000000..fa8c20b6 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_wwpn_alias.cpython-311.pyc differ diff --git a/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_zapit.cpython-311.pyc b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_zapit.cpython-311.pyc new file mode 100644 index 00000000..86ba2d33 Binary files /dev/null and b/collection/netapp/ontap/plugins/modules/__pycache__/na_ontap_zapit.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/ontap/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..c6e8a666 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/ontap/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..4f8b0a77 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/ontap/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..48860e14 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..16b83a4e Binary files /dev/null and b/collection/netapp/ontap/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/mock_rest_and_zapi_requests.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/mock_rest_and_zapi_requests.cpython-311.pyc new file mode 100644 index 00000000..49977f62 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/mock_rest_and_zapi_requests.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/rest_factory.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/rest_factory.cpython-311.pyc new file mode 100644 index 00000000..7971c071 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/rest_factory.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/test_mock_rest_and_zapi_requests.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_mock_rest_and_zapi_requests.cpython-311.pyc new file mode 100644 index 00000000..14b76207 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_mock_rest_and_zapi_requests.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/test_mock_rest_and_zapi_requests_no_netapp_lib.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_mock_rest_and_zapi_requests_no_netapp_lib.cpython-311.pyc new file mode 100644 index 00000000..c8fe7086 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_mock_rest_and_zapi_requests_no_netapp_lib.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/test_rest_factory.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_rest_factory.cpython-311.pyc new file mode 100644 index 00000000..97701d91 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_rest_factory.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/test_zapi_factory.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_zapi_factory.cpython-311.pyc new file mode 100644 index 00000000..46cee380 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/test_zapi_factory.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/framework/__pycache__/zapi_factory.cpython-311.pyc b/collection/netapp/ontap/tests/unit/framework/__pycache__/zapi_factory.cpython-311.pyc new file mode 100644 index 00000000..381552cf Binary files /dev/null and b/collection/netapp/ontap/tests/unit/framework/__pycache__/zapi_factory.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/ansible_mocks.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/ansible_mocks.cpython-311.pyc new file mode 100644 index 00000000..18d7a064 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/ansible_mocks.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc new file mode 100644 index 00000000..b47df086 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_invoke_elem.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_invoke_elem.cpython-311.pyc new file mode 100644 index 00000000..2bbfe21c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_invoke_elem.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc new file mode 100644 index 00000000..7e5c8b97 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_rest.cpython-311.pyc new file mode 100644 index 00000000..d720450f Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_send_request.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_send_request.cpython-311.pyc new file mode 100644 index 00000000..915c7df5 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_send_request.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_sf.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_sf.cpython-311.pyc new file mode 100644 index 00000000..01315d81 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_sf.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_zapi.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_zapi.cpython-311.pyc new file mode 100644 index 00000000..78605293 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_netapp_zapi.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_rest_volume.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_rest_volume.cpython-311.pyc new file mode 100644 index 00000000..2528b3a3 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/module_utils/__pycache__/test_rest_volume.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_active_directory.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_active_directory.cpython-311.pyc new file mode 100644 index 00000000..eccd8915 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_active_directory.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_aggregate.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_aggregate.cpython-311.pyc new file mode 100644 index 00000000..b2c5a885 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_aggregate.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_aggregate_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_aggregate_rest.cpython-311.pyc new file mode 100644 index 00000000..8bcb4e5c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_aggregate_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_autosupport.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_autosupport.cpython-311.pyc new file mode 100644 index 00000000..de960022 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_autosupport.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_autosupport_invoke.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_autosupport_invoke.cpython-311.pyc new file mode 100644 index 00000000..11313289 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_autosupport_invoke.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_broadcast_domain.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_broadcast_domain.cpython-311.pyc new file mode 100644 index 00000000..076410e6 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_broadcast_domain.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cg_snapshot.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cg_snapshot.cpython-311.pyc new file mode 100644 index 00000000..7fbf2663 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cg_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs.cpython-311.pyc new file mode 100644 index 00000000..dd062c8f Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_acl.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_acl.cpython-311.pyc new file mode 100644 index 00000000..422bfb49 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_acl.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_group_member.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_group_member.cpython-311.pyc new file mode 100644 index 00000000..ee00c5d0 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_group_member.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_user_modify.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_user_modify.cpython-311.pyc new file mode 100644 index 00000000..d8cb279e Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_user_modify.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_user_set_password.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_user_set_password.cpython-311.pyc new file mode 100644 index 00000000..11779846 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_local_user_set_password.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_server.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_server.cpython-311.pyc new file mode 100644 index 00000000..f6abffda Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cifs_server.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cluster.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cluster.cpython-311.pyc new file mode 100644 index 00000000..fc2699d0 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cluster.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cluster_peer.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cluster_peer.cpython-311.pyc new file mode 100644 index 00000000..8c5c45e6 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_cluster_peer.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_command.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_command.cpython-311.pyc new file mode 100644 index 00000000..0b81a388 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_command.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_debug.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_debug.cpython-311.pyc new file mode 100644 index 00000000..988e1ce8 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_debug.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_disk_options.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_disk_options.cpython-311.pyc new file mode 100644 index 00000000..ffcd24ad Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_disk_options.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_disks.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_disks.cpython-311.pyc new file mode 100644 index 00000000..a30687f2 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_disks.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_dns.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_dns.cpython-311.pyc new file mode 100644 index 00000000..be9ab306 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_dns.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_domain_tunnel.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_domain_tunnel.cpython-311.pyc new file mode 100644 index 00000000..7dd5f98e Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_domain_tunnel.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_efficiency_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_efficiency_policy.cpython-311.pyc new file mode 100644 index 00000000..f13e3901 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_efficiency_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy.cpython-311.pyc new file mode 100644 index 00000000..ccff615b Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy_rule.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy_rule.cpython-311.pyc new file mode 100644 index 00000000..3a315399 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy_rule.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy_rule_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy_rule_rest.cpython-311.pyc new file mode 100644 index 00000000..72b9a912 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_export_policy_rule_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fcp_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fcp_rest.cpython-311.pyc new file mode 100644 index 00000000..78e8c49a Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fcp_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdsd.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdsd.cpython-311.pyc new file mode 100644 index 00000000..c732a019 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdsd.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdsp.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdsp.cpython-311.pyc new file mode 100644 index 00000000..c85e02eb Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdsp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdss.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdss.cpython-311.pyc new file mode 100644 index 00000000..8736bf5b Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fdss.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_file_directory_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_file_directory_policy.cpython-311.pyc new file mode 100644 index 00000000..42b29595 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_file_directory_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_firewall_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_firewall_policy.cpython-311.pyc new file mode 100644 index 00000000..e1075b39 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_firewall_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_firmware_upgrade.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_firmware_upgrade.cpython-311.pyc new file mode 100644 index 00000000..71a79c59 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_firmware_upgrade.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_flexcache.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_flexcache.cpython-311.pyc new file mode 100644 index 00000000..b26f987d Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_flexcache.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_event.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_event.cpython-311.pyc new file mode 100644 index 00000000..be2e4000 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_event.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_ext_engine.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_ext_engine.cpython-311.pyc new file mode 100644 index 00000000..6a026251 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_ext_engine.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_policy.cpython-311.pyc new file mode 100644 index 00000000..82f914cb Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_scope.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_scope.cpython-311.pyc new file mode 100644 index 00000000..6e4a0963 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_scope.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_status.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_status.cpython-311.pyc new file mode 100644 index 00000000..4e450a34 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_fpolicy_status.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_igroup.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_igroup.cpython-311.pyc new file mode 100644 index 00000000..8234ce52 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_igroup.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_igroup_initiator.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_igroup_initiator.cpython-311.pyc new file mode 100644 index 00000000..fdeae099 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_igroup_initiator.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_info.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_info.cpython-311.pyc new file mode 100644 index 00000000..852576d3 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_info.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_interface.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_interface.cpython-311.pyc new file mode 100644 index 00000000..7b339a83 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_interface.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ipspace.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ipspace.cpython-311.pyc new file mode 100644 index 00000000..caf49a24 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ipspace.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_iscsi.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_iscsi.cpython-311.pyc new file mode 100644 index 00000000..8f07eacd Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_iscsi.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_iscsi_security.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_iscsi_security.cpython-311.pyc new file mode 100644 index 00000000..13a74180 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_iscsi_security.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_job_schedule.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_job_schedule.cpython-311.pyc new file mode 100644 index 00000000..f30ab209 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_job_schedule.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_kerberos_realm.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_kerberos_realm.cpython-311.pyc new file mode 100644 index 00000000..091079db Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_kerberos_realm.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ldap_client.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ldap_client.cpython-311.pyc new file mode 100644 index 00000000..9d542381 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ldap_client.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_license.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_license.cpython-311.pyc new file mode 100644 index 00000000..5c522189 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_license.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_log_forward.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_log_forward.cpython-311.pyc new file mode 100644 index 00000000..e7376e9d Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_log_forward.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_login_messages.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_login_messages.cpython-311.pyc new file mode 100644 index 00000000..ff31c458 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_login_messages.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun.cpython-311.pyc new file mode 100644 index 00000000..f972763c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_app_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_app_rest.cpython-311.pyc new file mode 100644 index 00000000..d5a9d515 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_app_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_copy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_copy.cpython-311.pyc new file mode 100644 index 00000000..bc6523fd Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_copy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_map.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_map.cpython-311.pyc new file mode 100644 index 00000000..dabc69d8 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_map.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_map_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_map_rest.cpython-311.pyc new file mode 100644 index 00000000..3935d3dd Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_map_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_rest.cpython-311.pyc new file mode 100644 index 00000000..33e3331a Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_lun_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_mcc_mediator.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_mcc_mediator.cpython-311.pyc new file mode 100644 index 00000000..ffd18385 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_mcc_mediator.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_metrocluster.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_metrocluster.cpython-311.pyc new file mode 100644 index 00000000..8231eb3d Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_metrocluster.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_metrocluster_dr_group.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_metrocluster_dr_group.cpython-311.pyc new file mode 100644 index 00000000..e3aaa7d7 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_metrocluster_dr_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_motd.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_motd.cpython-311.pyc new file mode 100644 index 00000000..d7f70ba1 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_motd.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_name_service_switch.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_name_service_switch.cpython-311.pyc new file mode 100644 index 00000000..9cd6ed40 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_name_service_switch.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ndmp.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ndmp.cpython-311.pyc new file mode 100644 index 00000000..d68ee2ab Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ndmp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_ifgrp.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_ifgrp.cpython-311.pyc new file mode 100644 index 00000000..2dd1e069 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_ifgrp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_port.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_port.cpython-311.pyc new file mode 100644 index 00000000..d056245c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_port.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_routes.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_routes.cpython-311.pyc new file mode 100644 index 00000000..a1cfc37e Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_routes.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_subnet.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_subnet.cpython-311.pyc new file mode 100644 index 00000000..c769bf41 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_subnet.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_vlan.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_vlan.cpython-311.pyc new file mode 100644 index 00000000..f94962dc Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_net_vlan.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nfs.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nfs.cpython-311.pyc new file mode 100644 index 00000000..1cd9c8c4 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nfs.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nfs_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nfs_rest.cpython-311.pyc new file mode 100644 index 00000000..f723ecf9 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nfs_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_node.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_node.cpython-311.pyc new file mode 100644 index 00000000..e0dc7c38 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_node.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntfs_dacl.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntfs_dacl.cpython-311.pyc new file mode 100644 index 00000000..cdc95344 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntfs_dacl.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntfs_sd.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntfs_sd.cpython-311.pyc new file mode 100644 index 00000000..24cfaeeb Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntfs_sd.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntp.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntp.cpython-311.pyc new file mode 100644 index 00000000..ad4ace3c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ntp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme.cpython-311.pyc new file mode 100644 index 00000000..5f2601f6 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme_namespace.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme_namespace.cpython-311.pyc new file mode 100644 index 00000000..36bb2ac4 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme_namespace.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme_subsystem.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme_subsystem.cpython-311.pyc new file mode 100644 index 00000000..96be2a50 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_nvme_subsystem.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_object_store.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_object_store.cpython-311.pyc new file mode 100644 index 00000000..66ec5891 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_object_store.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_partitions.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_partitions.cpython-311.pyc new file mode 100644 index 00000000..32fdc75c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_partitions.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ports.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ports.cpython-311.pyc new file mode 100644 index 00000000..431cd08e Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ports.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_portset.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_portset.cpython-311.pyc new file mode 100644 index 00000000..43b0bdb8 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_portset.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_publickey.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_publickey.cpython-311.pyc new file mode 100644 index 00000000..98478e94 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_publickey.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qos_adaptive_policy_group.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qos_adaptive_policy_group.cpython-311.pyc new file mode 100644 index 00000000..030f1cf1 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qos_adaptive_policy_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qos_policy_group.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qos_policy_group.cpython-311.pyc new file mode 100644 index 00000000..3209c290 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qos_policy_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qtree.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qtree.cpython-311.pyc new file mode 100644 index 00000000..6391da42 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_qtree.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_quota_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_quota_policy.cpython-311.pyc new file mode 100644 index 00000000..fb9b2513 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_quota_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_quotas.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_quotas.cpython-311.pyc new file mode 100644 index 00000000..4115e351 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_quotas.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_rest_cli.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_rest_cli.cpython-311.pyc new file mode 100644 index 00000000..5d87a786 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_rest_cli.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_rest_info.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_rest_info.cpython-311.pyc new file mode 100644 index 00000000..52357590 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_rest_info.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_restit.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_restit.cpython-311.pyc new file mode 100644 index 00000000..44171775 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_restit.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_certificates.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_certificates.cpython-311.pyc new file mode 100644 index 00000000..6f3ed11f Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_certificates.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_config.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_config.cpython-311.pyc new file mode 100644 index 00000000..0a2a8b56 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_config.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_key_manager.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_key_manager.cpython-311.pyc new file mode 100644 index 00000000..913ddf30 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_security_key_manager.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_service_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_service_policy.cpython-311.pyc new file mode 100644 index 00000000..c54f1743 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_service_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_service_processor_network.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_service_processor_network.cpython-311.pyc new file mode 100644 index 00000000..eed34ea1 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_service_processor_network.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snaplock_clock.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snaplock_clock.cpython-311.pyc new file mode 100644 index 00000000..8a31ac82 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snaplock_clock.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapmirror.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapmirror.cpython-311.pyc new file mode 100644 index 00000000..01877e9a Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapmirror.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapmirror_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapmirror_policy.cpython-311.pyc new file mode 100644 index 00000000..e4968445 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapmirror_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot.cpython-311.pyc new file mode 100644 index 00000000..f1634348 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot_policy.cpython-311.pyc new file mode 100644 index 00000000..7e5546ce Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot_policy_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot_policy_rest.cpython-311.pyc new file mode 100644 index 00000000..5cb11fa7 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snapshot_policy_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snmp.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snmp.cpython-311.pyc new file mode 100644 index 00000000..c4554f8f Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snmp.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snmp_traphosts.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snmp_traphosts.cpython-311.pyc new file mode 100644 index 00000000..4a8ee6a5 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_snmp_traphosts.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_software_update.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_software_update.cpython-311.pyc new file mode 100644 index 00000000..f45dfb3b Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_software_update.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_storage_auto_giveback.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_storage_auto_giveback.cpython-311.pyc new file mode 100644 index 00000000..1def6cd2 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_storage_auto_giveback.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_storage_failover.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_storage_failover.cpython-311.pyc new file mode 100644 index 00000000..a0742219 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_storage_failover.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_svm.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_svm.cpython-311.pyc new file mode 100644 index 00000000..1c24383d Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_svm.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_template.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_template.cpython-311.pyc new file mode 100644 index 00000000..d8741319 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_template.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ucadapter.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ucadapter.cpython-311.pyc new file mode 100644 index 00000000..fc88c4e9 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_ucadapter.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_unix_group.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_unix_group.cpython-311.pyc new file mode 100644 index 00000000..f14ffec6 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_unix_group.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_unix_user.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_unix_user.cpython-311.pyc new file mode 100644 index 00000000..dc43621a Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_unix_user.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user.cpython-311.pyc new file mode 100644 index 00000000..145201d3 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user_dicts.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user_dicts.cpython-311.pyc new file mode 100644 index 00000000..8b55a90e Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user_dicts.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user_role.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user_role.cpython-311.pyc new file mode 100644 index 00000000..4c1b309a Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_user_role.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume.cpython-311.pyc new file mode 100644 index 00000000..fe25f8f3 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_autosize.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_autosize.cpython-311.pyc new file mode 100644 index 00000000..42b62916 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_autosize.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_clone.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_clone.cpython-311.pyc new file mode 100644 index 00000000..0ba61390 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_clone.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_clone_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_clone_rest.cpython-311.pyc new file mode 100644 index 00000000..7ae4bcb8 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_clone_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_efficiency.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_efficiency.cpython-311.pyc new file mode 100644 index 00000000..6beebd97 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_efficiency.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_rest.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_rest.cpython-311.pyc new file mode 100644 index 00000000..10fdb5b2 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_rest.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_snaplock.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_snaplock.cpython-311.pyc new file mode 100644 index 00000000..c7bbea76 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_volume_snaplock.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan.cpython-311.pyc new file mode 100644 index 00000000..883c61a5 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_on_access_policy.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_on_access_policy.cpython-311.pyc new file mode 100644 index 00000000..269ad28b Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_on_access_policy.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_on_demand_task.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_on_demand_task.cpython-311.pyc new file mode 100644 index 00000000..8215720c Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_on_demand_task.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_scanner_pool.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_scanner_pool.cpython-311.pyc new file mode 100644 index 00000000..d0c160a3 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vscan_scanner_pool.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vserver_cifs_security.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vserver_cifs_security.cpython-311.pyc new file mode 100644 index 00000000..ce179835 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vserver_cifs_security.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vserver_peer.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vserver_peer.cpython-311.pyc new file mode 100644 index 00000000..0c5b2ec7 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_vserver_peer.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_wwpn_alias.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_wwpn_alias.cpython-311.pyc new file mode 100644 index 00000000..918f1db9 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_na_ontap_wwpn_alias.cpython-311.pyc differ diff --git a/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_ontap_fdspt.cpython-311.pyc b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_ontap_fdspt.cpython-311.pyc new file mode 100644 index 00000000..a6917372 Binary files /dev/null and b/collection/netapp/ontap/tests/unit/plugins/modules/__pycache__/test_ontap_fdspt.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/storagegrid/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..0cfe8578 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/module_utils/__pycache__/netapp.cpython-311.pyc b/collection/netapp/storagegrid/plugins/module_utils/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..1317e1dc Binary files /dev/null and b/collection/netapp/storagegrid/plugins/module_utils/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/storagegrid/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..ff9b8a71 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_account.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_account.cpython-311.pyc new file mode 100644 index 00000000..0947971e Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_account.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_certificate.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_certificate.cpython-311.pyc new file mode 100644 index 00000000..41126ae8 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_certificate.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_dns.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_dns.cpython-311.pyc new file mode 100644 index 00000000..736ff705 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_dns.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_gateway.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_gateway.cpython-311.pyc new file mode 100644 index 00000000..10710cde Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_gateway.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_group.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_group.cpython-311.pyc new file mode 100644 index 00000000..1a6a9a05 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_group.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_ha_group.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_ha_group.cpython-311.pyc new file mode 100644 index 00000000..f4c9c723 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_ha_group.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_identity_federation.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_identity_federation.cpython-311.pyc new file mode 100644 index 00000000..b7a761cd Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_identity_federation.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_info.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_info.cpython-311.pyc new file mode 100644 index 00000000..3831c5a9 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_info.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_ntp.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_ntp.cpython-311.pyc new file mode 100644 index 00000000..a7595ba8 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_ntp.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_regions.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_regions.cpython-311.pyc new file mode 100644 index 00000000..7fc8425b Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_regions.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_traffic_classes.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_traffic_classes.cpython-311.pyc new file mode 100644 index 00000000..c79bdcd2 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_traffic_classes.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_user.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_user.cpython-311.pyc new file mode 100644 index 00000000..7eb80163 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_grid_user.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_container.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_container.cpython-311.pyc new file mode 100644 index 00000000..49321bdf Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_container.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_group.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_group.cpython-311.pyc new file mode 100644 index 00000000..b8210451 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_group.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_identity_federation.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_identity_federation.cpython-311.pyc new file mode 100644 index 00000000..07272b01 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_identity_federation.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_info.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_info.cpython-311.pyc new file mode 100644 index 00000000..06b19584 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_info.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_user.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_user.cpython-311.pyc new file mode 100644 index 00000000..d7fd5321 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_user.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_user_s3_key.cpython-311.pyc b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_user_s3_key.cpython-311.pyc new file mode 100644 index 00000000..f94e33e3 Binary files /dev/null and b/collection/netapp/storagegrid/plugins/modules/__pycache__/na_sg_org_user_s3_key.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..fd9650a5 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..90b8482e Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..cbcfc11e Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..bc930f88 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_account.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_account.cpython-311.pyc new file mode 100644 index 00000000..f0c8fc88 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_account.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_certificate.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_certificate.cpython-311.pyc new file mode 100644 index 00000000..1686e446 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_certificate.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_dns.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_dns.cpython-311.pyc new file mode 100644 index 00000000..5a05f25b Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_dns.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_gateway.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_gateway.cpython-311.pyc new file mode 100644 index 00000000..30e72d65 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_gateway.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_group.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_group.cpython-311.pyc new file mode 100644 index 00000000..dffd39ea Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_group.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_ha_group.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_ha_group.cpython-311.pyc new file mode 100644 index 00000000..2ef58ff9 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_ha_group.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_identity_federation.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_identity_federation.cpython-311.pyc new file mode 100644 index 00000000..0176f3f6 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_identity_federation.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_info.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_info.cpython-311.pyc new file mode 100644 index 00000000..2791e654 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_info.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_ntp.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_ntp.cpython-311.pyc new file mode 100644 index 00000000..a97dde0f Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_ntp.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_regions.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_regions.cpython-311.pyc new file mode 100644 index 00000000..a0da4260 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_regions.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_traffic_classes.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_traffic_classes.cpython-311.pyc new file mode 100644 index 00000000..515f449c Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_traffic_classes.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_user.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_user.cpython-311.pyc new file mode 100644 index 00000000..8b081371 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_grid_user.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_container.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_container.cpython-311.pyc new file mode 100644 index 00000000..f693f99d Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_container.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_group.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_group.cpython-311.pyc new file mode 100644 index 00000000..4c7130ba Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_group.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_identity_federation.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_identity_federation.cpython-311.pyc new file mode 100644 index 00000000..040256c5 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_identity_federation.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_info.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_info.cpython-311.pyc new file mode 100644 index 00000000..7b9d5fae Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_info.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_user.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_user.cpython-311.pyc new file mode 100644 index 00000000..d6710eaa Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_user.cpython-311.pyc differ diff --git a/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_user_s3_key.cpython-311.pyc b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_user_s3_key.cpython-311.pyc new file mode 100644 index 00000000..94ea1d63 Binary files /dev/null and b/collection/netapp/storagegrid/tests/unit/plugins/modules/__pycache__/test_na_sg_org_user_s3_key.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc b/collection/netapp/um_info/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..5a72b673 Binary files /dev/null and b/collection/netapp/um_info/plugins/doc_fragments/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/module_utils/__pycache__/netapp.cpython-311.pyc b/collection/netapp/um_info/plugins/module_utils/__pycache__/netapp.cpython-311.pyc new file mode 100644 index 00000000..cba478b2 Binary files /dev/null and b/collection/netapp/um_info/plugins/module_utils/__pycache__/netapp.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc b/collection/netapp/um_info/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc new file mode 100644 index 00000000..c2bb2496 Binary files /dev/null and b/collection/netapp/um_info/plugins/module_utils/__pycache__/netapp_module.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_aggregates_info.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_aggregates_info.cpython-311.pyc new file mode 100644 index 00000000..28d24928 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_aggregates_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_clusters_info.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_clusters_info.cpython-311.pyc new file mode 100644 index 00000000..54a7a028 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_clusters_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_aggregates.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_aggregates.cpython-311.pyc new file mode 100644 index 00000000..806e358e Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_aggregates.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_clusters.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_clusters.cpython-311.pyc new file mode 100644 index 00000000..d544eea5 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_clusters.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_nodes.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_nodes.cpython-311.pyc new file mode 100644 index 00000000..aedc3a13 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_nodes.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_svms.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_svms.cpython-311.pyc new file mode 100644 index 00000000..2b85a4a9 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_svms.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_volumes.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_volumes.cpython-311.pyc new file mode 100644 index 00000000..de3abbbe Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_list_volumes.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_nodes_info.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_nodes_info.cpython-311.pyc new file mode 100644 index 00000000..973489b4 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_nodes_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_svms_info.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_svms_info.cpython-311.pyc new file mode 100644 index 00000000..a8081ba5 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_svms_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/plugins/modules/__pycache__/na_um_volumes_info.cpython-311.pyc b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_volumes_info.cpython-311.pyc new file mode 100644 index 00000000..06c4f134 Binary files /dev/null and b/collection/netapp/um_info/plugins/modules/__pycache__/na_um_volumes_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/netapp/um_info/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..560abec8 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/netapp/um_info/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..4c7f356f Binary files /dev/null and b/collection/netapp/um_info/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/netapp/um_info/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..00b1e444 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/netapp/um_info/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..4f2f744d Binary files /dev/null and b/collection/netapp/um_info/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc b/collection/netapp/um_info/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc new file mode 100644 index 00000000..0d7941a3 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/plugins/module_utils/__pycache__/test_netapp.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_aggregates_info.cpython-311.pyc b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_aggregates_info.cpython-311.pyc new file mode 100644 index 00000000..77d7b322 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_aggregates_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_clusters_info.cpython-311.pyc b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_clusters_info.cpython-311.pyc new file mode 100644 index 00000000..487c6e44 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_clusters_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_nodes_info.cpython-311.pyc b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_nodes_info.cpython-311.pyc new file mode 100644 index 00000000..531e6831 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_nodes_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_svms_info.cpython-311.pyc b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_svms_info.cpython-311.pyc new file mode 100644 index 00000000..7e115f8d Binary files /dev/null and b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_svms_info.cpython-311.pyc differ diff --git a/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_volumes_info.cpython-311.pyc b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_volumes_info.cpython-311.pyc new file mode 100644 index 00000000..f2a50b31 Binary files /dev/null and b/collection/netapp/um_info/tests/unit/plugins/modules/__pycache__/test_na_um_volumes_info.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1e3fb887 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/cloudstack.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/cloudstack.cpython-311.pyc new file mode 100644 index 00000000..ec353e45 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/cloudstack.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/cloudstack_environment.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/cloudstack_environment.cpython-311.pyc new file mode 100644 index 00000000..24c6d743 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/doc_fragments/__pycache__/cloudstack_environment.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/inventory/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/inventory/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..5e4bc880 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/inventory/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/inventory/__pycache__/instance.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/inventory/__pycache__/instance.cpython-311.pyc new file mode 100644 index 00000000..c8b9efc5 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/inventory/__pycache__/instance.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/module_utils/__pycache__/cloudstack.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/module_utils/__pycache__/cloudstack.cpython-311.pyc new file mode 100644 index 00000000..5b125ab1 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/module_utils/__pycache__/cloudstack.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..406f78c1 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_account.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_account.cpython-311.pyc new file mode 100644 index 00000000..039bb271 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_account.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_affinitygroup.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_affinitygroup.cpython-311.pyc new file mode 100644 index 00000000..cc415af3 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_affinitygroup.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_cluster.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_cluster.cpython-311.pyc new file mode 100644 index 00000000..c808a34a Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_cluster.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_configuration.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_configuration.cpython-311.pyc new file mode 100644 index 00000000..dc761271 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_configuration.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_disk_offering.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_disk_offering.cpython-311.pyc new file mode 100644 index 00000000..36e43c22 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_disk_offering.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_domain.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_domain.cpython-311.pyc new file mode 100644 index 00000000..09142e0d Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_domain.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_facts.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_facts.cpython-311.pyc new file mode 100644 index 00000000..7c394c4d Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_facts.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_firewall.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_firewall.cpython-311.pyc new file mode 100644 index 00000000..d2ceb7b8 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_firewall.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_host.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_host.cpython-311.pyc new file mode 100644 index 00000000..6973004b Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_host.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_image_store.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_image_store.cpython-311.pyc new file mode 100644 index 00000000..50c392b1 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_image_store.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance.cpython-311.pyc new file mode 100644 index 00000000..264b9f8f Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_info.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_info.cpython-311.pyc new file mode 100644 index 00000000..2c209e41 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_info.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_nic.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_nic.cpython-311.pyc new file mode 100644 index 00000000..e05c7e0f Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_nic.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_nic_secondaryip.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_nic_secondaryip.cpython-311.pyc new file mode 100644 index 00000000..f3cf1eed Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_nic_secondaryip.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_password_reset.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_password_reset.cpython-311.pyc new file mode 100644 index 00000000..06ffca55 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instance_password_reset.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instancegroup.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instancegroup.cpython-311.pyc new file mode 100644 index 00000000..3e34d540 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_instancegroup.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_ip_address.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_ip_address.cpython-311.pyc new file mode 100644 index 00000000..95ffdf1a Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_ip_address.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_iso.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_iso.cpython-311.pyc new file mode 100644 index 00000000..019bd872 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_iso.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_loadbalancer_rule.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_loadbalancer_rule.cpython-311.pyc new file mode 100644 index 00000000..463daaa7 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_loadbalancer_rule.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_loadbalancer_rule_member.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_loadbalancer_rule_member.cpython-311.pyc new file mode 100644 index 00000000..0190251e Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_loadbalancer_rule_member.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network.cpython-311.pyc new file mode 100644 index 00000000..9844da76 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_acl.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_acl.cpython-311.pyc new file mode 100644 index 00000000..aa3939be Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_acl.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_acl_rule.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_acl_rule.cpython-311.pyc new file mode 100644 index 00000000..34554176 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_acl_rule.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_offering.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_offering.cpython-311.pyc new file mode 100644 index 00000000..c58a0e03 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_network_offering.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_physical_network.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_physical_network.cpython-311.pyc new file mode 100644 index 00000000..c1e1715a Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_physical_network.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_pod.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_pod.cpython-311.pyc new file mode 100644 index 00000000..8e25aead Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_pod.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_portforward.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_portforward.cpython-311.pyc new file mode 100644 index 00000000..1b40aa91 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_portforward.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_project.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_project.cpython-311.pyc new file mode 100644 index 00000000..0dde2826 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_project.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_region.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_region.cpython-311.pyc new file mode 100644 index 00000000..72be70d7 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_region.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_resourcelimit.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_resourcelimit.cpython-311.pyc new file mode 100644 index 00000000..3d160462 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_resourcelimit.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_role.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_role.cpython-311.pyc new file mode 100644 index 00000000..a1e1ffb6 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_role.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_role_permission.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_role_permission.cpython-311.pyc new file mode 100644 index 00000000..3a07b447 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_role_permission.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_router.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_router.cpython-311.pyc new file mode 100644 index 00000000..28a74f47 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_router.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_securitygroup.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_securitygroup.cpython-311.pyc new file mode 100644 index 00000000..f0fa78aa Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_securitygroup.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_securitygroup_rule.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_securitygroup_rule.cpython-311.pyc new file mode 100644 index 00000000..22aa1869 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_securitygroup_rule.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_service_offering.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_service_offering.cpython-311.pyc new file mode 100644 index 00000000..5abdaf33 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_service_offering.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_snapshot_policy.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_snapshot_policy.cpython-311.pyc new file mode 100644 index 00000000..a43ded61 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_snapshot_policy.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_sshkeypair.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_sshkeypair.cpython-311.pyc new file mode 100644 index 00000000..3c848a79 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_sshkeypair.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_staticnat.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_staticnat.cpython-311.pyc new file mode 100644 index 00000000..3d871f43 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_staticnat.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_storage_pool.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_storage_pool.cpython-311.pyc new file mode 100644 index 00000000..f2160881 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_storage_pool.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_template.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_template.cpython-311.pyc new file mode 100644 index 00000000..28e03bb9 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_template.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_traffic_type.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_traffic_type.cpython-311.pyc new file mode 100644 index 00000000..f9505b6c Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_traffic_type.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_user.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_user.cpython-311.pyc new file mode 100644 index 00000000..51a3ce36 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_user.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vlan_ip_range.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vlan_ip_range.cpython-311.pyc new file mode 100644 index 00000000..a2bbc211 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vlan_ip_range.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vmsnapshot.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vmsnapshot.cpython-311.pyc new file mode 100644 index 00000000..d5bd96ba Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vmsnapshot.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_volume.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_volume.cpython-311.pyc new file mode 100644 index 00000000..841a53b4 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_volume.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpc.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpc.cpython-311.pyc new file mode 100644 index 00000000..7f744513 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpc.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpc_offering.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpc_offering.cpython-311.pyc new file mode 100644 index 00000000..afb64d72 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpc_offering.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_connection.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_connection.cpython-311.pyc new file mode 100644 index 00000000..efb4a866 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_connection.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_customer_gateway.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_customer_gateway.cpython-311.pyc new file mode 100644 index 00000000..f244f039 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_customer_gateway.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_gateway.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_gateway.cpython-311.pyc new file mode 100644 index 00000000..9d597376 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_vpn_gateway.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_zone.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_zone.cpython-311.pyc new file mode 100644 index 00000000..df130eb5 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_zone.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_zone_info.cpython-311.pyc b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_zone_info.cpython-311.pyc new file mode 100644 index 00000000..01442a69 Binary files /dev/null and b/collection/ngine_io/cloudstack/plugins/modules/__pycache__/cs_zone_info.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/scripts/inventory/__pycache__/cloudstack.cpython-311.pyc b/collection/ngine_io/cloudstack/scripts/inventory/__pycache__/cloudstack.cpython-311.pyc new file mode 100644 index 00000000..ce19d65d Binary files /dev/null and b/collection/ngine_io/cloudstack/scripts/inventory/__pycache__/cloudstack.cpython-311.pyc differ diff --git a/collection/ngine_io/cloudstack/tests/unit/modules/__pycache__/test_cs_traffic_type.cpython-311.pyc b/collection/ngine_io/cloudstack/tests/unit/modules/__pycache__/test_cs_traffic_type.cpython-311.pyc new file mode 100644 index 00000000..2b3da402 Binary files /dev/null and b/collection/ngine_io/cloudstack/tests/unit/modules/__pycache__/test_cs_traffic_type.cpython-311.pyc differ diff --git a/collection/ngine_io/exoscale/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/exoscale/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..91a3eaa9 Binary files /dev/null and b/collection/ngine_io/exoscale/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/exoscale/plugins/doc_fragments/__pycache__/exoscale.cpython-311.pyc b/collection/ngine_io/exoscale/plugins/doc_fragments/__pycache__/exoscale.cpython-311.pyc new file mode 100644 index 00000000..d2d36448 Binary files /dev/null and b/collection/ngine_io/exoscale/plugins/doc_fragments/__pycache__/exoscale.cpython-311.pyc differ diff --git a/collection/ngine_io/exoscale/plugins/module_utils/__pycache__/exoscale.cpython-311.pyc b/collection/ngine_io/exoscale/plugins/module_utils/__pycache__/exoscale.cpython-311.pyc new file mode 100644 index 00000000..7d681387 Binary files /dev/null and b/collection/ngine_io/exoscale/plugins/module_utils/__pycache__/exoscale.cpython-311.pyc differ diff --git a/collection/ngine_io/exoscale/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/exoscale/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..ff6af119 Binary files /dev/null and b/collection/ngine_io/exoscale/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/exoscale/plugins/modules/__pycache__/exo_dns_domain.cpython-311.pyc b/collection/ngine_io/exoscale/plugins/modules/__pycache__/exo_dns_domain.cpython-311.pyc new file mode 100644 index 00000000..a7d5ae96 Binary files /dev/null and b/collection/ngine_io/exoscale/plugins/modules/__pycache__/exo_dns_domain.cpython-311.pyc differ diff --git a/collection/ngine_io/exoscale/plugins/modules/__pycache__/exo_dns_record.cpython-311.pyc b/collection/ngine_io/exoscale/plugins/modules/__pycache__/exo_dns_record.cpython-311.pyc new file mode 100644 index 00000000..890baa12 Binary files /dev/null and b/collection/ngine_io/exoscale/plugins/modules/__pycache__/exo_dns_record.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/vultr/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1a08bd54 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/doc_fragments/__pycache__/vultr.cpython-311.pyc b/collection/ngine_io/vultr/plugins/doc_fragments/__pycache__/vultr.cpython-311.pyc new file mode 100644 index 00000000..ea27da8b Binary files /dev/null and b/collection/ngine_io/vultr/plugins/doc_fragments/__pycache__/vultr.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/inventory/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/vultr/plugins/inventory/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..81a297ba Binary files /dev/null and b/collection/ngine_io/vultr/plugins/inventory/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/inventory/__pycache__/vultr.cpython-311.pyc b/collection/ngine_io/vultr/plugins/inventory/__pycache__/vultr.cpython-311.pyc new file mode 100644 index 00000000..4800d28f Binary files /dev/null and b/collection/ngine_io/vultr/plugins/inventory/__pycache__/vultr.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/module_utils/__pycache__/vultr.cpython-311.pyc b/collection/ngine_io/vultr/plugins/module_utils/__pycache__/vultr.cpython-311.pyc new file mode 100644 index 00000000..ac8545ab Binary files /dev/null and b/collection/ngine_io/vultr/plugins/module_utils/__pycache__/vultr.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..95a3f49e Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_account_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_account_info.cpython-311.pyc new file mode 100644 index 00000000..4d77cc56 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_account_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_block_storage.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_block_storage.cpython-311.pyc new file mode 100644 index 00000000..d44f9cb8 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_block_storage.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_block_storage_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_block_storage_info.cpython-311.pyc new file mode 100644 index 00000000..283729a4 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_block_storage_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_domain.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_domain.cpython-311.pyc new file mode 100644 index 00000000..66ca1d64 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_domain.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_domain_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_domain_info.cpython-311.pyc new file mode 100644 index 00000000..aada4a25 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_domain_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_record.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_record.cpython-311.pyc new file mode 100644 index 00000000..793b3333 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_dns_record.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_group.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_group.cpython-311.pyc new file mode 100644 index 00000000..1bf5568a Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_group.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_group_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_group_info.cpython-311.pyc new file mode 100644 index 00000000..84262105 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_group_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_rule.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_rule.cpython-311.pyc new file mode 100644 index 00000000..e97db7f2 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_firewall_rule.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_network.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_network.cpython-311.pyc new file mode 100644 index 00000000..7b0d9754 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_network.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_network_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_network_info.cpython-311.pyc new file mode 100644 index 00000000..cdfa428e Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_network_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_os_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_os_info.cpython-311.pyc new file mode 100644 index 00000000..3efa3764 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_os_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_plan_baremetal_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_plan_baremetal_info.cpython-311.pyc new file mode 100644 index 00000000..b1180972 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_plan_baremetal_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_plan_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_plan_info.cpython-311.pyc new file mode 100644 index 00000000..dbc66926 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_plan_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_region_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_region_info.cpython-311.pyc new file mode 100644 index 00000000..2be534c3 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_region_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server.cpython-311.pyc new file mode 100644 index 00000000..851392fe Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server_baremetal.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server_baremetal.cpython-311.pyc new file mode 100644 index 00000000..7d3347dd Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server_baremetal.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server_info.cpython-311.pyc new file mode 100644 index 00000000..21809028 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_server_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_ssh_key.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_ssh_key.cpython-311.pyc new file mode 100644 index 00000000..368576de Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_ssh_key.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_ssh_key_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_ssh_key_info.cpython-311.pyc new file mode 100644 index 00000000..b8efa3b4 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_ssh_key_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_startup_script.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_startup_script.cpython-311.pyc new file mode 100644 index 00000000..5bba5b5a Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_startup_script.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_startup_script_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_startup_script_info.cpython-311.pyc new file mode 100644 index 00000000..bd4283cc Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_startup_script_info.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_user.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_user.cpython-311.pyc new file mode 100644 index 00000000..fe0aec10 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_user.cpython-311.pyc differ diff --git a/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_user_info.cpython-311.pyc b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_user_info.cpython-311.pyc new file mode 100644 index 00000000..a8f33468 Binary files /dev/null and b/collection/ngine_io/vultr/plugins/modules/__pycache__/vultr_user_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/__pycache__/setup.cpython-311.pyc b/collection/openstack/cloud/__pycache__/setup.cpython-311.pyc new file mode 100644 index 00000000..c2488448 Binary files /dev/null and b/collection/openstack/cloud/__pycache__/setup.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc b/collection/openstack/cloud/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..07540687 Binary files /dev/null and b/collection/openstack/cloud/plugins/doc_fragments/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/doc_fragments/__pycache__/openstack.cpython-311.pyc b/collection/openstack/cloud/plugins/doc_fragments/__pycache__/openstack.cpython-311.pyc new file mode 100644 index 00000000..028fc304 Binary files /dev/null and b/collection/openstack/cloud/plugins/doc_fragments/__pycache__/openstack.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/inventory/__pycache__/__init__.cpython-311.pyc b/collection/openstack/cloud/plugins/inventory/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..a58fa704 Binary files /dev/null and b/collection/openstack/cloud/plugins/inventory/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/inventory/__pycache__/openstack.cpython-311.pyc b/collection/openstack/cloud/plugins/inventory/__pycache__/openstack.cpython-311.pyc new file mode 100644 index 00000000..c354d52c Binary files /dev/null and b/collection/openstack/cloud/plugins/inventory/__pycache__/openstack.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/openstack/cloud/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..8fde6420 Binary files /dev/null and b/collection/openstack/cloud/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/module_utils/__pycache__/ironic.cpython-311.pyc b/collection/openstack/cloud/plugins/module_utils/__pycache__/ironic.cpython-311.pyc new file mode 100644 index 00000000..03385422 Binary files /dev/null and b/collection/openstack/cloud/plugins/module_utils/__pycache__/ironic.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/module_utils/__pycache__/openstack.cpython-311.pyc b/collection/openstack/cloud/plugins/module_utils/__pycache__/openstack.cpython-311.pyc new file mode 100644 index 00000000..3f858fef Binary files /dev/null and b/collection/openstack/cloud/plugins/module_utils/__pycache__/openstack.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..761f2ca8 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/address_scope.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/address_scope.cpython-311.pyc new file mode 100644 index 00000000..c81df87e Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/address_scope.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/auth.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/auth.cpython-311.pyc new file mode 100644 index 00000000..fac3d297 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/auth.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_inspect.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_inspect.cpython-311.pyc new file mode 100644 index 00000000..ef198628 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_inspect.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node.cpython-311.pyc new file mode 100644 index 00000000..eba85ef7 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node_action.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node_action.cpython-311.pyc new file mode 100644 index 00000000..f1334cea Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node_action.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node_info.cpython-311.pyc new file mode 100644 index 00000000..6f266a65 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_node_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_port.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_port.cpython-311.pyc new file mode 100644 index 00000000..9cf04c9f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_port.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_port_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_port_info.cpython-311.pyc new file mode 100644 index 00000000..fc4bc7e9 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/baremetal_port_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/catalog_service.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/catalog_service.cpython-311.pyc new file mode 100644 index 00000000..521bc188 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/catalog_service.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/coe_cluster.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/coe_cluster.cpython-311.pyc new file mode 100644 index 00000000..1cbbe140 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/coe_cluster.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/coe_cluster_template.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/coe_cluster_template.cpython-311.pyc new file mode 100644 index 00000000..016e8547 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/coe_cluster_template.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/compute_flavor.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/compute_flavor.cpython-311.pyc new file mode 100644 index 00000000..5ce9720d Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/compute_flavor.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/compute_flavor_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/compute_flavor_info.cpython-311.pyc new file mode 100644 index 00000000..9c31744f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/compute_flavor_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/compute_service_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/compute_service_info.cpython-311.pyc new file mode 100644 index 00000000..89438383 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/compute_service_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/config.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/config.cpython-311.pyc new file mode 100644 index 00000000..4431ef12 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/config.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/container.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/container.cpython-311.pyc new file mode 100644 index 00000000..0ad3f094 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/container.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/dns_zone.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/dns_zone.cpython-311.pyc new file mode 100644 index 00000000..80b91eca Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/dns_zone.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/dns_zone_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/dns_zone_info.cpython-311.pyc new file mode 100644 index 00000000..c12f85d3 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/dns_zone_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/endpoint.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/endpoint.cpython-311.pyc new file mode 100644 index 00000000..29cc3f8b Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/endpoint.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/federation_idp.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/federation_idp.cpython-311.pyc new file mode 100644 index 00000000..adf2bd1b Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/federation_idp.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/federation_idp_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/federation_idp_info.cpython-311.pyc new file mode 100644 index 00000000..261cfaa8 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/federation_idp_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/federation_mapping.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/federation_mapping.cpython-311.pyc new file mode 100644 index 00000000..433e752f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/federation_mapping.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/federation_mapping_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/federation_mapping_info.cpython-311.pyc new file mode 100644 index 00000000..b3dd8398 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/federation_mapping_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/floating_ip.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/floating_ip.cpython-311.pyc new file mode 100644 index 00000000..7316ab5d Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/floating_ip.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/floating_ip_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/floating_ip_info.cpython-311.pyc new file mode 100644 index 00000000..ee7cc78f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/floating_ip_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/group_assignment.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/group_assignment.cpython-311.pyc new file mode 100644 index 00000000..06562955 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/group_assignment.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/host_aggregate.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/host_aggregate.cpython-311.pyc new file mode 100644 index 00000000..fd020c05 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/host_aggregate.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_domain.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_domain.cpython-311.pyc new file mode 100644 index 00000000..0fa7d53d Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_domain.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_domain_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_domain_info.cpython-311.pyc new file mode 100644 index 00000000..f16b64dd Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_domain_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_group.cpython-311.pyc new file mode 100644 index 00000000..12f669f2 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_group_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_group_info.cpython-311.pyc new file mode 100644 index 00000000..a7fcd24d Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_group_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_role.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_role.cpython-311.pyc new file mode 100644 index 00000000..91ff2a85 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_role.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_role_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_role_info.cpython-311.pyc new file mode 100644 index 00000000..618ee791 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_role_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_user.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_user.cpython-311.pyc new file mode 100644 index 00000000..09f36088 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_user.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/identity_user_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/identity_user_info.cpython-311.pyc new file mode 100644 index 00000000..88cf7a4a Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/identity_user_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/image.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/image.cpython-311.pyc new file mode 100644 index 00000000..e109f1d0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/image.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/image_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/image_info.cpython-311.pyc new file mode 100644 index 00000000..31e0af96 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/image_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/keypair.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/keypair.cpython-311.pyc new file mode 100644 index 00000000..d841d43f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/keypair.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/keypair_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/keypair_info.cpython-311.pyc new file mode 100644 index 00000000..118a64e2 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/keypair_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/keystone_federation_protocol.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/keystone_federation_protocol.cpython-311.pyc new file mode 100644 index 00000000..6f420773 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/keystone_federation_protocol.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/keystone_federation_protocol_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/keystone_federation_protocol_info.cpython-311.pyc new file mode 100644 index 00000000..6537f315 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/keystone_federation_protocol_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/lb_health_monitor.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/lb_health_monitor.cpython-311.pyc new file mode 100644 index 00000000..73231b5e Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/lb_health_monitor.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/lb_listener.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/lb_listener.cpython-311.pyc new file mode 100644 index 00000000..6f674ccc Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/lb_listener.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/lb_member.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/lb_member.cpython-311.pyc new file mode 100644 index 00000000..78cf6e08 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/lb_member.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/lb_pool.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/lb_pool.cpython-311.pyc new file mode 100644 index 00000000..5c989896 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/lb_pool.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/loadbalancer.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/loadbalancer.cpython-311.pyc new file mode 100644 index 00000000..4abd530f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/loadbalancer.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/network.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/network.cpython-311.pyc new file mode 100644 index 00000000..665ed152 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/network.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/networks_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/networks_info.cpython-311.pyc new file mode 100644 index 00000000..bc62ffc2 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/networks_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/neutron_rbac_policies_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/neutron_rbac_policies_info.cpython-311.pyc new file mode 100644 index 00000000..15847772 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/neutron_rbac_policies_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/neutron_rbac_policy.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/neutron_rbac_policy.cpython-311.pyc new file mode 100644 index 00000000..b99405c9 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/neutron_rbac_policy.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/object.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/object.cpython-311.pyc new file mode 100644 index 00000000..819989f5 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/object.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/object_container.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/object_container.cpython-311.pyc new file mode 100644 index 00000000..1381e4aa Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/object_container.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_auth.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_auth.cpython-311.pyc new file mode 100644 index 00000000..7fdcf310 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_auth.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_client_config.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_client_config.cpython-311.pyc new file mode 100644 index 00000000..44cba908 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_client_config.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_coe_cluster.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_coe_cluster.cpython-311.pyc new file mode 100644 index 00000000..7a886a0c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_coe_cluster.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_coe_cluster_template.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_coe_cluster_template.cpython-311.pyc new file mode 100644 index 00000000..35fec006 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_coe_cluster_template.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_flavor_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_flavor_info.cpython-311.pyc new file mode 100644 index 00000000..f35f8ea7 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_flavor_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_floating_ip.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_floating_ip.cpython-311.pyc new file mode 100644 index 00000000..e0194796 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_floating_ip.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_group.cpython-311.pyc new file mode 100644 index 00000000..309dd006 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_group_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_group_info.cpython-311.pyc new file mode 100644 index 00000000..98d4b7be Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_group_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_image.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_image.cpython-311.pyc new file mode 100644 index 00000000..a87aab2e Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_image.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_image_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_image_info.cpython-311.pyc new file mode 100644 index 00000000..6905608a Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_image_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic.cpython-311.pyc new file mode 100644 index 00000000..64ba3ab4 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic_inspect.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic_inspect.cpython-311.pyc new file mode 100644 index 00000000..6c22d4ab Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic_inspect.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic_node.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic_node.cpython-311.pyc new file mode 100644 index 00000000..645a7361 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_ironic_node.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keypair.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keypair.cpython-311.pyc new file mode 100644 index 00000000..cf627c8b Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keypair.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_domain.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_domain.cpython-311.pyc new file mode 100644 index 00000000..7f64e172 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_domain.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_domain_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_domain_info.cpython-311.pyc new file mode 100644 index 00000000..06afe56a Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_domain_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_endpoint.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_endpoint.cpython-311.pyc new file mode 100644 index 00000000..9b81fbf0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_endpoint.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_federation_protocol.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_federation_protocol.cpython-311.pyc new file mode 100644 index 00000000..18fa3e4f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_federation_protocol.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_federation_protocol_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_federation_protocol_info.cpython-311.pyc new file mode 100644 index 00000000..d95e3db2 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_federation_protocol_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_identity_provider.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_identity_provider.cpython-311.pyc new file mode 100644 index 00000000..68bcc760 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_identity_provider.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_identity_provider_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_identity_provider_info.cpython-311.pyc new file mode 100644 index 00000000..19c48d01 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_identity_provider_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_mapping.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_mapping.cpython-311.pyc new file mode 100644 index 00000000..41bca0d3 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_mapping.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_mapping_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_mapping_info.cpython-311.pyc new file mode 100644 index 00000000..084e5fe0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_mapping_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_role.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_role.cpython-311.pyc new file mode 100644 index 00000000..ae2da902 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_role.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_service.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_service.cpython-311.pyc new file mode 100644 index 00000000..71350faa Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_keystone_service.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_listener.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_listener.cpython-311.pyc new file mode 100644 index 00000000..ca3221d0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_listener.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_loadbalancer.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_loadbalancer.cpython-311.pyc new file mode 100644 index 00000000..f6fb4982 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_loadbalancer.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_member.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_member.cpython-311.pyc new file mode 100644 index 00000000..b4969b68 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_member.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_network.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_network.cpython-311.pyc new file mode 100644 index 00000000..bbfe4052 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_network.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_networks_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_networks_info.cpython-311.pyc new file mode 100644 index 00000000..621806df Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_networks_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_nova_flavor.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_nova_flavor.cpython-311.pyc new file mode 100644 index 00000000..70a4fb21 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_nova_flavor.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_nova_host_aggregate.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_nova_host_aggregate.cpython-311.pyc new file mode 100644 index 00000000..d60bd7d0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_nova_host_aggregate.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_object.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_object.cpython-311.pyc new file mode 100644 index 00000000..8f0e7d0e Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_object.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_pool.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_pool.cpython-311.pyc new file mode 100644 index 00000000..d645f0da Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_pool.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_port.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_port.cpython-311.pyc new file mode 100644 index 00000000..d689e528 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_port.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_port_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_port_info.cpython-311.pyc new file mode 100644 index 00000000..293f7493 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_port_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_project.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_project.cpython-311.pyc new file mode 100644 index 00000000..384a4d9d Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_project.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_project_access.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_project_access.cpython-311.pyc new file mode 100644 index 00000000..561ab9fe Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_project_access.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_project_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_project_info.cpython-311.pyc new file mode 100644 index 00000000..25ed487e Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_project_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_quota.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_quota.cpython-311.pyc new file mode 100644 index 00000000..3dca1169 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_quota.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_recordset.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_recordset.cpython-311.pyc new file mode 100644 index 00000000..113e7149 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_recordset.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_router.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_router.cpython-311.pyc new file mode 100644 index 00000000..67f7cf62 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_router.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_routers_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_routers_info.cpython-311.pyc new file mode 100644 index 00000000..3f4ba516 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_routers_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_security_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_security_group.cpython-311.pyc new file mode 100644 index 00000000..68c92828 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_security_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_security_group_rule.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_security_group_rule.cpython-311.pyc new file mode 100644 index 00000000..e4febcc5 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_security_group_rule.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_server.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_server.cpython-311.pyc new file mode 100644 index 00000000..c3b50527 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_server.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_server_action.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_action.cpython-311.pyc new file mode 100644 index 00000000..3c3e8f81 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_action.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_server_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_group.cpython-311.pyc new file mode 100644 index 00000000..441e28e5 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_server_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_info.cpython-311.pyc new file mode 100644 index 00000000..27b39953 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_server_metadata.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_metadata.cpython-311.pyc new file mode 100644 index 00000000..a89d8d15 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_metadata.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_server_volume.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_volume.cpython-311.pyc new file mode 100644 index 00000000..29d90df5 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_server_volume.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_stack.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_stack.cpython-311.pyc new file mode 100644 index 00000000..108d77a9 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_stack.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_subnet.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_subnet.cpython-311.pyc new file mode 100644 index 00000000..6ff9fa23 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_subnet.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_subnets_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_subnets_info.cpython-311.pyc new file mode 100644 index 00000000..31c9ffeb Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_subnets_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_user.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_user.cpython-311.pyc new file mode 100644 index 00000000..bcd73fdb Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_user.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_user_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_user_group.cpython-311.pyc new file mode 100644 index 00000000..2a05c50c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_user_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_user_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_user_info.cpython-311.pyc new file mode 100644 index 00000000..dde1d589 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_user_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_user_role.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_user_role.cpython-311.pyc new file mode 100644 index 00000000..8d56716c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_user_role.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_volume.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_volume.cpython-311.pyc new file mode 100644 index 00000000..1b3fae22 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_volume.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_volume_snapshot.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_volume_snapshot.cpython-311.pyc new file mode 100644 index 00000000..57be6851 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_volume_snapshot.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/os_zone.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/os_zone.cpython-311.pyc new file mode 100644 index 00000000..a9189d17 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/os_zone.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/port.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/port.cpython-311.pyc new file mode 100644 index 00000000..87e8e813 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/port.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/port_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/port_info.cpython-311.pyc new file mode 100644 index 00000000..0b79acc8 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/port_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/project.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/project.cpython-311.pyc new file mode 100644 index 00000000..2fd6105c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/project.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/project_access.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/project_access.cpython-311.pyc new file mode 100644 index 00000000..0ccdc24e Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/project_access.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/project_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/project_info.cpython-311.pyc new file mode 100644 index 00000000..21f45690 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/project_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/quota.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/quota.cpython-311.pyc new file mode 100644 index 00000000..7b9636df Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/quota.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/recordset.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/recordset.cpython-311.pyc new file mode 100644 index 00000000..b1479503 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/recordset.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/role_assignment.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/role_assignment.cpython-311.pyc new file mode 100644 index 00000000..875cd02b Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/role_assignment.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/router.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/router.cpython-311.pyc new file mode 100644 index 00000000..2c47c89f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/router.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/routers_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/routers_info.cpython-311.pyc new file mode 100644 index 00000000..9e0cc983 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/routers_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/security_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/security_group.cpython-311.pyc new file mode 100644 index 00000000..3d7603d4 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/security_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/security_group_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/security_group_info.cpython-311.pyc new file mode 100644 index 00000000..40581624 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/security_group_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/security_group_rule.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/security_group_rule.cpython-311.pyc new file mode 100644 index 00000000..cce5fb75 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/security_group_rule.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/security_group_rule_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/security_group_rule_info.cpython-311.pyc new file mode 100644 index 00000000..0d654e2c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/security_group_rule_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/server.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/server.cpython-311.pyc new file mode 100644 index 00000000..80be2ef0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/server.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/server_action.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/server_action.cpython-311.pyc new file mode 100644 index 00000000..cbfb4bc0 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/server_action.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/server_group.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/server_group.cpython-311.pyc new file mode 100644 index 00000000..a3e7d8c7 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/server_group.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/server_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/server_info.cpython-311.pyc new file mode 100644 index 00000000..54f200af Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/server_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/server_metadata.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/server_metadata.cpython-311.pyc new file mode 100644 index 00000000..f6adc48f Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/server_metadata.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/server_volume.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/server_volume.cpython-311.pyc new file mode 100644 index 00000000..05fb792c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/server_volume.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/stack.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/stack.cpython-311.pyc new file mode 100644 index 00000000..e734e80d Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/stack.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/stack_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/stack_info.cpython-311.pyc new file mode 100644 index 00000000..fbd05eee Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/stack_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/subnet.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/subnet.cpython-311.pyc new file mode 100644 index 00000000..9e7b7ca3 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/subnet.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/subnet_pool.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/subnet_pool.cpython-311.pyc new file mode 100644 index 00000000..4c3c47a4 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/subnet_pool.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/subnets_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/subnets_info.cpython-311.pyc new file mode 100644 index 00000000..6638f681 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/subnets_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/volume.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/volume.cpython-311.pyc new file mode 100644 index 00000000..78187fae Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/volume.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/volume_backup.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/volume_backup.cpython-311.pyc new file mode 100644 index 00000000..1f97d24c Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/volume_backup.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/volume_backup_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/volume_backup_info.cpython-311.pyc new file mode 100644 index 00000000..e2b41ba7 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/volume_backup_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/volume_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/volume_info.cpython-311.pyc new file mode 100644 index 00000000..e932cda1 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/volume_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/volume_snapshot.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/volume_snapshot.cpython-311.pyc new file mode 100644 index 00000000..fc89cbbd Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/volume_snapshot.cpython-311.pyc differ diff --git a/collection/openstack/cloud/plugins/modules/__pycache__/volume_snapshot_info.cpython-311.pyc b/collection/openstack/cloud/plugins/modules/__pycache__/volume_snapshot_info.cpython-311.pyc new file mode 100644 index 00000000..077b2b91 Binary files /dev/null and b/collection/openstack/cloud/plugins/modules/__pycache__/volume_snapshot_info.cpython-311.pyc differ diff --git a/collection/openstack/cloud/scripts/inventory/__pycache__/openstack_inventory.cpython-311.pyc b/collection/openstack/cloud/scripts/inventory/__pycache__/openstack_inventory.cpython-311.pyc new file mode 100644 index 00000000..16c4edba Binary files /dev/null and b/collection/openstack/cloud/scripts/inventory/__pycache__/openstack_inventory.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..4a121d0c Binary files /dev/null and b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_bond.cpython-311.pyc b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_bond.cpython-311.pyc new file mode 100644 index 00000000..669c3b6e Binary files /dev/null and b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_bond.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_bridge.cpython-311.pyc b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_bridge.cpython-311.pyc new file mode 100644 index 00000000..4dbf9de2 Binary files /dev/null and b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_bridge.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_db.cpython-311.pyc b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_db.cpython-311.pyc new file mode 100644 index 00000000..d1350818 Binary files /dev/null and b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_db.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_port.cpython-311.pyc b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_port.cpython-311.pyc new file mode 100644 index 00000000..9afb09ce Binary files /dev/null and b/collection/openvswitch/openvswitch/plugins/modules/__pycache__/openvswitch_port.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..a098ce80 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1f0881bd Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/builtins.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/builtins.cpython-311.pyc new file mode 100644 index 00000000..b6c30eee Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/builtins.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/mock.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/mock.cpython-311.pyc new file mode 100644 index 00000000..96c5048d Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/mock.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/unittest.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/unittest.cpython-311.pyc new file mode 100644 index 00000000..db8599f3 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/compat/__pycache__/unittest.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..6ec792b6 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/loader.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/loader.cpython-311.pyc new file mode 100644 index 00000000..a2e9d459 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/loader.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/path.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/path.cpython-311.pyc new file mode 100644 index 00000000..fa8c4f70 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/path.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/procenv.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/procenv.cpython-311.pyc new file mode 100644 index 00000000..6eed2426 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/procenv.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc new file mode 100644 index 00000000..f50d4bbf Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/vault_helper.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc new file mode 100644 index 00000000..58f748aa Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/mock/__pycache__/yaml_helper.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..ec95a48b Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/conftest.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/conftest.cpython-311.pyc new file mode 100644 index 00000000..75af2d61 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/conftest.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/utils.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/utils.cpython-311.pyc new file mode 100644 index 00000000..bc8496aa Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/__pycache__/utils.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..d6ec02f3 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..a62c8d1e Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/ovs_module.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/ovs_module.cpython-311.pyc new file mode 100644 index 00000000..3d6d439b Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/ovs_module.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_bond.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_bond.cpython-311.pyc new file mode 100644 index 00000000..aaf854b7 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_bond.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_bridge.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_bridge.cpython-311.pyc new file mode 100644 index 00000000..2f562c78 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_bridge.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_db.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_db.cpython-311.pyc new file mode 100644 index 00000000..92efa001 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_db.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_port.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_port.cpython-311.pyc new file mode 100644 index 00000000..e078d4ae Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/__pycache__/test_openvswitch_port.cpython-311.pyc differ diff --git a/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/fixtures/__pycache__/__init__.cpython-311.pyc b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/fixtures/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..1863dcb2 Binary files /dev/null and b/collection/openvswitch/openvswitch/tests/unit/modules/network/ovs/fixtures/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/callback/__pycache__/stdout.cpython-311.pyc b/collection/ovirt/ovirt/plugins/callback/__pycache__/stdout.cpython-311.pyc new file mode 100644 index 00000000..0821d3ea Binary files /dev/null and b/collection/ovirt/ovirt/plugins/callback/__pycache__/stdout.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/doc_fragments/__pycache__/ovirt.cpython-311.pyc b/collection/ovirt/ovirt/plugins/doc_fragments/__pycache__/ovirt.cpython-311.pyc new file mode 100644 index 00000000..0d1e3c39 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/doc_fragments/__pycache__/ovirt.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/doc_fragments/__pycache__/ovirt_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/doc_fragments/__pycache__/ovirt_info.cpython-311.pyc new file mode 100644 index 00000000..e1c97c36 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/doc_fragments/__pycache__/ovirt_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/filter/__pycache__/ovirtvmip.cpython-311.pyc b/collection/ovirt/ovirt/plugins/filter/__pycache__/ovirtvmip.cpython-311.pyc new file mode 100644 index 00000000..eb5ae867 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/filter/__pycache__/ovirtvmip.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/inventory/__pycache__/ovirt.cpython-311.pyc b/collection/ovirt/ovirt/plugins/inventory/__pycache__/ovirt.cpython-311.pyc new file mode 100644 index 00000000..5f97a50b Binary files /dev/null and b/collection/ovirt/ovirt/plugins/inventory/__pycache__/ovirt.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/module_utils/__pycache__/__init__.cpython-311.pyc b/collection/ovirt/ovirt/plugins/module_utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..67a212a2 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/module_utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/module_utils/__pycache__/cloud.cpython-311.pyc b/collection/ovirt/ovirt/plugins/module_utils/__pycache__/cloud.cpython-311.pyc new file mode 100644 index 00000000..a2c30fe9 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/module_utils/__pycache__/cloud.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/module_utils/__pycache__/ovirt.cpython-311.pyc b/collection/ovirt/ovirt/plugins/module_utils/__pycache__/ovirt.cpython-311.pyc new file mode 100644 index 00000000..64af281f Binary files /dev/null and b/collection/ovirt/ovirt/plugins/module_utils/__pycache__/ovirt.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/__init__.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 00000000..5eabbc03 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/__init__.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_group.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_group.cpython-311.pyc new file mode 100644 index 00000000..6f93dd16 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_group.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_label.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_label.cpython-311.pyc new file mode 100644 index 00000000..7bf1c744 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_label.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_label_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_label_info.cpython-311.pyc new file mode 100644 index 00000000..fcc581a2 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_affinity_label_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_api_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_api_info.cpython-311.pyc new file mode 100644 index 00000000..902c2a07 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_api_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_auth.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_auth.cpython-311.pyc new file mode 100644 index 00000000..d30d1b2f Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_auth.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_cluster.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_cluster.cpython-311.pyc new file mode 100644 index 00000000..eb259706 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_cluster.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_cluster_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_cluster_info.cpython-311.pyc new file mode 100644 index 00000000..d6ae6cc7 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_cluster_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_datacenter.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_datacenter.cpython-311.pyc new file mode 100644 index 00000000..c626d9d8 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_datacenter.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_datacenter_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_datacenter_info.cpython-311.pyc new file mode 100644 index 00000000..e2c285f3 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_datacenter_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_disk.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_disk.cpython-311.pyc new file mode 100644 index 00000000..25ecc9b3 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_disk.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_disk_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_disk_info.cpython-311.pyc new file mode 100644 index 00000000..9260aef2 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_disk_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_event.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_event.cpython-311.pyc new file mode 100644 index 00000000..5537f327 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_event.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_event_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_event_info.cpython-311.pyc new file mode 100644 index 00000000..85a0cc3c Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_event_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_external_provider.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_external_provider.cpython-311.pyc new file mode 100644 index 00000000..c72fe968 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_external_provider.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_external_provider_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_external_provider_info.cpython-311.pyc new file mode 100644 index 00000000..017c2fc5 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_external_provider_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_group.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_group.cpython-311.pyc new file mode 100644 index 00000000..3071a9f1 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_group.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_group_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_group_info.cpython-311.pyc new file mode 100644 index 00000000..100f9329 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_group_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host.cpython-311.pyc new file mode 100644 index 00000000..4ca374a8 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_info.cpython-311.pyc new file mode 100644 index 00000000..26daddbd Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_network.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_network.cpython-311.pyc new file mode 100644 index 00000000..22892e75 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_network.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_pm.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_pm.cpython-311.pyc new file mode 100644 index 00000000..bfb57908 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_pm.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_storage_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_storage_info.cpython-311.pyc new file mode 100644 index 00000000..db2e9d0c Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_host_storage_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_instance_type.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_instance_type.cpython-311.pyc new file mode 100644 index 00000000..4afe4d24 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_instance_type.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_job.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_job.cpython-311.pyc new file mode 100644 index 00000000..aabe466b Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_job.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_mac_pool.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_mac_pool.cpython-311.pyc new file mode 100644 index 00000000..272d6509 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_mac_pool.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_network.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_network.cpython-311.pyc new file mode 100644 index 00000000..358a5c82 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_network.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_network_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_network_info.cpython-311.pyc new file mode 100644 index 00000000..f8991c4e Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_network_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_nic.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_nic.cpython-311.pyc new file mode 100644 index 00000000..526b9413 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_nic.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_nic_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_nic_info.cpython-311.pyc new file mode 100644 index 00000000..0367adef Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_nic_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_permission.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_permission.cpython-311.pyc new file mode 100644 index 00000000..a05eb4e9 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_permission.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_permission_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_permission_info.cpython-311.pyc new file mode 100644 index 00000000..5b135671 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_permission_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_quota.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_quota.cpython-311.pyc new file mode 100644 index 00000000..e264cb1f Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_quota.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_quota_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_quota_info.cpython-311.pyc new file mode 100644 index 00000000..ed7c4e02 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_quota_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_role.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_role.cpython-311.pyc new file mode 100644 index 00000000..864d3306 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_role.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_scheduling_policy_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_scheduling_policy_info.cpython-311.pyc new file mode 100644 index 00000000..fe026d61 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_scheduling_policy_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_snapshot.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_snapshot.cpython-311.pyc new file mode 100644 index 00000000..fe8e457f Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_snapshot.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_snapshot_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_snapshot_info.cpython-311.pyc new file mode 100644 index 00000000..f4878851 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_snapshot_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_connection.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_connection.cpython-311.pyc new file mode 100644 index 00000000..ad03b7f1 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_connection.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_domain.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_domain.cpython-311.pyc new file mode 100644 index 00000000..9a8428b4 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_domain.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_domain_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_domain_info.cpython-311.pyc new file mode 100644 index 00000000..4cf2ff36 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_domain_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_template_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_template_info.cpython-311.pyc new file mode 100644 index 00000000..d72679b8 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_template_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_vm_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_vm_info.cpython-311.pyc new file mode 100644 index 00000000..08865149 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_storage_vm_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_system_option_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_system_option_info.cpython-311.pyc new file mode 100644 index 00000000..606f201c Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_system_option_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_tag.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_tag.cpython-311.pyc new file mode 100644 index 00000000..c2960870 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_tag.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_tag_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_tag_info.cpython-311.pyc new file mode 100644 index 00000000..b1b1d251 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_tag_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_template.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_template.cpython-311.pyc new file mode 100644 index 00000000..aff01ecf Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_template.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_template_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_template_info.cpython-311.pyc new file mode 100644 index 00000000..9e2cc988 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_template_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_user.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_user.cpython-311.pyc new file mode 100644 index 00000000..a85496a2 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_user.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_user_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_user_info.cpython-311.pyc new file mode 100644 index 00000000..2dfea055 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_user_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm.cpython-311.pyc new file mode 100644 index 00000000..7f194976 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm_info.cpython-311.pyc new file mode 100644 index 00000000..d1d1ecc2 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm_os_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm_os_info.cpython-311.pyc new file mode 100644 index 00000000..bcf23166 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vm_os_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vmpool.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vmpool.cpython-311.pyc new file mode 100644 index 00000000..f4ae4f8c Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vmpool.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vmpool_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vmpool_info.cpython-311.pyc new file mode 100644 index 00000000..6e3922b8 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vmpool_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vnic_profile.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vnic_profile.cpython-311.pyc new file mode 100644 index 00000000..ad07d24c Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vnic_profile.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vnic_profile_info.cpython-311.pyc b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vnic_profile_info.cpython-311.pyc new file mode 100644 index 00000000..0c39ed09 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/modules/__pycache__/ovirt_vnic_profile_info.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/plugins/test/__pycache__/ovirt_proxied_check.cpython-311.pyc b/collection/ovirt/ovirt/plugins/test/__pycache__/ovirt_proxied_check.cpython-311.pyc new file mode 100644 index 00000000..92471dc1 Binary files /dev/null and b/collection/ovirt/ovirt/plugins/test/__pycache__/ovirt_proxied_check.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/bcolors.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/bcolors.cpython-311.pyc new file mode 100644 index 00000000..6e448830 Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/bcolors.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/fail_back.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/fail_back.cpython-311.pyc new file mode 100644 index 00000000..38459915 Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/fail_back.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/fail_over.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/fail_over.cpython-311.pyc new file mode 100644 index 00000000..8b49e08a Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/fail_over.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_mapping.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_mapping.cpython-311.pyc new file mode 100644 index 00000000..bedf1855 Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_mapping.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_vars.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_vars.cpython-311.pyc new file mode 100644 index 00000000..aa8a3ab9 Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_vars.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_vars_test.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_vars_test.cpython-311.pyc new file mode 100644 index 00000000..4ad4f35f Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/generate_vars_test.cpython-311.pyc differ diff --git a/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/validator.cpython-311.pyc b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/validator.cpython-311.pyc new file mode 100644 index 00000000..be6a3238 Binary files /dev/null and b/collection/ovirt/ovirt/roles/disaster_recovery/files/__pycache__/validator.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/doc_fragments/__pycache__/purestorage.cpython-311.pyc b/collection/purestorage/flasharray/plugins/doc_fragments/__pycache__/purestorage.cpython-311.pyc new file mode 100644 index 00000000..a2222e5f Binary files /dev/null and b/collection/purestorage/flasharray/plugins/doc_fragments/__pycache__/purestorage.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/module_utils/__pycache__/purefa.cpython-311.pyc b/collection/purestorage/flasharray/plugins/module_utils/__pycache__/purefa.cpython-311.pyc new file mode 100644 index 00000000..144f89b1 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/module_utils/__pycache__/purefa.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ad.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ad.cpython-311.pyc new file mode 100644 index 00000000..6fec042f Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ad.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_admin.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_admin.cpython-311.pyc new file mode 100644 index 00000000..b80ec4e7 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_admin.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_alert.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_alert.cpython-311.pyc new file mode 100644 index 00000000..989f46cf Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_alert.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_apiclient.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_apiclient.cpython-311.pyc new file mode 100644 index 00000000..5562857e Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_apiclient.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_arrayname.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_arrayname.cpython-311.pyc new file mode 100644 index 00000000..7c01d275 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_arrayname.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_banner.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_banner.cpython-311.pyc new file mode 100644 index 00000000..0ef94a83 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_banner.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_certs.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_certs.cpython-311.pyc new file mode 100644 index 00000000..7de38f1e Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_certs.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_connect.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_connect.cpython-311.pyc new file mode 100644 index 00000000..d1c1871f Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_connect.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_console.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_console.cpython-311.pyc new file mode 100644 index 00000000..faf6ba49 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_console.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_directory.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_directory.cpython-311.pyc new file mode 100644 index 00000000..97d0867b Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_directory.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dirsnap.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dirsnap.cpython-311.pyc new file mode 100644 index 00000000..85ba41ee Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dirsnap.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dns.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dns.cpython-311.pyc new file mode 100644 index 00000000..84321e2d Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dns.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ds.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ds.cpython-311.pyc new file mode 100644 index 00000000..2c2cfe89 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ds.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dsrole.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dsrole.cpython-311.pyc new file mode 100644 index 00000000..79226dec Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_dsrole.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_endpoint.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_endpoint.cpython-311.pyc new file mode 100644 index 00000000..f60f7922 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_endpoint.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_eradication.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_eradication.cpython-311.pyc new file mode 100644 index 00000000..0b931fc8 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_eradication.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_eula.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_eula.cpython-311.pyc new file mode 100644 index 00000000..c5bf6257 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_eula.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_export.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_export.cpython-311.pyc new file mode 100644 index 00000000..08368822 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_export.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_fs.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_fs.cpython-311.pyc new file mode 100644 index 00000000..6ce2fbb4 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_fs.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_hg.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_hg.cpython-311.pyc new file mode 100644 index 00000000..5845b236 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_hg.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_host.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_host.cpython-311.pyc new file mode 100644 index 00000000..af7c57f7 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_host.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_info.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_info.cpython-311.pyc new file mode 100644 index 00000000..e7eb0e95 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_info.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_inventory.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_inventory.cpython-311.pyc new file mode 100644 index 00000000..c2f25bff Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_inventory.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_kmip.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_kmip.cpython-311.pyc new file mode 100644 index 00000000..8268c2b6 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_kmip.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_maintenance.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_maintenance.cpython-311.pyc new file mode 100644 index 00000000..09eb5810 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_maintenance.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_network.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_network.cpython-311.pyc new file mode 100644 index 00000000..607e7d50 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_network.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ntp.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ntp.cpython-311.pyc new file mode 100644 index 00000000..706fbf88 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ntp.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_offload.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_offload.cpython-311.pyc new file mode 100644 index 00000000..bb9555ef Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_offload.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pg.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pg.cpython-311.pyc new file mode 100644 index 00000000..a85cc19a Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pg.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pgsched.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pgsched.cpython-311.pyc new file mode 100644 index 00000000..a470721f Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pgsched.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pgsnap.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pgsnap.cpython-311.pyc new file mode 100644 index 00000000..390ebf87 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pgsnap.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_phonehome.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_phonehome.cpython-311.pyc new file mode 100644 index 00000000..da0755c8 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_phonehome.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pod.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pod.cpython-311.pyc new file mode 100644 index 00000000..587f2888 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pod.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pod_replica.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pod_replica.cpython-311.pyc new file mode 100644 index 00000000..a5f4635b Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_pod_replica.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_policy.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_policy.cpython-311.pyc new file mode 100644 index 00000000..32699dfa Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_policy.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_proxy.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_proxy.cpython-311.pyc new file mode 100644 index 00000000..836d7d67 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_proxy.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ra.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ra.cpython-311.pyc new file mode 100644 index 00000000..3502bed8 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_ra.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_saml.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_saml.cpython-311.pyc new file mode 100644 index 00000000..cde9975c Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_saml.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_smis.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_smis.cpython-311.pyc new file mode 100644 index 00000000..835fc330 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_smis.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_smtp.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_smtp.cpython-311.pyc new file mode 100644 index 00000000..5f3f7738 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_smtp.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_snap.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_snap.cpython-311.pyc new file mode 100644 index 00000000..b089582c Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_snap.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_snmp.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_snmp.cpython-311.pyc new file mode 100644 index 00000000..5c13f929 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_snmp.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_sso.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_sso.cpython-311.pyc new file mode 100644 index 00000000..1440a398 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_sso.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_subnet.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_subnet.cpython-311.pyc new file mode 100644 index 00000000..b669e23c Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_subnet.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_syslog.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_syslog.cpython-311.pyc new file mode 100644 index 00000000..a15ef987 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_syslog.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_syslog_settings.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_syslog_settings.cpython-311.pyc new file mode 100644 index 00000000..0ebca3ec Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_syslog_settings.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_timeout.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_timeout.cpython-311.pyc new file mode 100644 index 00000000..deac95fb Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_timeout.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_user.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_user.cpython-311.pyc new file mode 100644 index 00000000..55f2cd7f Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_user.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vg.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vg.cpython-311.pyc new file mode 100644 index 00000000..34dd37ec Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vg.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vlan.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vlan.cpython-311.pyc new file mode 100644 index 00000000..a983bdac Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vlan.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vnc.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vnc.cpython-311.pyc new file mode 100644 index 00000000..e998702e Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_vnc.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_volume.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_volume.cpython-311.pyc new file mode 100644 index 00000000..3ce481f7 Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_volume.cpython-311.pyc differ diff --git a/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_volume_tags.cpython-311.pyc b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_volume_tags.cpython-311.pyc new file mode 100644 index 00000000..aaafb1ff Binary files /dev/null and b/collection/purestorage/flasharray/plugins/modules/__pycache__/purefa_volume_tags.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/doc_fragments/__pycache__/purestorage.cpython-311.pyc b/collection/purestorage/flashblade/plugins/doc_fragments/__pycache__/purestorage.cpython-311.pyc new file mode 100644 index 00000000..e9088e03 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/doc_fragments/__pycache__/purestorage.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/module_utils/__pycache__/purefb.cpython-311.pyc b/collection/purestorage/flashblade/plugins/module_utils/__pycache__/purefb.cpython-311.pyc new file mode 100644 index 00000000..3cfe63d2 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/module_utils/__pycache__/purefb.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ad.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ad.cpython-311.pyc new file mode 100644 index 00000000..478a3f4f Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ad.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_admin.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_admin.cpython-311.pyc new file mode 100644 index 00000000..02a9545f Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_admin.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_alert.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_alert.cpython-311.pyc new file mode 100644 index 00000000..bff0a1af Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_alert.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_apiclient.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_apiclient.cpython-311.pyc new file mode 100644 index 00000000..214a69c0 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_apiclient.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_banner.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_banner.cpython-311.pyc new file mode 100644 index 00000000..6d891166 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_banner.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bladename.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bladename.cpython-311.pyc new file mode 100644 index 00000000..3bd52e39 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bladename.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bucket.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bucket.cpython-311.pyc new file mode 100644 index 00000000..b3fb0ea2 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bucket.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bucket_replica.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bucket_replica.cpython-311.pyc new file mode 100644 index 00000000..822583b3 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_bucket_replica.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_certgrp.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_certgrp.cpython-311.pyc new file mode 100644 index 00000000..cbd3a4cd Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_certgrp.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_certs.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_certs.cpython-311.pyc new file mode 100644 index 00000000..c97f8476 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_certs.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_connect.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_connect.cpython-311.pyc new file mode 100644 index 00000000..021dab2a Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_connect.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_dns.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_dns.cpython-311.pyc new file mode 100644 index 00000000..5039e5ae Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_dns.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ds.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ds.cpython-311.pyc new file mode 100644 index 00000000..b6020f34 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ds.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_dsrole.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_dsrole.cpython-311.pyc new file mode 100644 index 00000000..05ceaa37 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_dsrole.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_eula.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_eula.cpython-311.pyc new file mode 100644 index 00000000..0dfa47d1 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_eula.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_fs.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_fs.cpython-311.pyc new file mode 100644 index 00000000..05cb045e Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_fs.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_fs_replica.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_fs_replica.cpython-311.pyc new file mode 100644 index 00000000..7b9b8ffa Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_fs_replica.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_groupquota.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_groupquota.cpython-311.pyc new file mode 100644 index 00000000..2e90078a Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_groupquota.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_info.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_info.cpython-311.pyc new file mode 100644 index 00000000..c9594e70 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_info.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_inventory.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_inventory.cpython-311.pyc new file mode 100644 index 00000000..695220d0 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_inventory.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_keytabs.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_keytabs.cpython-311.pyc new file mode 100644 index 00000000..11223cb8 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_keytabs.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_lag.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_lag.cpython-311.pyc new file mode 100644 index 00000000..f16f33ad Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_lag.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_lifecycle.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_lifecycle.cpython-311.pyc new file mode 100644 index 00000000..c7ec3677 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_lifecycle.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_network.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_network.cpython-311.pyc new file mode 100644 index 00000000..55ae1764 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_network.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ntp.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ntp.cpython-311.pyc new file mode 100644 index 00000000..327c8c2b Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ntp.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_phonehome.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_phonehome.cpython-311.pyc new file mode 100644 index 00000000..fb635c83 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_phonehome.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_policy.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_policy.cpython-311.pyc new file mode 100644 index 00000000..5ee9dc7d Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_policy.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_proxy.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_proxy.cpython-311.pyc new file mode 100644 index 00000000..195731c1 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_proxy.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ra.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ra.cpython-311.pyc new file mode 100644 index 00000000..2d4fb308 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_ra.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_remote_cred.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_remote_cred.cpython-311.pyc new file mode 100644 index 00000000..3ae9ac0f Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_remote_cred.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_s3acc.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_s3acc.cpython-311.pyc new file mode 100644 index 00000000..2e5095e2 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_s3acc.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_s3user.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_s3user.cpython-311.pyc new file mode 100644 index 00000000..1952a4b6 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_s3user.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_smtp.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_smtp.cpython-311.pyc new file mode 100644 index 00000000..53b4128a Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_smtp.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snap.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snap.cpython-311.pyc new file mode 100644 index 00000000..8974ce09 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snap.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snmp_agent.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snmp_agent.cpython-311.pyc new file mode 100644 index 00000000..eb7fe69d Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snmp_agent.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snmp_mgr.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snmp_mgr.cpython-311.pyc new file mode 100644 index 00000000..3917b081 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_snmp_mgr.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_subnet.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_subnet.cpython-311.pyc new file mode 100644 index 00000000..8c790e71 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_subnet.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_syslog.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_syslog.cpython-311.pyc new file mode 100644 index 00000000..07338810 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_syslog.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_target.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_target.cpython-311.pyc new file mode 100644 index 00000000..b17ac4a2 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_target.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_timeout.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_timeout.cpython-311.pyc new file mode 100644 index 00000000..79a2516c Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_timeout.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_user.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_user.cpython-311.pyc new file mode 100644 index 00000000..f43304cc Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_user.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_userpolicy.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_userpolicy.cpython-311.pyc new file mode 100644 index 00000000..7f3a6285 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_userpolicy.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_userquota.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_userquota.cpython-311.pyc new file mode 100644 index 00000000..e574929f Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_userquota.cpython-311.pyc differ diff --git a/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_virtualhost.cpython-311.pyc b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_virtualhost.cpython-311.pyc new file mode 100644 index 00000000..07f1b839 Binary files /dev/null and b/collection/purestorage/flashblade/plugins/modules/__pycache__/purefb_virtualhost.cpython-311.pyc differ diff --git a/collection/sensu/sensu_go/vagrant/windows/Vagrantfile b/collection/sensu/sensu_go/vagrant/windows/Vagrantfile new file mode 100644 index 00000000..ebc89336 --- /dev/null +++ b/collection/sensu/sensu_go/vagrant/windows/Vagrantfile @@ -0,0 +1,15 @@ +Vagrant.configure("2") do |config| + config.vm.define "backend" do |backend| + backend.vm.box = "centos/8" + backend.vm.network "private_network", ip: "192.168.50.91" + backend.vm.provision "ansible" do |ansible| + ansible.playbook = "back.yaml" + end + end + + config.vm.define "agent" do |agent| + agent.vm.box = "gusztavvargadr/windows-10" + agent.vm.hostname = "host-win" + agent.vm.network "private_network", ip: "192.168.50.90" + end +end diff --git a/collection/sensu/sensu_go/vagrant/windows/back.yaml b/collection/sensu/sensu_go/vagrant/windows/back.yaml new file mode 100644 index 00000000..8ede29ba --- /dev/null +++ b/collection/sensu/sensu_go/vagrant/windows/back.yaml @@ -0,0 +1,18 @@ +--- +- name: Install backend + hosts: all + become: true + + tasks: + - name: Install cli + include_role: + name: sensu.sensu_go.install + vars: + version: latest + components: [ sensu-go-cli ] + + - name: Install backend + include_role: + name: sensu.sensu_go.backend + vars: + version: latest diff --git a/collection/sensu/sensu_go/vagrant/windows/inventory.yaml b/collection/sensu/sensu_go/vagrant/windows/inventory.yaml new file mode 100644 index 00000000..8cee9953 --- /dev/null +++ b/collection/sensu/sensu_go/vagrant/windows/inventory.yaml @@ -0,0 +1,10 @@ +--- +all: + hosts: + windows: + ansible_host: 192.168.50.90 + ansible_port: 5985 + ansible_user: vagrant + ansible_password: vagrant + ansible_connection: winrm + ansible_winrm_transport: basic diff --git a/collection/sensu/sensu_go/vagrant/windows/play.yaml b/collection/sensu/sensu_go/vagrant/windows/play.yaml new file mode 100644 index 00000000..fcf2137d --- /dev/null +++ b/collection/sensu/sensu_go/vagrant/windows/play.yaml @@ -0,0 +1,14 @@ +--- +- name: Install windows agent + hosts: windows + + tasks: + - name: Install agent + include_role: + name: sensu.sensu_go.agent + vars: + version: latest + agent_config: + name: win + backend-url: + - ws://192.168.50.91:8081 diff --git a/collection/theforeman/foreman/plugins/callback/__pycache__/foreman.cpython-311.pyc b/collection/theforeman/foreman/plugins/callback/__pycache__/foreman.cpython-311.pyc new file mode 100644 index 00000000..800b9636 Binary files /dev/null and b/collection/theforeman/foreman/plugins/callback/__pycache__/foreman.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/doc_fragments/__pycache__/foreman.cpython-311.pyc b/collection/theforeman/foreman/plugins/doc_fragments/__pycache__/foreman.cpython-311.pyc new file mode 100644 index 00000000..72759efe Binary files /dev/null and b/collection/theforeman/foreman/plugins/doc_fragments/__pycache__/foreman.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/filter/__pycache__/foreman.cpython-311.pyc b/collection/theforeman/foreman/plugins/filter/__pycache__/foreman.cpython-311.pyc new file mode 100644 index 00000000..e67783c4 Binary files /dev/null and b/collection/theforeman/foreman/plugins/filter/__pycache__/foreman.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/inventory/__pycache__/foreman.cpython-311.pyc b/collection/theforeman/foreman/plugins/inventory/__pycache__/foreman.cpython-311.pyc new file mode 100644 index 00000000..397a3aa6 Binary files /dev/null and b/collection/theforeman/foreman/plugins/inventory/__pycache__/foreman.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/module_utils/__pycache__/_apypie.cpython-311.pyc b/collection/theforeman/foreman/plugins/module_utils/__pycache__/_apypie.cpython-311.pyc new file mode 100644 index 00000000..f90dbcb6 Binary files /dev/null and b/collection/theforeman/foreman/plugins/module_utils/__pycache__/_apypie.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/module_utils/__pycache__/foreman_helper.cpython-311.pyc b/collection/theforeman/foreman/plugins/module_utils/__pycache__/foreman_helper.cpython-311.pyc new file mode 100644 index 00000000..0ebe9aee Binary files /dev/null and b/collection/theforeman/foreman/plugins/module_utils/__pycache__/foreman_helper.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/activation_key.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/activation_key.cpython-311.pyc new file mode 100644 index 00000000..88d6249b Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/activation_key.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/architecture.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/architecture.cpython-311.pyc new file mode 100644 index 00000000..199e69c5 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/architecture.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/auth_source_ldap.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/auth_source_ldap.cpython-311.pyc new file mode 100644 index 00000000..64b053ae Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/auth_source_ldap.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/bookmark.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/bookmark.cpython-311.pyc new file mode 100644 index 00000000..df3832a9 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/bookmark.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/compute_attribute.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/compute_attribute.cpython-311.pyc new file mode 100644 index 00000000..3272e536 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/compute_attribute.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/compute_profile.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/compute_profile.cpython-311.pyc new file mode 100644 index 00000000..8cddccf5 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/compute_profile.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/compute_resource.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/compute_resource.cpython-311.pyc new file mode 100644 index 00000000..62daa7c9 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/compute_resource.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/config_group.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/config_group.cpython-311.pyc new file mode 100644 index 00000000..dcfc4d69 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/config_group.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_credential.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_credential.cpython-311.pyc new file mode 100644 index 00000000..df3c1671 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_credential.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_upload.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_upload.cpython-311.pyc new file mode 100644 index 00000000..5e9d4c27 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_upload.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_view.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view.cpython-311.pyc new file mode 100644 index 00000000..e0e4af9d Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_filter.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_filter.cpython-311.pyc new file mode 100644 index 00000000..77556ddc Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_filter.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_info.cpython-311.pyc new file mode 100644 index 00000000..d92809de Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_version.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_version.cpython-311.pyc new file mode 100644 index 00000000..867fbb2a Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_version.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_version_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_version_info.cpython-311.pyc new file mode 100644 index 00000000..9f505118 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/content_view_version_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/domain.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/domain.cpython-311.pyc new file mode 100644 index 00000000..55ec1628 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/domain.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/domain_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/domain_info.cpython-311.pyc new file mode 100644 index 00000000..296f30fc Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/domain_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/external_usergroup.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/external_usergroup.cpython-311.pyc new file mode 100644 index 00000000..9256d817 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/external_usergroup.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/global_parameter.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/global_parameter.cpython-311.pyc new file mode 100644 index 00000000..10c510c3 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/global_parameter.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/hardware_model.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/hardware_model.cpython-311.pyc new file mode 100644 index 00000000..fe40898e Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/hardware_model.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/host.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/host.cpython-311.pyc new file mode 100644 index 00000000..7af098b8 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/host.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/host_collection.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/host_collection.cpython-311.pyc new file mode 100644 index 00000000..18378ec3 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/host_collection.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/host_errata_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/host_errata_info.cpython-311.pyc new file mode 100644 index 00000000..98cb3f24 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/host_errata_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/host_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/host_info.cpython-311.pyc new file mode 100644 index 00000000..f2815365 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/host_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/host_power.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/host_power.cpython-311.pyc new file mode 100644 index 00000000..c274d4b3 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/host_power.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/hostgroup.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/hostgroup.cpython-311.pyc new file mode 100644 index 00000000..bf8c9f0f Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/hostgroup.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/http_proxy.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/http_proxy.cpython-311.pyc new file mode 100644 index 00000000..62827933 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/http_proxy.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/image.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/image.cpython-311.pyc new file mode 100644 index 00000000..556d6731 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/image.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/installation_medium.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/installation_medium.cpython-311.pyc new file mode 100644 index 00000000..508755e4 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/installation_medium.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/job_invocation.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/job_invocation.cpython-311.pyc new file mode 100644 index 00000000..53e6669d Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/job_invocation.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/job_template.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/job_template.cpython-311.pyc new file mode 100644 index 00000000..1ba57d76 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/job_template.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/lifecycle_environment.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/lifecycle_environment.cpython-311.pyc new file mode 100644 index 00000000..2fdd157c Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/lifecycle_environment.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/location.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/location.cpython-311.pyc new file mode 100644 index 00000000..166c5766 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/location.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/operatingsystem.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/operatingsystem.cpython-311.pyc new file mode 100644 index 00000000..c1a81306 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/operatingsystem.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/organization.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/organization.cpython-311.pyc new file mode 100644 index 00000000..d146ad25 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/organization.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/os_default_template.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/os_default_template.cpython-311.pyc new file mode 100644 index 00000000..a8e45d72 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/os_default_template.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/partition_table.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/partition_table.cpython-311.pyc new file mode 100644 index 00000000..988b9647 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/partition_table.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/product.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/product.cpython-311.pyc new file mode 100644 index 00000000..08d7e09d Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/product.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/provisioning_template.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/provisioning_template.cpython-311.pyc new file mode 100644 index 00000000..321dff99 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/provisioning_template.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/puppet_environment.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/puppet_environment.cpython-311.pyc new file mode 100644 index 00000000..4d301609 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/puppet_environment.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/puppetclasses_import.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/puppetclasses_import.cpython-311.pyc new file mode 100644 index 00000000..6623720b Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/puppetclasses_import.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/realm.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/realm.cpython-311.pyc new file mode 100644 index 00000000..353a99cb Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/realm.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/redhat_manifest.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/redhat_manifest.cpython-311.pyc new file mode 100644 index 00000000..b9ae07db Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/redhat_manifest.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/repository.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/repository.cpython-311.pyc new file mode 100644 index 00000000..5271db52 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/repository.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/repository_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_info.cpython-311.pyc new file mode 100644 index 00000000..8afc64ea Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/repository_set.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_set.cpython-311.pyc new file mode 100644 index 00000000..df95be70 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_set.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/repository_set_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_set_info.cpython-311.pyc new file mode 100644 index 00000000..f7316071 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_set_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/repository_sync.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_sync.cpython-311.pyc new file mode 100644 index 00000000..5e692fc9 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/repository_sync.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/resource_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/resource_info.cpython-311.pyc new file mode 100644 index 00000000..c810dae6 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/resource_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/role.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/role.cpython-311.pyc new file mode 100644 index 00000000..d8efed35 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/role.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/scap_content.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/scap_content.cpython-311.pyc new file mode 100644 index 00000000..f3e8bae4 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/scap_content.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/scap_tailoring_file.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/scap_tailoring_file.cpython-311.pyc new file mode 100644 index 00000000..5d071aaa Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/scap_tailoring_file.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/scc_account.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/scc_account.cpython-311.pyc new file mode 100644 index 00000000..49f607f9 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/scc_account.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/scc_product.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/scc_product.cpython-311.pyc new file mode 100644 index 00000000..de8d03da Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/scc_product.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/setting.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/setting.cpython-311.pyc new file mode 100644 index 00000000..088beec8 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/setting.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/setting_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/setting_info.cpython-311.pyc new file mode 100644 index 00000000..6d7631c7 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/setting_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/smart_class_parameter.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/smart_class_parameter.cpython-311.pyc new file mode 100644 index 00000000..a7e2ab61 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/smart_class_parameter.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/smart_proxy.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/smart_proxy.cpython-311.pyc new file mode 100644 index 00000000..7671c9e8 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/smart_proxy.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/snapshot.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/snapshot.cpython-311.pyc new file mode 100644 index 00000000..3d9dbb22 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/snapshot.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/status_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/status_info.cpython-311.pyc new file mode 100644 index 00000000..3a3aee64 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/status_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/subnet.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/subnet.cpython-311.pyc new file mode 100644 index 00000000..0de6c77a Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/subnet.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/subnet_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/subnet_info.cpython-311.pyc new file mode 100644 index 00000000..f64d77af Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/subnet_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/subscription_info.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/subscription_info.cpython-311.pyc new file mode 100644 index 00000000..d103e43f Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/subscription_info.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/subscription_manifest.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/subscription_manifest.cpython-311.pyc new file mode 100644 index 00000000..998bc4c3 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/subscription_manifest.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/sync_plan.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/sync_plan.cpython-311.pyc new file mode 100644 index 00000000..7d115ac3 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/sync_plan.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/templates_import.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/templates_import.cpython-311.pyc new file mode 100644 index 00000000..b55e68da Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/templates_import.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/user.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/user.cpython-311.pyc new file mode 100644 index 00000000..74c34b87 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/user.cpython-311.pyc differ diff --git a/collection/theforeman/foreman/plugins/modules/__pycache__/usergroup.cpython-311.pyc b/collection/theforeman/foreman/plugins/modules/__pycache__/usergroup.cpython-311.pyc new file mode 100644 index 00000000..66c38e05 Binary files /dev/null and b/collection/theforeman/foreman/plugins/modules/__pycache__/usergroup.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/lookup/__pycache__/cpm_metering.cpython-311.pyc b/collection/wti/remote/plugins/lookup/__pycache__/cpm_metering.cpython-311.pyc new file mode 100644 index 00000000..5e143f3a Binary files /dev/null and b/collection/wti/remote/plugins/lookup/__pycache__/cpm_metering.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/lookup/__pycache__/cpm_status.cpython-311.pyc b/collection/wti/remote/plugins/lookup/__pycache__/cpm_status.cpython-311.pyc new file mode 100644 index 00000000..7ec76044 Binary files /dev/null and b/collection/wti/remote/plugins/lookup/__pycache__/cpm_status.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_alarm_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_alarm_info.cpython-311.pyc new file mode 100644 index 00000000..0674c162 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_alarm_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_config_backup.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_config_backup.cpython-311.pyc new file mode 100644 index 00000000..f2bfdd43 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_config_backup.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_config_restore.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_config_restore.cpython-311.pyc new file mode 100644 index 00000000..e7a2b4a1 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_config_restore.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_current_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_current_info.cpython-311.pyc new file mode 100644 index 00000000..df15d597 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_current_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_firmware_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_firmware_info.cpython-311.pyc new file mode 100644 index 00000000..d752831d Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_firmware_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_firmware_update.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_firmware_update.cpython-311.pyc new file mode 100644 index 00000000..3c124030 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_firmware_update.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_hostname_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_hostname_config.cpython-311.pyc new file mode 100644 index 00000000..7e64b95c Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_hostname_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_hostname_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_hostname_info.cpython-311.pyc new file mode 100644 index 00000000..b8bb4efa Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_hostname_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_interface_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_interface_config.cpython-311.pyc new file mode 100644 index 00000000..171174bf Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_interface_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_interface_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_interface_info.cpython-311.pyc new file mode 100644 index 00000000..3be382b8 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_interface_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_iptables_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_iptables_config.cpython-311.pyc new file mode 100644 index 00000000..55494eae Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_iptables_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_iptables_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_iptables_info.cpython-311.pyc new file mode 100644 index 00000000..729fb8fc Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_iptables_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_plugconfig.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_plugconfig.cpython-311.pyc new file mode 100644 index 00000000..f37a6169 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_plugconfig.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_plugcontrol.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_plugcontrol.cpython-311.pyc new file mode 100644 index 00000000..9ed1f670 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_plugcontrol.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_power_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_power_info.cpython-311.pyc new file mode 100644 index 00000000..af274574 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_power_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_action_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_action_info.cpython-311.pyc new file mode 100644 index 00000000..3a35da98 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_action_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_action_set.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_action_set.cpython-311.pyc new file mode 100644 index 00000000..5cbd9706 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_action_set.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_config.cpython-311.pyc new file mode 100644 index 00000000..b6201f89 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_info.cpython-311.pyc new file mode 100644 index 00000000..8d07c62f Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_serial_port_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_snmp_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_snmp_config.cpython-311.pyc new file mode 100644 index 00000000..6b1bdb56 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_snmp_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_snmp_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_snmp_info.cpython-311.pyc new file mode 100644 index 00000000..540a7f1b Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_snmp_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_status_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_status_info.cpython-311.pyc new file mode 100644 index 00000000..21c02c18 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_status_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_client_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_client_config.cpython-311.pyc new file mode 100644 index 00000000..60e3bd25 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_client_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_client_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_client_info.cpython-311.pyc new file mode 100644 index 00000000..f2a56f50 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_client_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_server_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_server_config.cpython-311.pyc new file mode 100644 index 00000000..af3f2836 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_server_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_server_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_server_info.cpython-311.pyc new file mode 100644 index 00000000..64e2c318 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_syslog_server_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_temp_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_temp_info.cpython-311.pyc new file mode 100644 index 00000000..f32b6256 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_temp_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_time_config.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_time_config.cpython-311.pyc new file mode 100644 index 00000000..d3956ff5 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_time_config.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_time_info.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_time_info.cpython-311.pyc new file mode 100644 index 00000000..56076a95 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_time_info.cpython-311.pyc differ diff --git a/collection/wti/remote/plugins/modules/__pycache__/cpm_user.cpython-311.pyc b/collection/wti/remote/plugins/modules/__pycache__/cpm_user.cpython-311.pyc new file mode 100644 index 00000000..ed862632 Binary files /dev/null and b/collection/wti/remote/plugins/modules/__pycache__/cpm_user.cpython-311.pyc differ diff --git a/kubespray/roles/exem-infra/.DS_Store b/kubespray/roles/exem-infra/.DS_Store new file mode 100644 index 00000000..4deefd85 Binary files /dev/null and b/kubespray/roles/exem-infra/.DS_Store differ diff --git a/kubespray/roles/exem-infra/files/.DS_Store b/kubespray/roles/exem-infra/files/.DS_Store new file mode 100644 index 00000000..486056bd Binary files /dev/null and b/kubespray/roles/exem-infra/files/.DS_Store differ diff --git a/kubespray/roles/exem-infra/files/files_repo/.DS_Store b/kubespray/roles/exem-infra/files/files_repo/.DS_Store new file mode 100644 index 00000000..65790a73 Binary files /dev/null and b/kubespray/roles/exem-infra/files/files_repo/.DS_Store differ diff --git a/kubespray/roles/exem-infra/tasks/.DS_Store b/kubespray/roles/exem-infra/tasks/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/kubespray/roles/exem-infra/tasks/.DS_Store differ diff --git a/kubespray/roles/kubespray-defaults/defaults/main/.download.yml.swp b/kubespray/roles/kubespray-defaults/defaults/main/.download.yml.swp new file mode 100644 index 00000000..9789199d Binary files /dev/null and b/kubespray/roles/kubespray-defaults/defaults/main/.download.yml.swp differ diff --git a/kubespray/roles/registry/.DS_Store b/kubespray/roles/registry/.DS_Store new file mode 100644 index 00000000..2a1439e6 Binary files /dev/null and b/kubespray/roles/registry/.DS_Store differ diff --git a/kubespray/roles/registry/files/.DS_Store b/kubespray/roles/registry/files/.DS_Store new file mode 100644 index 00000000..46a85002 Binary files /dev/null and b/kubespray/roles/registry/files/.DS_Store differ diff --git a/kubespray/roles/registry/files/images/.DS_Store b/kubespray/roles/registry/files/images/.DS_Store new file mode 100644 index 00000000..b00da0b6 Binary files /dev/null and b/kubespray/roles/registry/files/images/.DS_Store differ diff --git a/kubespray/roles/registry/files/images/data/.DS_Store b/kubespray/roles/registry/files/images/data/.DS_Store new file mode 100644 index 00000000..4b68a2d3 Binary files /dev/null and b/kubespray/roles/registry/files/images/data/.DS_Store differ diff --git a/kubespray/roles/registry/tasks/.DS_Store b/kubespray/roles/registry/tasks/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/kubespray/roles/registry/tasks/.DS_Store differ