// *** 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.Outputs { [OutputType] public sealed class CacheToAzureBlob { /// /// Base URL of the storage account. /// public readonly string? AccountUrl; /// /// Ignore errors caused by failed cache exports. /// public readonly bool? IgnoreError; /// /// The cache mode to use. Defaults to `min`. /// public readonly Pulumi.DockerBuild.CacheMode? Mode; /// /// The name of the cache image. /// public readonly string Name; /// /// Blob storage account key. /// public readonly string? SecretAccessKey; [OutputConstructor] private CacheToAzureBlob( string? accountUrl, bool? ignoreError, Pulumi.DockerBuild.CacheMode? mode, string name, string? secretAccessKey) { AccountUrl = accountUrl; IgnoreError = ignoreError; Mode = mode; Name = name; SecretAccessKey = secretAccessKey; } } }