Sha256: b6256a2b01b61062a2a735875381b23bab48ea6d8b211b1765bd304c941d3032
Contents?: true
Size: 1.27 KB
Versions: 6
Compression:
Stored size: 1.27 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 end end end
Version data entries
6 entries across 6 versions & 1 rubygems