Rename to docker-build

This commit is contained in:
Bryce Lampe
2024-04-15 14:51:07 -07:00
parent 4cd6d49ba9
commit 12bf5dd689
139 changed files with 638 additions and 645 deletions

View File

@@ -7,7 +7,7 @@ using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
namespace Pulumi.Dockerbuild.Outputs
namespace Pulumi.DockerBuild.Outputs
{
[OutputType]
@@ -16,7 +16,7 @@ namespace Pulumi.Dockerbuild.Outputs
/// <summary>
/// The compression type to use.
/// </summary>
public readonly Pulumi.Dockerbuild.CompressionType? Compression;
public readonly Pulumi.DockerBuild.CompressionType? Compression;
/// <summary>
/// Compression level from 0 to 22.
/// </summary>
@@ -36,11 +36,11 @@ namespace Pulumi.Dockerbuild.Outputs
/// <summary>
/// The cache mode to use. Defaults to `min`.
/// </summary>
public readonly Pulumi.Dockerbuild.CacheMode? Mode;
public readonly Pulumi.DockerBuild.CacheMode? Mode;
[OutputConstructor]
private CacheToLocal(
Pulumi.Dockerbuild.CompressionType? compression,
Pulumi.DockerBuild.CompressionType? compression,
int? compressionLevel,
@@ -50,7 +50,7 @@ namespace Pulumi.Dockerbuild.Outputs
bool? ignoreError,
Pulumi.Dockerbuild.CacheMode? mode)
Pulumi.DockerBuild.CacheMode? mode)
{
Compression = compression;
CompressionLevel = compressionLevel;