io.kubernetes.client.openapi.models.V1APIServiceSpecFluent 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.Fluent;
import io.kubernetes.client.fluent.Nested;
import java.util.Collection;
/** Generated */
public interface V1APIServiceSpecFluent> extends Fluent {
public A withCaBundle(byte... caBundle);
public byte[] getCaBundle();
public A addToCaBundle(Integer index, Byte item);
public A setToCaBundle(java.lang.Integer index, java.lang.Byte item);
public A addToCaBundle(java.lang.Byte... items);
public A addAllToCaBundle(Collection items);
public A removeFromCaBundle(java.lang.Byte... items);
public A removeAllFromCaBundle(java.util.Collection items);
public Boolean hasCaBundle();
public String getGroup();
public A withGroup(java.lang.String group);
public java.lang.Boolean hasGroup();
public java.lang.Integer getGroupPriorityMinimum();
public A withGroupPriorityMinimum(java.lang.Integer groupPriorityMinimum);
public java.lang.Boolean hasGroupPriorityMinimum();
public java.lang.Boolean getInsecureSkipTLSVerify();
public A withInsecureSkipTLSVerify(java.lang.Boolean insecureSkipTLSVerify);
public java.lang.Boolean hasInsecureSkipTLSVerify();
/**
* This method has been deprecated, please use method buildService instead.
*
* @return The buildable object.
*/
@Deprecated
public ApiregistrationV1ServiceReference getService();
public io.kubernetes.client.openapi.models.ApiregistrationV1ServiceReference buildService();
public A withService(
io.kubernetes.client.openapi.models.ApiregistrationV1ServiceReference service);
public java.lang.Boolean hasService();
public V1APIServiceSpecFluent.ServiceNested withNewService();
public io.kubernetes.client.openapi.models.V1APIServiceSpecFluent.ServiceNested
withNewServiceLike(
io.kubernetes.client.openapi.models.ApiregistrationV1ServiceReference item);
public io.kubernetes.client.openapi.models.V1APIServiceSpecFluent.ServiceNested editService();
public io.kubernetes.client.openapi.models.V1APIServiceSpecFluent.ServiceNested
editOrNewService();
public io.kubernetes.client.openapi.models.V1APIServiceSpecFluent.ServiceNested
editOrNewServiceLike(
io.kubernetes.client.openapi.models.ApiregistrationV1ServiceReference item);
public java.lang.String getVersion();
public A withVersion(java.lang.String version);
public java.lang.Boolean hasVersion();
public java.lang.Integer getVersionPriority();
public A withVersionPriority(java.lang.Integer versionPriority);
public java.lang.Boolean hasVersionPriority();
public A withInsecureSkipTLSVerify();
public interface ServiceNested
extends Nested,
ApiregistrationV1ServiceReferenceFluent> {
public N and();
public N endService();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy