Class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1ImageContent

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

An image content block.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GenaiVertexV1beta1ImageContent

Returns a new instance of GenaiVertexV1beta1ImageContent.



3097
3098
3099
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3097

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

Instance Attribute Details

#dataString

The image content. Corresponds to the JSON property data NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


3080
3081
3082
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3080

def data
  @data
end

#mime_typeString

The mime type of the image. Corresponds to the JSON property mimeType

Returns:

  • (String)


3085
3086
3087
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3085

def mime_type
  @mime_type
end

#resolutionString

The resolution of the media. Corresponds to the JSON property resolution

Returns:

  • (String)


3090
3091
3092
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3090

def resolution
  @resolution
end

#uriString

The URI of the image. Corresponds to the JSON property uri

Returns:

  • (String)


3095
3096
3097
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3095

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3102
3103
3104
3105
3106
3107
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 3102

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