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.
2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 |
# File 'lib/models/porcelain.rb', line 2655 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.
2639 2640 2641 |
# File 'lib/models/porcelain.rb', line 2639 def auth_database @auth_database end |
#connect_to_replica ⇒ Object
Returns the value of attribute connect_to_replica.
2651 2652 2653 |
# File 'lib/models/porcelain.rb', line 2651 def connect_to_replica @connect_to_replica end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
2631 2632 2633 |
# File 'lib/models/porcelain.rb', line 2631 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
2637 2638 2639 |
# File 'lib/models/porcelain.rb', line 2637 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
2627 2628 2629 |
# File 'lib/models/porcelain.rb', line 2627 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
2629 2630 2631 |
# File 'lib/models/porcelain.rb', line 2629 def name @name end |
#password ⇒ Object
Returns the value of attribute password.
2645 2646 2647 |
# File 'lib/models/porcelain.rb', line 2645 def password @password end |
#port ⇒ Object
Returns the value of attribute port.
2647 2648 2649 |
# File 'lib/models/porcelain.rb', line 2647 def port @port end |
#port_override ⇒ Object
Returns the value of attribute port_override.
2641 2642 2643 |
# File 'lib/models/porcelain.rb', line 2641 def port_override @port_override end |
#replica_set ⇒ Object
Returns the value of attribute replica_set.
2649 2650 2651 |
# File 'lib/models/porcelain.rb', line 2649 def replica_set @replica_set end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
2635 2636 2637 |
# File 'lib/models/porcelain.rb', line 2635 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
2633 2634 2635 |
# File 'lib/models/porcelain.rb', line 2633 def @tags end |
#tls_required ⇒ Object
Returns the value of attribute tls_required.
2653 2654 2655 |
# File 'lib/models/porcelain.rb', line 2653 def tls_required @tls_required end |
#username ⇒ Object
Returns the value of attribute username.
2643 2644 2645 |
# File 'lib/models/porcelain.rb', line 2643 def username @username end |
Instance Method Details
#to_json(options = {}) ⇒ Object
2715 2716 2717 2718 2719 2720 2721 |
# File 'lib/models/porcelain.rb', line 2715 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 |