diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:26:22 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:26:22 -0800 | 
| commit | 0182cd1456ca1457747ff1363d9d5c5cf95ee2f7 (patch) | |
| tree | f619d908954e47f7fcc357e3b089b812e8885790 /python/fatcat_client/models/fileset_entity_manifest.py | |
| parent | 81b40c73e9f6d17637b90dbea1808171f89c9351 (diff) | |
| download | fatcat-0182cd1456ca1457747ff1363d9d5c5cf95ee2f7.tar.gz fatcat-0182cd1456ca1457747ff1363d9d5c5cf95ee2f7.zip  | |
codegen
Diffstat (limited to 'python/fatcat_client/models/fileset_entity_manifest.py')
| -rw-r--r-- | python/fatcat_client/models/fileset_entity_manifest.py | 18 | 
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  | 
