nominal-api 0.607.0__py3-none-any.whl → 0.609.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 +21 -3
- {nominal_api-0.607.0.dist-info → nominal_api-0.609.0.dist-info}/METADATA +1 -1
- {nominal_api-0.607.0.dist-info → nominal_api-0.609.0.dist-info}/RECORD +6 -6
- {nominal_api-0.607.0.dist-info → nominal_api-0.609.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.607.0.dist-info → nominal_api-0.609.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -73083,15 +73083,19 @@ class timeseries_logicalseries_api_CsvLocator(ConjureBeanType):
|
|
|
73083
73083
|
return {
|
|
73084
73084
|
's3_path': ConjureFieldDefinition('s3Path', api_S3Path),
|
|
73085
73085
|
'index': ConjureFieldDefinition('index', int),
|
|
73086
|
-
'uses_legacy_format': ConjureFieldDefinition('usesLegacyFormat', OptionalTypeWrapper[bool])
|
|
73086
|
+
'uses_legacy_format': ConjureFieldDefinition('usesLegacyFormat', OptionalTypeWrapper[bool]),
|
|
73087
|
+
'x_series_handle': ConjureFieldDefinition('xSeriesHandle', OptionalTypeWrapper[str]),
|
|
73088
|
+
'y_series_handle': ConjureFieldDefinition('ySeriesHandle', OptionalTypeWrapper[str])
|
|
73087
73089
|
}
|
|
73088
73090
|
|
|
73089
|
-
__slots__: List[str] = ['_s3_path', '_index', '_uses_legacy_format']
|
|
73091
|
+
__slots__: List[str] = ['_s3_path', '_index', '_uses_legacy_format', '_x_series_handle', '_y_series_handle']
|
|
73090
73092
|
|
|
73091
|
-
def __init__(self, index: int, s3_path: str, uses_legacy_format: Optional[bool] = None) -> None:
|
|
73093
|
+
def __init__(self, index: int, s3_path: str, uses_legacy_format: Optional[bool] = None, x_series_handle: Optional[str] = None, y_series_handle: Optional[str] = None) -> None:
|
|
73092
73094
|
self._s3_path = s3_path
|
|
73093
73095
|
self._index = index
|
|
73094
73096
|
self._uses_legacy_format = uses_legacy_format
|
|
73097
|
+
self._x_series_handle = x_series_handle
|
|
73098
|
+
self._y_series_handle = y_series_handle
|
|
73095
73099
|
|
|
73096
73100
|
@builtins.property
|
|
73097
73101
|
def s3_path(self) -> str:
|
|
@@ -73109,6 +73113,20 @@ and values are split into two separate arrow files.
|
|
|
73109
73113
|
"""
|
|
73110
73114
|
return self._uses_legacy_format
|
|
73111
73115
|
|
|
73116
|
+
@builtins.property
|
|
73117
|
+
def x_series_handle(self) -> Optional[str]:
|
|
73118
|
+
"""
|
|
73119
|
+
The handle of the x series to use for this logical series.
|
|
73120
|
+
"""
|
|
73121
|
+
return self._x_series_handle
|
|
73122
|
+
|
|
73123
|
+
@builtins.property
|
|
73124
|
+
def y_series_handle(self) -> Optional[str]:
|
|
73125
|
+
"""
|
|
73126
|
+
The handle of the y series to use for this logical series.
|
|
73127
|
+
"""
|
|
73128
|
+
return self._y_series_handle
|
|
73129
|
+
|
|
73112
73130
|
|
|
73113
73131
|
timeseries_logicalseries_api_CsvLocator.__name__ = "CsvLocator"
|
|
73114
73132
|
timeseries_logicalseries_api_CsvLocator.__qualname__ = "CsvLocator"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=dQTea6S4ECozoLcRWhHd0e0eX9T111oNCCepZm1UVCQ,1968
|
|
2
|
+
nominal_api/_impl.py,sha256=Wp_eJzHp5nSlc-pwBdiwcwumVefiBA-2BZkRpT081m8,2913421
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
|
|
@@ -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.
|
|
76
|
-
nominal_api-0.
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
75
|
+
nominal_api-0.609.0.dist-info/METADATA,sha256=I366bMKRF2qePX10r_wshRT_EiLedqOhtyg3SuYLGMY,199
|
|
76
|
+
nominal_api-0.609.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
77
|
+
nominal_api-0.609.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
78
|
+
nominal_api-0.609.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|