public static interface Protos.SeccompInfoOrBuilder
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getProfileName()
A filename of the Seccomp profile.
|
com.google.protobuf.ByteString |
getProfileNameBytes()
A filename of the Seccomp profile.
|
boolean |
getUnconfined()
If set to `true`, Seccomp is not applied to the container.
|
boolean |
hasProfileName()
A filename of the Seccomp profile.
|
boolean |
hasUnconfined()
If set to `true`, Seccomp is not applied to the container.
|
boolean hasProfileName()
A filename of the Seccomp profile. This should be a path relative to the directory containing Seccomp profiles, which is specified on the agent via the `--seccomp_config_dir` flag.
optional string profile_name = 1;
java.lang.String getProfileName()
A filename of the Seccomp profile. This should be a path relative to the directory containing Seccomp profiles, which is specified on the agent via the `--seccomp_config_dir` flag.
optional string profile_name = 1;
com.google.protobuf.ByteString getProfileNameBytes()
A filename of the Seccomp profile. This should be a path relative to the directory containing Seccomp profiles, which is specified on the agent via the `--seccomp_config_dir` flag.
optional string profile_name = 1;
boolean hasUnconfined()
If set to `true`, Seccomp is not applied to the container. If not set or set to `false`, the container is launched with the profile specified in the `profile_name` field. NOTE: `profile_name` must not be specified if `unconfined` set to `true`. `profile_name` must be specified if `unconfined` is not set or is set to `false`.
optional bool unconfined = 2;
boolean getUnconfined()
If set to `true`, Seccomp is not applied to the container. If not set or set to `false`, the container is launched with the profile specified in the `profile_name` field. NOTE: `profile_name` must not be specified if `unconfined` set to `true`. `profile_name` must be specified if `unconfined` is not set or is set to `false`.
optional bool unconfined = 2;