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

src.logging.v2.GetFolderExclusionArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.logging.v2

final case class GetFolderExclusionArgs private(
  exclusionId: besom.types.Output[String],
  folderId: besom.types.Output[String]
)

object GetFolderExclusionArgs:
  def apply(
    exclusionId: besom.types.Input[String],
    folderId: besom.types.Input[String]
  )(using besom.types.Context): GetFolderExclusionArgs =
    new GetFolderExclusionArgs(
      exclusionId = exclusionId.asOutput(isSecret = false),
      folderId = folderId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy