Class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoResponseVideo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudAiLargeModelsVisionGenerateVideoResponseVideo

Returns a new instance of CloudAiLargeModelsVisionGenerateVideoResponseVideo.



383
384
385
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 383

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)


366
367
368
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 366

def bytes_base64_encoded
  @bytes_base64_encoded
end

#experiments_metadataGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionGenerateVideoExperiments

Experimental parameters for video generation. Corresponds to the JSON property experimentsMetadata



371
372
373
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 371

def 
  @experiments_metadata
end

#gcs_uriString

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

Returns:

  • (String)


376
377
378
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 376

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)


381
382
383
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 381

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



388
389
390
391
392
393
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 388

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