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

src.gkehub.v1.GetRbacrolebindingArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.gkehub.v1

final case class GetRbacrolebindingArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  rbacrolebindingId: besom.types.Output[String],
  scopeId: besom.types.Output[String]
)

object GetRbacrolebindingArgs:
  def apply(
    location: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None,
    rbacrolebindingId: besom.types.Input[String],
    scopeId: besom.types.Input[String]
  )(using besom.types.Context): GetRbacrolebindingArgs =
    new GetRbacrolebindingArgs(
      location = location.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false),
      rbacrolebindingId = rbacrolebindingId.asOutput(isSecret = false),
      scopeId = scopeId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy