Show / Hide Table of Contents

Class GroupContainer

Inheritance
System.Object
GroupContainer
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.Azure.ContainerService.Outputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class GroupContainer

Fields

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 readonly ImmutableArray<string> Commands
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<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 readonly double Cpu
Field Value
Type Description
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 readonly ImmutableDictionary<string, string> EnvironmentVariables
Field Value
Type Description
System.Collections.Immutable.ImmutableDictionary<System.String, System.String>
View Source

Gpu

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

Declaration
public readonly GroupContainerGpu Gpu
Field Value
Type Description
GroupContainerGpu
View Source

Image

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

Declaration
public readonly string Image
Field Value
Type Description
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 readonly GroupContainerLivenessProbe LivenessProbe
Field Value
Type Description
GroupContainerLivenessProbe
View Source

Memory

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

Declaration
public readonly double Memory
Field Value
Type Description
System.Double
View Source

Name

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

Declaration
public readonly string Name
Field Value
Type Description
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 readonly ImmutableArray<GroupContainerPort> Ports
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<GroupContainerPort>
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 readonly GroupContainerReadinessProbe ReadinessProbe
Field Value
Type Description
GroupContainerReadinessProbe
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 readonly ImmutableDictionary<string, string> SecureEnvironmentVariables
Field Value
Type Description
System.Collections.Immutable.ImmutableDictionary<System.String, 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 readonly ImmutableArray<GroupContainerVolume> Volumes
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<GroupContainerVolume>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.