Skip to content

Commit

Permalink
Update common.py
Browse files Browse the repository at this point in the history
Fixed editing.
  • Loading branch information
FrantzT authored Jul 28, 2020
1 parent aab0379 commit a5b2161
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion k8s/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class ObjectMeta(Model):
selfLink = ReadOnlyField(six.text_type)
uid = ReadOnlyField(six.text_type)


class ObjectReference(Model):
apiVersion = Field(six.text_type)
fieldPath = Field(six.text_type)
Expand All @@ -59,16 +60,18 @@ class ObjectReference(Model):
resourceVersion = Field(six.text_type)
uid = Field(six.text_type)


class ListMeta(Model):

_continue = Field(six.text_type)
remainingItemCount = Field(int)
resourceVersion = Field(six.text_type)
selfLink = Field(six.text_type)


class Time(Model):
pass


class Preconditions(Model):
resourceVersion = Field(six.text_type)
uid = Field(six.text_type)
Expand Down

0 comments on commit a5b2161

Please sign in to comment.