Class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1VideoResponseFormat

Inherits:
Object
  • Object
show all
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

Configuration for video output format.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GenaiVertexV1beta1VideoResponseFormat

Returns a new instance of GenaiVertexV1beta1VideoResponseFormat.



6684
6685
6686
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6684

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

Instance Attribute Details

#aspect_ratioString

The aspect ratio for the video output. Corresponds to the JSON property aspectRatio

Returns:

  • (String)


6666
6667
6668
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6666

def aspect_ratio
  @aspect_ratio
end

#deliveryString

The delivery mode for the video output. Corresponds to the JSON property delivery

Returns:

  • (String)


6671
6672
6673
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6671

def delivery
  @delivery
end

#durationString

The duration for the video output. Corresponds to the JSON property duration

Returns:

  • (String)


6676
6677
6678
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6676

def duration
  @duration
end

#gcs_uriString

The GCS URI to store the video output. Required for Vertex if delivery mode is URI. Corresponds to the JSON property gcsUri

Returns:

  • (String)


6682
6683
6684
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6682

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6689
6690
6691
6692
6693
6694
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6689

def update!(**args)
  @aspect_ratio = args[:aspect_ratio] if args.key?(:aspect_ratio)
  @delivery = args[:delivery] if args.key?(:delivery)
  @duration = args[:duration] if args.key?(:duration)
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
end