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

src.contentwarehouse.v1.GetRuleSetArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.contentwarehouse.v1

final case class GetRuleSetArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  ruleSetId: besom.types.Output[String]
)

object GetRuleSetArgs:
  def apply(
    location: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None,
    ruleSetId: besom.types.Input[String]
  )(using besom.types.Context): GetRuleSetArgs =
    new GetRuleSetArgs(
      location = location.asOutput(isSecret = false),
      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