Show / Hide Table of Contents

Class GroupContainerArgs

Inheritance
System.Object
InputArgs
ResourceArgs
GroupContainerArgs
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.Azure.ContainerService.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class GroupContainerArgs : ResourceArgs

Constructors

View Source

GroupContainerArgs()

Declaration
public GroupContainerArgs()

Properties

View Source

Commands

A list of commands which should be run on the container. Changing this forces a new resource to be created.

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

Cpu

The required number of CPU cores of the containers. Changing this forces a new resource to be created.

Declaration
public Input<double> Cpu { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

EnvironmentVariables

A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.

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

Gpu

A gpu block as defined below. Changing this forces a new resource to be created.

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

Image

The container image name. Changing this forces a new resource to be created.

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

LivenessProbe

The definition of a readiness probe for this container as documented in the liveness_probe block below. Changing this forces a new resource to be created.

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

Memory

The required memory of the containers in GB. Changing this forces a new resource to be created.

Declaration
public Input<double> Memory { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

Name

Specifies the name of the Container Group. Changing this forces a new resource to be created.

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

Ports

A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the ports block below.

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

ReadinessProbe

The definition of a readiness probe for this container as documented in the readiness_probe block below. Changing this forces a new resource to be created.

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

SecureEnvironmentVariables

A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.

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

Volumes

The definition of a volume mount for this container as documented in the volume block below. Changing this forces a new resource to be created.

Declaration
public InputList<GroupContainerVolumeArgs> Volumes { get; set; }
Property Value
Type Description
InputList<GroupContainerVolumeArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.