mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-09 20:30:27 -07:00
Fix for SQL database import formats (#358)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
75b2819fd9
commit
0dcaa2d646
2 changed files with 24 additions and 6 deletions
|
@ -50,12 +50,18 @@ options:
|
||||||
type: str
|
type: str
|
||||||
charset:
|
charset:
|
||||||
description:
|
description:
|
||||||
- The MySQL charset value.
|
- The charset value. See MySQL's [Supported Character Sets and Collations](U(https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html))
|
||||||
|
and Postgres' [Character Set Support](U(https://www.postgresql.org/docs/9.6/static/multibyte.html))
|
||||||
|
for more details and supported values. Postgres databases only support a value
|
||||||
|
of `UTF8` at creation time.
|
||||||
required: false
|
required: false
|
||||||
type: str
|
type: str
|
||||||
collation:
|
collation:
|
||||||
description:
|
description:
|
||||||
- The MySQL collation value.
|
- The collation value. See MySQL's [Supported Character Sets and Collations](U(https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html))
|
||||||
|
and Postgres' [Collation Support](U(https://www.postgresql.org/docs/9.6/static/collation.html))
|
||||||
|
for more details and supported values. Postgres databases only support a value
|
||||||
|
of `en_US.UTF8` at creation time.
|
||||||
required: false
|
required: false
|
||||||
type: str
|
type: str
|
||||||
name:
|
name:
|
||||||
|
@ -103,12 +109,18 @@ EXAMPLES = '''
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
charset:
|
charset:
|
||||||
description:
|
description:
|
||||||
- The MySQL charset value.
|
- The charset value. See MySQL's [Supported Character Sets and Collations](U(https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html))
|
||||||
|
and Postgres' [Character Set Support](U(https://www.postgresql.org/docs/9.6/static/multibyte.html))
|
||||||
|
for more details and supported values. Postgres databases only support a value
|
||||||
|
of `UTF8` at creation time.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
collation:
|
collation:
|
||||||
description:
|
description:
|
||||||
- The MySQL collation value.
|
- The collation value. See MySQL's [Supported Character Sets and Collations](U(https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html))
|
||||||
|
and Postgres' [Collation Support](U(https://www.postgresql.org/docs/9.6/static/collation.html))
|
||||||
|
for more details and supported values. Postgres databases only support a value
|
||||||
|
of `en_US.UTF8` at creation time.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
name:
|
name:
|
||||||
|
|
|
@ -67,12 +67,18 @@ resources:
|
||||||
contains:
|
contains:
|
||||||
charset:
|
charset:
|
||||||
description:
|
description:
|
||||||
- The MySQL charset value.
|
- The charset value. See MySQL's [Supported Character Sets and Collations](U(https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html))
|
||||||
|
and Postgres' [Character Set Support](U(https://www.postgresql.org/docs/9.6/static/multibyte.html))
|
||||||
|
for more details and supported values. Postgres databases only support a value
|
||||||
|
of `UTF8` at creation time.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
collation:
|
collation:
|
||||||
description:
|
description:
|
||||||
- The MySQL collation value.
|
- The collation value. See MySQL's [Supported Character Sets and Collations](U(https://dev.mysql.com/doc/refman/5.7/en/charset-charsets.html))
|
||||||
|
and Postgres' [Collation Support](U(https://www.postgresql.org/docs/9.6/static/collation.html))
|
||||||
|
for more details and supported values. Postgres databases only support a value
|
||||||
|
of `en_US.UTF8` at creation time.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
name:
|
name:
|
||||||
|
|
Loading…
Add table
Reference in a new issue