Expect column entries to be secure passwords, as defined by expectation parameters.
expect_column_values_to_be_secure_passwords
This expectation level is BETA
Contributors:
Tags:
experimental
column map expectation
Metrics:
column_values.nonnull.unexpected_count
column_values.secure_password.unexpected_count
table.row_count
column_values.secure_password.unexpected_values
Description
Expect column entries to be secure passwords, as defined by expectation parameters.
expect_column_values_to_be_secure_passwords is a [Column Map Expectation](https://docs.greatexpectations.io/docs/guides/expectations/creating_custom_expectations/how_to_create_custom_column_map_expectations).
Args:
min_length (int): minimum length
min_uppercase (int): minimum number of uppercase letters
min_lowercase (int): minimum number of lowercase letters
min_special (int): minimum number of special characters (not letters and not digits)
min_digits (int): minimum numbers of digits
max_consec_numbers (int): max number of consecutive numbers
max_consec_letters (int): max number of consecutive letters
Keyword Args:
mostly (None or a float between 0 and 1): Successful if at least mostly fraction of values match the expectation. For more detail, see [mostly](https://docs.greatexpectations.io/docs/reference/expectations/standard_arguments/#mostly).
Other Parameters:
result_format (str or None): Which output mode to use: BOOLEAN_ONLY, BASIC, COMPLETE, or SUMMARY. For more detail, see [result_format](https://docs.greatexpectations.io/docs/reference/expectations/result_format).
include_config (boolean): If True, then include the expectation config as part of the result object.
catch_exceptions (boolean or None): If True, then catch exceptions and include them as part of the result object. For more detail, see [catch_exceptions](https://docs.greatexpectations.io/docs/reference/expectations/standard_arguments/#catch_exceptions).
meta (dict or None): A JSON-serializable dictionary (nesting allowed) that will be included in the output without modification. For more detail, see [meta](https://docs.greatexpectations.io/docs/reference/expectations/standard_arguments/#meta).
Returns:
An [ExpectationSuiteValidationResult](https://docs.greatexpectations.io/docs/terms/validation_result)
Exact fields vary depending on the values passed to result_format, include_config, catch_exceptions, and meta.
Want to make your own Expectation or an improvement to this one?
We've put together some great how to guides (including videos) on how to create your own expectations in a flash!
You can see those resources here: Contributor Resources