Uses of Interface
org.springframework.boot.buildpack.platform.io.TarArchive
Packages that use TarArchive
Package
Description
Central API for performing a buildpack build.
A limited Docker API providing the operations needed by pack.
Docker types.
IO classes and utilities.
-
Uses of TarArchive in org.springframework.boot.buildpack.platform.build
Methods in org.springframework.boot.buildpack.platform.build that return TarArchiveModifier and TypeMethodDescriptionBuildRequest.getApplicationContent(Owner owner) Return aTarArchivecontaining the application content that the buildpack should package.Method parameters in org.springframework.boot.buildpack.platform.build with type arguments of type TarArchiveModifier and TypeMethodDescriptionstatic BuildRequestBuildRequest.of(ImageReference name, Function<Owner, TarArchive> applicationContent) Factory method to create a newBuildRequestwith specific content. -
Uses of TarArchive in org.springframework.boot.buildpack.platform.docker
Method parameters in org.springframework.boot.buildpack.platform.docker with type arguments of type TarArchiveModifier and TypeMethodDescriptionvoidDockerApi.ImageApi.exportLayers(ImageReference reference, @Nullable ImagePlatform platform, IOBiConsumer<String, TarArchive> exports) Export the layers of an image asTarArchives.voidDockerApi.ImageApi.exportLayers(ImageReference reference, IOBiConsumer<String, TarArchive> exports) Export the layers of an image asTarArchives. -
Uses of TarArchive in org.springframework.boot.buildpack.platform.docker.type
Classes in org.springframework.boot.buildpack.platform.docker.type that implement TarArchiveModifier and TypeClassDescriptionclassAn image archive that can be loaded into Docker.Methods in org.springframework.boot.buildpack.platform.docker.type that return TarArchiveModifier and TypeMethodDescriptionContainerContent.getArchive()Return the actual content to be added.Methods in org.springframework.boot.buildpack.platform.docker.type with parameters of type TarArchiveModifier and TypeMethodDescriptionstatic LayerLayer.fromTarArchive(TarArchive tarArchive) Factory method to create a newLayerfrom aTarArchive.static ContainerContentContainerContent.of(TarArchive archive) Factory method to create a newContainerContentinstance written to the root of the container.static ContainerContentContainerContent.of(TarArchive archive, String destinationPath) Factory method to create a newContainerContentinstance. -
Uses of TarArchive in org.springframework.boot.buildpack.platform.io
Classes in org.springframework.boot.buildpack.platform.io that implement TarArchiveMethods in org.springframework.boot.buildpack.platform.io that return TarArchiveModifier and TypeMethodDescriptionstatic TarArchiveTarArchive.fromInputStream(InputStream inputStream, TarArchive.Compression compression) Factory method to adapt a ZIP file toTarArchive.static TarArchiveFactory method to adapt a ZIP file toTarArchive.static TarArchiveTarArchive.of(IOConsumer<Layout> layout) Factory method to create a newTarArchiveinstance with a specific layout.