Show / Hide Table of Contents

Class ContainerUploadArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ContainerUploadArgs
Inherited Members
ResourceArgs.Empty
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 Source

ContainerUploadArgs()

Declaration
public ContainerUploadArgs()

Properties

View Source

Content

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>
View Source

ContentBase64

Declaration
public Input<string> ContentBase64 { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

File

path to a file in the container.

Declaration
public Input<string> File { get; set; }
Property Value
Type Description
Input<System.String>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.