nominal-api 0.684.1__py3-none-any.whl → 0.685.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 CHANGED
@@ -75,5 +75,5 @@ __all__ = [
75
75
 
76
76
  __conjure_generator_version__ = "4.9.0"
77
77
 
78
- __version__ = "0.684.1"
78
+ __version__ = "0.685.0"
79
79
 
nominal_api/_impl.py CHANGED
@@ -3096,7 +3096,7 @@ class comments_api_CommentParentResource(ConjureBeanType):
3096
3096
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
3097
3097
  return {
3098
3098
  'resource_type': ConjureFieldDefinition('resourceType', comments_api_ResourceType),
3099
- 'resource_rid': ConjureFieldDefinition('resourceRid', comments_api_ResourceRid)
3099
+ 'resource_rid': ConjureFieldDefinition('resourceRid', str)
3100
3100
  }
3101
3101
 
3102
3102
  __slots__: List[str] = ['_resource_type', '_resource_rid']
@@ -3468,7 +3468,7 @@ class comments_api_Conversation(ConjureBeanType):
3468
3468
  @builtins.classmethod
3469
3469
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
3470
3470
  return {
3471
- 'resource_rid': ConjureFieldDefinition('resourceRid', comments_api_ResourceRid),
3471
+ 'resource_rid': ConjureFieldDefinition('resourceRid', str),
3472
3472
  'resource_type': ConjureFieldDefinition('resourceType', comments_api_ResourceType),
3473
3473
  'comments': ConjureFieldDefinition('comments', List[comments_api_ConversationNode])
3474
3474
  }
@@ -16633,15 +16633,17 @@ class scout_api_ChannelLocator(ConjureBeanType):
16633
16633
  return {
16634
16634
  'data_source_ref': ConjureFieldDefinition('dataSourceRef', scout_api_DataSourceRefName),
16635
16635
  'channel': ConjureFieldDefinition('channel', api_Channel),
16636
- 'tags': ConjureFieldDefinition('tags', Dict[api_TagName, api_TagValue])
16636
+ 'tags': ConjureFieldDefinition('tags', Dict[api_TagName, api_TagValue]),
16637
+ 'asset': ConjureFieldDefinition('asset', OptionalTypeWrapper[scout_rids_api_AssetRefName])
16637
16638
  }
16638
16639
 
16639
- __slots__: List[str] = ['_data_source_ref', '_channel', '_tags']
16640
+ __slots__: List[str] = ['_data_source_ref', '_channel', '_tags', '_asset']
16640
16641
 
16641
- def __init__(self, channel: str, data_source_ref: str, tags: Dict[str, str]) -> None:
16642
+ def __init__(self, channel: str, data_source_ref: str, tags: Dict[str, str], asset: Optional[str] = None) -> None:
16642
16643
  self._data_source_ref = data_source_ref
16643
16644
  self._channel = channel
16644
16645
  self._tags = tags
16646
+ self._asset = asset
16645
16647
 
16646
16648
  @builtins.property
16647
16649
  def data_source_ref(self) -> str:
@@ -16655,6 +16657,10 @@ class scout_api_ChannelLocator(ConjureBeanType):
16655
16657
  def tags(self) -> Dict[str, str]:
16656
16658
  return self._tags
16657
16659
 
16660
+ @builtins.property
16661
+ def asset(self) -> Optional[str]:
16662
+ return self._asset
16663
+
16658
16664
 
16659
16665
  scout_api_ChannelLocator.__name__ = "ChannelLocator"
16660
16666
  scout_api_ChannelLocator.__qualname__ = "ChannelLocator"
@@ -74242,18 +74248,18 @@ class scout_workbookcommon_api_EventReference(ConjureBeanType):
74242
74248
  @builtins.classmethod
74243
74249
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
74244
74250
  return {
74245
- 'event_uuid': ConjureFieldDefinition('eventUuid', str),
74251
+ 'event_uuid': ConjureFieldDefinition('eventUuid', OptionalTypeWrapper[str]),
74246
74252
  'rid': ConjureFieldDefinition('rid', OptionalTypeWrapper[api_rids_EventRid])
74247
74253
  }
74248
74254
 
74249
74255
  __slots__: List[str] = ['_event_uuid', '_rid']
74250
74256
 
74251
- def __init__(self, event_uuid: str, rid: Optional[str] = None) -> None:
74257
+ def __init__(self, event_uuid: Optional[str] = None, rid: Optional[str] = None) -> None:
74252
74258
  self._event_uuid = event_uuid
74253
74259
  self._rid = rid
74254
74260
 
74255
74261
  @builtins.property
74256
- def event_uuid(self) -> str:
74262
+ def event_uuid(self) -> Optional[str]:
74257
74263
  return self._event_uuid
74258
74264
 
74259
74265
  @builtins.property
@@ -81676,8 +81682,6 @@ persistent_compute_api_Milliseconds = int
81676
81682
 
81677
81683
  scout_compute_api_ErrorType = str
81678
81684
 
81679
- comments_api_ResourceRid = str
81680
-
81681
81685
  scout_rids_api_FunctionLineageRid = str
81682
81686
 
81683
81687
  timeseries_logicalseries_api_DatabaseName = str
@@ -81738,6 +81742,8 @@ api_McapChannelId = int
81738
81742
 
81739
81743
  scout_rids_api_CheckRid = str
81740
81744
 
81745
+ scout_rids_api_AssetRefName = str
81746
+
81741
81747
  api_Token = str
81742
81748
 
81743
81749
  timeseries_logicalseries_api_ProjectName = str
@@ -14,7 +14,6 @@ from .._impl import (
14
14
  comments_api_Reaction as Reaction,
15
15
  comments_api_ReactionRid as ReactionRid,
16
16
  comments_api_ReactionType as ReactionType,
17
- comments_api_ResourceRid as ResourceRid,
18
17
  comments_api_ResourceType as ResourceType,
19
18
  )
20
19
 
@@ -1,6 +1,7 @@
1
1
  # coding=utf-8
2
2
  from .._impl import (
3
3
  scout_rids_api_ApiKeyRid as ApiKeyRid,
4
+ scout_rids_api_AssetRefName as AssetRefName,
4
5
  scout_rids_api_AssetRid as AssetRid,
5
6
  scout_rids_api_CheckAlertRid as CheckAlertRid,
6
7
  scout_rids_api_CheckAlertState as CheckAlertState,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.684.1
3
+ Version: 0.685.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<3,>=2.8.0
@@ -1,5 +1,5 @@
1
- nominal_api/__init__.py,sha256=Pdgbvp13lQ0rRDRUlSbASjsWOs1FF7Z9xRuph7DCR60,1955
2
- nominal_api/_impl.py,sha256=z4-8UE6UGd2gXIakGfXkPW3yIan3igkUtaSuiOolZzA,3165123
1
+ nominal_api/__init__.py,sha256=PpAYBL-xk3x2jETGlRY9uignX6t4p1pzAMTLzRpPmIo,1955
2
+ nominal_api/_impl.py,sha256=5Jn2eGkYVFnnM-rtMs2fLw5qPEIU2B_LMYXY9yBN2Cs,3165392
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=1oJPOuAMfV2uClPUW8Ie1nj2Y6j81TDpedcc3yUFTe0,1294
5
5
  nominal_api/api_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
@@ -7,7 +7,7 @@ nominal_api/api_rids/__init__.py,sha256=8A7KLHxUyUzrx9Gss8zB2i08qf2QjtJgaMvcLfk-
7
7
  nominal_api/attachments_api/__init__.py,sha256=eQBE8xVTFDaTItCZv-WJSZqSStpgdai192n23pmVeeQ,634
8
8
  nominal_api/authentication_api/__init__.py,sha256=HBQrldagoqcvYES_kjB1Eh8oZTZ8SJdX85UZySJB9z0,986
9
9
  nominal_api/authorization/__init__.py,sha256=WeUTCL9MLsd78_ZWvY-8j5RI3lyhbPI3eC6gyTfLIS4,1068
10
- nominal_api/comments_api/__init__.py,sha256=bt24EdmTY513nKMrWMCsfYV0XmX7VKQgOFH4I4tKWy4,860
10
+ nominal_api/comments_api/__init__.py,sha256=tidEBYoVAZXfKGd4Au3aMjUKErewt2uNm0in77LpqLQ,815
11
11
  nominal_api/connect_download/__init__.py,sha256=kYpjIjuFHA3uix70bJ5gV9-7BmDcJZAcm_e3MeMVSSQ,83
12
12
  nominal_api/datasource/__init__.py,sha256=C2lvxiWYnZRjaMKL2sY9_bfgZezBpK39A3VtgSASgRI,134
13
13
  nominal_api/datasource_api/__init__.py,sha256=-0v4FGK22kyCALrJ-LRcwJ-QHDUnFCBqj_LkpEt_rgs,2163
@@ -48,7 +48,7 @@ nominal_api/scout_layout_api/__init__.py,sha256=mKszV44ni9VODK9jFyY3O9YOV9DYltKJ
48
48
  nominal_api/scout_metadata/__init__.py,sha256=GIhWKJL2XSMB0iGaKfcGgmPHuvGWWmkK4lXSa1YsB44,332
49
49
  nominal_api/scout_notebook_api/__init__.py,sha256=TW4_Y2DbakA13v3q_vmRSN8gaS8g0UYRREVKruujJc0,1299
50
50
  nominal_api/scout_plotting/__init__.py,sha256=m6u3y7R70mo3ugaCp_-fwlS8_tDwrsq1l5ElOTY0TBc,91
51
- nominal_api/scout_rids_api/__init__.py,sha256=zAioy5BpuLLgZQpF-11wWUEhntcHNj6sK5YzNC5z-3w,1188
51
+ nominal_api/scout_rids_api/__init__.py,sha256=-R3CY5jAqHRIuNHy96D6CpjZo9Jb1Zhr9lacCFTBtHM,1237
52
52
  nominal_api/scout_run_api/__init__.py,sha256=WvKLFyNGRx8nXDo4kw5yopEvmRREinIT-jhjo5_pY-w,2734
53
53
  nominal_api/scout_template_api/__init__.py,sha256=twrd03oixkoGnRn_xpXywTcdq2tvMD1PLxSrMPdwz9c,1106
54
54
  nominal_api/scout_units_api/__init__.py,sha256=KxRDScfumX__0ncWJftGvgApn_LBTfnIBAvnaBrcA5A,368
@@ -72,7 +72,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=Q9iZHurmyDsJIFbUg-Eb
72
72
  nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
73
73
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
74
74
  nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
75
- nominal_api-0.684.1.dist-info/METADATA,sha256=kPES2dIJHcnMaHPmmqqW9gY3K4_k9augM894_e60enU,199
76
- nominal_api-0.684.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
77
- nominal_api-0.684.1.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
78
- nominal_api-0.684.1.dist-info/RECORD,,
75
+ nominal_api-0.685.0.dist-info/METADATA,sha256=Aqe_HwYnojzGQM2mmW_ahygY9TM10Spo8NiQg41Q0YU,199
76
+ nominal_api-0.685.0.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
77
+ nominal_api-0.685.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
78
+ nominal_api-0.685.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5