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

src.apigee.v1.GetResourcefileArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.apigee.v1

final case class GetResourcefileArgs private(
  environmentId: besom.types.Output[String],
  name: besom.types.Output[String],
  organizationId: besom.types.Output[String],
  `type`: besom.types.Output[String]
)

object GetResourcefileArgs:
  def apply(
    environmentId: besom.types.Input[String],
    name: besom.types.Input[String],
    organizationId: besom.types.Input[String],
    `type`: besom.types.Input[String]
  )(using besom.types.Context): GetResourcefileArgs =
    new GetResourcefileArgs(
      environmentId = environmentId.asOutput(isSecret = false),
      name = name.asOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false),
      `type` = `type`.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy