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