class Google::Apis::FirebasestorageV1beta::Bucket

A storage bucket and its relation to a parent Firebase project.

Attributes

location[RW]

Output only. Location of the storage bucket. Corresponds to the JSON property `location` @return [String]

name[RW]

Resource name of the bucket. Corresponds to the JSON property `name` @return [String]

reconciling[RW]

Output only. Represents whether a bucket is being moved to a new location, in which case reconciling is set to true. Corresponds to the JSON property `reconciling` @return [Boolean]

reconciling?[RW]

Output only. Represents whether a bucket is being moved to a new location, in which case reconciling is set to true. Corresponds to the JSON property `reconciling` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasestorage_v1beta/classes.rb, line 59
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasestorage_v1beta/classes.rb, line 64
def update!(**args)
  @location = args[:location] if args.key?(:location)
  @name = args[:name] if args.key?(:name)
  @reconciling = args[:reconciling] if args.key?(:reconciling)
end