27 lines
759 B
C#
Generated
27 lines
759 B
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 CacheFromRegistryArgs : global::Pulumi.ResourceArgs
|
|
{
|
|
/// <summary>
|
|
/// Fully qualified name of the cache image to import.
|
|
/// </summary>
|
|
[Input("ref", required: true)]
|
|
public Input<string> Ref { get; set; } = null!;
|
|
|
|
public CacheFromRegistryArgs()
|
|
{
|
|
}
|
|
public static new CacheFromRegistryArgs Empty => new CacheFromRegistryArgs();
|
|
}
|
|
}
|