Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec

import type { GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Value specification for a parameter in INTEGER type.

interface GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec {
defaultValue?: bigint;
maxValue?: bigint;
minValue?: bigint;
}

§Properties

§
defaultValue?: bigint
[src]

A default value for an INTEGER parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.

§
maxValue?: bigint
[src]

Required. Inclusive maximum value of the parameter.

§
minValue?: bigint
[src]

Required. Inclusive minimum value of the parameter.