mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-23 19:31:23 -07:00
Better documentation for how a resourceref works (#96)
<!-- This change is generated by MagicModules. --> /cc @rambleraptor
This commit is contained in:
parent
6aa571c1b8
commit
e87c2e837c
31 changed files with 1669 additions and 1213 deletions
|
@ -40,36 +40,34 @@ requirements:
|
|||
- requests >= 2.18.4
|
||||
- google-auth >= 1.3.0
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
- Whether the given object should exist in GCP
|
||||
choices:
|
||||
- present
|
||||
- absent
|
||||
default: present
|
||||
host:
|
||||
description:
|
||||
- The host name from which the user can connect. For insert operations, host defaults
|
||||
to an empty string. For update operations, host is specified as part of the
|
||||
request URL. The host name cannot be updated after insertion.
|
||||
required: true
|
||||
name:
|
||||
description:
|
||||
- The name of the user in the Cloud SQL instance.
|
||||
required: true
|
||||
instance:
|
||||
description:
|
||||
- The name of the Cloud SQL instance. This does not include the project ID.
|
||||
- 'This field represents a link to a Instance resource in GCP. It can be specified
|
||||
in two ways. First, you can place a dictionary with key ''name'' and value of
|
||||
your resource''s name Alternatively, you can add `register: name-of-resource`
|
||||
to a gcp_sql_instance task and then set this instance field to "{{ name-of-resource
|
||||
}}"'
|
||||
required: true
|
||||
password:
|
||||
description:
|
||||
- The password for the user.
|
||||
required: false
|
||||
state:
|
||||
description:
|
||||
- Whether the given object should exist in GCP
|
||||
choices: ['present', 'absent']
|
||||
default: 'present'
|
||||
host:
|
||||
description:
|
||||
- The host name from which the user can connect. For insert operations, host defaults
|
||||
to an empty string. For update operations, host is specified as part of the request
|
||||
URL. The host name cannot be updated after insertion.
|
||||
required: true
|
||||
name:
|
||||
description:
|
||||
- The name of the user in the Cloud SQL instance.
|
||||
required: true
|
||||
instance:
|
||||
description:
|
||||
- The name of the Cloud SQL instance. This does not include the project ID.
|
||||
- 'This field represents a link to a Instance resource in GCP. It can be specified
|
||||
in two ways. You can add `register: name-of-resource` to a gcp_sql_instance task
|
||||
and then set this instance field to "{{ name-of-resource }}" Alternatively, you
|
||||
can set this instance to a dictionary with the name key where the value is the name
|
||||
of your Instance.'
|
||||
required: true
|
||||
password:
|
||||
description:
|
||||
- The password for the user.
|
||||
required: false
|
||||
extends_documentation_fragment: gcp
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue