Class: Google::Apis::CloudfunctionsV1::GenerateUploadUrlResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV1::GenerateUploadUrlResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v1/classes.rb,
lib/google/apis/cloudfunctions_v1/representations.rb,
lib/google/apis/cloudfunctions_v1/representations.rb
Overview
Response of GenerateSourceUploadUrl
method.
Instance Attribute Summary collapse
-
#upload_url ⇒ String
The generated Google Cloud Storage signed URL that should be used for a function source code upload.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenerateUploadUrlResponse
constructor
A new instance of GenerateUploadUrlResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenerateUploadUrlResponse
Returns a new instance of GenerateUploadUrlResponse.
773 774 775 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 773 def initialize(**args) update!(**args) end |
Instance Attribute Details
#upload_url ⇒ String
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
771 772 773 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 771 def upload_url @upload_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
778 779 780 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 778 def update!(**args) @upload_url = args[:upload_url] if args.key?(:upload_url) end |