src.gkehub.v1alpha.GetFeatureArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.googlenative.gkehub.v1alpha
final case class GetFeatureArgs private(
featureId: besom.types.Output[String],
location: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]]
)
object GetFeatureArgs:
def apply(
featureId: besom.types.Input[String],
location: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetFeatureArgs =
new GetFeatureArgs(
featureId = featureId.asOutput(isSecret = false),
location = location.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetFeatureArgs] =
besom.internal.Encoder.derived[GetFeatureArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetFeatureArgs] =
besom.internal.ArgsEncoder.derived[GetFeatureArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy