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