mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
Upgrade minimum Ansible version to v2.14 and test against Ansible v2.14 and v2.15
chore: bump ansible versions
This commit is contained in:
commit
fadb559390
342 changed files with 4464 additions and 4371 deletions
19
.github/workflows/ansible-integration-tests.yml
vendored
19
.github/workflows/ansible-integration-tests.yml
vendored
|
@ -1,11 +1,12 @@
|
|||
name: "Run integration tests for the cloud.google collection"
|
||||
---
|
||||
name: Run integration tests for the cloud.google collection
|
||||
on:
|
||||
pull_request: {}
|
||||
push:
|
||||
branches: master
|
||||
env:
|
||||
GCP_SERVICE_ACCOUNT: "github-ci@ansible-gcp-ci.iam.gserviceaccount.com"
|
||||
GCP_PROJECT: "ansible-gcp-ci"
|
||||
GCP_SERVICE_ACCOUNT: github-ci@ansible-gcp-ci.iam.gserviceaccount.com
|
||||
GCP_PROJECT: ansible-gcp-ci
|
||||
GCP_FOLDER_ID: "542027184392"
|
||||
jobs:
|
||||
integration:
|
||||
|
@ -18,9 +19,11 @@ jobs:
|
|||
run:
|
||||
working-directory: ansible_collections/google/cloud
|
||||
strategy:
|
||||
max-parallel: 1
|
||||
matrix:
|
||||
ansible_version:
|
||||
- stable-2.13
|
||||
- stable-2.14
|
||||
- stable-2.15
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v4
|
||||
|
@ -53,15 +56,15 @@ jobs:
|
|||
env:
|
||||
CI_SERVICE_ACCOUNT_FILE_CONTENTS: ${{ secrets.CI_SERVICE_ACCOUNT_FILE_CONTENTS }}
|
||||
with:
|
||||
service_account: "$GCP_SERVICE_ACCOUNT"
|
||||
credentials_json: "${{ secrets.CI_SERVICE_ACCOUNT_FILE_CONTENTS }}"
|
||||
service_account: $GCP_SERVICE_ACCOUNT
|
||||
credentials_json: ${{ secrets.CI_SERVICE_ACCOUNT_FILE_CONTENTS }}
|
||||
- name: Set up Cloud SDK
|
||||
uses: google-github-actions/setup-gcloud@v1
|
||||
- name: Run cleanup
|
||||
run: |
|
||||
run: |
|
||||
./scripts/bootstrap-project.sh $GCP_PROJECT $GCP_SERVICE_ACCOUNT
|
||||
./scripts/cleanup-project.sh $GCP_PROJECT $GCP_FOLDER_ID
|
||||
# run tests
|
||||
- name: Run integration tests
|
||||
# Add the -vvv flag to print out more output
|
||||
run: ansible-test integration -v --color --python 3.9 --venv-system-site-packages
|
||||
run: ansible-test integration -v --color --python 3.9 --venv-system-site-packages
|
||||
|
|
12
.github/workflows/ansible-test.yml
vendored
12
.github/workflows/ansible-test.yml
vendored
|
@ -1,4 +1,5 @@
|
|||
name: "Run tests for the cloud.google collection"
|
||||
---
|
||||
name: Run tests for the cloud.google collection
|
||||
on: [pull_request]
|
||||
env:
|
||||
PYTHON_VERSION: "3.9" # minimum version for Ansible 2.15
|
||||
|
@ -12,6 +13,7 @@ jobs:
|
|||
matrix:
|
||||
ansible_version:
|
||||
- stable-2.14
|
||||
- stable-2.15
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v4
|
||||
|
@ -36,7 +38,7 @@ jobs:
|
|||
# validate-modules cannot be turned on until #498 is resolved.
|
||||
run: ansible-test sanity -v --color --skip validate-modules
|
||||
- name: Install ansible-lint
|
||||
run: pip install ansible-lint==6.13.1
|
||||
run: pip install ansible-lint==6.22.0
|
||||
- name: Run ansible-lint
|
||||
run: ansible-lint
|
||||
unit:
|
||||
|
@ -48,7 +50,7 @@ jobs:
|
|||
matrix:
|
||||
ansible_version:
|
||||
- stable-2.14
|
||||
- stable-2.11
|
||||
- stable-2.15
|
||||
steps:
|
||||
- name: check out code
|
||||
uses: actions/checkout@v4
|
||||
|
@ -57,7 +59,7 @@ jobs:
|
|||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "${{ env.PYTHON_VERSION }}"
|
||||
python-version: ${{ env.PYTHON_VERSION }}
|
||||
- name: Install dependencies
|
||||
run: pip install -r requirements.txt
|
||||
- name: Install test dependencies
|
||||
|
@ -65,4 +67,4 @@ jobs:
|
|||
- name: Install ansible-base (${{ matrix.ansible_version }})
|
||||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
||||
- name: Run unit tests
|
||||
run: ansible-test units -v --color --python "$PYTHON_VERSION"
|
||||
run: ansible-test units -v --color --python "$PYTHON_VERSION"
|
||||
|
|
2
.github/workflows/automationhub.yml
vendored
2
.github/workflows/automationhub.yml
vendored
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
name: Upload release to Automation Hub
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
15
.github/workflows/gcloud.yml
vendored
15
.github/workflows/gcloud.yml
vendored
|
@ -1,15 +1,16 @@
|
|||
name: "google.cloud.gcloud"
|
||||
---
|
||||
name: google.cloud.gcloud
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'roles/gcloud/**'
|
||||
- '.github/workflows/gcloud.yml'
|
||||
- 'molecule/gcloud/**'
|
||||
- roles/gcloud/**
|
||||
- .github/workflows/gcloud.yml
|
||||
- molecule/gcloud/**
|
||||
pull_request:
|
||||
paths:
|
||||
- 'roles/gcloud/**'
|
||||
- '.github/workflows/gcloud.yml'
|
||||
- 'molecule/gcloud/**'
|
||||
- roles/gcloud/**
|
||||
- .github/workflows/gcloud.yml
|
||||
- molecule/gcloud/**
|
||||
jobs:
|
||||
molecule:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
3
.github/workflows/gcsfuse.yml
vendored
3
.github/workflows/gcsfuse.yml
vendored
|
@ -1,4 +1,5 @@
|
|||
name: "google.cloud.gcsfuse"
|
||||
---
|
||||
name: google.cloud.gcsfuse
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
|
|
2
.github/workflows/pythonpublish.yml
vendored
2
.github/workflows/pythonpublish.yml
vendored
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
name: Upload release to Galaxy
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -21,7 +21,7 @@ git clone <url> $TARGET_DIR/ansible_collections/google/cloud
|
|||
Then set up your Python virtual environment:
|
||||
|
||||
```shell
|
||||
cd $TARGET_DIR/ansible_collections/google
|
||||
cd $TARGET_DIR/ansible_collections/google/cloud
|
||||
python3 -m venv venv
|
||||
. ./venv/bin/activate
|
||||
pip3 install -r requirements.txt
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,57 +1,52 @@
|
|||
ancestor: null
|
||||
---
|
||||
ancestor:
|
||||
releases:
|
||||
1.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- Disk has been fixed to send the sourceSnapshot parameter.
|
||||
- gcp_cloudtasks_queue - was not functional before, and is now functional.
|
||||
- gcp_compute_* - these resources use the correct selflink (www.googleapis.com)
|
||||
as the domain, no longer erroneously reporting changes after an execution.
|
||||
- gcp_compute_backend_service - no longer erroneously reports changes after
|
||||
an execution for ``capacity_scaler``.
|
||||
- gcp_container_cluster - support GKE clusters greater than 1.19+, which cannot
|
||||
use basic-auth.
|
||||
- gcp_crypto_key - skip_initial_version_creation defaults to the correct value.
|
||||
- gcp_iam_role - now properly undeletes and recognizes soft deleted roles as
|
||||
absent.
|
||||
- gcp_iam_role - update of a role is functional (GitHub
|
||||
- gcp_spanner_database - recognize a non-existent resource as absent.
|
||||
- gcp_storage_object - fix for correct version of dependency requirement.
|
||||
- Disk has been fixed to send the sourceSnapshot parameter.
|
||||
- gcp_cloudtasks_queue - was not functional before, and is now functional.
|
||||
- gcp_compute_* - these resources use the correct selflink (www.googleapis.com) as the domain, no longer erroneously reporting changes after an execution.
|
||||
- gcp_compute_backend_service - no longer erroneously reports changes after an execution for ``capacity_scaler``.
|
||||
- gcp_container_cluster - support GKE clusters greater than 1.19+, which cannot use basic-auth.
|
||||
- gcp_crypto_key - skip_initial_version_creation defaults to the correct value.
|
||||
- gcp_iam_role - now properly undeletes and recognizes soft deleted roles as absent.
|
||||
- gcp_iam_role - update of a role is functional (GitHub
|
||||
- gcp_spanner_database - recognize a non-existent resource as absent.
|
||||
- gcp_storage_object - fix for correct version of dependency requirement.
|
||||
minor_changes:
|
||||
- GCE inventory plugin - a new option ``name_suffix``, to add a suffix to the
|
||||
name parameter.
|
||||
- GCE inventory plugin - a new option ``name_suffix``, to add a suffix to the name parameter.
|
||||
fragments:
|
||||
- 0001_disk.yml
|
||||
- bugfixes.yaml
|
||||
release_date: '2022-12-16'
|
||||
- "0001_disk.yml"
|
||||
- bugfixes.yaml
|
||||
release_date: "2022-12-16"
|
||||
1.1.1:
|
||||
changes:
|
||||
bugfixes:
|
||||
- fix collection to work with Python 2.7
|
||||
- fix collection to work with Python 2.7
|
||||
fragments:
|
||||
- fix-2.7.yml
|
||||
release_date: '2022-12-16'
|
||||
- fix-2.7.yml
|
||||
release_date: "2022-12-16"
|
||||
1.1.2:
|
||||
changes:
|
||||
bugfixes:
|
||||
- fix `gcp_compute` no longer being a valid name of the inventory plugin
|
||||
- fix `gcp_compute` no longer being a valid name of the inventory plugin
|
||||
fragments:
|
||||
- fix-inventory-plugin.yml
|
||||
release_date: '2022-12-21'
|
||||
- fix-inventory-plugin.yml
|
||||
release_date: "2022-12-21"
|
||||
1.1.3:
|
||||
changes:
|
||||
bugfixes:
|
||||
- 'gcp_compute_instance_info: fix incorrect documentation for filter which incorrectly
|
||||
pointed to the gcloud filter logic rather than the API (fixes #549)'
|
||||
- "gcp_compute_instance_info: fix incorrect documentation for filter which incorrectly pointed to the gcloud filter logic rather than the API (fixes #549)"
|
||||
fragments:
|
||||
- gce-changelog.yaml
|
||||
release_date: '2023-03-04'
|
||||
- gce-changelog.yaml
|
||||
release_date: "2023-03-04"
|
||||
1.2.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- Use default service account if `service_account_email` is unset.
|
||||
- Use default service account if `service_account_email` is unset.
|
||||
minor_changes:
|
||||
- Add DataPlane V2 Support.
|
||||
- Add auth support for GCP access tokens (#574).
|
||||
- Add support for ip_allocation_policy->stack_type.
|
||||
release_date: '2023-07-07'
|
||||
- Add DataPlane V2 Support.
|
||||
- Add auth support for GCP access tokens (#574).
|
||||
- Add support for ip_allocation_policy->stack_type.
|
||||
release_date: "2023-07-07"
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
changelog_filename_template: ../CHANGELOG.rst
|
||||
changelog_filename_version_depth: 0
|
||||
changes_file: changelog.yaml
|
||||
|
@ -11,22 +12,22 @@ prelude_section_name: release_summary
|
|||
prelude_section_title: Release Summary
|
||||
sanitize_changelog: true
|
||||
sections:
|
||||
- - major_changes
|
||||
- Major Changes
|
||||
- - minor_changes
|
||||
- Minor Changes
|
||||
- - breaking_changes
|
||||
- Breaking Changes / Porting Guide
|
||||
- - deprecated_features
|
||||
- Deprecated Features
|
||||
- - removed_features
|
||||
- Removed Features (previously deprecated)
|
||||
- - security_fixes
|
||||
- Security Fixes
|
||||
- - bugfixes
|
||||
- Bugfixes
|
||||
- - known_issues
|
||||
- Known Issues
|
||||
- - major_changes
|
||||
- Major Changes
|
||||
- - minor_changes
|
||||
- Minor Changes
|
||||
- - breaking_changes
|
||||
- Breaking Changes / Porting Guide
|
||||
- - deprecated_features
|
||||
- Deprecated Features
|
||||
- - removed_features
|
||||
- Removed Features (previously deprecated)
|
||||
- - security_fixes
|
||||
- Security Fixes
|
||||
- - bugfixes
|
||||
- Bugfixes
|
||||
- - known_issues
|
||||
- Known Issues
|
||||
title: Google.Cloud
|
||||
trivial_section_name: trivial
|
||||
use_fqcn: true
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- ansible-test - add support for GCP application default credentials (https://github.com/ansible-collections/google.cloud/issues/359).
|
||||
- ansible-test - add support for GCP application default credentials (https://github.com/ansible-collections/google.cloud/issues/359).
|
||||
|
|
4
changelogs/fragments/gcp_serviceusage_service.yml
Normal file
4
changelogs/fragments/gcp_serviceusage_service.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
minor_changes:
|
||||
- gcp_serviceusage_service - added backoff when checking for operation completion.
|
||||
- gcp_serviceusage_service - use alloyb API for the integration test as spanner conflicts with other tests
|
3
changelogs/fragments/gcp_sql_ssl_cert.yml
Normal file
3
changelogs/fragments/gcp_sql_ssl_cert.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- gcp_sql_ssl_cert - made sha1_fingerprint optional, which enables resource creation
|
3
changelogs/fragments/gcp_storage_default_object_acl.yml
Normal file
3
changelogs/fragments/gcp_storage_default_object_acl.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- gcp_storage_default_object_acl - removed non-existent fields; the resource is not usable.
|
6
changelogs/fragments/upgrade-versions.yml
Normal file
6
changelogs/fragments/upgrade-versions.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
minor_changes:
|
||||
- ansible - 2.14.0 is now the minimum version supported
|
||||
- anisble-test - integration tests are now run against 2.14.0 and 2.15.0
|
||||
- ansible-lint - upgraded to 6.22
|
||||
- ansible-lint - fixed over a thousand reported errors
|
20
galaxy.yml
20
galaxy.yml
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
### REQUIRED
|
||||
|
||||
# The namespace of the collection. This can be a company/brand/organization or product namespace under which all
|
||||
|
@ -9,7 +10,7 @@ namespace: google
|
|||
name: cloud
|
||||
|
||||
# The version of the collection. Must be compatible with semantic versioning
|
||||
version: "1.2.0"
|
||||
version: 1.2.0
|
||||
|
||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||
readme: README.md
|
||||
|
@ -17,9 +18,8 @@ readme: README.md
|
|||
# A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url)
|
||||
# @nicks:irc/im.site#channel'
|
||||
authors:
|
||||
- Google <alexstephen@google.com>
|
||||
- Google <yusuketsutsumi@google.com>
|
||||
|
||||
- Google <alexstephen@google.com>
|
||||
- Google <yusuketsutsumi@google.com>
|
||||
|
||||
### OPTIONAL but strongly recommended
|
||||
|
||||
|
@ -29,7 +29,7 @@ description: The Google Cloud Platform collection.
|
|||
# Either a single license or a list of licenses for content inside of a collection. Ansible Galaxy currently only
|
||||
# accepts L(SPDX,https://spdx.org/licenses/) licenses. This key is mutually exclusive with 'license_file'
|
||||
license:
|
||||
- GPL-2.0-or-later
|
||||
- GPL-2.0-or-later
|
||||
|
||||
# The path to the license file for the collection. This path is relative to the root of the collection. This key is
|
||||
# mutually exclusive with 'license'
|
||||
|
@ -38,11 +38,11 @@ license:
|
|||
# A list of tags you want to associate with the collection for indexing/searching. A tag name has the same character
|
||||
# requirements as 'namespace' and 'name'
|
||||
tags:
|
||||
- cloud
|
||||
- gcsfuse
|
||||
- stackdriver
|
||||
- logging
|
||||
- monitoring
|
||||
- cloud
|
||||
- gcsfuse
|
||||
- stackdriver
|
||||
- logging
|
||||
- monitoring
|
||||
|
||||
# Collections that this collection requires to be installed for it to be usable. The key of the dict is the
|
||||
# collection label 'namespace.name'. The value is a version range
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
requires_ansible: '>=2.9.10'
|
||||
requires_ansible: ">=2.14.0"
|
||||
|
||||
action_groups:
|
||||
gcp:
|
||||
|
|
|
@ -14,13 +14,13 @@
|
|||
ansible.builtin.file:
|
||||
path: /etc/systemd/system/containerd.service.d
|
||||
state: directory
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
when: ansible_service_mgr == "systemd"
|
||||
- name: Override file for containerd
|
||||
ansible.builtin.copy:
|
||||
src: files/override.conf
|
||||
dest: /etc/systemd/system/containerd.service.d/override.conf
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
when: ansible_service_mgr == "systemd"
|
||||
roles:
|
||||
- role: google.cloud.gcloud
|
||||
|
|
|
@ -11,13 +11,13 @@ platforms:
|
|||
- name: instance
|
||||
image: ubuntu:20.04
|
||||
privileged: true
|
||||
ansible.builtin.command: "/lib/systemd/systemd"
|
||||
ansible.builtin.command: /lib/systemd/systemd
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
- name: instance
|
||||
image: debian:10
|
||||
privileged: true
|
||||
ansible.builtin.command: "/lib/systemd/systemd"
|
||||
ansible.builtin.command: /lib/systemd/systemd
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
provisioner:
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
- name: Verify
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Example assertion
|
||||
ansible.builtin.assert:
|
||||
that: true
|
||||
- name: Example assertion
|
||||
ansible.builtin.assert:
|
||||
that: true
|
||||
|
|
|
@ -11,13 +11,13 @@ platforms:
|
|||
- name: instance
|
||||
image: ubuntu:20.04
|
||||
privileged: true
|
||||
ansible.builtin.command: "/lib/systemd/systemd"
|
||||
ansible.builtin.command: /lib/systemd/systemd
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
- name: instance
|
||||
image: debian:10
|
||||
privileged: true
|
||||
ansible.builtin.command: "/lib/systemd/systemd"
|
||||
ansible.builtin.command: /lib/systemd/systemd
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
provisioner:
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
- name: Verify
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Example assertion
|
||||
ansible.builtin.assert:
|
||||
that: true
|
||||
- name: Example assertion
|
||||
ansible.builtin.assert:
|
||||
that: true
|
||||
|
|
|
@ -5,7 +5,6 @@ from __future__ import (absolute_import, division, print_function)
|
|||
|
||||
__metaclass__ = type
|
||||
|
||||
import ast
|
||||
import os
|
||||
import json
|
||||
|
||||
|
@ -25,8 +24,7 @@ except ImportError:
|
|||
HAS_GOOGLE_LIBRARIES = False
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule, env_fallback
|
||||
from ansible.module_utils.six import string_types
|
||||
from ansible.module_utils._text import to_text, to_native
|
||||
from ansible.module_utils._text import to_text
|
||||
|
||||
|
||||
def navigate_hash(source, path, default=None):
|
||||
|
|
|
@ -178,7 +178,7 @@ priority:
|
|||
# Imports
|
||||
################################################################################
|
||||
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest, replace_resource_dict
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -141,7 +141,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -479,7 +479,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
|
||||
|
|
|
@ -302,7 +302,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -999,7 +999,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
|
||||
|
|
|
@ -581,7 +581,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -240,7 +240,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -179,7 +179,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -1489,7 +1489,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
|
||||
|
|
|
@ -805,7 +805,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -374,7 +374,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import re
|
||||
|
|
|
@ -264,7 +264,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -634,7 +634,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
|
||||
|
|
|
@ -370,7 +370,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -389,7 +389,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import re
|
||||
|
|
|
@ -270,7 +270,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -226,7 +226,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -311,7 +311,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -373,7 +373,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -243,7 +243,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -1417,7 +1417,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -753,7 +753,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -366,7 +366,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -219,7 +219,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -166,7 +166,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -313,7 +313,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -305,7 +305,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -196,7 +196,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -280,7 +280,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -923,7 +923,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -518,7 +518,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -262,7 +262,7 @@ unhealthyThreshold:
|
|||
# Imports
|
||||
################################################################################
|
||||
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest, replace_resource_dict
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
import json
|
||||
import time
|
||||
|
||||
|
|
|
@ -195,7 +195,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -259,7 +259,7 @@ unhealthyThreshold:
|
|||
# Imports
|
||||
################################################################################
|
||||
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest, replace_resource_dict
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
import json
|
||||
import time
|
||||
|
||||
|
|
|
@ -195,7 +195,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -342,7 +342,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -204,7 +204,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -279,7 +279,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -608,7 +608,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
navigate_hash,
|
||||
GcpSession,
|
||||
GcpModule,
|
||||
GcpRequest,
|
||||
)
|
||||
import json
|
||||
|
||||
|
|
|
@ -551,7 +551,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -311,7 +311,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -246,7 +246,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -183,7 +183,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -193,7 +193,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -210,7 +210,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -287,7 +287,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import re
|
||||
|
|
|
@ -211,7 +211,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -546,7 +546,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -311,7 +311,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -778,7 +778,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -405,7 +405,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import re
|
||||
|
|
|
@ -284,7 +284,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -929,7 +929,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import re
|
||||
|
|
|
@ -529,7 +529,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -292,7 +292,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -167,7 +167,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -174,7 +174,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -1595,7 +1595,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -356,7 +356,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -249,7 +249,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -538,7 +538,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -337,7 +337,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -208,7 +208,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -213,7 +213,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -251,7 +251,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -215,7 +215,7 @@ privateKey:
|
|||
# Imports
|
||||
################################################################################
|
||||
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest, replace_resource_dict
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
import json
|
||||
import time
|
||||
|
||||
|
|
|
@ -162,7 +162,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -247,7 +247,6 @@ from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (
|
|||
GcpModule,
|
||||
GcpRequest,
|
||||
remove_nones_from_dict,
|
||||
replace_resource_dict,
|
||||
)
|
||||
import json
|
||||
import time
|
||||
|
|
|
@ -198,7 +198,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -217,7 +217,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -162,7 +162,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -184,7 +184,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -169,7 +169,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -215,7 +215,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -174,7 +174,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -166,7 +166,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -177,7 +177,7 @@ resources:
|
|||
################################################################################
|
||||
# Imports
|
||||
################################################################################
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule, GcpRequest
|
||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import navigate_hash, GcpSession, GcpModule
|
||||
import json
|
||||
|
||||
################################################################################
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue