diff options
author | Chayal, Avteet (ac229e) <ac229e@att.com> | 2018-10-12 03:36:22 +0000 |
---|---|---|
committer | Vikas Varma <vv8305@att.com> | 2018-10-12 04:33:11 +0000 |
commit | ce3154a2c934575a49097a6e725ca65f736defec (patch) | |
tree | 71b26e7da5b14449bc1c6632434f68f7acddf197 | |
parent | df1f41d6473b8c5fb983c835be6e14298bfb7693 (diff) |
Changed modelCustomizationName to optional
Changed modelCustomizationName from mandatory to optional
Issue-ID: OPTFRA-375
Change-Id: Id1d31acc747816efdae0cf73905cfc7af964bf5f
Signed-off-by: Chayal, Avteet (ac229e) <ac229e@att.com>
-rw-r--r-- | osdf/models/api/placementRequest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/osdf/models/api/placementRequest.py b/osdf/models/api/placementRequest.py index aa71eac..55f0a98 100644 --- a/osdf/models/api/placementRequest.py +++ b/osdf/models/api/placementRequest.py @@ -48,7 +48,7 @@ class ModelMetaData(OSDFModel): modelName = StringType() modelType = StringType() modelVersion = StringType() - modelCustomizationName = StringType(required=True) + modelCustomizationName = StringType() class LicenseModel(OSDFModel): |