Package-level declarations

Types

Link copied to clipboard
data class BoundingPolyArgs(val normalizedVertices: Output<List<NormalizedVertexArgs>>? = null, val vertices: Output<List<VertexArgs>>? = null) : ConvertibleToJava<BoundingPolyArgs>

A bounding polygon for the detected image annotation.

Link copied to clipboard
Link copied to clipboard
data class GetProductPlainArgs(val location: String, val productId: String, val project: String? = null) : ConvertibleToJava<GetProductPlainArgs>
Link copied to clipboard
data class GetProductSetPlainArgs(val location: String, val productSetId: String, val project: String? = null) : ConvertibleToJava<GetProductSetPlainArgs>
Link copied to clipboard
data class GetReferenceImagePlainArgs(val location: String, val productId: String, val project: String? = null, val referenceImageId: String) : ConvertibleToJava<GetReferenceImagePlainArgs>
Link copied to clipboard
data class KeyValueArgs(val key: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<KeyValueArgs>

A product label represented as a key-value pair.

Link copied to clipboard
Link copied to clipboard
data class NormalizedVertexArgs(val x: Output<Double>? = null, val y: Output<Double>? = null) : ConvertibleToJava<NormalizedVertexArgs>

A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.

Link copied to clipboard
data class VertexArgs(val x: Output<Int>? = null, val y: Output<Int>? = null) : ConvertibleToJava<VertexArgs>

A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.

Link copied to clipboard

Builder for VertexArgs.