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