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