SystemControl class
A list of namespaced kernel parameters to set in the container. This
parameter maps to Sysctls in the Create
a container section of the Docker Remote API and
the --sysctl option to docker
run.
It is not recommended that you specify network-related
systemControls parameters for multiple containers in a single
task that also uses either the awsvpc or host
network mode for the following reasons:
-
For tasks that use the
awsvpcnetwork mode, if you setsystemControlsfor any container, it applies to all containers in the task. If you set differentsystemControlsfor multiple containers in a single task, the container that is started last determines whichsystemControlstake effect. -
For tasks that use the
hostnetwork mode, thesystemControlsparameter applies to the container instance's kernel parameter as well as that of all containers of any tasks running on that container instance.
Constructors
- SystemControl({String? namespace, String? value})
-
SystemControl.fromJson(Map<
String, dynamic> json) -
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- namespace → String?
-
The namespaced kernel parameter for which to set a
value.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String?
-
The value for the namespaced kernel parameter specified in
namespace.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited