Version Args
data class VersionArgs(val epoch: Output<Int>? = null, val fullName: Output<String>? = null, val inclusive: Output<Boolean>? = null, val kind: Output<VersionKind>, val name: Output<String>? = null, val revision: Output<String>? = null) : ConvertibleToJava<VersionArgs>
Version contains structured information about the version of a package.
Constructors
Link copied to clipboard
fun VersionArgs(epoch: Output<Int>? = null, fullName: Output<String>? = null, inclusive: Output<Boolean>? = null, kind: Output<VersionKind>, name: Output<String>? = null, revision: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Whether this version is specifying part of an inclusive range. Grafeas does not have the capability to specify version ranges; instead we have fields that specify start version and end versions. At times this is insufficient - we also need to specify whether the version is included in the range or is excluded from the range. This boolean is expected to be set to true when the version is included in a range.
Link copied to clipboard