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