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.
577 578 579 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 577 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
568 569 570 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 568 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
575 576 577 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 575 def upload_url @upload_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
582 583 584 585 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 582 def update!(**args) @storage_source = args[:storage_source] if args.key?(:storage_source) @upload_url = args[:upload_url] if args.key?(:upload_url) end |