nominal-api 0.760.0__py3-none-any.whl → 0.761.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nominal-api might be problematic. Click here for more details.
- nominal_api/__init__.py +1 -1
- nominal_api/_impl.py +25 -13
- {nominal_api-0.760.0.dist-info → nominal_api-0.761.0.dist-info}/METADATA +1 -1
- {nominal_api-0.760.0.dist-info → nominal_api-0.761.0.dist-info}/RECORD +6 -6
- {nominal_api-0.760.0.dist-info → nominal_api-0.761.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.760.0.dist-info → nominal_api-0.761.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -14215,15 +14215,17 @@ class module_CreateModuleRequest(ConjureBeanType):
|
|
|
14215
14215
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
14216
14216
|
return {
|
|
14217
14217
|
'name': ConjureFieldDefinition('name', str),
|
|
14218
|
+
'title': ConjureFieldDefinition('title', str),
|
|
14218
14219
|
'description': ConjureFieldDefinition('description', str),
|
|
14219
14220
|
'definition': ConjureFieldDefinition('definition', module_ModuleVersionDefinition),
|
|
14220
14221
|
'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid])
|
|
14221
14222
|
}
|
|
14222
14223
|
|
|
14223
|
-
__slots__: List[str] = ['_name', '_description', '_definition', '_workspace']
|
|
14224
|
+
__slots__: List[str] = ['_name', '_title', '_description', '_definition', '_workspace']
|
|
14224
14225
|
|
|
14225
|
-
def __init__(self, definition: "module_ModuleVersionDefinition", description: str, name: str, workspace: Optional[str] = None) -> None:
|
|
14226
|
+
def __init__(self, definition: "module_ModuleVersionDefinition", description: str, name: str, title: str, workspace: Optional[str] = None) -> None:
|
|
14226
14227
|
self._name = name
|
|
14228
|
+
self._title = title
|
|
14227
14229
|
self._description = description
|
|
14228
14230
|
self._definition = definition
|
|
14229
14231
|
self._workspace = workspace
|
|
@@ -14234,6 +14236,10 @@ class module_CreateModuleRequest(ConjureBeanType):
|
|
|
14234
14236
|
"""
|
|
14235
14237
|
return self._name
|
|
14236
14238
|
|
|
14239
|
+
@builtins.property
|
|
14240
|
+
def title(self) -> str:
|
|
14241
|
+
return self._title
|
|
14242
|
+
|
|
14237
14243
|
@builtins.property
|
|
14238
14244
|
def description(self) -> str:
|
|
14239
14245
|
return self._description
|
|
@@ -14670,17 +14676,19 @@ class module_ModuleMetadata(ConjureBeanType):
|
|
|
14670
14676
|
return {
|
|
14671
14677
|
'rid': ConjureFieldDefinition('rid', modules_api_ModuleRid),
|
|
14672
14678
|
'name': ConjureFieldDefinition('name', str),
|
|
14679
|
+
'title': ConjureFieldDefinition('title', str),
|
|
14673
14680
|
'description': ConjureFieldDefinition('description', str),
|
|
14674
14681
|
'created_by': ConjureFieldDefinition('createdBy', scout_rids_api_UserRid),
|
|
14675
14682
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
14676
14683
|
'archived_at': ConjureFieldDefinition('archivedAt', OptionalTypeWrapper[str])
|
|
14677
14684
|
}
|
|
14678
14685
|
|
|
14679
|
-
__slots__: List[str] = ['_rid', '_name', '_description', '_created_by', '_created_at', '_archived_at']
|
|
14686
|
+
__slots__: List[str] = ['_rid', '_name', '_title', '_description', '_created_by', '_created_at', '_archived_at']
|
|
14680
14687
|
|
|
14681
|
-
def __init__(self, created_at: str, created_by: str, description: str, name: str, rid: str, archived_at: Optional[str] = None) -> None:
|
|
14688
|
+
def __init__(self, created_at: str, created_by: str, description: str, name: str, rid: str, title: str, archived_at: Optional[str] = None) -> None:
|
|
14682
14689
|
self._rid = rid
|
|
14683
14690
|
self._name = name
|
|
14691
|
+
self._title = title
|
|
14684
14692
|
self._description = description
|
|
14685
14693
|
self._created_by = created_by
|
|
14686
14694
|
self._created_at = created_at
|
|
@@ -14696,6 +14704,10 @@ class module_ModuleMetadata(ConjureBeanType):
|
|
|
14696
14704
|
"""
|
|
14697
14705
|
return self._name
|
|
14698
14706
|
|
|
14707
|
+
@builtins.property
|
|
14708
|
+
def title(self) -> str:
|
|
14709
|
+
return self._title
|
|
14710
|
+
|
|
14699
14711
|
@builtins.property
|
|
14700
14712
|
def description(self) -> str:
|
|
14701
14713
|
return self._description
|
|
@@ -15869,23 +15881,21 @@ class module_UpdateModuleRequest(ConjureBeanType):
|
|
|
15869
15881
|
@builtins.classmethod
|
|
15870
15882
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
15871
15883
|
return {
|
|
15872
|
-
'
|
|
15884
|
+
'title': ConjureFieldDefinition('title', str),
|
|
15873
15885
|
'description': ConjureFieldDefinition('description', str),
|
|
15874
15886
|
'definition': ConjureFieldDefinition('definition', module_ModuleVersionDefinition)
|
|
15875
15887
|
}
|
|
15876
15888
|
|
|
15877
|
-
__slots__: List[str] = ['
|
|
15889
|
+
__slots__: List[str] = ['_title', '_description', '_definition']
|
|
15878
15890
|
|
|
15879
|
-
def __init__(self, definition: "module_ModuleVersionDefinition", description: str,
|
|
15880
|
-
self.
|
|
15891
|
+
def __init__(self, definition: "module_ModuleVersionDefinition", description: str, title: str) -> None:
|
|
15892
|
+
self._title = title
|
|
15881
15893
|
self._description = description
|
|
15882
15894
|
self._definition = definition
|
|
15883
15895
|
|
|
15884
15896
|
@builtins.property
|
|
15885
|
-
def
|
|
15886
|
-
|
|
15887
|
-
"""
|
|
15888
|
-
return self._name
|
|
15897
|
+
def title(self) -> str:
|
|
15898
|
+
return self._title
|
|
15889
15899
|
|
|
15890
15900
|
@builtins.property
|
|
15891
15901
|
def description(self) -> str:
|
|
@@ -49064,7 +49074,7 @@ class scout_compute_api_StabilityDetectionRanges(ConjureBeanType):
|
|
|
49064
49074
|
the specified lookback window, including the current point. A point is considered stable if its value does
|
|
49065
49075
|
not deviate from the calculated min and the max by more than the threshold and the total number of points
|
|
49066
49076
|
within the window is at least the specified amount. The threshold can be either fixed values or percentages
|
|
49067
|
-
of the value. The minimum points threshold defaults to 2.
|
|
49077
|
+
of the value. The lookback window must be strictly positive. The minimum points threshold defaults to 2.
|
|
49068
49078
|
"""
|
|
49069
49079
|
|
|
49070
49080
|
@builtins.classmethod
|
|
@@ -70070,6 +70080,8 @@ class scout_metadata_ResourceType(ConjureEnumType):
|
|
|
70070
70080
|
'''EVENT'''
|
|
70071
70081
|
DATASET = 'DATASET'
|
|
70072
70082
|
'''DATASET'''
|
|
70083
|
+
MODULE = 'MODULE'
|
|
70084
|
+
'''MODULE'''
|
|
70073
70085
|
UNKNOWN = 'UNKNOWN'
|
|
70074
70086
|
'''UNKNOWN'''
|
|
70075
70087
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=r7z12m-sU3DZHZawsy_8EAD0FSAENC-lvArmtm-9fwY,2012
|
|
2
|
+
nominal_api/_impl.py,sha256=_TthWus8cZIxRUPCd6KZUojdDjkr_tiLwUGCmd_BlIc,3406429
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=PMREKP7UhxJ1_gHkrlJET46qlDHksKMm6-woR1p6WnU,1970
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
@@ -75,7 +75,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
75
75
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
76
76
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
77
77
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
80
|
-
nominal_api-0.
|
|
81
|
-
nominal_api-0.
|
|
78
|
+
nominal_api-0.761.0.dist-info/METADATA,sha256=TCnQzB5W1LvlwZcQzmAcK1zIKvXppSeGux-M2IOvgjo,199
|
|
79
|
+
nominal_api-0.761.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
80
|
+
nominal_api-0.761.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
81
|
+
nominal_api-0.761.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|