mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-10 12:50:27 -07:00
feat: upate docs to include impersonation
This commit is contained in:
parent
c53ea67cdf
commit
b103f42e14
172 changed files with 342 additions and 2 deletions
plugins
doc_fragments
inventory
modules
gcp_appengine_firewall_rule.pygcp_appengine_firewall_rule_info.pygcp_bigquery_dataset.pygcp_bigquery_dataset_info.pygcp_bigquery_table.pygcp_bigquery_table_info.pygcp_bigtable_instance.pygcp_bigtable_instance_info.pygcp_cloudbuild_trigger.pygcp_cloudbuild_trigger_info.pygcp_cloudfunctions_cloud_function.pygcp_cloudfunctions_cloud_function_info.pygcp_cloudscheduler_job.pygcp_cloudscheduler_job_info.pygcp_cloudtasks_queue.pygcp_cloudtasks_queue_info.pygcp_compute_address.pygcp_compute_address_info.pygcp_compute_autoscaler.pygcp_compute_autoscaler_info.pygcp_compute_backend_bucket.pygcp_compute_backend_bucket_info.pygcp_compute_backend_service.pygcp_compute_backend_service_info.pygcp_compute_disk.pygcp_compute_disk_info.pygcp_compute_external_vpn_gateway.pygcp_compute_external_vpn_gateway_info.pygcp_compute_firewall.pygcp_compute_firewall_info.pygcp_compute_forwarding_rule.pygcp_compute_forwarding_rule_info.pygcp_compute_global_address.pygcp_compute_global_address_info.pygcp_compute_global_forwarding_rule.pygcp_compute_global_forwarding_rule_info.pygcp_compute_health_check.pygcp_compute_health_check_info.pygcp_compute_http_health_check.pygcp_compute_http_health_check_info.pygcp_compute_https_health_check.pygcp_compute_https_health_check_info.pygcp_compute_image.pygcp_compute_image_info.pygcp_compute_instance.pygcp_compute_instance_group.pygcp_compute_instance_group_info.pygcp_compute_instance_group_manager.pygcp_compute_instance_group_manager_info.pygcp_compute_instance_info.pygcp_compute_instance_template.pygcp_compute_instance_template_info.pygcp_compute_interconnect_attachment.pygcp_compute_interconnect_attachment_info.pygcp_compute_network.pygcp_compute_network_endpoint_group.pygcp_compute_network_endpoint_group_info.pygcp_compute_network_info.pygcp_compute_node_group.pygcp_compute_node_group_info.pygcp_compute_node_template.pygcp_compute_node_template_info.pygcp_compute_region_autoscaler.pygcp_compute_region_autoscaler_info.pygcp_compute_region_backend_service.pygcp_compute_region_backend_service_info.pygcp_compute_region_disk.pygcp_compute_region_disk_info.pygcp_compute_region_health_check.pygcp_compute_region_health_check_info.pygcp_compute_region_instance_group_manager.pygcp_compute_region_instance_group_manager_info.pygcp_compute_region_target_http_proxy.pygcp_compute_region_target_http_proxy_info.pygcp_compute_region_target_https_proxy.pygcp_compute_region_target_https_proxy_info.pygcp_compute_region_url_map.pygcp_compute_region_url_map_info.pygcp_compute_reservation.pygcp_compute_reservation_info.pygcp_compute_resource_policy.pygcp_compute_resource_policy_info.pygcp_compute_route.pygcp_compute_route_info.pygcp_compute_router.pygcp_compute_router_info.pygcp_compute_snapshot.pygcp_compute_snapshot_info.pygcp_compute_ssl_certificate.pygcp_compute_ssl_certificate_info.pygcp_compute_ssl_policy.pygcp_compute_ssl_policy_info.pygcp_compute_subnetwork.pygcp_compute_subnetwork_info.pygcp_compute_target_http_proxy.pygcp_compute_target_http_proxy_info.pygcp_compute_target_https_proxy.pygcp_compute_target_https_proxy_info.py
|
@ -21,7 +21,7 @@ options:
|
|||
- The type of credential used.
|
||||
type: str
|
||||
required: true
|
||||
choices: [ application, machineaccount, serviceaccount ]
|
||||
choices: [ application, machineaccount, serviceaccount, impersonation ]
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a JSON string that represents it.
|
||||
|
|
|
@ -57,7 +57,7 @@ DOCUMENTATION = """
|
|||
description:
|
||||
- The type of credential used.
|
||||
required: True
|
||||
choices: ['application', 'serviceaccount', 'machineaccount', 'accesstoken']
|
||||
choices: ['application', 'serviceaccount', 'machineaccount', 'accesstoken', 'impersonation']
|
||||
env:
|
||||
- name: GCP_AUTH_KIND
|
||||
scopes:
|
||||
|
@ -84,6 +84,7 @@ DOCUMENTATION = """
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected
|
||||
and the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
env:
|
||||
- name: GCP_SERVICE_ACCOUNT_EMAIL
|
||||
access_token:
|
||||
|
|
|
@ -88,6 +88,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -101,6 +102,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -53,6 +53,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -66,6 +67,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -225,6 +225,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -238,6 +239,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -53,6 +53,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -66,6 +67,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -476,6 +476,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -489,6 +490,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -71,6 +71,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -118,6 +118,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -131,6 +132,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -53,6 +53,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -66,6 +67,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -728,6 +728,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -741,6 +742,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -53,6 +53,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -66,6 +67,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -175,6 +175,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -188,6 +189,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -58,6 +58,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -71,6 +72,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -311,6 +311,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -324,6 +325,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -58,6 +58,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -71,6 +72,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -189,6 +189,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -202,6 +203,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -58,6 +58,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -71,6 +72,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -154,6 +154,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -167,6 +168,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -66,6 +66,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -79,6 +80,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -261,6 +261,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -274,6 +275,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -175,6 +175,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -188,6 +189,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -703,6 +703,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -716,6 +717,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -239,6 +239,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -252,6 +253,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -105,6 +105,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -118,6 +119,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -264,6 +264,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -277,6 +278,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -238,6 +238,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -251,6 +252,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -66,6 +66,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -79,6 +80,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -125,6 +125,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -138,6 +139,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -218,6 +218,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -231,6 +232,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -473,6 +473,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -486,6 +487,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -126,6 +126,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -139,6 +140,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -123,6 +123,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -136,6 +137,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -230,6 +230,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -243,6 +244,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -523,6 +523,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -536,6 +537,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -139,6 +139,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -152,6 +153,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -137,6 +137,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -150,6 +151,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -69,6 +69,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -82,6 +83,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -486,6 +486,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -499,6 +500,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -195,6 +195,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -208,6 +209,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -109,6 +109,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -122,6 +123,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -125,6 +125,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -138,6 +139,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -142,6 +142,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -155,6 +156,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -136,6 +136,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -149,6 +150,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -238,6 +238,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -251,6 +252,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -719,6 +719,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -732,6 +733,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -177,6 +177,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -190,6 +191,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -473,6 +473,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -486,6 +487,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -155,6 +155,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -168,6 +169,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -93,6 +93,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -106,6 +107,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -101,6 +101,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -114,6 +115,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -1603,6 +1603,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -1616,6 +1617,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -163,6 +163,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -176,6 +177,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -275,6 +275,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -288,6 +289,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -175,6 +175,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -188,6 +189,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -142,6 +142,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -155,6 +156,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -158,6 +158,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -171,6 +172,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -90,6 +90,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -103,6 +104,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -100,6 +100,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -113,6 +114,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -152,6 +152,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -165,6 +166,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -65,6 +65,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -78,6 +79,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -94,6 +94,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -107,6 +108,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -122,6 +122,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -135,6 +136,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
|
@ -60,6 +60,7 @@ options:
|
|||
- machineaccount
|
||||
- serviceaccount
|
||||
- accesstoken
|
||||
- impersonation
|
||||
service_account_contents:
|
||||
description:
|
||||
- The contents of a Service Account JSON file, either in a dictionary or as a
|
||||
|
@ -73,6 +74,7 @@ options:
|
|||
description:
|
||||
- An optional service account email address if machineaccount is selected and
|
||||
the user does not wish to use the default email.
|
||||
- Required service account to impersonate if impersonation is selected.
|
||||
type: str
|
||||
access_token:
|
||||
description:
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue