// *** WARNING: this file was generated by pulumi-language-dotnet. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.DockerBuild.Inputs { public sealed class CacheFromLocalArgs : global::Pulumi.ResourceArgs { /// /// Digest of manifest to import. /// [Input("digest")] public Input? Digest { get; set; } /// /// Path of the local directory where cache gets imported from. /// [Input("src", required: true)] public Input Src { get; set; } = null!; public CacheFromLocalArgs() { } public static new CacheFromLocalArgs Empty => new CacheFromLocalArgs(); } }