Class: Google::Apis::CloudfunctionsV1::GenerateUploadUrlResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudfunctions_v1/classes.rb,
generated/google/apis/cloudfunctions_v1/representations.rb,
generated/google/apis/cloudfunctions_v1/representations.rb

Overview

Response of GenerateSourceUploadUrl method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GenerateUploadUrlResponse

Returns a new instance of GenerateUploadUrlResponse.



612
613
614
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 612

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#upload_urlString

The generated Google Cloud Storage signed URL that should be used for a function source code upload. The uploaded file should be a zip archive which contains a function. Corresponds to the JSON property uploadUrl

Returns:

  • (String)


610
611
612
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 610

def upload_url
  @upload_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



617
618
619
# File 'generated/google/apis/cloudfunctions_v1/classes.rb', line 617

def update!(**args)
  @upload_url = args[:upload_url] if args.key?(:upload_url)
end