Show / Hide Table of Contents

Class ServiceTaskSpecContainerSpecGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceTaskSpecContainerSpecGetArgs
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 ServiceTaskSpecContainerSpecGetArgs : ResourceArgs

Constructors

View Source

ServiceTaskSpecContainerSpecGetArgs()

Declaration
public ServiceTaskSpecContainerSpecGetArgs()

Properties

View Source

Args

Arguments to the command.

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

Commands

The command to be run in the image.

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

Configs

See Configs below for details.

Declaration
public InputList<ServiceTaskSpecContainerSpecConfigGetArgs> Configs { get; set; }
Property Value
Type Description
InputList<ServiceTaskSpecContainerSpecConfigGetArgs>
View Source

Dir

The working directory for commands to run in.

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

DnsConfig

See DNS Config below for details.

Declaration
public Input<ServiceTaskSpecContainerSpecDnsConfigGetArgs> DnsConfig { get; set; }
Property Value
Type Description
Input<ServiceTaskSpecContainerSpecDnsConfigGetArgs>
View Source

Env

A list of environment variables in the form VAR=value.

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

Groups

A list of additional groups that the container process will run as.

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

Healthcheck

See Healthcheck below for details.

Declaration
public Input<ServiceTaskSpecContainerSpecHealthcheckGetArgs> Healthcheck { get; set; }
Property Value
Type Description
Input<ServiceTaskSpecContainerSpecHealthcheckGetArgs>
View Source

Hostname

The hostname to use for the container, as a valid RFC 1123 hostname.

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

Hosts

Declaration
public InputList<ServiceTaskSpecContainerSpecHostGetArgs> Hosts { get; set; }
Property Value
Type Description
InputList<ServiceTaskSpecContainerSpecHostGetArgs>
View Source

Image

The image used to create the Docker service.

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

Isolation

Isolation technology of the containers running the service. (Windows only). Valid values are: default|process|hyperv

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

Labels

See Labels below for details.

Declaration
public InputList<ServiceTaskSpecContainerSpecLabelGetArgs> Labels { get; set; }
Property Value
Type Description
InputList<ServiceTaskSpecContainerSpecLabelGetArgs>
View Source

Mounts

See Mounts below for details.

Declaration
public InputList<ServiceTaskSpecContainerSpecMountGetArgs> Mounts { get; set; }
Property Value
Type Description
InputList<ServiceTaskSpecContainerSpecMountGetArgs>
View Source

Privileges

See Privileges below for details.

Declaration
public Input<ServiceTaskSpecContainerSpecPrivilegesGetArgs> Privileges { get; set; }
Property Value
Type Description
Input<ServiceTaskSpecContainerSpecPrivilegesGetArgs>
View Source

ReadOnly

Mount the container's root filesystem as read only.

Declaration
public Input<bool> ReadOnly { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Secrets

See Secrets below for details.

Declaration
public InputList<ServiceTaskSpecContainerSpecSecretGetArgs> Secrets { get; set; }
Property Value
Type Description
InputList<ServiceTaskSpecContainerSpecSecretGetArgs>
View Source

StopGracePeriod

Amount of time to wait for the container to terminate before forcefully removing it (ms|s|m|h).

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

StopSignal

Signal to stop the container.

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

User

The user inside the container.

Declaration
public Input<string> User { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.