Class: Ansible::Ruby::Modules::Postgresql_db
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Postgresql_db
- Defined in:
- lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb
Instance Method Summary collapse
-
#encoding ⇒ String?
Encoding of the database.
-
#lc_collate ⇒ String?
Collation order (LC_COLLATE) to use in the database.
-
#lc_ctype ⇒ String?
Character classification (LC_CTYPE) to use in the database (e.g. lower, upper, …) Must match LC_CTYPE of template database unless C(template0) is used as template.
-
#login_host ⇒ String?
Host running the database.
-
#login_password ⇒ Object?
The password used to authenticate with.
-
#login_unix_socket ⇒ Object?
Path to a Unix domain socket for local connections.
-
#login_user ⇒ Object?
The username used to authenticate with.
-
#name ⇒ String
Name of the database to add or remove.
-
#owner ⇒ Object?
Name of the role to set as owner of the database.
-
#port ⇒ Integer?
Database port to connect to.
-
#state ⇒ :present, ...
The database state.
-
#template ⇒ String?
Template used to create the database.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#encoding ⇒ String?
Returns Encoding of the database.
38 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 38 attribute :encoding |
#lc_collate ⇒ String?
Returns Collation order (LC_COLLATE) to use in the database. Must match collation order of template database unless C(template0) is used as template.
42 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 42 attribute :lc_collate |
#lc_ctype ⇒ String?
Returns Character classification (LC_CTYPE) to use in the database (e.g. lower, upper, …) Must match LC_CTYPE of template database unless C(template0) is used as template.
46 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 46 attribute :lc_ctype |
#login_host ⇒ String?
Returns Host running the database.
20 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 20 attribute :login_host |
#login_password ⇒ Object?
Returns The password used to authenticate with.
17 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 17 attribute :login_password |
#login_unix_socket ⇒ Object?
Returns Path to a Unix domain socket for local connections.
24 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 24 attribute :login_unix_socket |
#login_user ⇒ Object?
Returns The username used to authenticate with.
14 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 14 attribute :login_user |
#name ⇒ String
Returns name of the database to add or remove.
10 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 10 attribute :name |
#owner ⇒ Object?
Returns Name of the role to set as owner of the database.
27 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 27 attribute :owner |
#port ⇒ Integer?
Returns Database port to connect to.
30 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 30 attribute :port |
#state ⇒ :present, ...
Returns The database state.
50 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 50 attribute :state |
#template ⇒ String?
Returns Template used to create the database.
34 |
# File 'lib/ansible/ruby/modules/generated/core/database/postgresql/postgresql_db.rb', line 34 attribute :template |