nominal-api 0.916.3__py3-none-any.whl → 0.918.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 +12 -3
- {nominal_api-0.916.3.dist-info → nominal_api-0.918.0.dist-info}/METADATA +1 -1
- {nominal_api-0.916.3.dist-info → nominal_api-0.918.0.dist-info}/RECORD +6 -6
- {nominal_api-0.916.3.dist-info → nominal_api-0.918.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.916.3.dist-info → nominal_api-0.918.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -13722,16 +13722,18 @@ class ingest_workflow_api_IngestDataflashResponse(ConjureBeanType):
|
|
|
13722
13722
|
'units': ConjureFieldDefinition('units', Dict[str, str]),
|
|
13723
13723
|
'parquet_object_locators': ConjureFieldDefinition('parquetObjectLocators', List[ingest_workflow_api_ObjectLocator]),
|
|
13724
13724
|
'timestamp_series_name': ConjureFieldDefinition('timestampSeriesName', str),
|
|
13725
|
-
'time_unit': ConjureFieldDefinition('timeUnit', ingest_workflow_api_TimeUnitSeconds)
|
|
13725
|
+
'time_unit': ConjureFieldDefinition('timeUnit', ingest_workflow_api_TimeUnitSeconds),
|
|
13726
|
+
'avro_locator': ConjureFieldDefinition('avroLocator', OptionalTypeWrapper[ingest_workflow_api_ObjectLocator])
|
|
13726
13727
|
}
|
|
13727
13728
|
|
|
13728
|
-
__slots__: List[str] = ['_units', '_parquet_object_locators', '_timestamp_series_name', '_time_unit']
|
|
13729
|
+
__slots__: List[str] = ['_units', '_parquet_object_locators', '_timestamp_series_name', '_time_unit', '_avro_locator']
|
|
13729
13730
|
|
|
13730
|
-
def __init__(self, parquet_object_locators: List["ingest_workflow_api_ObjectLocator"], time_unit: "ingest_workflow_api_TimeUnitSeconds", timestamp_series_name: str, units: Dict[str, str]) -> None:
|
|
13731
|
+
def __init__(self, parquet_object_locators: List["ingest_workflow_api_ObjectLocator"], time_unit: "ingest_workflow_api_TimeUnitSeconds", timestamp_series_name: str, units: Dict[str, str], avro_locator: Optional["ingest_workflow_api_ObjectLocator"] = None) -> None:
|
|
13731
13732
|
self._units = units
|
|
13732
13733
|
self._parquet_object_locators = parquet_object_locators
|
|
13733
13734
|
self._timestamp_series_name = timestamp_series_name
|
|
13734
13735
|
self._time_unit = time_unit
|
|
13736
|
+
self._avro_locator = avro_locator
|
|
13735
13737
|
|
|
13736
13738
|
@builtins.property
|
|
13737
13739
|
def units(self) -> Dict[str, str]:
|
|
@@ -13756,6 +13758,13 @@ only a single file is supported, the list type is used for future compatibility.
|
|
|
13756
13758
|
"""
|
|
13757
13759
|
return self._time_unit
|
|
13758
13760
|
|
|
13761
|
+
@builtins.property
|
|
13762
|
+
def avro_locator(self) -> Optional["ingest_workflow_api_ObjectLocator"]:
|
|
13763
|
+
"""Azure or S3-style blob locator of avro file when avro processing is configured.
|
|
13764
|
+
This field is only set when the workflow is configured to write avro stream.
|
|
13765
|
+
"""
|
|
13766
|
+
return self._avro_locator
|
|
13767
|
+
|
|
13759
13768
|
|
|
13760
13769
|
ingest_workflow_api_IngestDataflashResponse.__name__ = "IngestDataflashResponse"
|
|
13761
13770
|
ingest_workflow_api_IngestDataflashResponse.__qualname__ = "IngestDataflashResponse"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=-p0MlXgFj30CZaoxtLVhEjBv0G8NhJnx0qObXrN5omk,2088
|
|
2
|
+
nominal_api/_impl.py,sha256=sdHmx2CRVmhkCrFGU3iz1Flz6GodJ7d2heB8h0TQLIg,3809627
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=GqRLE9wwPPQgALVHFJViG8E4JJ2t3yfHedeXRLu1L70,2226
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
@@ -78,7 +78,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
|
|
|
78
78
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
|
79
79
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
80
80
|
nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
|
|
81
|
-
nominal_api-0.
|
|
82
|
-
nominal_api-0.
|
|
83
|
-
nominal_api-0.
|
|
84
|
-
nominal_api-0.
|
|
81
|
+
nominal_api-0.918.0.dist-info/METADATA,sha256=1y0iK2vayHB1L0DFizo4Ni5xpbYdBTf51m9TPdJjDI8,199
|
|
82
|
+
nominal_api-0.918.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
83
|
+
nominal_api-0.918.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
84
|
+
nominal_api-0.918.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|