All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.compute.beta.DiskIamBindingArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.compute.beta

final case class DiskIamBindingArgs private(
  condition: besom.types.Output[scala.Option[besom.api.googlenative.iam.v1.inputs.ConditionArgs]],
  members: besom.types.Output[scala.collection.immutable.List[String]],
  name: besom.types.Output[String],
  role: besom.types.Output[String]
)

object DiskIamBindingArgs:
  def apply(
    condition: besom.types.Input.Optional[besom.api.googlenative.iam.v1.inputs.ConditionArgs] = scala.None,
    members: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]],
    name: besom.types.Input[String],
    role: besom.types.Input[String]
  )(using besom.types.Context): DiskIamBindingArgs =
    new DiskIamBindingArgs(
      condition = condition.asOptionOutput(isSecret = false),
      members = members.asOutput(isSecret = false),
      name = name.asOutput(isSecret = false),
      role = role.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[DiskIamBindingArgs] =
    besom.internal.Encoder.derived[DiskIamBindingArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[DiskIamBindingArgs] =
    besom.internal.ArgsEncoder.derived[DiskIamBindingArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy