Show / Hide Table of Contents

Class PriorityLevelConfigurationSpecArgs

PriorityLevelConfigurationSpec specifies the configuration of a priority level.

Inheritance
System.Object
InputArgs
ResourceArgs
PriorityLevelConfigurationSpecArgs
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.Kubernetes.Types.Inputs.FlowControl.V1Alpha1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class PriorityLevelConfigurationSpecArgs : ResourceArgs

Properties

View Source

Limited

limited specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if type is "Limited".

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

Type

type indicates whether this priority level is subject to limitation on request execution. A value of &quot;Exempt&quot; means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of &quot;Limited&quot; means that (a) requests of this priority level are subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.

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