Class: Couchbase::Options::Ping
- Inherits:
-
Object
- Object
- Couchbase::Options::Ping
- Defined in:
- lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb more...
Overview
Options for Bucket#ping
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(report_id: nil, service_types: [:kv, :query, :analytics, :search, :views, :management], timeout: nil) {|self| ... } ⇒ Ping
constructor
Creates an instance of options for Bucket#ping.
Constructor Details
#initialize(report_id: nil, service_types: [:kv, :query, :analytics, :search, :views, :management], timeout: nil) {|self| ... } ⇒ Ping
Creates an instance of options for Bucket#ping
@@param [Array<Symbol>] service_types The service types to limit this diagnostics request
1599 1600 1601 1602 1603 1604 1605 1606 |
# File 'lib/couchbase/options.rb', line 1599 def initialize(report_id: nil, service_types: [:kv, :query, :analytics, :search, :views, :management], timeout: nil) @report_id = report_id @service_types = service_types @timeout = timeout yield self if block_given? end |
Instance Attribute Details
#report_id ⇒ String
1588 1589 1590 |
# File 'lib/couchbase/options.rb', line 1588 def report_id @report_id end |
#service_types ⇒ Array<Symbol>
1589 1590 1591 |
# File 'lib/couchbase/options.rb', line 1589 def service_types @service_types end |
#timeout ⇒ Integer, #in_milliseconds
1590 1591 1592 |
# File 'lib/couchbase/options.rb', line 1590 def timeout @timeout end |