Fixes: #497
This PR follows the `weekly-pulumi-update` CI workflow steps to update
our `pulumi/pulumi` dependency, with manual intervention to resolve
tooling update conflicts. Before generating the SDKs, it's necessary to
update the language tools and otel packages to ensure compatibility with
the latest changes.
Additional command executed for the manual updates:
```sh
TOOLS=(
"github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3"
"github.com/pulumi/pulumi/sdk/nodejs/cmd/pulumi-language-nodejs/v3"
"github.com/pulumi/pulumi/sdk/python/cmd/pulumi-language-python/v3"
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
)
for TOOL in "${TOOLS[@]}"; do
go get -u $TOOL
go mod tidy
done
```
---
Note: the Go directive is upgraded to v1.24 as
`github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3` requires Go
v1.24
([ref](5c96e4e6aa/sdk/go/pulumi-language-go/go.mod (L3))).
68 lines
2.1 KiB
C#
Generated
68 lines
2.1 KiB
C#
Generated
// *** 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 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();
|
|
}
|
|
}
|