Home
last modified time | relevance | path

Searched refs:get_relative_time_option (Results 1 – 15 of 15) sorted by relevance

/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/crypto/plugins/module_utils/crypto/module_backends/
H A Dcertificate_selfsigned.py18 get_relative_time_option,
52 …self.notBefore = get_relative_time_option(module.params['selfsigned_not_before'], 'selfsigned_not_…
53 …self.notAfter = get_relative_time_option(module.params['selfsigned_not_after'], 'selfsigned_not_af…
172 …self.notBefore = get_relative_time_option(module.params['selfsigned_not_before'], 'selfsigned_not_…
173 …self.notAfter = get_relative_time_option(module.params['selfsigned_not_after'], 'selfsigned_not_af…
H A Dcertificate_assertonly.py18 get_relative_time_option,
276 …if cert_not_valid_before != get_relative_time_option(self.not_before, 'not_before', backend=self.b…
284 …if cert_not_valid_after != get_relative_time_option(self.not_after, 'not_after', backend=self.back…
451 rt = get_relative_time_option(self.valid_at, 'valid_at', backend=self.backend)
455 rt = get_relative_time_option(self.invalid_at, 'invalid_at', backend=self.backend)
459 valid_in_date = get_relative_time_option(self.valid_in, "valid_in", backend=self.backend)
606 rt = get_relative_time_option(self.valid_at, "valid_at", backend=self.backend)
611 rt = get_relative_time_option(self.invalid_at, "invalid_at", backend=self.backend)
616 valid_in_asn1 = get_relative_time_option(self.valid_in, "valid_in", backend=self.backend)
H A Dcertificate_ownca.py25 get_relative_time_option,
61 …self.notBefore = get_relative_time_option(module.params['ownca_not_before'], 'ownca_not_before', b…
62 …self.notAfter = get_relative_time_option(module.params['ownca_not_after'], 'ownca_not_after', back…
234 …self.notBefore = get_relative_time_option(self.module.params['ownca_not_before'], 'ownca_not_befor…
235 …self.notAfter = get_relative_time_option(self.module.params['ownca_not_after'], 'ownca_not_after',…
H A Dcertificate_entrust.py21 get_relative_time_option,
44 …self.notAfter = get_relative_time_option(module.params['entrust_not_after'], 'entrust_not_after', …
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/crypto/plugins/modules/
H A Dopenssl_certificate_info.py387 get_relative_time_option,
433 valid_at[k] = get_relative_time_option(v, 'valid_at.{0}'.format(k))
H A Dx509_certificate_info.py387 get_relative_time_option,
433 valid_at[k] = get_relative_time_option(v, 'valid_at.{0}'.format(k))
H A Dx509_crl.py389 get_relative_time_option,
468 self.last_update = get_relative_time_option(module.params['last_update'], 'last_update')
469 self.next_update = get_relative_time_option(module.params['next_update'], 'next_update')
511 result['revocation_date'] = get_relative_time_option(
519 result['invalidity_date'] = get_relative_time_option(
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/crypto/
H A Dopenssl_certificate.py903 def get_relative_time_option(self, input_string, input_name): member in Certificate
1299 … self.notAfter = self.get_relative_time_option(module.params['ownca_not_after'], 'ownca_not_after')
1475 … self.notAfter = self.get_relative_time_option(module.params['ownca_not_after'], 'ownca_not_after')
1814 … if cert_not_valid_before != self.get_relative_time_option(self.not_before, 'not_before'):
1822 if cert_not_valid_after != self.get_relative_time_option(self.not_after, 'not_after'):
1994 rt = self.get_relative_time_option(self.valid_at, 'valid_at')
1998 rt = self.get_relative_time_option(self.invalid_at, 'invalid_at')
2002 valid_in_date = self.get_relative_time_option(self.valid_in, "valid_in")
2159 rt = self.get_relative_time_option(self.valid_at, "valid_at")
2164 rt = self.get_relative_time_option(self.invalid_at, "invalid_at")
[all …]
H A Dopenssl_certificate_info.py345 def get_relative_time_option(input_string, input_name): function
388 self.valid_at[k] = get_relative_time_option(v, 'valid_at.{0}'.format(k))
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/integration/plugins/modules/
H A Dx509_crl.py411 …self.last_update = crypto_utils.get_relative_time_option(module.params['last_update'], 'last_updat…
412 …self.next_update = crypto_utils.get_relative_time_option(module.params['next_update'], 'next_updat…
458 result['revocation_date'] = crypto_utils.get_relative_time_option(
466 result['invalidity_date'] = crypto_utils.get_relative_time_option(
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/integration/plugins/modules/
H A Dx509_crl.py411 …self.last_update = crypto_utils.get_relative_time_option(module.params['last_update'], 'last_updat…
412 …self.next_update = crypto_utils.get_relative_time_option(module.params['next_update'], 'next_updat…
458 result['revocation_date'] = crypto_utils.get_relative_time_option(
466 result['invalidity_date'] = crypto_utils.get_relative_time_option(
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/crypto/plugins/module_utils/crypto/
H A D__init__.py91 get_relative_time_option,
H A Dsupport.py306 def get_relative_time_option(input_string, input_name, backend='cryptography'): function
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/integration/plugins/module_utils/
H A Dcrypto.py367 def get_relative_time_option(input_string, input_name, backend='cryptography'): function
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/integration/plugins/module_utils/
H A Dcrypto.py367 def get_relative_time_option(input_string, input_name, backend='cryptography'): function