Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerateVideoResponseVideo

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

A generated video.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1GenerateVideoResponseVideo

Returns a new instance of GoogleCloudAiplatformV1GenerateVideoResponseVideo.



17688
17689
17690
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17688

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

Instance Attribute Details

#bytes_base64_encodedString

Base64 encoded bytes string representing the video. Corresponds to the JSON property bytesBase64Encoded

Returns:

  • (String)


17676
17677
17678
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17676

def bytes_base64_encoded
  @bytes_base64_encoded
end

#gcs_uriString

Cloud Storage URI where the generated video is written. Corresponds to the JSON property gcsUri

Returns:

  • (String)


17681
17682
17683
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17681

def gcs_uri
  @gcs_uri
end

#mime_typeString

The MIME type of the content of the video. - video/mp4 Corresponds to the JSON property mimeType

Returns:

  • (String)


17686
17687
17688
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17686

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17693
17694
17695
17696
17697
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17693

def update!(**args)
  @bytes_base64_encoded = args[:bytes_base64_encoded] if args.key?(:bytes_base64_encoded)
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
end