
io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent 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 ApiextensionsV1WebhookClientConfigFluent<
A extends ApiextensionsV1WebhookClientConfigFluent>
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();
/**
* This method has been deprecated, please use method buildService instead.
*
* @return The buildable object.
*/
@Deprecated
public ApiextensionsV1ServiceReference getService();
public io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference buildService();
public A withService(io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference service);
public java.lang.Boolean hasService();
public ApiextensionsV1WebhookClientConfigFluent.ServiceNested withNewService();
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
withNewServiceLike(io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference item);
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
editService();
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
editOrNewService();
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
editOrNewServiceLike(
io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference item);
public String getUrl();
public A withUrl(java.lang.String url);
public java.lang.Boolean hasUrl();
public interface ServiceNested
extends Nested,
ApiextensionsV1ServiceReferenceFluent<
ApiextensionsV1WebhookClientConfigFluent.ServiceNested> {
public N and();
public N endService();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy