Sha256: 1432e2aa069e5cdaaee55e13a8a023322b71acef0673bd696e3cbfb33d759db9
Contents?: true
Size: 1.43 KB
Versions: 29
Compression:
Stored size: 1.43 KB
Contents
# Copyright 2023. Couchbase, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # frozen_string_literal: true require_relative "scope" require_relative "management" module Couchbase module Protostellar class Bucket attr_reader :name def initialize(client, name) @client = client @name = name end def scope(name) Scope.new(@client, @name, name) end def collection(name) default_scope.collection(name) end def default_scope Scope.new(@client, @name, "_default") end def default_collection default_scope.collection("_default") end def collections Management::CollectionManager.new(client: @client, bucket_name: @name) end def ping(_options = Options::Ping::DEFAULT) raise Couchbase::Error::FeatureNotAvailable, "The #{Protostellar::NAME} protocol does not support ping" end end end end
Version data entries
29 entries across 29 versions & 1 rubygems