Package io.kubernetes.client.proto
Interface V1Networking.IngressServiceBackendOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
V1Networking.IngressServiceBackend
,V1Networking.IngressServiceBackend.Builder
- Enclosing class:
- V1Networking
public static interface V1Networking.IngressServiceBackendOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Name is the referenced service.com.google.protobuf.ByteString
Name is the referenced service.getPort()
Port of the referenced service.Port of the referenced service.boolean
hasName()
Name is the referenced service.boolean
hasPort()
Port of the referenced service.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasName
boolean hasName()Name is the referenced service. The service must exist in the same namespace as the Ingress object.
optional string name = 1;
-
getName
String getName()Name is the referenced service. The service must exist in the same namespace as the Ingress object.
optional string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()Name is the referenced service. The service must exist in the same namespace as the Ingress object.
optional string name = 1;
-
hasPort
boolean hasPort()Port of the referenced service. A port name or port number is required for a IngressServiceBackend.
optional .k8s.io.api.networking.v1.ServiceBackendPort port = 2;
-
getPort
V1Networking.ServiceBackendPort getPort()Port of the referenced service. A port name or port number is required for a IngressServiceBackend.
optional .k8s.io.api.networking.v1.ServiceBackendPort port = 2;
-
getPortOrBuilder
V1Networking.ServiceBackendPortOrBuilder getPortOrBuilder()Port of the referenced service. A port name or port number is required for a IngressServiceBackend.
optional .k8s.io.api.networking.v1.ServiceBackendPort port = 2;
-