
src.apigee.v1.SharedflowArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.apigee.v1
final case class SharedflowArgs private(
action: besom.types.Output[String],
contentType: besom.types.Output[scala.Option[String]],
data: besom.types.Output[scala.Option[String]],
extensions: besom.types.Output[scala.Option[scala.collection.immutable.List[scala.Predef.Map[String, String]]]],
name: besom.types.Output[scala.Option[String]],
organizationId: besom.types.Output[String]
)
object SharedflowArgs:
def apply(
action: besom.types.Input[String],
contentType: besom.types.Input.Optional[String] = scala.None,
data: besom.types.Input.Optional[String] = scala.None,
extensions: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[scala.Predef.Map[String, String]]]] = scala.None,
name: besom.types.Input.Optional[String] = scala.None,
organizationId: besom.types.Input[String]
)(using besom.types.Context): SharedflowArgs =
new SharedflowArgs(
action = action.asOutput(isSecret = false),
contentType = contentType.asOptionOutput(isSecret = false),
data = data.asOptionOutput(isSecret = false),
extensions = extensions.asOptionOutput(isSecret = false),
name = name.asOptionOutput(isSecret = false),
organizationId = organizationId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[SharedflowArgs] =
besom.internal.Encoder.derived[SharedflowArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[SharedflowArgs] =
besom.internal.ArgsEncoder.derived[SharedflowArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy