gatewayCreateProducerMongo is a command that creates either mongodb producer or mongodb atlas producer [Deprecated: Use dynamic-secret-create-mongodb command]
Name | Type | Description | Notes |
---|---|---|---|
delete_protection | str | Protection from accidental deletion of this object [true/false] | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
mongodb_atlas_api_private_key | str | MongoDB Atlas private key | [optional] |
mongodb_atlas_api_public_key | str | MongoDB Atlas public key | [optional] |
mongodb_atlas_project_id | str | MongoDB Atlas project ID | [optional] |
mongodb_custom_data | str | MongoDB custom data | [optional] |
mongodb_default_auth_db | str | MongoDB server default authentication database | [optional] |
mongodb_host_port | str | MongoDB server host and port | [optional] |
mongodb_name | str | MongoDB Name | [optional] |
mongodb_password | str | MongoDB server password. You will prompted to provide a password if it will not appear in CLI parameters | [optional] |
mongodb_roles | str | MongoDB Roles | [optional] [default to '[]'] |
mongodb_server_uri | str | MongoDB server URI | [optional] |
mongodb_uri_options | str | MongoDB server URI options | [optional] |
mongodb_username | str | MongoDB server username | [optional] |
name | str | Dynamic secret name | |
password_length | str | The length of the password to be generated | [optional] |
producer_encryption_key_name | str | Encrypt producer with following key | [optional] |
secure_access_bastion_issuer | str | Deprecated. use secure-access-certificate-issuer | [optional] |
secure_access_certificate_issuer | str | Path to the SSH Certificate Issuer for your Akeyless Secure Access | [optional] |
secure_access_delay | int | The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds | [optional] |
secure_access_enable | str | Enable/Disable secure remote access [true/false] | [optional] |
secure_access_host | List[str] | Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts) | [optional] |
secure_access_web | bool | Enable Web Secure Remote Access | [optional] [default to False] |
tags | List[str] | Add tags attached to this object | [optional] |
target_name | str | Target name | [optional] |
token | str | Authentication token (see `/auth` and `/configure`) | [optional] |
uid_token | str | The universal identity token, Required only for universal_identity authentication | [optional] |
user_ttl | str | User TTL | [optional] [default to '60m'] |
from akeyless.models.gateway_create_producer_mongo import GatewayCreateProducerMongo
# TODO update the JSON string below
json = "{}"
# create an instance of GatewayCreateProducerMongo from a JSON string
gateway_create_producer_mongo_instance = GatewayCreateProducerMongo.from_json(json)
# print the JSON string representation of the object
print(GatewayCreateProducerMongo.to_json())
# convert the object into a dict
gateway_create_producer_mongo_dict = gateway_create_producer_mongo_instance.to_dict()
# create an instance of GatewayCreateProducerMongo from a dict
gateway_create_producer_mongo_from_dict = GatewayCreateProducerMongo.from_dict(gateway_create_producer_mongo_dict)