Class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionVideo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Video

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudAiLargeModelsVisionVideo

Returns a new instance of CloudAiLargeModelsVisionVideo.



430
431
432
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 430

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#uriString

Path to another storage (typically Google Cloud Storage). Corresponds to the JSON property uri

Returns:

  • (String)


422
423
424
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 422

def uri
  @uri
end

#videoString

Raw bytes. Corresponds to the JSON property video NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


428
429
430
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 428

def video
  @video
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



435
436
437
438
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 435

def update!(**args)
  @uri = args[:uri] if args.key?(:uri)
  @video = args[:video] if args.key?(:video)
end