mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Sanity fixes to parameter types (#52325)
This commit is contained in:
parent
47190088b4
commit
677c04c01d
25 changed files with 445 additions and 404 deletions
|
@ -43,13 +43,13 @@ options:
|
|||
avi_credentials:
|
||||
description:
|
||||
- Avi Credentials dictionary which can be used in lieu of enumerating Avi Controller login details.
|
||||
type: str
|
||||
type: dict
|
||||
version_added: "2.5"
|
||||
api_context:
|
||||
description:
|
||||
- Avi API context that includes current session ID and CSRF Token.
|
||||
- This allows user to perform single login and re-use the session.
|
||||
type: str
|
||||
type: dict
|
||||
version_added: "2.5"
|
||||
notes:
|
||||
- For more information on using Ansible to manage Avi Network devices see U(https://www.ansible.com/ansible-avi-networks).
|
||||
|
|
|
@ -15,7 +15,7 @@ options:
|
|||
- Dictionary of string:string pairs to assign as metadata to the object.
|
||||
- Metadata tags on the object will be updated with any provided values.
|
||||
- To remove tags set append_tags option to false.
|
||||
type: str
|
||||
type: dict
|
||||
append_tags:
|
||||
description:
|
||||
- Use to control if tags field is canonical or just appends to existing tags.
|
||||
|
|
|
@ -15,7 +15,7 @@ options:
|
|||
template file and each response from the device are saved here.
|
||||
Usually the location is the results folder, but you can
|
||||
choose another location based on your write permission.
|
||||
type: path
|
||||
type: str
|
||||
required: true
|
||||
version_added: '2.3'
|
||||
host:
|
||||
|
|
|
@ -72,6 +72,6 @@ options:
|
|||
proxies:
|
||||
description:
|
||||
- HTTP(S) proxy to use for Requests to connect to InfluxDB server.
|
||||
type: str
|
||||
type: dict
|
||||
version_added: "2.5"
|
||||
'''
|
||||
|
|
|
@ -55,5 +55,5 @@ options:
|
|||
org_id:
|
||||
description:
|
||||
- ID of organization.
|
||||
type: str
|
||||
type: int
|
||||
'''
|
||||
|
|
|
@ -25,7 +25,7 @@ options:
|
|||
login_port:
|
||||
description:
|
||||
- Port of the MySQL server. Requires I(login_host) be defined as other than localhost if login_port is used.
|
||||
type: str
|
||||
type: int
|
||||
default: 3306
|
||||
login_unix_socket:
|
||||
description:
|
||||
|
|
|
@ -42,7 +42,7 @@ options:
|
|||
nitro_timeout:
|
||||
description:
|
||||
- Time in seconds until a timeout error is thrown when establishing a new session with Netscaler
|
||||
type: int
|
||||
type: float
|
||||
default: 310
|
||||
|
||||
state:
|
||||
|
|
|
@ -18,7 +18,7 @@ options:
|
|||
or if OpenStack OS_* environment variables are present.
|
||||
If I(cloud) is a dict, it contains a complete cloud configuration like
|
||||
would be in a section of clouds.yaml.
|
||||
type: str
|
||||
type: raw
|
||||
auth:
|
||||
description:
|
||||
- Dictionary containing auth information as needed by the cloud's auth
|
||||
|
@ -28,7 +28,7 @@ options:
|
|||
this param will need to contain whatever parameters that auth plugin
|
||||
requires. This parameter is not needed if a named cloud is provided or
|
||||
OpenStack OS_* environment variables are present.
|
||||
type: str
|
||||
type: dict
|
||||
auth_type:
|
||||
description:
|
||||
- Name of the auth plugin to use. If the cloud uses something other than
|
||||
|
@ -65,15 +65,15 @@ options:
|
|||
description:
|
||||
- A path to a CA Cert bundle that can be used as part of verifying
|
||||
SSL API requests.
|
||||
type: path
|
||||
type: str
|
||||
cert:
|
||||
description:
|
||||
- A path to a client certificate to use as part of the SSL transaction.
|
||||
type: path
|
||||
type: str
|
||||
key:
|
||||
description:
|
||||
- A path to a client key to use as part of the SSL transaction.
|
||||
type: path
|
||||
type: str
|
||||
interface:
|
||||
description:
|
||||
- Endpoint URL type to fetch from the service catalog.
|
||||
|
|
|
@ -23,7 +23,7 @@ options:
|
|||
login_unix_socket:
|
||||
description:
|
||||
- Path to a Unix domain socket for local connections.
|
||||
type: path
|
||||
type: str
|
||||
port:
|
||||
description:
|
||||
- Database port to connect to.
|
||||
|
@ -42,7 +42,7 @@ options:
|
|||
description:
|
||||
- Specifies the name of a file containing SSL certificate authority (CA) certificate(s).
|
||||
- If the file exists, the server's certificate will be verified to be signed by one of these authorities.
|
||||
type: path
|
||||
type: str
|
||||
version_added: '2.3'
|
||||
notes:
|
||||
- The default authentication assumes that you are either logging in as or sudo'ing to the C(postgres) account on the host.
|
||||
|
|
|
@ -16,10 +16,9 @@ options:
|
|||
force:
|
||||
description:
|
||||
- If C(yes) do not get a cached copy.
|
||||
aliases:
|
||||
- thirsty
|
||||
type: bool
|
||||
default: no
|
||||
aliases: [ thirsty ]
|
||||
http_agent:
|
||||
description:
|
||||
- Header to identify as, generally appears in web server logs.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue