Package k8s.io.api.networking.v1
Interface Generated.IngressServiceBackendOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.IngressServiceBackend,Generated.IngressServiceBackend.Builder
- Enclosing class:
- Generated
public static interface Generated.IngressServiceBackendOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()name is the referenced service.com.google.protobuf.ByteStringgetNameBytes()name is the referenced service.Generated.ServiceBackendPortgetPort()port of the referenced service.Generated.ServiceBackendPortOrBuildergetPortOrBuilder()port of the referenced service.booleanhasName()name is the referenced service.booleanhasPort()port of the referenced service.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
name is the referenced service. The service must exist in the same namespace as the Ingress object.
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
name is the referenced service. The service must exist in the same namespace as the Ingress object.
optional string name = 1;- Returns:
- The name.
-
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;- Returns:
- The bytes for name.
-
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;- Returns:
- Whether the port field is set.
-
getPort
Generated.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;- Returns:
- The port.
-
getPortOrBuilder
Generated.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;
-
-