io.yupiik.kubernetes.bindings.v1_23_5.v1.RuleWithOperations Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 - Yupiik SAS - https://www.yupiik.com
* 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.yupiik.kubernetes.bindings.v1_23_5.v1;
import io.yupiik.kubernetes.bindings.v1_23_5.Exportable;
import io.yupiik.kubernetes.bindings.v1_23_5.JsonStrings;
import io.yupiik.kubernetes.bindings.v1_23_5.Validable;
import java.util.List;
import java.util.Objects;
import java.util.stream.Stream;
import static java.util.stream.Collectors.joining;
public class RuleWithOperations implements Validable, Exportable {
private List apiGroups;
private List apiVersions;
private List operations;
private List resources;
private String scope;
public RuleWithOperations() {
// no-op
}
public RuleWithOperations(final List apiGroups,
final List apiVersions,
final List operations,
final List resources,
final String scope) {
this.apiGroups = apiGroups;
this.apiVersions = apiVersions;
this.operations = operations;
this.resources = resources;
this.scope = scope;
}
public List getApiGroups() {
return apiGroups;
}
public void setApiGroups(final List apiGroups) {
this.apiGroups = apiGroups;
}
public List getApiVersions() {
return apiVersions;
}
public void setApiVersions(final List apiVersions) {
this.apiVersions = apiVersions;
}
public List getOperations() {
return operations;
}
public void setOperations(final List operations) {
this.operations = operations;
}
public List getResources() {
return resources;
}
public void setResources(final List resources) {
this.resources = resources;
}
public String getScope() {
return scope;
}
public void setScope(final String scope) {
this.scope = scope;
}
@Override
public int hashCode() {
return Objects.hash(
apiGroups,
apiVersions,
operations,
resources,
scope);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof RuleWithOperations)) {
return false;
}
final RuleWithOperations __otherCasted = (RuleWithOperations) __other;
return Objects.equals(apiGroups, __otherCasted.apiGroups) &&
Objects.equals(apiVersions, __otherCasted.apiVersions) &&
Objects.equals(operations, __otherCasted.operations) &&
Objects.equals(resources, __otherCasted.resources) &&
Objects.equals(scope, __otherCasted.scope);
}
public RuleWithOperations apiGroups(final List apiGroups) {
this.apiGroups = apiGroups;
return this;
}
public RuleWithOperations apiVersions(final List apiVersions) {
this.apiVersions = apiVersions;
return this;
}
public RuleWithOperations operations(final List operations) {
this.operations = operations;
return this;
}
public RuleWithOperations resources(final List resources) {
this.resources = resources;
return this;
}
public RuleWithOperations scope(final String scope) {
this.scope = scope;
return this;
}
@Override
public RuleWithOperations validate() {
return this;
}
@Override
public String asJson() {
return Stream.of(
(apiGroups != null ? "\"apiGroups\":" + apiGroups.stream().map(__it -> __it == null ? "null" : ("\"" + JsonStrings.escapeJson(__it) + "\"")).collect(joining(",", "[", "]")) : ""),
(apiVersions != null ? "\"apiVersions\":" + apiVersions.stream().map(__it -> __it == null ? "null" : ("\"" + JsonStrings.escapeJson(__it) + "\"")).collect(joining(",", "[", "]")) : ""),
(operations != null ? "\"operations\":" + operations.stream().map(__it -> __it == null ? "null" : ("\"" + JsonStrings.escapeJson(__it) + "\"")).collect(joining(",", "[", "]")) : ""),
(resources != null ? "\"resources\":" + resources.stream().map(__it -> __it == null ? "null" : ("\"" + JsonStrings.escapeJson(__it) + "\"")).collect(joining(",", "[", "]")) : ""),
(scope != null ? "\"scope\":\"" + JsonStrings.escapeJson(scope) + "\"" : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}