Get information from OrientDB Database.
Version added: 0.2.0
- Get information from OrientDB Database.
- https://orientdb.org/docs/3.0.x/pyorient/PyOrient-Client.html
The below requirements are needed on the host that executes this module.
- pyorient
- name: list all orientdb databases
community.missing_collection.orientdb_db_info:
host: 'localhost'
port: 2424
user: 'root'
password: 'root'
db_list: true
- name: get database size in orientdb
community.missing_collection.orientdb_db_info:
host: 'localhost'
port: 2424
user: 'root'
password: 'root'
db_size: 'true'
database: 'test2'
- name: check database existence in orientdb
community.missing_collection.orientdb_db_info:
host: 'localhost'
port: 2424
user: 'root'
password: 'root'
db_exists: true
database: 'test2'
type: 'plocal'
- name: get total number of records in orientdb database
community.missing_collection.orientdb_db_info:
host: 'localhost'
port: 2424
user: 'root'
password: 'root'
db_count_records: true
database: 'test2'
- name: get list of database with default credentials
community.missing_collection.orientdb_db_info:
host: 'localhost'
port: 2424
user: 'root'
password: 'root'
check_default_credentials: true
Common return values are documented here, the following are the fields unique to this module:
- Davinder Pal (@116davinder) <dpsangwal@gmail.com>