This commit is contained in:
Konstantin Tchernov 2025-02-07 05:35:38 +00:00 committed by GitHub
commit 1709e47901
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
173 changed files with 360 additions and 5 deletions

View file

@ -21,7 +21,7 @@ options:
- The type of credential used. - The type of credential used.
type: str type: str
required: true required: true
choices: [ application, machineaccount, serviceaccount ] choices: [ application, machineaccount, serviceaccount, impersonation ]
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a JSON string that represents it. - The contents of a Service Account JSON file, either in a dictionary or as a JSON string that represents it.

View file

@ -61,7 +61,7 @@ DOCUMENTATION = """
description: description:
- The type of credential used. - The type of credential used.
required: True required: True
choices: ['application', 'serviceaccount', 'machineaccount', 'accesstoken'] choices: ['application', 'serviceaccount', 'machineaccount', 'accesstoken', 'impersonation']
env: env:
- name: GCP_AUTH_KIND - name: GCP_AUTH_KIND
scopes: scopes:
@ -89,6 +89,7 @@ DOCUMENTATION = """
description: description:
- An optional service account email address if machineaccount is selected - An optional service account email address if machineaccount is selected
and the user does not wish to use the default email. and the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
env: env:
- name: GCP_SERVICE_ACCOUNT_EMAIL - name: GCP_SERVICE_ACCOUNT_EMAIL
access_token: access_token:

View file

@ -17,6 +17,7 @@ except ImportError:
try: try:
import google.auth import google.auth
import google.auth.compute_engine import google.auth.compute_engine
import google.auth.impersonated_credentials
from google.oauth2 import service_account, credentials as oauth2 from google.oauth2 import service_account, credentials as oauth2
from google.auth.transport.requests import AuthorizedSession from google.auth.transport.requests import AuthorizedSession
HAS_GOOGLE_LIBRARIES = True HAS_GOOGLE_LIBRARIES = True
@ -200,9 +201,9 @@ class GcpSession(object):
if not HAS_GOOGLE_LIBRARIES: if not HAS_GOOGLE_LIBRARIES:
self.module.fail_json(msg="Please install the google-auth library") self.module.fail_json(msg="Please install the google-auth library")
if self.module.params.get('service_account_email') is not None and self.module.params['auth_kind'] != 'machineaccount': if self.module.params.get('service_account_email') is not None and not self.module.params['auth_kind'] in ['machineaccount','impersonation']:
self.module.fail_json( self.module.fail_json(
msg="Service Account Email only works with Machine Account-based authentication" msg="Service Account Email only works with Impersonation and Machine Account-based authentication"
) )
if (self.module.params.get('service_account_file') is not None or if (self.module.params.get('service_account_file') is not None or
@ -261,6 +262,20 @@ class GcpSession(object):
) )
return oauth2.Credentials(access_token, scopes=self.module.params['scopes']) return oauth2.Credentials(access_token, scopes=self.module.params['scopes'])
if cred_type == 'impersonation':
service_account_email = self.module.params.get('service_account_email')
if service_account_email is None:
self.module.fail_json(
msg='Service Account impersonation authentication requires setting service_account_email'
)
source_credentials, _ = google.auth.default()
return google.auth.impersonated_credentials.Credentials(
source_credentials=source_credentials,
target_principal=self.module.params['service_account_email'],
target_scopes=self.module.params['scopes'],
lifetime=3600,
)
self.module.fail_json(msg="Credential type '%s' not implemented" % cred_type) self.module.fail_json(msg="Credential type '%s' not implemented" % cred_type)
def _headers(self): def _headers(self):
@ -291,7 +306,7 @@ class GcpModule(AnsibleModule):
auth_kind=dict( auth_kind=dict(
required=True, required=True,
fallback=(env_fallback, ['GCP_AUTH_KIND']), fallback=(env_fallback, ['GCP_AUTH_KIND']),
choices=['machineaccount', 'serviceaccount', 'accesstoken', 'application'], choices=['machineaccount', 'serviceaccount', 'accesstoken', 'application', 'impersonation'],
type='str'), type='str'),
service_account_email=dict( service_account_email=dict(
required=False, required=False,

View file

@ -88,6 +88,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -101,6 +102,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -53,6 +53,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -66,6 +67,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -225,6 +225,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -238,6 +239,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -53,6 +53,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -66,6 +67,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -479,6 +479,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -492,6 +493,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -71,6 +71,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -118,6 +118,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -131,6 +132,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -53,6 +53,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -66,6 +67,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -728,6 +728,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -741,6 +742,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -53,6 +53,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -66,6 +67,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -175,6 +175,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -188,6 +189,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -58,6 +58,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -71,6 +72,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -311,6 +311,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -324,6 +325,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -58,6 +58,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -71,6 +72,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -189,6 +189,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -202,6 +203,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -58,6 +58,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -71,6 +72,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -154,6 +154,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -167,6 +168,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -66,6 +66,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -79,6 +80,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -261,6 +261,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -274,6 +275,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -175,6 +175,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -188,6 +189,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -709,6 +709,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -722,6 +723,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -239,6 +239,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -252,6 +253,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -105,6 +105,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -118,6 +119,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -264,6 +264,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -277,6 +278,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -238,6 +238,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -251,6 +252,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -66,6 +66,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -79,6 +80,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -125,6 +125,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -138,6 +139,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -218,6 +218,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -231,6 +232,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -472,6 +472,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -485,6 +486,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -126,6 +126,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -139,6 +140,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -123,6 +123,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -136,6 +137,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -230,6 +230,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -243,6 +244,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -523,6 +523,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -536,6 +537,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -139,6 +139,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -152,6 +153,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -137,6 +137,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -150,6 +151,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -69,6 +69,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -82,6 +83,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -486,6 +486,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -499,6 +500,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -195,6 +195,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -208,6 +209,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -109,6 +109,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -122,6 +123,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -125,6 +125,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -138,6 +139,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -142,6 +142,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -155,6 +156,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -136,6 +136,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -149,6 +150,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -238,6 +238,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -251,6 +252,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -720,6 +720,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -733,6 +734,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -177,6 +177,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -190,6 +191,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -472,6 +472,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -485,6 +486,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -155,6 +155,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -168,6 +169,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -93,6 +93,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -106,6 +107,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -101,6 +101,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -114,6 +115,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -1590,6 +1590,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -1603,6 +1604,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -162,6 +162,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -175,6 +176,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -275,6 +275,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -288,6 +289,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -175,6 +175,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -188,6 +189,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -142,6 +142,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -155,6 +156,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -158,6 +158,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -171,6 +172,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -90,6 +90,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -103,6 +104,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -100,6 +100,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -113,6 +114,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -152,6 +152,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -165,6 +166,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -65,6 +65,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -78,6 +79,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -94,6 +94,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -107,6 +108,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -60,6 +60,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -73,6 +74,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

View file

@ -122,6 +122,7 @@ options:
- machineaccount - machineaccount
- serviceaccount - serviceaccount
- accesstoken - accesstoken
- impersonation
service_account_contents: service_account_contents:
description: description:
- The contents of a Service Account JSON file, either in a dictionary or as a - The contents of a Service Account JSON file, either in a dictionary or as a
@ -135,6 +136,7 @@ options:
description: description:
- An optional service account email address if machineaccount is selected and - An optional service account email address if machineaccount is selected and
the user does not wish to use the default email. the user does not wish to use the default email.
- Required service account to impersonate if impersonation is selected.
type: str type: str
access_token: access_token:
description: description:

Some files were not shown because too many files have changed in this diff Show more