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