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

src.firebaserules.v1.GetRulesetArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.googlenative.firebaserules.v1

final case class GetRulesetArgs private(
  project: besom.types.Output[scala.Option[String]],
  rulesetId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy