aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_client/models/fileset_entity_manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_client/models/fileset_entity_manifest.py')
-rw-r--r--python/fatcat_client/models/fileset_entity_manifest.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/python/fatcat_client/models/fileset_entity_manifest.py b/python/fatcat_client/models/fileset_entity_manifest.py
index 51990ebe..6dd5800f 100644
--- a/python/fatcat_client/models/fileset_entity_manifest.py
+++ b/python/fatcat_client/models/fileset_entity_manifest.py
@@ -134,6 +134,12 @@ class FilesetEntityManifest(object):
:param md5: The md5 of this FilesetEntityManifest. # noqa: E501
:type: str
"""
+ if md5 is not None and len(md5) > 32:
+ raise ValueError("Invalid value for `md5`, length must be less than or equal to `32`") # noqa: E501
+ if md5 is not None and len(md5) < 32:
+ raise ValueError("Invalid value for `md5`, length must be greater than or equal to `32`") # noqa: E501
+ if md5 is not None and not re.search('[a-f0-9]{32}', md5): # noqa: E501
+ raise ValueError("Invalid value for `md5`, must be a follow pattern or equal to `/[a-f0-9]{32}/`") # noqa: E501
self._md5 = md5
@@ -155,6 +161,12 @@ class FilesetEntityManifest(object):
:param sha1: The sha1 of this FilesetEntityManifest. # noqa: E501
:type: str
"""
+ if sha1 is not None and len(sha1) > 40:
+ raise ValueError("Invalid value for `sha1`, length must be less than or equal to `40`") # noqa: E501
+ if sha1 is not None and len(sha1) < 40:
+ raise ValueError("Invalid value for `sha1`, length must be greater than or equal to `40`") # noqa: E501
+ if sha1 is not None and not re.search('[a-f0-9]{40}', sha1): # noqa: E501
+ raise ValueError("Invalid value for `sha1`, must be a follow pattern or equal to `/[a-f0-9]{40}/`") # noqa: E501
self._sha1 = sha1
@@ -176,6 +188,12 @@ class FilesetEntityManifest(object):
:param sha256: The sha256 of this FilesetEntityManifest. # noqa: E501
:type: str
"""
+ if sha256 is not None and len(sha256) > 64:
+ raise ValueError("Invalid value for `sha256`, length must be less than or equal to `64`") # noqa: E501
+ if sha256 is not None and len(sha256) < 64:
+ raise ValueError("Invalid value for `sha256`, length must be greater than or equal to `64`") # noqa: E501
+ if sha256 is not None and not re.search('[a-f0-9]{64}', sha256): # noqa: E501
+ raise ValueError("Invalid value for `sha256`, must be a follow pattern or equal to `/[a-f0-9]{64}/`") # noqa: E501
self._sha256 = sha256