Class: Google::Apis::CloudfunctionsV2alpha::GenerateUploadUrlResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2alpha::GenerateUploadUrlResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2alpha/classes.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb
Overview
Response of GenerateSourceUploadUrl
method.
Instance Attribute Summary collapse
-
#storage_source ⇒ Google::Apis::CloudfunctionsV2alpha::StorageSource
Location of the source in an archive file in Google Cloud Storage.
-
#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.
595 596 597 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#storage_source ⇒ Google::Apis::CloudfunctionsV2alpha::StorageSource
Location of the source in an archive file in Google Cloud Storage.
Corresponds to the JSON property storageSource
586 587 588 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 586 def storage_source @storage_source end |
#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
593 594 595 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 593 def upload_url @upload_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
600 601 602 603 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 600 def update!(**args) @storage_source = args[:storage_source] if args.key?(:storage_source) @upload_url = args[:upload_url] if args.key?(:upload_url) end |