All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zio.aws.tnb.model.PutSolFunctionPackageContentRequest.scala Maven / Gradle / Ivy

There is a newer version: 7.28.29.10
Show newest version
package zio.aws.tnb.model
import zio.ZIO
import zio.aws.core.{AwsError, BuilderHelper}
import zio.prelude.data.Optional
import zio.aws.tnb.model.primitives.{VnfPkgId, SensitiveBlob}
import scala.jdk.CollectionConverters.*
final case class PutSolFunctionPackageContentRequest(
    contentType: Optional[zio.aws.tnb.model.PackageContentType] =
      Optional.Absent,
    file: SensitiveBlob,
    vnfPkgId: VnfPkgId
) {
  def buildAwsValue()
      : software.amazon.awssdk.services.tnb.model.PutSolFunctionPackageContentRequest = {
    import PutSolFunctionPackageContentRequest.zioAwsBuilderHelper.BuilderOps
    software.amazon.awssdk.services.tnb.model.PutSolFunctionPackageContentRequest
      .builder()
      .optionallyWith(contentType.map(value => value.unwrap))(_.contentType)
      .file(
        software.amazon.awssdk.core.SdkBytes
          .fromByteArrayUnsafe(file.toArray[Byte])
      )
      .vnfPkgId(VnfPkgId.unwrap(vnfPkgId): java.lang.String)
      .build()
  }
  def asReadOnly
      : zio.aws.tnb.model.PutSolFunctionPackageContentRequest.ReadOnly =
    zio.aws.tnb.model.PutSolFunctionPackageContentRequest.wrap(buildAwsValue())
}
object PutSolFunctionPackageContentRequest {
  private lazy val zioAwsBuilderHelper: BuilderHelper[
    software.amazon.awssdk.services.tnb.model.PutSolFunctionPackageContentRequest
  ] = BuilderHelper.apply
  trait ReadOnly {
    def asEditable: zio.aws.tnb.model.PutSolFunctionPackageContentRequest =
      zio.aws.tnb.model.PutSolFunctionPackageContentRequest(
        contentType.map(value => value),
        file,
        vnfPkgId
      )
    def contentType: Optional[zio.aws.tnb.model.PackageContentType]
    def file: SensitiveBlob
    def vnfPkgId: VnfPkgId
    def getContentType
        : ZIO[Any, AwsError, zio.aws.tnb.model.PackageContentType] =
      AwsError.unwrapOptionField("contentType", contentType)
    def getFile: ZIO[Any, Nothing, SensitiveBlob] = ZIO.succeed(file)
    def getVnfPkgId: ZIO[Any, Nothing, VnfPkgId] = ZIO.succeed(vnfPkgId)
  }
  private final class Wrapper(
      impl: software.amazon.awssdk.services.tnb.model.PutSolFunctionPackageContentRequest
  ) extends zio.aws.tnb.model.PutSolFunctionPackageContentRequest.ReadOnly {
    override val contentType: Optional[zio.aws.tnb.model.PackageContentType] =
      zio.aws.core.internal
        .optionalFromNullable(impl.contentType())
        .map(value => zio.aws.tnb.model.PackageContentType.wrap(value))
    override val file: SensitiveBlob = zio.aws.tnb.model.primitives
      .SensitiveBlob(zio.Chunk.fromArray(impl.file().asByteArrayUnsafe()))
    override val vnfPkgId: VnfPkgId =
      zio.aws.tnb.model.primitives.VnfPkgId(impl.vnfPkgId())
  }
  def wrap(
      impl: software.amazon.awssdk.services.tnb.model.PutSolFunctionPackageContentRequest
  ): zio.aws.tnb.model.PutSolFunctionPackageContentRequest.ReadOnly =
    new Wrapper(impl)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy