Class: Google::Apis::DiscoveryV1::RestMethod::MediaUpload::Protocols::Resumable
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryV1::RestMethod::MediaUpload::Protocols::Resumable
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/discovery_v1/classes.rb,
generated/google/apis/discovery_v1/representations.rb,
generated/google/apis/discovery_v1/representations.rb
Overview
Supports the Resumable Media Upload protocol.
Instance Attribute Summary collapse
-
#multipart ⇒ Boolean
(also: #multipart?)
True if this endpoint supports uploading multipart media.
-
#path ⇒ String
The URI path to be used for upload.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Resumable
constructor
A new instance of Resumable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Resumable
Returns a new instance of Resumable
850 851 852 |
# File 'generated/google/apis/discovery_v1/classes.rb', line 850 def initialize(**args) update!(**args) end |
Instance Attribute Details
#multipart ⇒ Boolean Also known as: multipart?
True if this endpoint supports uploading multipart media.
Corresponds to the JSON property multipart
841 842 843 |
# File 'generated/google/apis/discovery_v1/classes.rb', line 841 def multipart @multipart end |
#path ⇒ String
The URI path to be used for upload. Should be used in conjunction with the
basePath property at the api-level.
Corresponds to the JSON property path
848 849 850 |
# File 'generated/google/apis/discovery_v1/classes.rb', line 848 def path @path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
855 856 857 858 |
# File 'generated/google/apis/discovery_v1/classes.rb', line 855 def update!(**args) @multipart = args[:multipart] if args.key?(:multipart) @path = args[:path] if args.key?(:path) end |