# Functions
RandInt generates a random integer.
RandIntRange returns a random integer between min (inclusive) and max (exclusive).
RandIpAddress returns a random IP address in the specified CIDR block.
RandomWithPrefix is used to generate a unique name with a prefix, for randomizing names in acceptance tests.
RandSSHKeyPair generates a random public and private SSH key pair.
RandString generates a random alphanumeric string of the length specified.
RandStringFromCharSet generates a random string by selecting characters from the charset provided.
RandTLSCert generates a self-signed TLS certificate with a newly created private key, and returns both the cert and the private key PEM encoded.
# Constants
CharSetAlpha is the alphabetical character set for use with RandStringFromCharSet.
CharSetAlphaNum is the alphanumeric character set for use with RandStringFromCharSet.