Package k8s.io.api.core.v1
Interface Generated.BindingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.Binding,Generated.Binding.Builder
- Enclosing class:
- Generated
public static interface Generated.BindingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Generated.ObjectMetagetMetadata()Standard object's metadata.Generated.ObjectMetaOrBuildergetMetadataOrBuilder()Standard object's metadata.Generated.ObjectReferencegetTarget()The target object that you want to bind to the standard object.Generated.ObjectReferenceOrBuildergetTargetOrBuilder()The target object that you want to bind to the standard object.booleanhasMetadata()Standard object's metadata.booleanhasTarget()The target object that you want to bind to the standard object.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMetadata
boolean hasMetadata()
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;- Returns:
- Whether the metadata field is set.
-
getMetadata
Generated.ObjectMeta getMetadata()
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;- Returns:
- The metadata.
-
getMetadataOrBuilder
Generated.ObjectMetaOrBuilder getMetadataOrBuilder()
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
-
hasTarget
boolean hasTarget()
The target object that you want to bind to the standard object.
optional .k8s.io.api.core.v1.ObjectReference target = 2;- Returns:
- Whether the target field is set.
-
getTarget
Generated.ObjectReference getTarget()
The target object that you want to bind to the standard object.
optional .k8s.io.api.core.v1.ObjectReference target = 2;- Returns:
- The target.
-
getTargetOrBuilder
Generated.ObjectReferenceOrBuilder getTargetOrBuilder()
The target object that you want to bind to the standard object.
optional .k8s.io.api.core.v1.ObjectReference target = 2;
-
-