Class SyncStatus
- java.lang.Object
-
- io.fabric8.openshift.api.model.hive.v1.SyncStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<SyncStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class SyncStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<SyncStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
SyncStatus describes objects that have been created or patches that have been applied using the unique md5 sum of the object or patch.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SyncStatus()No args constructor for use in serializationSyncStatus(String apiVersion, List<SyncCondition> conditions, String hash, String kind, String name, String namespace, String resource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SyncStatusBuilderedit()Map<String,Object>getAdditionalProperties()StringgetApiVersion()APIVersion is the Group and Version of the object that was synced or patched.List<SyncCondition>getConditions()Conditions is the list of conditions indicating success or failure of object create, update and delete as well as patch application.StringgetHash()Hash is the unique md5 hash of the resource or patch.StringgetKind()Kind is the Kind of the object that was synced or patched.StringgetName()Name is the name of the object that was synced or patched.StringgetNamespace()Namespace is the Namespace of the object that was synced or patched.StringgetResource()Resource is the resource name for the object that was synced.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetApiVersion(String apiVersion)APIVersion is the Group and Version of the object that was synced or patched.voidsetConditions(List<SyncCondition> conditions)Conditions is the list of conditions indicating success or failure of object create, update and delete as well as patch application.voidsetHash(String hash)Hash is the unique md5 hash of the resource or patch.voidsetKind(String kind)Kind is the Kind of the object that was synced or patched.voidsetName(String name)Name is the name of the object that was synced or patched.voidsetNamespace(String namespace)Namespace is the Namespace of the object that was synced or patched.voidsetResource(String resource)Resource is the resource name for the object that was synced.SyncStatusBuildertoBuilder()
-
-
-
Method Detail
-
getApiVersion
public String getApiVersion()
APIVersion is the Group and Version of the object that was synced or patched.
-
setApiVersion
public void setApiVersion(String apiVersion)
APIVersion is the Group and Version of the object that was synced or patched.
-
getConditions
public List<SyncCondition> getConditions()
Conditions is the list of conditions indicating success or failure of object create, update and delete as well as patch application.
-
setConditions
public void setConditions(List<SyncCondition> conditions)
Conditions is the list of conditions indicating success or failure of object create, update and delete as well as patch application.
-
getHash
public String getHash()
Hash is the unique md5 hash of the resource or patch.
-
setHash
public void setHash(String hash)
Hash is the unique md5 hash of the resource or patch.
-
getKind
public String getKind()
Kind is the Kind of the object that was synced or patched.
-
setKind
public void setKind(String kind)
Kind is the Kind of the object that was synced or patched.
-
getName
public String getName()
Name is the name of the object that was synced or patched.
-
setName
public void setName(String name)
Name is the name of the object that was synced or patched.
-
getNamespace
public String getNamespace()
Namespace is the Namespace of the object that was synced or patched.
-
setNamespace
public void setNamespace(String namespace)
Namespace is the Namespace of the object that was synced or patched.
-
getResource
public String getResource()
Resource is the resource name for the object that was synced. This will be populated for resources, but not patches
-
setResource
public void setResource(String resource)
Resource is the resource name for the object that was synced. This will be populated for resources, but not patches
-
edit
public SyncStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<SyncStatusBuilder>
-
toBuilder
public SyncStatusBuilder toBuilder()
-
-