
src.ml.v1.StudyArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.ml.v1
final case class StudyArgs private(
location: besom.types.Output[scala.Option[String]],
project: besom.types.Output[scala.Option[String]],
studyConfig: besom.types.Output[besom.api.googlenative.ml.v1.inputs.GoogleCloudMlV1StudyConfigArgs],
studyId: besom.types.Output[String]
)
object StudyArgs:
def apply(
location: besom.types.Input.Optional[String] = scala.None,
project: besom.types.Input.Optional[String] = scala.None,
studyConfig: besom.types.Input[besom.api.googlenative.ml.v1.inputs.GoogleCloudMlV1StudyConfigArgs],
studyId: besom.types.Input[String]
)(using besom.types.Context): StudyArgs =
new StudyArgs(
location = location.asOptionOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false),
studyConfig = studyConfig.asOutput(isSecret = false),
studyId = studyId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[StudyArgs] =
besom.internal.Encoder.derived[StudyArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[StudyArgs] =
besom.internal.ArgsEncoder.derived[StudyArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy