Class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionVideo
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionVideo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Video
Instance Attribute Summary collapse
-
#uri ⇒ String
Path to another storage (typically Google Cloud Storage).
-
#video ⇒ String
Raw bytes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudAiLargeModelsVisionVideo
constructor
A new instance of CloudAiLargeModelsVisionVideo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudAiLargeModelsVisionVideo
Returns a new instance of CloudAiLargeModelsVisionVideo.
403 404 405 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 403 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
Path to another storage (typically Google Cloud Storage).
Corresponds to the JSON property uri
395 396 397 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 395 def uri @uri end |
#video ⇒ String
Raw bytes.
Corresponds to the JSON property video
NOTE: Values are automatically base64 encoded/decoded in the client library.
401 402 403 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 401 def video @video end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
408 409 410 411 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 408 def update!(**args) @uri = args[:uri] if args.key?(:uri) @video = args[:video] if args.key?(:video) end |