X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2dms%2Fdomain%2Fdms.py;fp=o2dms%2Fdomain%2Fdms.py;h=783231f3474e3bd336512662d62b7ced8328a676;hb=5ad82f634e2f10aaeccf1d2420fafc63e2d0056e;hp=28faf3c5da3d2eace28bd93b6b792785e57b2372;hpb=81cd55de0440dcbc8df4d788565295d051ca91ad;p=pti%2Fo2.git diff --git a/o2dms/domain/dms.py b/o2dms/domain/dms.py index 28faf3c..783231f 100644 --- a/o2dms/domain/dms.py +++ b/o2dms/domain/dms.py @@ -19,7 +19,8 @@ from o2common.domain.base import AgRoot class NfDeploymentDesc(AgRoot): def __init__(self, id: str, name: str, dmsId: str, description: str = '', - inputParams: str = '', outputParams: str = '',) -> None: + inputParams: str = '', outputParams: str = '', + artifacturl: str = '') -> None: super().__init__() self.id = id self.version_number = 0 @@ -28,6 +29,7 @@ class NfDeploymentDesc(AgRoot): self.description = description self.inputParams = inputParams self.outputParams = outputParams + self.artifactUrl = artifacturl # self.extensions = []