Class: SDM::MongoReplicaSet
- Inherits:
-
Object
- Object
- SDM::MongoReplicaSet
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#auth_database ⇒ Object
Returns the value of attribute auth_database.
-
#connect_to_replica ⇒ Object
Returns the value of attribute connect_to_replica.
-
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
-
#hostname ⇒ Object
Returns the value of attribute hostname.
-
#id ⇒ Object
Unique identifier of the Resource.
-
#name ⇒ Object
Unique human-readable name of the Resource.
-
#password ⇒ Object
Returns the value of attribute password.
-
#port ⇒ Object
Returns the value of attribute port.
-
#port_override ⇒ Object
Returns the value of attribute port_override.
-
#replica_set ⇒ Object
Returns the value of attribute replica_set.
-
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
-
#tls_required ⇒ Object
Returns the value of attribute tls_required.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, connect_to_replica: nil, tls_required: nil) ⇒ MongoReplicaSet
constructor
A new instance of MongoReplicaSet.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, connect_to_replica: nil, tls_required: nil) ⇒ MongoReplicaSet
Returns a new instance of MongoReplicaSet.
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 |
# File 'lib/models/porcelain.rb', line 2729 def initialize( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, connect_to_replica: nil, tls_required: nil ) if id != nil @id = id end if name != nil @name = name end if healthy != nil @healthy = healthy end if != nil @tags = end if secret_store_id != nil @secret_store_id = secret_store_id end if hostname != nil @hostname = hostname end if auth_database != nil @auth_database = auth_database end if port_override != nil @port_override = port_override end if username != nil @username = username end if password != nil @password = password end if port != nil @port = port end if replica_set != nil @replica_set = replica_set end if connect_to_replica != nil @connect_to_replica = connect_to_replica end if tls_required != nil @tls_required = tls_required end end |
Instance Attribute Details
#auth_database ⇒ Object
Returns the value of attribute auth_database.
2713 2714 2715 |
# File 'lib/models/porcelain.rb', line 2713 def auth_database @auth_database end |
#connect_to_replica ⇒ Object
Returns the value of attribute connect_to_replica.
2725 2726 2727 |
# File 'lib/models/porcelain.rb', line 2725 def connect_to_replica @connect_to_replica end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
2705 2706 2707 |
# File 'lib/models/porcelain.rb', line 2705 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
2711 2712 2713 |
# File 'lib/models/porcelain.rb', line 2711 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
2701 2702 2703 |
# File 'lib/models/porcelain.rb', line 2701 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
2703 2704 2705 |
# File 'lib/models/porcelain.rb', line 2703 def name @name end |
#password ⇒ Object
Returns the value of attribute password.
2719 2720 2721 |
# File 'lib/models/porcelain.rb', line 2719 def password @password end |
#port ⇒ Object
Returns the value of attribute port.
2721 2722 2723 |
# File 'lib/models/porcelain.rb', line 2721 def port @port end |
#port_override ⇒ Object
Returns the value of attribute port_override.
2715 2716 2717 |
# File 'lib/models/porcelain.rb', line 2715 def port_override @port_override end |
#replica_set ⇒ Object
Returns the value of attribute replica_set.
2723 2724 2725 |
# File 'lib/models/porcelain.rb', line 2723 def replica_set @replica_set end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
2709 2710 2711 |
# File 'lib/models/porcelain.rb', line 2709 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
2707 2708 2709 |
# File 'lib/models/porcelain.rb', line 2707 def @tags end |
#tls_required ⇒ Object
Returns the value of attribute tls_required.
2727 2728 2729 |
# File 'lib/models/porcelain.rb', line 2727 def tls_required @tls_required end |
#username ⇒ Object
Returns the value of attribute username.
2717 2718 2719 |
# File 'lib/models/porcelain.rb', line 2717 def username @username end |
Instance Method Details
#to_json(options = {}) ⇒ Object
2789 2790 2791 2792 2793 2794 2795 |
# File 'lib/models/porcelain.rb', line 2789 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |