This brings over the initial buildx prototype from pulumi/pulumi-docker and fixes various build and release issues.
68 lines
2.1 KiB
C#
Generated
68 lines
2.1 KiB
C#
Generated
// *** WARNING: this file was generated by pulumi. ***
|
|
// *** 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 CacheFromArgs : global::Pulumi.ResourceArgs
|
|
{
|
|
/// <summary>
|
|
/// Upload build caches to Azure's blob storage service.
|
|
/// </summary>
|
|
[Input("azblob")]
|
|
public Input<Inputs.CacheFromAzureBlobArgs>? Azblob { get; set; }
|
|
|
|
/// <summary>
|
|
/// When `true` this entry will be excluded. Defaults to `false`.
|
|
/// </summary>
|
|
[Input("disabled")]
|
|
public Input<bool>? Disabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Recommended for use with GitHub Actions workflows.
|
|
///
|
|
/// An action like `crazy-max/ghaction-github-runtime` is recommended to
|
|
/// expose appropriate credentials to your GitHub workflow.
|
|
/// </summary>
|
|
[Input("gha")]
|
|
public Input<Inputs.CacheFromGitHubActionsArgs>? Gha { get; set; }
|
|
|
|
/// <summary>
|
|
/// A simple backend which caches images on your local filesystem.
|
|
/// </summary>
|
|
[Input("local")]
|
|
public Input<Inputs.CacheFromLocalArgs>? Local { get; set; }
|
|
|
|
/// <summary>
|
|
/// A raw string as you would provide it to the Docker CLI (e.g.,
|
|
/// `type=inline`).
|
|
/// </summary>
|
|
[Input("raw")]
|
|
public Input<string>? Raw { get; set; }
|
|
|
|
/// <summary>
|
|
/// Upload build caches to remote registries.
|
|
/// </summary>
|
|
[Input("registry")]
|
|
public Input<Inputs.CacheFromRegistryArgs>? Registry { get; set; }
|
|
|
|
/// <summary>
|
|
/// Upload build caches to AWS S3 or an S3-compatible services such as
|
|
/// MinIO.
|
|
/// </summary>
|
|
[Input("s3")]
|
|
public Input<Inputs.CacheFromS3Args>? S3 { get; set; }
|
|
|
|
public CacheFromArgs()
|
|
{
|
|
}
|
|
public static new CacheFromArgs Empty => new CacheFromArgs();
|
|
}
|
|
}
|