ApiGenerateCmcaArguments

Properties

Name Type Description Notes
ssh_port float SSH port. If unset, defaults to 22. [optional]
user_name str The username used to authenticate with the hosts. Root access to your hosts is required to install Cloudera packages. The installer will connect to your hosts via SSH and log in either directly as root or as another user with password-less sudo privileges to become root. [optional]
password str The password used to authenticate with the hosts. Specify either this or a private key. For password-less login, use an empty string as password. [optional]
private_key str The private key to authenticate with the hosts. Specify either this or a password. <br> The private key, if specified, needs to be a standard PEM-encoded key as a single string, with all line breaks replaced with the line-feed control character '\n'. <br> A value will typically look like the following string: <br> -----BEGIN RSA PRIVATE KEY-----\n[base-64 encoded key]\n-----END RSA PRIVATE KEY----- <br> [optional]
passphrase str The passphrase associated with the private key used to authenticate with the hosts (optional). [optional]
location str The location on disk to store the CMCA directory. If there is already a CMCA created there, it will be backed up, and a new one will be created in its place. [optional]
custom_ca bool Whether to generate an internal CMCA (false) or use user-provided certificates (true). When set to true (user-provided certificates), the following other arguments must be given: * cmHostCert * cmHostKey * caCert * keystorePasswd * truststorePasswd [optional]
interpret_as_filenames bool Whether the following arguments are interpreted as filenames local to the Cloudera Manager host (true, default) or as the actual data for that argument: * cmHostCert * cmHostKey * caCert * keystorePasswd * truststorePasswd * trustedCaCerts * hostCerts.hostCert * hostCerts.hostKey If HTTPS has not been enabled on the Cloudera Manager Admin Console and API, we strongly recommend that you pass the arguments as filenames local to the Cloudera Manager host (i.e. set to true) to avoid leaking sensitive information over the wire in plaintext. [optional]
cm_host_cert str The certificate for the CM host in PEM format. Only used if customCA == true. [optional]
cm_host_key str The private key for the CM host in PEM format. Only used if customCA == true. [optional]
ca_cert str The certificate for the user-provided certificate authority in PEM format. Only used if customCA == true. [optional]
keystore_passwd str The password used for all Auto-TLS keystores. Only used if customCA == true. [optional]
truststore_passwd str The password used for all Auto-TLS truststores. Only used if customCA == true. [optional]
trusted_ca_certs str A list of CA certificates that will be imported into the Auto-TLS truststore and distributed to all hosts. [optional]
host_certs list[ApiHostCertInfo] A list of HostCertInfo objects, which associate a hostname with the corresponding certificate and private key. Only used if customCA == true. [optional]
configure_all_services bool Whether to configure all existing services to use Auto-TLS. If false, only MGMT services will be configured to use Auto-TLS. Use the cluster-level ConfigureAutoTlsServices command to configure Auto-TLS services for a single cluster only. All future services will be configured to use Auto-TLS regardless of this setting. [optional]

[Back to Model list] [Back to API list] [Back to README]