Class ContainerUploadArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Docker.Inputs
Assembly: Pulumi.Docker.dll
Syntax
public sealed class ContainerUploadArgs : ResourceArgs
Constructors
View SourceContainerUploadArgs()
Declaration
public ContainerUploadArgs()
Properties
View SourceContent
Literal string value to use as the object content, which will be uploaded as UTF-8-encoded text.
Declaration
public Input<string> Content { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ContentBase64
Declaration
public Input<string> ContentBase64 { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Executable
If true, the file will be uploaded with user executable permission. Defaults to false.
Declaration
public Input<bool> Executable { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
File
path to a file in the container.
Declaration
public Input<string> File { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Source
A filename that references a file which will be uploaded as the object content. This allows for large file uploads that do not get stored in state.
Declaration
public Input<string> Source { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SourceHash
If using source, this will force an update if the file content has updated but the filename has not.
Declaration
public Input<string> SourceHash { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |