Enum ResourceFieldPaths

    • 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 name
        NullPointerException - if the argument is null