Class: Google::Apis::ServicemanagementV1::MediaUpload
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::MediaUpload
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_v1/representations.rb
Overview
Defines the Media configuration for a service in case of an upload. Use this only for Scotty Requests. Do not use this for media support using Bytestream, add instead [][google.bytestream.RestByteStream] as an API to your configuration for Bytestream methods.
Instance Attribute Summary collapse
-
#complete_notification ⇒ Boolean
(also: #complete_notification?)
A boolean that determines whether a notification for the completion of an upload should be sent to the backend.
-
#dropzone ⇒ String
Name of the Scotty dropzone to use for the current API.
-
#enabled ⇒ Boolean
(also: #enabled?)
Whether upload is enabled.
-
#max_size ⇒ Fixnum
Optional maximum acceptable size for an upload.
-
#mime_types ⇒ Array<String>
An array of mimetype patterns.
-
#progress_notification ⇒ Boolean
(also: #progress_notification?)
Whether to receive a notification for progress changes of media upload.
-
#start_notification ⇒ Boolean
(also: #start_notification?)
Whether to receive a notification on the start of media upload.
-
#upload_service ⇒ String
DO NOT USE FIELDS BELOW THIS LINE UNTIL THIS WARNING IS REMOVED.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MediaUpload
constructor
A new instance of MediaUpload.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MediaUpload
Returns a new instance of MediaUpload
81 82 83 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 81 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_notification ⇒ Boolean Also known as: complete_notification?
A boolean that determines whether a notification for the completion of an
upload should be sent to the backend. These notifications will not be seen
by the client and will not consume quota.
Corresponds to the JSON property completeNotification
37 38 39 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 37 def complete_notification @complete_notification end |
#dropzone ⇒ String
Name of the Scotty dropzone to use for the current API.
Corresponds to the JSON property dropzone
55 56 57 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 55 def dropzone @dropzone end |
#enabled ⇒ Boolean Also known as: enabled?
Whether upload is enabled.
Corresponds to the JSON property enabled
49 50 51 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 49 def enabled @enabled end |
#max_size ⇒ Fixnum
Optional maximum acceptable size for an upload.
The size is specified in bytes.
Corresponds to the JSON property maxSize
79 80 81 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 79 def max_size @max_size end |
#mime_types ⇒ Array<String>
An array of mimetype patterns. Esf will only accept uploads that match one
of the given patterns.
Corresponds to the JSON property mimeTypes
73 74 75 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 73 def mime_types @mime_types end |
#progress_notification ⇒ Boolean Also known as: progress_notification?
Whether to receive a notification for progress changes of media upload.
Corresponds to the JSON property progressNotification
43 44 45 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 43 def progress_notification @progress_notification end |
#start_notification ⇒ Boolean Also known as: start_notification?
Whether to receive a notification on the start of media upload.
Corresponds to the JSON property startNotification
60 61 62 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 60 def start_notification @start_notification end |
#upload_service ⇒ String
DO NOT USE FIELDS BELOW THIS LINE UNTIL THIS WARNING IS REMOVED.
Specify name of the upload service if one is used for upload.
Corresponds to the JSON property uploadService
67 68 69 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 67 def upload_service @upload_service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
86 87 88 89 90 91 92 93 94 95 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 86 def update!(**args) @complete_notification = args[:complete_notification] if args.key?(:complete_notification) @progress_notification = args[:progress_notification] if args.key?(:progress_notification) @enabled = args[:enabled] if args.key?(:enabled) @dropzone = args[:dropzone] if args.key?(:dropzone) @start_notification = args[:start_notification] if args.key?(:start_notification) @upload_service = args[:upload_service] if args.key?(:upload_service) @mime_types = args[:mime_types] if args.key?(:mime_types) @max_size = args[:max_size] if args.key?(:max_size) end |