src.apigee.v1.GetDeveloperAppArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.googlenative.apigee.v1
final case class GetDeveloperAppArgs private(
appId: besom.types.Output[String],
developerId: besom.types.Output[String],
entity: besom.types.Output[scala.Option[String]],
organizationId: besom.types.Output[String],
query: besom.types.Output[scala.Option[String]]
)
object GetDeveloperAppArgs:
def apply(
appId: besom.types.Input[String],
developerId: besom.types.Input[String],
entity: besom.types.Input.Optional[String] = scala.None,
organizationId: besom.types.Input[String],
query: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetDeveloperAppArgs =
new GetDeveloperAppArgs(
appId = appId.asOutput(isSecret = false),
developerId = developerId.asOutput(isSecret = false),
entity = entity.asOptionOutput(isSecret = false),
organizationId = organizationId.asOutput(isSecret = false),
query = query.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetDeveloperAppArgs] =
besom.internal.Encoder.derived[GetDeveloperAppArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetDeveloperAppArgs] =
besom.internal.ArgsEncoder.derived[GetDeveloperAppArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy