From 60863d6fcbc1ff0246e2b08fb8c8ffe6648b0579 Mon Sep 17 00:00:00 2001 From: The Magician Date: Wed, 21 Apr 2021 11:38:03 -0700 Subject: [PATCH] Add reference links for ML Engine Models (#4723) (#408) Signed-off-by: Modular Magician --- plugins/modules/gcp_mlengine_model.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/plugins/modules/gcp_mlengine_model.py b/plugins/modules/gcp_mlengine_model.py index f657169..d9a5510 100644 --- a/plugins/modules/gcp_mlengine_model.py +++ b/plugins/modules/gcp_mlengine_model.py @@ -132,6 +132,19 @@ options: - This should not be set unless you know what you're doing. - This only alters the User Agent string for any API requests. type: str +notes: +- 'API Reference: U(https://cloud.google.com/ai-platform/prediction/docs/reference/rest/v1/projects.models)' +- 'Official Documentation: U(https://cloud.google.com/ai-platform/prediction/docs/deploying-models)' +- for authentication, you can set service_account_file using the C(gcp_service_account_file) + env variable. +- for authentication, you can set service_account_contents using the C(GCP_SERVICE_ACCOUNT_CONTENTS) + env variable. +- For authentication, you can set service_account_email using the C(GCP_SERVICE_ACCOUNT_EMAIL) + env variable. +- For authentication, you can set auth_kind using the C(GCP_AUTH_KIND) env variable. +- For authentication, you can set scopes using the C(GCP_SCOPES) env variable. +- Environment variables values will only be used if the playbook values are not set. +- The I(service_account_email) and I(service_account_file) options are mutually exclusive. ''' EXAMPLES = '''