Remove version_added from return values. (#28)

pull/33/head
Felix Fontein 2020-04-13 23:59:40 +02:00 committed by GitHub
parent b5c23918a2
commit 5a6858472c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 0 additions and 26 deletions

View File

@ -420,7 +420,6 @@ challenge_data:
returned: changed and challenge is C(tls-alpn-01) returned: changed and challenge is C(tls-alpn-01)
type: str type: str
sample: DNS:example.com sample: DNS:example.com
version_added: "2.8"
resource_value: resource_value:
description: description:
- The value the resource has to produce for the validation. - The value the resource has to produce for the validation.
@ -439,14 +438,12 @@ challenge_data:
returned: changed and challenge is C(dns-01) returned: changed and challenge is C(dns-01)
type: str type: str
sample: _acme-challenge.example.com sample: _acme-challenge.example.com
version_added: "2.5"
challenge_data_dns: challenge_data_dns:
description: description:
- List of TXT values per DNS record, in case challenge is C(dns-01). - List of TXT values per DNS record, in case challenge is C(dns-01).
- Since Ansible 2.8.5, only challenges which are not yet valid are returned. - Since Ansible 2.8.5, only challenges which are not yet valid are returned.
returned: changed returned: changed
type: dict type: dict
version_added: "2.5"
authorizations: authorizations:
description: description:
- ACME authorization data. - ACME authorization data.
@ -458,17 +455,14 @@ order_uri:
description: ACME order URI. description: ACME order URI.
returned: changed returned: changed
type: str type: str
version_added: "2.5"
finalization_uri: finalization_uri:
description: ACME finalization URI. description: ACME finalization URI.
returned: changed returned: changed
type: str type: str
version_added: "2.5"
account_uri: account_uri:
description: ACME account URI. description: ACME account URI.
returned: changed returned: changed
type: str type: str
version_added: "2.5"
all_chains: all_chains:
description: description:
- When I(retrieve_all_alternates) is set to C(yes), the module will query the ACME server - When I(retrieve_all_alternates) is set to C(yes), the module will query the ACME server

View File

@ -113,14 +113,12 @@ identifier_type:
or C(ip)." or C(ip)."
returned: always returned: always
type: str type: str
version_added: "2.8"
identifier: identifier:
description: description:
- "The identifier for the actual resource. Will be a domain name if the - "The identifier for the actual resource. Will be a domain name if the
type is C(dns), or an IP address if the type is C(ip)." type is C(dns), or an IP address if the type is C(ip)."
returned: always returned: always
type: str type: str
version_added: "2.8"
challenge_certificate: challenge_certificate:
description: description:
- "The challenge certificate in PEM format." - "The challenge certificate in PEM format."

View File

@ -413,7 +413,6 @@ csr:
description: The (current or generated) CSR's content. description: The (current or generated) CSR's content.
returned: if I(state) is C(present) and I(return_content) is C(yes) returned: if I(state) is C(present) and I(return_content) is C(yes)
type: str type: str
version_added: "2.10"
''' '''
import abc import abc

View File

@ -156,7 +156,6 @@ subject_ordered:
type: list type: list
elements: list elements: list
sample: '[["commonName", "www.example.com"], ["emailAddress": "test@example.com"]]' sample: '[["commonName", "www.example.com"], ["emailAddress": "test@example.com"]]'
version_added: "2.9"
public_key: public_key:
description: CSR's public key in PEM format description: CSR's public key in PEM format
returned: success returned: success
@ -178,7 +177,6 @@ subject_key_identifier:
returned: success and if the pyOpenSSL backend is I(not) used returned: success and if the pyOpenSSL backend is I(not) used
type: str type: str
sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33'
version_added: "2.9"
authority_key_identifier: authority_key_identifier:
description: description:
- The CSR's authority key identifier. - The CSR's authority key identifier.
@ -187,7 +185,6 @@ authority_key_identifier:
returned: success and if the pyOpenSSL backend is I(not) used returned: success and if the pyOpenSSL backend is I(not) used
type: str type: str
sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33'
version_added: "2.9"
authority_cert_issuer: authority_cert_issuer:
description: description:
- The CSR's authority cert issuer as a list of general names. - The CSR's authority cert issuer as a list of general names.
@ -196,7 +193,6 @@ authority_cert_issuer:
type: list type: list
elements: str elements: str
sample: "[DNS:www.ansible.com, IP:1.2.3.4]" sample: "[DNS:www.ansible.com, IP:1.2.3.4]"
version_added: "2.9"
authority_cert_serial_number: authority_cert_serial_number:
description: description:
- The CSR's authority cert serial number. - The CSR's authority cert serial number.
@ -204,7 +200,6 @@ authority_cert_serial_number:
returned: success and if the pyOpenSSL backend is I(not) used returned: success and if the pyOpenSSL backend is I(not) used
type: int type: int
sample: '12345' sample: '12345'
version_added: "2.9"
''' '''

View File

@ -118,7 +118,6 @@ dhparams:
description: The (current or generated) DH params' content. description: The (current or generated) DH params' content.
returned: if I(state) is C(present) and I(return_content) is C(yes) returned: if I(state) is C(present) and I(return_content) is C(yes)
type: str type: str
version_added: "2.10"
''' '''
import abc import abc

View File

@ -176,7 +176,6 @@ pkcs12:
description: The (current or generated) PKCS#12's content Base64 encoded. description: The (current or generated) PKCS#12's content Base64 encoded.
returned: if I(state) is C(present) and I(return_content) is C(yes) returned: if I(state) is C(present) and I(return_content) is C(yes)
type: str type: str
version_added: "2.10"
''' '''
import base64 import base64

View File

@ -269,7 +269,6 @@ privatekey:
- Will be Base64-encoded if the key is in raw format. - Will be Base64-encoded if the key is in raw format.
returned: if I(state) is C(present) and I(return_content) is C(yes) returned: if I(state) is C(present) and I(return_content) is C(yes)
type: str type: str
version_added: "2.10"
''' '''
import abc import abc

View File

@ -174,7 +174,6 @@ publickey:
description: The (current or generated) public key's content. description: The (current or generated) public key's content.
returned: if I(state) is C(present) and I(return_content) is C(yes) returned: if I(state) is C(present) and I(return_content) is C(yes)
type: str type: str
version_added: "2.10"
''' '''
import os import os

View File

@ -844,7 +844,6 @@ certificate:
description: The (current or generated) certificate's content. description: The (current or generated) certificate's content.
returned: if I(state) is C(present) and I(return_content) is C(yes) returned: if I(state) is C(present) and I(return_content) is C(yes)
type: str type: str
version_added: "2.10"
''' '''

View File

@ -197,7 +197,6 @@ issuer_ordered:
type: list type: list
elements: list elements: list
sample: '[["organizationName", "Ansible"], ["commonName": "ca.example.com"]]' sample: '[["organizationName", "Ansible"], ["commonName": "ca.example.com"]]'
version_added: "2.9"
subject: subject:
description: description:
- The certificate's subject as a dictionary. - The certificate's subject as a dictionary.
@ -211,7 +210,6 @@ subject_ordered:
type: list type: list
elements: list elements: list
sample: '[["commonName", "www.example.com"], ["emailAddress": "test@example.com"]]' sample: '[["commonName", "www.example.com"], ["emailAddress": "test@example.com"]]'
version_added: "2.9"
not_after: not_after:
description: C(notAfter) date as ASN.1 TIME description: C(notAfter) date as ASN.1 TIME
returned: success returned: success
@ -264,7 +262,6 @@ subject_key_identifier:
returned: success and if the pyOpenSSL backend is I(not) used returned: success and if the pyOpenSSL backend is I(not) used
type: str type: str
sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33'
version_added: "2.9"
authority_key_identifier: authority_key_identifier:
description: description:
- The certificate's authority key identifier. - The certificate's authority key identifier.
@ -273,7 +270,6 @@ authority_key_identifier:
returned: success and if the pyOpenSSL backend is I(not) used returned: success and if the pyOpenSSL backend is I(not) used
type: str type: str
sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33'
version_added: "2.9"
authority_cert_issuer: authority_cert_issuer:
description: description:
- The certificate's authority cert issuer as a list of general names. - The certificate's authority cert issuer as a list of general names.
@ -282,7 +278,6 @@ authority_cert_issuer:
type: list type: list
elements: str elements: str
sample: "[DNS:www.ansible.com, IP:1.2.3.4]" sample: "[DNS:www.ansible.com, IP:1.2.3.4]"
version_added: "2.9"
authority_cert_serial_number: authority_cert_serial_number:
description: description:
- The certificate's authority cert serial number. - The certificate's authority cert serial number.
@ -290,13 +285,11 @@ authority_cert_serial_number:
returned: success and if the pyOpenSSL backend is I(not) used returned: success and if the pyOpenSSL backend is I(not) used
type: int type: int
sample: '12345' sample: '12345'
version_added: "2.9"
ocsp_uri: ocsp_uri:
description: The OCSP responder URI, if included in the certificate. Will be description: The OCSP responder URI, if included in the certificate. Will be
C(none) if no OCSP responder URI is included. C(none) if no OCSP responder URI is included.
returned: success returned: success
type: str type: str
version_added: "2.9"
''' '''