Class: Ansible::Ruby::Modules::Rds_param_group
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Rds_param_group
- Defined in:
- lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb
Overview
Creates, modifies, and deletes RDS parameter groups. This module has a dependency on python-boto >= 2.5.
Instance Method Summary collapse
-
#description ⇒ String?
Database parameter group description.
-
#engine ⇒ :"aurora5.6", ...
The type of database for this group.
-
#immediate ⇒ Object?
Whether to apply the changes immediately, or after the next reboot of any associated instances.
-
#name ⇒ String
Database parameter group identifier.
-
#params ⇒ Hash?
Map of parameter names and values.
-
#state ⇒ :present, :absent
Specifies whether the group should be present or absent.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#description ⇒ String?
Returns Database parameter group description. Only set when a new group is added.
19 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb', line 19 attribute :description |
#engine ⇒ :"aurora5.6", ...
Returns The type of database for this group. Required for state=present.
23 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb', line 23 attribute :engine |
#immediate ⇒ Object?
Returns Whether to apply the changes immediately, or after the next reboot of any associated instances.
27 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb', line 27 attribute :immediate |
#name ⇒ String
Returns Database parameter group identifier.
15 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb', line 15 attribute :name |
#params ⇒ Hash?
Returns Map of parameter names and values. Numeric values may be represented as K for kilo (1024), M for mega (1024^2), G for giga (1024^3), or T for tera (1024^4), and these values will be expanded into the appropriate number before being set in the parameter group.
30 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb', line 30 attribute :params |
#state ⇒ :present, :absent
Returns Specifies whether the group should be present or absent.
11 |
# File 'lib/ansible/ruby/modules/generated/core/cloud/amazon/rds_param_group.rb', line 11 attribute :state |