Class: Couchbase::Options::Diagnostics
- Inherits:
-
Object
- Object
- Couchbase::Options::Diagnostics
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Cluster#diagnostics
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(report_id: nil) {|self| ... } ⇒ Diagnostics
constructor
Creates an instance of options for Cluster#diagnostics.
Constructor Details
#initialize(report_id: nil) {|self| ... } ⇒ Diagnostics
Creates an instance of options for Cluster#diagnostics
1171 1172 1173 1174 |
# File 'lib/couchbase/options.rb', line 1171 def initialize(report_id: nil) @report_id = report_id yield self if block_given? end |
Instance Attribute Details
#report_id ⇒ String
1164 1165 1166 |
# File 'lib/couchbase/options.rb', line 1164 def report_id @report_id end |