class Google::Apis::FirebasehostingV1beta1::VersionFile

A static content file that is part of a version.

Attributes

hash_prop[RW]

The SHA256 content hash of the file. Corresponds to the JSON property `hash` @return [String]

path[RW]

The URI at which the file's content should display. Corresponds to the JSON property `path` @return [String]

status[RW]

Output only. The current status of a particular file in the specified version. The value will be either `pending upload` or `uploaded`. Corresponds to the JSON property `status` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 1241
def update!(**args)
  @hash_prop = args[:hash_prop] if args.key?(:hash_prop)
  @path = args[:path] if args.key?(:path)
  @status = args[:status] if args.key?(:status)
end