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

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

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.apigee.v1

final case class GetQueryArgs private(
  environmentId: besom.types.Output[String],
  organizationId: besom.types.Output[String],
  queryId: besom.types.Output[String]
)

object GetQueryArgs:
  def apply(
    environmentId: besom.types.Input[String],
    organizationId: besom.types.Input[String],
    queryId: besom.types.Input[String]
  )(using besom.types.Context): GetQueryArgs =
    new GetQueryArgs(
      environmentId = environmentId.asOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false),
      queryId = queryId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy