class Google::Apis::FirebasehostingV1beta1::PopulateVersionFilesResponse

Attributes

upload_required_hashes[RW]

The content hashes of the specified files that need to be uploaded to the specified URL. Corresponds to the JSON property `uploadRequiredHashes` @return [Array<String>]

upload_url[RW]

The URL to which the files should be uploaded, in the format: “upload- firebasehosting.googleapis.com/upload/sites/SITE_ID /versions/VERSION_ID/files” Perform a multipart `POST` of the Gzipped file contents to the URL using a forward slash and the hash of the file appended to the end. Corresponds to the JSON property `uploadUrl` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 750
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 755
def update!(**args)
  @upload_required_hashes = args[:upload_required_hashes] if args.key?(:upload_required_hashes)
  @upload_url = args[:upload_url] if args.key?(:upload_url)
end