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

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

package besom.api.googlenative.apigee.v1

final case class GetAppGroupAppKeyArgs private(
  appId: besom.types.Output[String],
  appgroupId: besom.types.Output[String],
  keyId: besom.types.Output[String],
  organizationId: besom.types.Output[String]
)

object GetAppGroupAppKeyArgs:
  def apply(
    appId: besom.types.Input[String],
    appgroupId: besom.types.Input[String],
    keyId: besom.types.Input[String],
    organizationId: besom.types.Input[String]
  )(using besom.types.Context): GetAppGroupAppKeyArgs =
    new GetAppGroupAppKeyArgs(
      appId = appId.asOutput(isSecret = false),
      appgroupId = appgroupId.asOutput(isSecret = false),
      keyId = keyId.asOutput(isSecret = false),
      organizationId = organizationId.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy