Package org.cdk8s.plus24
Enum ResourceFieldPaths
- java.lang.Object
-
- java.lang.Enum<ResourceFieldPaths>
-
- org.cdk8s.plus24.ResourceFieldPaths
-
- All Implemented Interfaces:
Serializable
,Comparable<ResourceFieldPaths>
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-25T00:27:46.892Z") @Stability(Stable) public enum ResourceFieldPaths extends Enum<ResourceFieldPaths>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CPU_LIMIT
CPU limit of the container.CPU_REQUEST
CPU request of the container.MEMORY_LIMIT
Memory limit of the container.MEMORY_REQUEST
Memory request of the container.STORAGE_LIMIT
Ephemeral storage limit of the container.STORAGE_REQUEST
Ephemeral storage request of the container.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceFieldPaths
valueOf(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
-
-