Package org.cdk8s.plus22
Enum ResourceFieldPaths
- java.lang.Object
-
- java.lang.Enum<ResourceFieldPaths>
-
- org.cdk8s.plus22.ResourceFieldPaths
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceFieldPaths>
@Generated(value="jsii-pacmak/1.52.1 (build 5ccc8f6)", date="2022-02-08T00:13:45.290Z") @Stability(Stable) public enum ResourceFieldPaths extends Enum<ResourceFieldPaths>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CPU_LIMITCPU limit of the container.CPU_REQUESTCPU request of the container.MEMORY_LIMITMemory limit of the container.MEMORY_REQUESTMemory request of the container.STORAGE_LIMITEphemeral storage limit of the container.STORAGE_REQUESTEphemeral storage request of the container.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceFieldPathsvalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceFieldPaths[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPU_LIMIT
@Stability(Stable) public static final ResourceFieldPaths CPU_LIMIT
CPU limit of the container.
-
MEMORY_LIMIT
@Stability(Stable) public static final ResourceFieldPaths MEMORY_LIMIT
Memory limit of the container.
-
CPU_REQUEST
@Stability(Stable) public static final ResourceFieldPaths CPU_REQUEST
CPU request of the container.
-
MEMORY_REQUEST
@Stability(Stable) public static final ResourceFieldPaths MEMORY_REQUEST
Memory request of the container.
-
STORAGE_LIMIT
@Stability(Stable) public static final ResourceFieldPaths STORAGE_LIMIT
Ephemeral storage limit of the container.
-
STORAGE_REQUEST
@Stability(Stable) public static final ResourceFieldPaths STORAGE_REQUEST
Ephemeral storage request of the container.
-
-
Method Detail
-
values
public static ResourceFieldPaths[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResourceFieldPaths c : ResourceFieldPaths.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceFieldPaths valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-