nominal-api 0.945.0__py3-none-any.whl → 0.946.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.
- nominal_api/__init__.py +2 -1
- nominal_api/_impl.py +304 -182
- nominal_api/ingest_manifest/__init__.py +17 -0
- nominal_api/scout_compute_api/__init__.py +4 -8
- {nominal_api-0.945.0.dist-info → nominal_api-0.946.0.dist-info}/METADATA +1 -1
- {nominal_api-0.945.0.dist-info → nominal_api-0.946.0.dist-info}/RECORD +8 -7
- {nominal_api-0.945.0.dist-info → nominal_api-0.946.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.945.0.dist-info → nominal_api-0.946.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
@@ -15,6 +15,7 @@ __all__ = [
|
|
15
15
|
'datasource_pagination_api',
|
16
16
|
'event',
|
17
17
|
'ingest_api',
|
18
|
+
'ingest_manifest',
|
18
19
|
'ingest_workflow_api',
|
19
20
|
'module',
|
20
21
|
'module_internal',
|
@@ -81,5 +82,5 @@ __all__ = [
|
|
81
82
|
|
82
83
|
__conjure_generator_version__ = "4.17.0"
|
83
84
|
|
84
|
-
__version__ = "0.
|
85
|
+
__version__ = "0.946.0"
|
85
86
|
|
nominal_api/_impl.py
CHANGED
@@ -9621,6 +9621,8 @@ class ingest_api_FileOutputFormat(ConjureEnumType):
|
|
9621
9621
|
'''AVRO_STREAM'''
|
9622
9622
|
JSON_L = 'JSON_L'
|
9623
9623
|
'''JSON_L'''
|
9624
|
+
MANIFEST = 'MANIFEST'
|
9625
|
+
'''MANIFEST'''
|
9624
9626
|
UNKNOWN = 'UNKNOWN'
|
9625
9627
|
'''UNKNOWN'''
|
9626
9628
|
|
@@ -13517,6 +13519,187 @@ ingest_api_VideoTimestampManifestVisitor.__qualname__ = "VideoTimestampManifestV
|
|
13517
13519
|
ingest_api_VideoTimestampManifestVisitor.__module__ = "nominal_api.ingest_api"
|
13518
13520
|
|
13519
13521
|
|
13522
|
+
class ingest_manifest_ExtractorManifest(ConjureBeanType):
|
13523
|
+
"""Manifest file produced by containerized extractors to describe their outputs.
|
13524
|
+
This is written as manifest.yaml in the OUTPUT_DIR by the container.
|
13525
|
+
"""
|
13526
|
+
|
13527
|
+
@builtins.classmethod
|
13528
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
13529
|
+
return {
|
13530
|
+
'outputs': ConjureFieldDefinition('outputs', List[ingest_manifest_ManifestOutput])
|
13531
|
+
}
|
13532
|
+
|
13533
|
+
__slots__: List[str] = ['_outputs']
|
13534
|
+
|
13535
|
+
def __init__(self, outputs: List["ingest_manifest_ManifestOutput"]) -> None:
|
13536
|
+
self._outputs = outputs
|
13537
|
+
|
13538
|
+
@builtins.property
|
13539
|
+
def outputs(self) -> List["ingest_manifest_ManifestOutput"]:
|
13540
|
+
"""List of output files produced by the extractor
|
13541
|
+
"""
|
13542
|
+
return self._outputs
|
13543
|
+
|
13544
|
+
|
13545
|
+
ingest_manifest_ExtractorManifest.__name__ = "ExtractorManifest"
|
13546
|
+
ingest_manifest_ExtractorManifest.__qualname__ = "ExtractorManifest"
|
13547
|
+
ingest_manifest_ExtractorManifest.__module__ = "nominal_api.ingest_manifest"
|
13548
|
+
|
13549
|
+
|
13550
|
+
class ingest_manifest_ExtractorUploadMetadata(ConjureBeanType):
|
13551
|
+
"""Metadata file created by yeeter after uploading extractor outputs to S3.
|
13552
|
+
This is uploaded to S3 by yeeter and read by the Temporal activity to orchestrate ingestion.
|
13553
|
+
"""
|
13554
|
+
|
13555
|
+
@builtins.classmethod
|
13556
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
13557
|
+
return {
|
13558
|
+
'uploads': ConjureFieldDefinition('uploads', List[ingest_manifest_UploadMetadata])
|
13559
|
+
}
|
13560
|
+
|
13561
|
+
__slots__: List[str] = ['_uploads']
|
13562
|
+
|
13563
|
+
def __init__(self, uploads: List["ingest_manifest_UploadMetadata"]) -> None:
|
13564
|
+
self._uploads = uploads
|
13565
|
+
|
13566
|
+
@builtins.property
|
13567
|
+
def uploads(self) -> List["ingest_manifest_UploadMetadata"]:
|
13568
|
+
"""List of uploaded files with their S3 locations and manifest metadata
|
13569
|
+
"""
|
13570
|
+
return self._uploads
|
13571
|
+
|
13572
|
+
|
13573
|
+
ingest_manifest_ExtractorUploadMetadata.__name__ = "ExtractorUploadMetadata"
|
13574
|
+
ingest_manifest_ExtractorUploadMetadata.__qualname__ = "ExtractorUploadMetadata"
|
13575
|
+
ingest_manifest_ExtractorUploadMetadata.__module__ = "nominal_api.ingest_manifest"
|
13576
|
+
|
13577
|
+
|
13578
|
+
class ingest_manifest_ManifestIngestType(ConjureEnumType):
|
13579
|
+
"""Supported ingest types for containerized extractor outputs.
|
13580
|
+
"""
|
13581
|
+
|
13582
|
+
PARQUET = 'PARQUET'
|
13583
|
+
'''PARQUET'''
|
13584
|
+
CSV = 'CSV'
|
13585
|
+
'''CSV'''
|
13586
|
+
PARQUET_TAR = 'PARQUET_TAR'
|
13587
|
+
'''PARQUET_TAR'''
|
13588
|
+
AVRO_STREAM = 'AVRO_STREAM'
|
13589
|
+
'''AVRO_STREAM'''
|
13590
|
+
JSON_L = 'JSON_L'
|
13591
|
+
'''JSON_L'''
|
13592
|
+
UNKNOWN = 'UNKNOWN'
|
13593
|
+
'''UNKNOWN'''
|
13594
|
+
|
13595
|
+
def __reduce_ex__(self, proto):
|
13596
|
+
return self.__class__, (self.name,)
|
13597
|
+
|
13598
|
+
|
13599
|
+
ingest_manifest_ManifestIngestType.__name__ = "ManifestIngestType"
|
13600
|
+
ingest_manifest_ManifestIngestType.__qualname__ = "ManifestIngestType"
|
13601
|
+
ingest_manifest_ManifestIngestType.__module__ = "nominal_api.ingest_manifest"
|
13602
|
+
|
13603
|
+
|
13604
|
+
class ingest_manifest_ManifestOutput(ConjureBeanType):
|
13605
|
+
"""Describes a single output file from a containerized extractor.
|
13606
|
+
This is written by the container in manifest.yaml.
|
13607
|
+
"""
|
13608
|
+
|
13609
|
+
@builtins.classmethod
|
13610
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
13611
|
+
return {
|
13612
|
+
'ingest_type': ConjureFieldDefinition('ingestType', ingest_manifest_ManifestIngestType),
|
13613
|
+
'relative_path': ConjureFieldDefinition('relativePath', str),
|
13614
|
+
'tag_columns': ConjureFieldDefinition('tagColumns', Dict[str, str]),
|
13615
|
+
'channel_prefix': ConjureFieldDefinition('channelPrefix', OptionalTypeWrapper[str])
|
13616
|
+
}
|
13617
|
+
|
13618
|
+
__slots__: List[str] = ['_ingest_type', '_relative_path', '_tag_columns', '_channel_prefix']
|
13619
|
+
|
13620
|
+
def __init__(self, ingest_type: "ingest_manifest_ManifestIngestType", relative_path: str, tag_columns: Dict[str, str], channel_prefix: Optional[str] = None) -> None:
|
13621
|
+
self._ingest_type = ingest_type
|
13622
|
+
self._relative_path = relative_path
|
13623
|
+
self._tag_columns = tag_columns
|
13624
|
+
self._channel_prefix = channel_prefix
|
13625
|
+
|
13626
|
+
@builtins.property
|
13627
|
+
def ingest_type(self) -> "ingest_manifest_ManifestIngestType":
|
13628
|
+
"""The type of ingestion for this output file
|
13629
|
+
"""
|
13630
|
+
return self._ingest_type
|
13631
|
+
|
13632
|
+
@builtins.property
|
13633
|
+
def relative_path(self) -> str:
|
13634
|
+
"""Relative path to the output file within OUTPUT_DIR.
|
13635
|
+
Example: "telemetry.csv" or "data/sensor_readings.parquet"
|
13636
|
+
"""
|
13637
|
+
return self._relative_path
|
13638
|
+
|
13639
|
+
@builtins.property
|
13640
|
+
def tag_columns(self) -> Dict[str, str]:
|
13641
|
+
"""Optional mapping of tag names to column names for CSV/Parquet ingestion.
|
13642
|
+
Example: {"vehicle_id": "veh_id", "mission_id": "msn_id"}
|
13643
|
+
"""
|
13644
|
+
return self._tag_columns
|
13645
|
+
|
13646
|
+
@builtins.property
|
13647
|
+
def channel_prefix(self) -> Optional[str]:
|
13648
|
+
"""Optional prefix to prepend to channel names during ingestion.
|
13649
|
+
Example: "telemetry/" would create channels like "telemetry/speed", "telemetry/altitude"
|
13650
|
+
"""
|
13651
|
+
return self._channel_prefix
|
13652
|
+
|
13653
|
+
|
13654
|
+
ingest_manifest_ManifestOutput.__name__ = "ManifestOutput"
|
13655
|
+
ingest_manifest_ManifestOutput.__qualname__ = "ManifestOutput"
|
13656
|
+
ingest_manifest_ManifestOutput.__module__ = "nominal_api.ingest_manifest"
|
13657
|
+
|
13658
|
+
|
13659
|
+
class ingest_manifest_UploadMetadata(ConjureBeanType):
|
13660
|
+
"""Metadata about a single file uploaded to S3 by yeeter.
|
13661
|
+
Enriches the original manifest entry with S3 upload information.
|
13662
|
+
"""
|
13663
|
+
|
13664
|
+
@builtins.classmethod
|
13665
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
13666
|
+
return {
|
13667
|
+
's3_key': ConjureFieldDefinition('s3Key', str),
|
13668
|
+
's3_bucket': ConjureFieldDefinition('s3Bucket', str),
|
13669
|
+
'manifest_output': ConjureFieldDefinition('manifestOutput', ingest_manifest_ManifestOutput)
|
13670
|
+
}
|
13671
|
+
|
13672
|
+
__slots__: List[str] = ['_s3_key', '_s3_bucket', '_manifest_output']
|
13673
|
+
|
13674
|
+
def __init__(self, manifest_output: "ingest_manifest_ManifestOutput", s3_bucket: str, s3_key: str) -> None:
|
13675
|
+
self._s3_key = s3_key
|
13676
|
+
self._s3_bucket = s3_bucket
|
13677
|
+
self._manifest_output = manifest_output
|
13678
|
+
|
13679
|
+
@builtins.property
|
13680
|
+
def s3_key(self) -> str:
|
13681
|
+
"""Full S3 key where the file was uploaded
|
13682
|
+
"""
|
13683
|
+
return self._s3_key
|
13684
|
+
|
13685
|
+
@builtins.property
|
13686
|
+
def s3_bucket(self) -> str:
|
13687
|
+
"""S3 bucket name where the file was uploaded
|
13688
|
+
"""
|
13689
|
+
return self._s3_bucket
|
13690
|
+
|
13691
|
+
@builtins.property
|
13692
|
+
def manifest_output(self) -> "ingest_manifest_ManifestOutput":
|
13693
|
+
"""The original manifest entry from the container's manifest.yaml
|
13694
|
+
"""
|
13695
|
+
return self._manifest_output
|
13696
|
+
|
13697
|
+
|
13698
|
+
ingest_manifest_UploadMetadata.__name__ = "UploadMetadata"
|
13699
|
+
ingest_manifest_UploadMetadata.__qualname__ = "UploadMetadata"
|
13700
|
+
ingest_manifest_UploadMetadata.__module__ = "nominal_api.ingest_manifest"
|
13701
|
+
|
13702
|
+
|
13520
13703
|
class ingest_workflow_api_CreateIngestJobRequest(ConjureBeanType):
|
13521
13704
|
|
13522
13705
|
@builtins.classmethod
|
@@ -17729,8 +17912,6 @@ class persistent_compute_api_InvalidComputationType(ConjureEnumType):
|
|
17729
17912
|
'''CURVE_FITTING'''
|
17730
17913
|
PAGE_SUMMARIZATION_STRATEGY = 'PAGE_SUMMARIZATION_STRATEGY'
|
17731
17914
|
'''PAGE_SUMMARIZATION_STRATEGY'''
|
17732
|
-
TRUNCATE_SUMMARIZATION_STRATEGY = 'TRUNCATE_SUMMARIZATION_STRATEGY'
|
17733
|
-
'''TRUNCATE_SUMMARIZATION_STRATEGY'''
|
17734
17915
|
LOG_SERIES = 'LOG_SERIES'
|
17735
17916
|
'''LOG_SERIES'''
|
17736
17917
|
LITERAL_RANGES = 'LITERAL_RANGES'
|
@@ -40847,38 +41028,38 @@ scout_compute_api_ArraySeriesVisitor.__module__ = "nominal_api.scout_compute_api
|
|
40847
41028
|
|
40848
41029
|
|
40849
41030
|
class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
40850
|
-
|
40851
|
-
|
41031
|
+
_paged_numeric: Optional["scout_compute_api_PagedNumericArrayPlot"] = None
|
41032
|
+
_paged_enum: Optional["scout_compute_api_PagedEnumArrayPlot"] = None
|
40852
41033
|
_bucketed_numeric: Optional["scout_compute_api_BucketedNumericArrayPlot"] = None
|
40853
41034
|
_bucketed_enum: Optional["scout_compute_api_BucketedEnumArrayPlot"] = None
|
40854
41035
|
|
40855
41036
|
@builtins.classmethod
|
40856
41037
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
40857
41038
|
return {
|
40858
|
-
'
|
40859
|
-
'
|
41039
|
+
'paged_numeric': ConjureFieldDefinition('pagedNumeric', scout_compute_api_PagedNumericArrayPlot),
|
41040
|
+
'paged_enum': ConjureFieldDefinition('pagedEnum', scout_compute_api_PagedEnumArrayPlot),
|
40860
41041
|
'bucketed_numeric': ConjureFieldDefinition('bucketedNumeric', scout_compute_api_BucketedNumericArrayPlot),
|
40861
41042
|
'bucketed_enum': ConjureFieldDefinition('bucketedEnum', scout_compute_api_BucketedEnumArrayPlot)
|
40862
41043
|
}
|
40863
41044
|
|
40864
41045
|
def __init__(
|
40865
41046
|
self,
|
40866
|
-
|
40867
|
-
|
41047
|
+
paged_numeric: Optional["scout_compute_api_PagedNumericArrayPlot"] = None,
|
41048
|
+
paged_enum: Optional["scout_compute_api_PagedEnumArrayPlot"] = None,
|
40868
41049
|
bucketed_numeric: Optional["scout_compute_api_BucketedNumericArrayPlot"] = None,
|
40869
41050
|
bucketed_enum: Optional["scout_compute_api_BucketedEnumArrayPlot"] = None,
|
40870
41051
|
type_of_union: Optional[str] = None
|
40871
41052
|
) -> None:
|
40872
41053
|
if type_of_union is None:
|
40873
|
-
if (
|
41054
|
+
if (paged_numeric is not None) + (paged_enum is not None) + (bucketed_numeric is not None) + (bucketed_enum is not None) != 1:
|
40874
41055
|
raise ValueError('a union must contain a single member')
|
40875
41056
|
|
40876
|
-
if
|
40877
|
-
self.
|
40878
|
-
self._type = '
|
40879
|
-
if
|
40880
|
-
self.
|
40881
|
-
self._type = '
|
41057
|
+
if paged_numeric is not None:
|
41058
|
+
self._paged_numeric = paged_numeric
|
41059
|
+
self._type = 'pagedNumeric'
|
41060
|
+
if paged_enum is not None:
|
41061
|
+
self._paged_enum = paged_enum
|
41062
|
+
self._type = 'pagedEnum'
|
40882
41063
|
if bucketed_numeric is not None:
|
40883
41064
|
self._bucketed_numeric = bucketed_numeric
|
40884
41065
|
self._type = 'bucketedNumeric'
|
@@ -40886,16 +41067,16 @@ class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
40886
41067
|
self._bucketed_enum = bucketed_enum
|
40887
41068
|
self._type = 'bucketedEnum'
|
40888
41069
|
|
40889
|
-
elif type_of_union == '
|
40890
|
-
if
|
41070
|
+
elif type_of_union == 'pagedNumeric':
|
41071
|
+
if paged_numeric is None:
|
40891
41072
|
raise ValueError('a union value must not be None')
|
40892
|
-
self.
|
40893
|
-
self._type = '
|
40894
|
-
elif type_of_union == '
|
40895
|
-
if
|
41073
|
+
self._paged_numeric = paged_numeric
|
41074
|
+
self._type = 'pagedNumeric'
|
41075
|
+
elif type_of_union == 'pagedEnum':
|
41076
|
+
if paged_enum is None:
|
40896
41077
|
raise ValueError('a union value must not be None')
|
40897
|
-
self.
|
40898
|
-
self._type = '
|
41078
|
+
self._paged_enum = paged_enum
|
41079
|
+
self._type = 'pagedEnum'
|
40899
41080
|
elif type_of_union == 'bucketedNumeric':
|
40900
41081
|
if bucketed_numeric is None:
|
40901
41082
|
raise ValueError('a union value must not be None')
|
@@ -40908,12 +41089,12 @@ class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
40908
41089
|
self._type = 'bucketedEnum'
|
40909
41090
|
|
40910
41091
|
@builtins.property
|
40911
|
-
def
|
40912
|
-
return self.
|
41092
|
+
def paged_numeric(self) -> Optional["scout_compute_api_PagedNumericArrayPlot"]:
|
41093
|
+
return self._paged_numeric
|
40913
41094
|
|
40914
41095
|
@builtins.property
|
40915
|
-
def
|
40916
|
-
return self.
|
41096
|
+
def paged_enum(self) -> Optional["scout_compute_api_PagedEnumArrayPlot"]:
|
41097
|
+
return self._paged_enum
|
40917
41098
|
|
40918
41099
|
@builtins.property
|
40919
41100
|
def bucketed_numeric(self) -> Optional["scout_compute_api_BucketedNumericArrayPlot"]:
|
@@ -40926,10 +41107,10 @@ class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
40926
41107
|
def accept(self, visitor) -> Any:
|
40927
41108
|
if not isinstance(visitor, scout_compute_api_ArrowArrayPlotVisitor):
|
40928
41109
|
raise ValueError('{} is not an instance of scout_compute_api_ArrowArrayPlotVisitor'.format(visitor.__class__.__name__))
|
40929
|
-
if self._type == '
|
40930
|
-
return visitor.
|
40931
|
-
if self._type == '
|
40932
|
-
return visitor.
|
41110
|
+
if self._type == 'pagedNumeric' and self.paged_numeric is not None:
|
41111
|
+
return visitor._paged_numeric(self.paged_numeric)
|
41112
|
+
if self._type == 'pagedEnum' and self.paged_enum is not None:
|
41113
|
+
return visitor._paged_enum(self.paged_enum)
|
40933
41114
|
if self._type == 'bucketedNumeric' and self.bucketed_numeric is not None:
|
40934
41115
|
return visitor._bucketed_numeric(self.bucketed_numeric)
|
40935
41116
|
if self._type == 'bucketedEnum' and self.bucketed_enum is not None:
|
@@ -40944,11 +41125,11 @@ scout_compute_api_ArrowArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
40944
41125
|
class scout_compute_api_ArrowArrayPlotVisitor:
|
40945
41126
|
|
40946
41127
|
@abstractmethod
|
40947
|
-
def
|
41128
|
+
def _paged_numeric(self, paged_numeric: "scout_compute_api_PagedNumericArrayPlot") -> Any:
|
40948
41129
|
pass
|
40949
41130
|
|
40950
41131
|
@abstractmethod
|
40951
|
-
def
|
41132
|
+
def _paged_enum(self, paged_enum: "scout_compute_api_PagedEnumArrayPlot") -> Any:
|
40952
41133
|
pass
|
40953
41134
|
|
40954
41135
|
@abstractmethod
|
@@ -45861,40 +46042,6 @@ scout_compute_api_EnumAggregationFunction.__qualname__ = "EnumAggregationFunctio
|
|
45861
46042
|
scout_compute_api_EnumAggregationFunction.__module__ = "nominal_api.scout_compute_api"
|
45862
46043
|
|
45863
46044
|
|
45864
|
-
class scout_compute_api_EnumArrayPlot(ConjureBeanType):
|
45865
|
-
|
45866
|
-
@builtins.classmethod
|
45867
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
45868
|
-
return {
|
45869
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
45870
|
-
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
45871
|
-
}
|
45872
|
-
|
45873
|
-
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
45874
|
-
|
45875
|
-
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
45876
|
-
self._arrow_binary = arrow_binary
|
45877
|
-
self._group_by_keys = group_by_keys
|
45878
|
-
|
45879
|
-
@builtins.property
|
45880
|
-
def arrow_binary(self) -> Any:
|
45881
|
-
"""The raw binary containing Arrow IPC stream for the first n rows of an enum array plot sorted by timestamp.
|
45882
|
-
"""
|
45883
|
-
return self._arrow_binary
|
45884
|
-
|
45885
|
-
@builtins.property
|
45886
|
-
def group_by_keys(self) -> Optional[List[str]]:
|
45887
|
-
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
45888
|
-
this list represents the superset of all group by keys used across every individual channel.
|
45889
|
-
"""
|
45890
|
-
return self._group_by_keys
|
45891
|
-
|
45892
|
-
|
45893
|
-
scout_compute_api_EnumArrayPlot.__name__ = "EnumArrayPlot"
|
45894
|
-
scout_compute_api_EnumArrayPlot.__qualname__ = "EnumArrayPlot"
|
45895
|
-
scout_compute_api_EnumArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
45896
|
-
|
45897
|
-
|
45898
46045
|
class scout_compute_api_EnumBucket(ConjureBeanType):
|
45899
46046
|
|
45900
46047
|
@builtins.classmethod
|
@@ -49509,40 +49656,6 @@ scout_compute_api_NumericApproximateFilterSeries.__qualname__ = "NumericApproxim
|
|
49509
49656
|
scout_compute_api_NumericApproximateFilterSeries.__module__ = "nominal_api.scout_compute_api"
|
49510
49657
|
|
49511
49658
|
|
49512
|
-
class scout_compute_api_NumericArrayPlot(ConjureBeanType):
|
49513
|
-
|
49514
|
-
@builtins.classmethod
|
49515
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
49516
|
-
return {
|
49517
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
49518
|
-
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
49519
|
-
}
|
49520
|
-
|
49521
|
-
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
49522
|
-
|
49523
|
-
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
49524
|
-
self._arrow_binary = arrow_binary
|
49525
|
-
self._group_by_keys = group_by_keys
|
49526
|
-
|
49527
|
-
@builtins.property
|
49528
|
-
def arrow_binary(self) -> Any:
|
49529
|
-
"""The raw binary containing Arrow IPC stream for the first n rows of a numeric array plot sorted by timestamp.
|
49530
|
-
"""
|
49531
|
-
return self._arrow_binary
|
49532
|
-
|
49533
|
-
@builtins.property
|
49534
|
-
def group_by_keys(self) -> Optional[List[str]]:
|
49535
|
-
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
49536
|
-
this list represents the superset of all group by keys used across every individual channel.
|
49537
|
-
"""
|
49538
|
-
return self._group_by_keys
|
49539
|
-
|
49540
|
-
|
49541
|
-
scout_compute_api_NumericArrayPlot.__name__ = "NumericArrayPlot"
|
49542
|
-
scout_compute_api_NumericArrayPlot.__qualname__ = "NumericArrayPlot"
|
49543
|
-
scout_compute_api_NumericArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
49544
|
-
|
49545
|
-
|
49546
49659
|
class scout_compute_api_NumericBucket(ConjureBeanType):
|
49547
49660
|
|
49548
49661
|
@builtins.classmethod
|
@@ -51417,6 +51530,50 @@ scout_compute_api_PageTokenVisitor.__qualname__ = "PageTokenVisitor"
|
|
51417
51530
|
scout_compute_api_PageTokenVisitor.__module__ = "nominal_api.scout_compute_api"
|
51418
51531
|
|
51419
51532
|
|
51533
|
+
class scout_compute_api_PagedEnumArrayPlot(ConjureBeanType):
|
51534
|
+
|
51535
|
+
@builtins.classmethod
|
51536
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
51537
|
+
return {
|
51538
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
51539
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]]),
|
51540
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_compute_api_PageToken])
|
51541
|
+
}
|
51542
|
+
|
51543
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys', '_next_page_token']
|
51544
|
+
|
51545
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
51546
|
+
self._arrow_binary = arrow_binary
|
51547
|
+
self._group_by_keys = group_by_keys
|
51548
|
+
self._next_page_token = next_page_token
|
51549
|
+
|
51550
|
+
@builtins.property
|
51551
|
+
def arrow_binary(self) -> Any:
|
51552
|
+
"""The raw binary containing Arrow IPC stream for a page of an N-dimensional enum array plot.
|
51553
|
+
"""
|
51554
|
+
return self._arrow_binary
|
51555
|
+
|
51556
|
+
@builtins.property
|
51557
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
51558
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
51559
|
+
this list represents the superset of all group by keys used across every individual channel.
|
51560
|
+
"""
|
51561
|
+
return self._group_by_keys
|
51562
|
+
|
51563
|
+
@builtins.property
|
51564
|
+
def next_page_token(self) -> Optional["scout_compute_api_PageToken"]:
|
51565
|
+
"""The token to retrieve the next page of arrays in the direction originally requested (exclusive - not
|
51566
|
+
included in these results). May be empty if there are no further values in the requested time range in the
|
51567
|
+
direction originally requested.
|
51568
|
+
"""
|
51569
|
+
return self._next_page_token
|
51570
|
+
|
51571
|
+
|
51572
|
+
scout_compute_api_PagedEnumArrayPlot.__name__ = "PagedEnumArrayPlot"
|
51573
|
+
scout_compute_api_PagedEnumArrayPlot.__qualname__ = "PagedEnumArrayPlot"
|
51574
|
+
scout_compute_api_PagedEnumArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
51575
|
+
|
51576
|
+
|
51420
51577
|
class scout_compute_api_PagedLogPlot(ConjureBeanType):
|
51421
51578
|
|
51422
51579
|
@builtins.classmethod
|
@@ -51456,6 +51613,50 @@ scout_compute_api_PagedLogPlot.__qualname__ = "PagedLogPlot"
|
|
51456
51613
|
scout_compute_api_PagedLogPlot.__module__ = "nominal_api.scout_compute_api"
|
51457
51614
|
|
51458
51615
|
|
51616
|
+
class scout_compute_api_PagedNumericArrayPlot(ConjureBeanType):
|
51617
|
+
|
51618
|
+
@builtins.classmethod
|
51619
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
51620
|
+
return {
|
51621
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
51622
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]]),
|
51623
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[scout_compute_api_PageToken])
|
51624
|
+
}
|
51625
|
+
|
51626
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys', '_next_page_token']
|
51627
|
+
|
51628
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None, next_page_token: Optional["scout_compute_api_PageToken"] = None) -> None:
|
51629
|
+
self._arrow_binary = arrow_binary
|
51630
|
+
self._group_by_keys = group_by_keys
|
51631
|
+
self._next_page_token = next_page_token
|
51632
|
+
|
51633
|
+
@builtins.property
|
51634
|
+
def arrow_binary(self) -> Any:
|
51635
|
+
"""The raw binary containing Arrow IPC stream for a page of an N-dimensional numeric array plot.
|
51636
|
+
"""
|
51637
|
+
return self._arrow_binary
|
51638
|
+
|
51639
|
+
@builtins.property
|
51640
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
51641
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
51642
|
+
this list represents the superset of all group by keys used across every individual channel.
|
51643
|
+
"""
|
51644
|
+
return self._group_by_keys
|
51645
|
+
|
51646
|
+
@builtins.property
|
51647
|
+
def next_page_token(self) -> Optional["scout_compute_api_PageToken"]:
|
51648
|
+
"""The token to retrieve the next page of arrays in the direction originally requested (exclusive - not
|
51649
|
+
included in these results). May be empty if there are no further values in the requested time range in the
|
51650
|
+
direction originally requested.
|
51651
|
+
"""
|
51652
|
+
return self._next_page_token
|
51653
|
+
|
51654
|
+
|
51655
|
+
scout_compute_api_PagedNumericArrayPlot.__name__ = "PagedNumericArrayPlot"
|
51656
|
+
scout_compute_api_PagedNumericArrayPlot.__qualname__ = "PagedNumericArrayPlot"
|
51657
|
+
scout_compute_api_PagedNumericArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
51658
|
+
|
51659
|
+
|
51459
51660
|
class scout_compute_api_ParameterInput(ConjureBeanType):
|
51460
51661
|
|
51461
51662
|
@builtins.classmethod
|
@@ -54755,25 +54956,22 @@ scout_compute_api_SumSeries.__module__ = "nominal_api.scout_compute_api"
|
|
54755
54956
|
class scout_compute_api_SummarizationStrategy(ConjureUnionType):
|
54756
54957
|
_decimate: Optional["scout_compute_api_DecimateStrategy"] = None
|
54757
54958
|
_page: Optional["scout_compute_api_PageStrategy"] = None
|
54758
|
-
_truncate: Optional["scout_compute_api_TruncateStrategy"] = None
|
54759
54959
|
|
54760
54960
|
@builtins.classmethod
|
54761
54961
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
54762
54962
|
return {
|
54763
54963
|
'decimate': ConjureFieldDefinition('decimate', scout_compute_api_DecimateStrategy),
|
54764
|
-
'page': ConjureFieldDefinition('page', scout_compute_api_PageStrategy)
|
54765
|
-
'truncate': ConjureFieldDefinition('truncate', scout_compute_api_TruncateStrategy)
|
54964
|
+
'page': ConjureFieldDefinition('page', scout_compute_api_PageStrategy)
|
54766
54965
|
}
|
54767
54966
|
|
54768
54967
|
def __init__(
|
54769
54968
|
self,
|
54770
54969
|
decimate: Optional["scout_compute_api_DecimateStrategy"] = None,
|
54771
54970
|
page: Optional["scout_compute_api_PageStrategy"] = None,
|
54772
|
-
truncate: Optional["scout_compute_api_TruncateStrategy"] = None,
|
54773
54971
|
type_of_union: Optional[str] = None
|
54774
54972
|
) -> None:
|
54775
54973
|
if type_of_union is None:
|
54776
|
-
if (decimate is not None) + (page is not None)
|
54974
|
+
if (decimate is not None) + (page is not None) != 1:
|
54777
54975
|
raise ValueError('a union must contain a single member')
|
54778
54976
|
|
54779
54977
|
if decimate is not None:
|
@@ -54782,9 +54980,6 @@ class scout_compute_api_SummarizationStrategy(ConjureUnionType):
|
|
54782
54980
|
if page is not None:
|
54783
54981
|
self._page = page
|
54784
54982
|
self._type = 'page'
|
54785
|
-
if truncate is not None:
|
54786
|
-
self._truncate = truncate
|
54787
|
-
self._type = 'truncate'
|
54788
54983
|
|
54789
54984
|
elif type_of_union == 'decimate':
|
54790
54985
|
if decimate is None:
|
@@ -54796,11 +54991,6 @@ class scout_compute_api_SummarizationStrategy(ConjureUnionType):
|
|
54796
54991
|
raise ValueError('a union value must not be None')
|
54797
54992
|
self._page = page
|
54798
54993
|
self._type = 'page'
|
54799
|
-
elif type_of_union == 'truncate':
|
54800
|
-
if truncate is None:
|
54801
|
-
raise ValueError('a union value must not be None')
|
54802
|
-
self._truncate = truncate
|
54803
|
-
self._type = 'truncate'
|
54804
54994
|
|
54805
54995
|
@builtins.property
|
54806
54996
|
def decimate(self) -> Optional["scout_compute_api_DecimateStrategy"]:
|
@@ -54812,10 +55002,6 @@ class scout_compute_api_SummarizationStrategy(ConjureUnionType):
|
|
54812
55002
|
"""
|
54813
55003
|
return self._page
|
54814
55004
|
|
54815
|
-
@builtins.property
|
54816
|
-
def truncate(self) -> Optional["scout_compute_api_TruncateStrategy"]:
|
54817
|
-
return self._truncate
|
54818
|
-
|
54819
55005
|
def accept(self, visitor) -> Any:
|
54820
55006
|
if not isinstance(visitor, scout_compute_api_SummarizationStrategyVisitor):
|
54821
55007
|
raise ValueError('{} is not an instance of scout_compute_api_SummarizationStrategyVisitor'.format(visitor.__class__.__name__))
|
@@ -54823,8 +55009,6 @@ class scout_compute_api_SummarizationStrategy(ConjureUnionType):
|
|
54823
55009
|
return visitor._decimate(self.decimate)
|
54824
55010
|
if self._type == 'page' and self.page is not None:
|
54825
55011
|
return visitor._page(self.page)
|
54826
|
-
if self._type == 'truncate' and self.truncate is not None:
|
54827
|
-
return visitor._truncate(self.truncate)
|
54828
55012
|
|
54829
55013
|
|
54830
55014
|
scout_compute_api_SummarizationStrategy.__name__ = "SummarizationStrategy"
|
@@ -54842,10 +55026,6 @@ class scout_compute_api_SummarizationStrategyVisitor:
|
|
54842
55026
|
def _page(self, page: "scout_compute_api_PageStrategy") -> Any:
|
54843
55027
|
pass
|
54844
55028
|
|
54845
|
-
@abstractmethod
|
54846
|
-
def _truncate(self, truncate: "scout_compute_api_TruncateStrategy") -> Any:
|
54847
|
-
pass
|
54848
|
-
|
54849
55029
|
|
54850
55030
|
scout_compute_api_SummarizationStrategyVisitor.__name__ = "SummarizationStrategyVisitor"
|
54851
55031
|
scout_compute_api_SummarizationStrategyVisitor.__qualname__ = "SummarizationStrategyVisitor"
|
@@ -55663,64 +55843,6 @@ scout_compute_api_TimestampConstantVisitor.__qualname__ = "TimestampConstantVisi
|
|
55663
55843
|
scout_compute_api_TimestampConstantVisitor.__module__ = "nominal_api.scout_compute_api"
|
55664
55844
|
|
55665
55845
|
|
55666
|
-
class scout_compute_api_TruncateStrategy(ConjureUnionType):
|
55667
|
-
_max_points_to_return: Optional[int] = None
|
55668
|
-
|
55669
|
-
@builtins.classmethod
|
55670
|
-
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
55671
|
-
return {
|
55672
|
-
'max_points_to_return': ConjureFieldDefinition('maxPointsToReturn', int)
|
55673
|
-
}
|
55674
|
-
|
55675
|
-
def __init__(
|
55676
|
-
self,
|
55677
|
-
max_points_to_return: Optional[int] = None,
|
55678
|
-
type_of_union: Optional[str] = None
|
55679
|
-
) -> None:
|
55680
|
-
if type_of_union is None:
|
55681
|
-
if (max_points_to_return is not None) != 1:
|
55682
|
-
raise ValueError('a union must contain a single member')
|
55683
|
-
|
55684
|
-
if max_points_to_return is not None:
|
55685
|
-
self._max_points_to_return = max_points_to_return
|
55686
|
-
self._type = 'maxPointsToReturn'
|
55687
|
-
|
55688
|
-
elif type_of_union == 'maxPointsToReturn':
|
55689
|
-
if max_points_to_return is None:
|
55690
|
-
raise ValueError('a union value must not be None')
|
55691
|
-
self._max_points_to_return = max_points_to_return
|
55692
|
-
self._type = 'maxPointsToReturn'
|
55693
|
-
|
55694
|
-
@builtins.property
|
55695
|
-
def max_points_to_return(self) -> Optional[int]:
|
55696
|
-
"""Maximum number of points to return before truncating, ordered by timestamp. Throws if greater than 10,000
|
55697
|
-
"""
|
55698
|
-
return self._max_points_to_return
|
55699
|
-
|
55700
|
-
def accept(self, visitor) -> Any:
|
55701
|
-
if not isinstance(visitor, scout_compute_api_TruncateStrategyVisitor):
|
55702
|
-
raise ValueError('{} is not an instance of scout_compute_api_TruncateStrategyVisitor'.format(visitor.__class__.__name__))
|
55703
|
-
if self._type == 'maxPointsToReturn' and self.max_points_to_return is not None:
|
55704
|
-
return visitor._max_points_to_return(self.max_points_to_return)
|
55705
|
-
|
55706
|
-
|
55707
|
-
scout_compute_api_TruncateStrategy.__name__ = "TruncateStrategy"
|
55708
|
-
scout_compute_api_TruncateStrategy.__qualname__ = "TruncateStrategy"
|
55709
|
-
scout_compute_api_TruncateStrategy.__module__ = "nominal_api.scout_compute_api"
|
55710
|
-
|
55711
|
-
|
55712
|
-
class scout_compute_api_TruncateStrategyVisitor:
|
55713
|
-
|
55714
|
-
@abstractmethod
|
55715
|
-
def _max_points_to_return(self, max_points_to_return: int) -> Any:
|
55716
|
-
pass
|
55717
|
-
|
55718
|
-
|
55719
|
-
scout_compute_api_TruncateStrategyVisitor.__name__ = "TruncateStrategyVisitor"
|
55720
|
-
scout_compute_api_TruncateStrategyVisitor.__qualname__ = "TruncateStrategyVisitor"
|
55721
|
-
scout_compute_api_TruncateStrategyVisitor.__module__ = "nominal_api.scout_compute_api"
|
55722
|
-
|
55723
|
-
|
55724
55846
|
class scout_compute_api_UnaryArithmeticOperation(ConjureEnumType):
|
55725
55847
|
|
55726
55848
|
COS = 'COS'
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
from .._impl import (
|
3
|
+
ingest_manifest_ExtractorManifest as ExtractorManifest,
|
4
|
+
ingest_manifest_ExtractorUploadMetadata as ExtractorUploadMetadata,
|
5
|
+
ingest_manifest_ManifestIngestType as ManifestIngestType,
|
6
|
+
ingest_manifest_ManifestOutput as ManifestOutput,
|
7
|
+
ingest_manifest_UploadMetadata as UploadMetadata,
|
8
|
+
)
|
9
|
+
|
10
|
+
__all__ = [
|
11
|
+
'ExtractorManifest',
|
12
|
+
'ExtractorUploadMetadata',
|
13
|
+
'ManifestIngestType',
|
14
|
+
'ManifestOutput',
|
15
|
+
'UploadMetadata',
|
16
|
+
]
|
17
|
+
|
@@ -109,7 +109,6 @@ from .._impl import (
|
|
109
109
|
scout_compute_api_Enum1dArraySeries as Enum1dArraySeries,
|
110
110
|
scout_compute_api_Enum1dArraySeriesVisitor as Enum1dArraySeriesVisitor,
|
111
111
|
scout_compute_api_EnumAggregationFunction as EnumAggregationFunction,
|
112
|
-
scout_compute_api_EnumArrayPlot as EnumArrayPlot,
|
113
112
|
scout_compute_api_EnumBucket as EnumBucket,
|
114
113
|
scout_compute_api_EnumConstantResampleInterpolationConfiguration as EnumConstantResampleInterpolationConfiguration,
|
115
114
|
scout_compute_api_EnumCountDuplicateSeries as EnumCountDuplicateSeries,
|
@@ -221,7 +220,6 @@ from .._impl import (
|
|
221
220
|
scout_compute_api_Numeric1dArraySeriesVisitor as Numeric1dArraySeriesVisitor,
|
222
221
|
scout_compute_api_NumericAggregationFunction as NumericAggregationFunction,
|
223
222
|
scout_compute_api_NumericApproximateFilterSeries as NumericApproximateFilterSeries,
|
224
|
-
scout_compute_api_NumericArrayPlot as NumericArrayPlot,
|
225
223
|
scout_compute_api_NumericBucket as NumericBucket,
|
226
224
|
scout_compute_api_NumericConstantResampleInterpolationConfiguration as NumericConstantResampleInterpolationConfiguration,
|
227
225
|
scout_compute_api_NumericFilterTransformationSeries as NumericFilterTransformationSeries,
|
@@ -256,7 +254,9 @@ from .._impl import (
|
|
256
254
|
scout_compute_api_PageStrategyVisitor as PageStrategyVisitor,
|
257
255
|
scout_compute_api_PageToken as PageToken,
|
258
256
|
scout_compute_api_PageTokenVisitor as PageTokenVisitor,
|
257
|
+
scout_compute_api_PagedEnumArrayPlot as PagedEnumArrayPlot,
|
259
258
|
scout_compute_api_PagedLogPlot as PagedLogPlot,
|
259
|
+
scout_compute_api_PagedNumericArrayPlot as PagedNumericArrayPlot,
|
260
260
|
scout_compute_api_ParameterInput as ParameterInput,
|
261
261
|
scout_compute_api_ParameterizedComputeNodeRequest as ParameterizedComputeNodeRequest,
|
262
262
|
scout_compute_api_ParameterizedComputeNodeResponse as ParameterizedComputeNodeResponse,
|
@@ -354,8 +354,6 @@ from .._impl import (
|
|
354
354
|
scout_compute_api_TimestampAndId as TimestampAndId,
|
355
355
|
scout_compute_api_TimestampConstant as TimestampConstant,
|
356
356
|
scout_compute_api_TimestampConstantVisitor as TimestampConstantVisitor,
|
357
|
-
scout_compute_api_TruncateStrategy as TruncateStrategy,
|
358
|
-
scout_compute_api_TruncateStrategyVisitor as TruncateStrategyVisitor,
|
359
357
|
scout_compute_api_UnaryArithmeticOperation as UnaryArithmeticOperation,
|
360
358
|
scout_compute_api_UnaryArithmeticSeries as UnaryArithmeticSeries,
|
361
359
|
scout_compute_api_UnboundedBehavior as UnboundedBehavior,
|
@@ -488,7 +486,6 @@ __all__ = [
|
|
488
486
|
'Enum1dArraySeries',
|
489
487
|
'Enum1dArraySeriesVisitor',
|
490
488
|
'EnumAggregationFunction',
|
491
|
-
'EnumArrayPlot',
|
492
489
|
'EnumBucket',
|
493
490
|
'EnumConstantResampleInterpolationConfiguration',
|
494
491
|
'EnumCountDuplicateSeries',
|
@@ -600,7 +597,6 @@ __all__ = [
|
|
600
597
|
'Numeric1dArraySeriesVisitor',
|
601
598
|
'NumericAggregationFunction',
|
602
599
|
'NumericApproximateFilterSeries',
|
603
|
-
'NumericArrayPlot',
|
604
600
|
'NumericBucket',
|
605
601
|
'NumericConstantResampleInterpolationConfiguration',
|
606
602
|
'NumericFilterTransformationSeries',
|
@@ -635,7 +631,9 @@ __all__ = [
|
|
635
631
|
'PageStrategyVisitor',
|
636
632
|
'PageToken',
|
637
633
|
'PageTokenVisitor',
|
634
|
+
'PagedEnumArrayPlot',
|
638
635
|
'PagedLogPlot',
|
636
|
+
'PagedNumericArrayPlot',
|
639
637
|
'ParameterInput',
|
640
638
|
'ParameterizedComputeNodeRequest',
|
641
639
|
'ParameterizedComputeNodeResponse',
|
@@ -733,8 +731,6 @@ __all__ = [
|
|
733
731
|
'TimestampAndId',
|
734
732
|
'TimestampConstant',
|
735
733
|
'TimestampConstantVisitor',
|
736
|
-
'TruncateStrategy',
|
737
|
-
'TruncateStrategyVisitor',
|
738
734
|
'UnaryArithmeticOperation',
|
739
735
|
'UnaryArithmeticSeries',
|
740
736
|
'UnboundedBehavior',
|
@@ -1,5 +1,5 @@
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
2
|
-
nominal_api/_impl.py,sha256=
|
1
|
+
nominal_api/__init__.py,sha256=C85pfhRSgpjDdqOUdsqMer9ky_cVZNO38GAd88TFhoo,2109
|
2
|
+
nominal_api/_impl.py,sha256=k4vBrubeOe-IOUYsSiCq8ZUNemarZeh4ZaxeB3GinGA,3815246
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
4
4
|
nominal_api/api/__init__.py,sha256=OHAEgaRoUX60742H_U3q_pBoPGpLspsL5XERHQ-rjMs,2299
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
@@ -16,6 +16,7 @@ nominal_api/datasource_logset_api/__init__.py,sha256=QydoWxNXCVgIV8HWnZAKA77N5G6
|
|
16
16
|
nominal_api/datasource_pagination_api/__init__.py,sha256=WeENj6yqi2XfInU8YgjFwqwiR8L0jDHCBZfucJ0ahyY,283
|
17
17
|
nominal_api/event/__init__.py,sha256=_aeR1gPrNTKTqgZ5qh-WmRNNDVjwhKdFfzIwV7LA5Gs,3343
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=OZ1xKwsMx_IeFKrVnwYky9sWMymeYrEAHW62cVE_tqo,11156
|
19
|
+
nominal_api/ingest_manifest/__init__.py,sha256=HvXQUiDc886ITCkoR7OEXopRIFE9Z7dFNE8_FViNP0s,483
|
19
20
|
nominal_api/ingest_workflow_api/__init__.py,sha256=UdkTnAnXSs1Q17GfWOK6iJbqu7NecX0VP2Jkwj1Pj_k,3159
|
20
21
|
nominal_api/module/__init__.py,sha256=0WDeegesyYu_XyFvPJZz8ZdXdTJRJxivU0KEhq8J6ww,4631
|
21
22
|
nominal_api/module_internal/__init__.py,sha256=8bVJ_pfUQ2ZONdAVEJW6hLNABpf6JvEHGgvrS9XHK98,1128
|
@@ -33,7 +34,7 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
|
|
33
34
|
nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
|
34
35
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=F5cQo_KqeTpFwqKBDV-iEjrND7xQgkycC1yocpxq1Qk,6277
|
35
36
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
36
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
37
|
+
nominal_api/scout_compute_api/__init__.py,sha256=j2VBWPlPUGikx7uzDBo5vQ_kh7J9UPcS3hAZjCjBrtc,34423
|
37
38
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
38
39
|
nominal_api/scout_compute_resolved_api/__init__.py,sha256=CgbeDsEmdKK-wDhKt35qW7gLykjHHs1cM_ODn1AlZmY,17596
|
39
40
|
nominal_api/scout_dataexport_api/__init__.py,sha256=jl409RGy7Mxhjqja8wa-abLnXrhL2FEYZrA1GcaAJh0,2182
|
@@ -78,7 +79,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
|
|
78
79
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=i21vITWBn-6ruVuFZg491TDpx6WcIhJBoF3oNw3w338,1186
|
79
80
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
80
81
|
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.
|
82
|
+
nominal_api-0.946.0.dist-info/METADATA,sha256=z94GYzms_L3Mi6F4ancJy792hNaH46u5oTnLHvKEoyw,199
|
83
|
+
nominal_api-0.946.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
84
|
+
nominal_api-0.946.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
85
|
+
nominal_api-0.946.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|