Show / Hide Table of Contents

Class ResourceRequirements

ResourceRequirements describes the compute resource requirements.

Inheritance
System.Object
ResourceRequirements
Implements
IDirectResponseSchema
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: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class ResourceRequirements : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Limits

Limits describes the maximum amount of compute resources allowed. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/api machinery/pkg/api/resource/quantity.go

Declaration
[JsonProperty("limits")]
public virtual IDictionary<string, string> Limits { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

LimitsInMap

Limits describes the maximum amount of compute resources allowed. This is a temporary field created to migrate away from the map limits field. This is done to become compliant with k8s style API. This field is deprecated in favor of limits field.

Declaration
[JsonProperty("limitsInMap")]
public virtual IDictionary<string, Quantity> LimitsInMap { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, Quantity>

Requests

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. The values of the map is string form of the 'quantity' k8s type: https://github.com/kubernetes/kubern etes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

Declaration
[JsonProperty("requests")]
public virtual IDictionary<string, string> Requests { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>

RequestsInMap

Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. This is a temporary field created to migrate away from the map requests field. This is done to become compliant with k8s style API. This field is deprecated in favor of requests field.

Declaration
[JsonProperty("requestsInMap")]
public virtual IDictionary<string, Quantity> RequestsInMap { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, Quantity>

Implements

IDirectResponseSchema
Back to top