io.kubernetes.client.openapi.models.V1SecurityContextBuilder Maven / Gradle / Ivy
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
public class V1SecurityContextBuilder extends V1SecurityContextFluentImpl
implements VisitableBuilder<
V1SecurityContext, io.kubernetes.client.openapi.models.V1SecurityContextBuilder> {
public V1SecurityContextBuilder() {
this(false);
}
public V1SecurityContextBuilder(Boolean validationEnabled) {
this(new V1SecurityContext(), validationEnabled);
}
public V1SecurityContextBuilder(
io.kubernetes.client.openapi.models.V1SecurityContextFluent> fluent) {
this(fluent, false);
}
public V1SecurityContextBuilder(
io.kubernetes.client.openapi.models.V1SecurityContextFluent> fluent,
java.lang.Boolean validationEnabled) {
this(fluent, new V1SecurityContext(), validationEnabled);
}
public V1SecurityContextBuilder(
io.kubernetes.client.openapi.models.V1SecurityContextFluent> fluent,
io.kubernetes.client.openapi.models.V1SecurityContext instance) {
this(fluent, instance, false);
}
public V1SecurityContextBuilder(
io.kubernetes.client.openapi.models.V1SecurityContextFluent> fluent,
io.kubernetes.client.openapi.models.V1SecurityContext instance,
java.lang.Boolean validationEnabled) {
this.fluent = fluent;
fluent.withAllowPrivilegeEscalation(instance.getAllowPrivilegeEscalation());
fluent.withCapabilities(instance.getCapabilities());
fluent.withPrivileged(instance.getPrivileged());
fluent.withProcMount(instance.getProcMount());
fluent.withReadOnlyRootFilesystem(instance.getReadOnlyRootFilesystem());
fluent.withRunAsGroup(instance.getRunAsGroup());
fluent.withRunAsNonRoot(instance.getRunAsNonRoot());
fluent.withRunAsUser(instance.getRunAsUser());
fluent.withSeLinuxOptions(instance.getSeLinuxOptions());
fluent.withSeccompProfile(instance.getSeccompProfile());
fluent.withWindowsOptions(instance.getWindowsOptions());
this.validationEnabled = validationEnabled;
}
public V1SecurityContextBuilder(io.kubernetes.client.openapi.models.V1SecurityContext instance) {
this(instance, false);
}
public V1SecurityContextBuilder(
io.kubernetes.client.openapi.models.V1SecurityContext instance,
java.lang.Boolean validationEnabled) {
this.fluent = this;
this.withAllowPrivilegeEscalation(instance.getAllowPrivilegeEscalation());
this.withCapabilities(instance.getCapabilities());
this.withPrivileged(instance.getPrivileged());
this.withProcMount(instance.getProcMount());
this.withReadOnlyRootFilesystem(instance.getReadOnlyRootFilesystem());
this.withRunAsGroup(instance.getRunAsGroup());
this.withRunAsNonRoot(instance.getRunAsNonRoot());
this.withRunAsUser(instance.getRunAsUser());
this.withSeLinuxOptions(instance.getSeLinuxOptions());
this.withSeccompProfile(instance.getSeccompProfile());
this.withWindowsOptions(instance.getWindowsOptions());
this.validationEnabled = validationEnabled;
}
io.kubernetes.client.openapi.models.V1SecurityContextFluent> fluent;
java.lang.Boolean validationEnabled;
public io.kubernetes.client.openapi.models.V1SecurityContext build() {
V1SecurityContext buildable = new V1SecurityContext();
buildable.setAllowPrivilegeEscalation(fluent.getAllowPrivilegeEscalation());
buildable.setCapabilities(fluent.getCapabilities());
buildable.setPrivileged(fluent.getPrivileged());
buildable.setProcMount(fluent.getProcMount());
buildable.setReadOnlyRootFilesystem(fluent.getReadOnlyRootFilesystem());
buildable.setRunAsGroup(fluent.getRunAsGroup());
buildable.setRunAsNonRoot(fluent.getRunAsNonRoot());
buildable.setRunAsUser(fluent.getRunAsUser());
buildable.setSeLinuxOptions(fluent.getSeLinuxOptions());
buildable.setSeccompProfile(fluent.getSeccompProfile());
buildable.setWindowsOptions(fluent.getWindowsOptions());
return buildable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy