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