Class RemoteImageState
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
Assembly: Pulumi.Docker.dll
Syntax
public sealed class RemoteImageState : ResourceArgs
Constructors
View SourceRemoteImageState()
Declaration
public RemoteImageState()
Properties
View SourceKeepLocally
If true, then the Docker image won't be deleted on destroy operation. If this is false, it will delete the image from the docker local storage on destroy operation.
Declaration
public Input<bool> KeepLocally { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Latest
Declaration
public Input<string> Latest { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name of the Docker image, including any tags or SHA256 repo digests.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PullTrigger
Deprecated, use pull_triggers instead.
Declaration
public Input<string> PullTrigger { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PullTriggers
List of values which cause an
image pull when changed. This is used to store the image digest from the
registry when using the docker..getRegistryImage data source
to trigger an image update.
Declaration
public InputList<string> PullTriggers { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |