case class Sysctl(name: String, value: String) extends Product with Serializable
Sysctl defines a kernel parameter to be set
- name
Name of a property to set
- value
Value of a property to set
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Sysctl
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
Sysctl(name: String, value: String)
- name
Name of a property to set
- value
Value of a property to set
Value Members
-
def
getName: IO[K8sFailure, String]
Name of a property to set
Name of a property to set
This effect always succeeds, it is safe to use the field name directly.
-
def
getValue: IO[K8sFailure, String]
Value of a property to set
Value of a property to set
This effect always succeeds, it is safe to use the field value directly.
- val name: String
- val value: String