nominal-api 0.949.1__py3-none-any.whl → 0.950.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 +92 -115
- nominal_api/connect_download/__init__.py +9 -0
- nominal_api/scout_compute_api/__init__.py +2 -4
- {nominal_api-0.949.1.dist-info → nominal_api-0.950.0.dist-info}/METADATA +1 -1
- {nominal_api-0.949.1.dist-info → nominal_api-0.950.0.dist-info}/RECORD +8 -7
- {nominal_api-0.949.1.dist-info → nominal_api-0.950.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.949.1.dist-info → nominal_api-0.950.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
@@ -7,6 +7,7 @@ __all__ = [
|
|
7
7
|
'authentication_api',
|
8
8
|
'authorization',
|
9
9
|
'comments_api',
|
10
|
+
'connect_download',
|
10
11
|
'datasource',
|
11
12
|
'datasource_api',
|
12
13
|
'datasource_logset',
|
@@ -81,5 +82,5 @@ __all__ = [
|
|
81
82
|
|
82
83
|
__conjure_generator_version__ = "4.17.0"
|
83
84
|
|
84
|
-
__version__ = "0.
|
85
|
+
__version__ = "0.950.0"
|
85
86
|
|
nominal_api/_impl.py
CHANGED
@@ -3746,6 +3746,26 @@ comments_api_ResourceType.__qualname__ = "ResourceType"
|
|
3746
3746
|
comments_api_ResourceType.__module__ = "nominal_api.comments_api"
|
3747
3747
|
|
3748
3748
|
|
3749
|
+
class connect_download_Platform(ConjureEnumType):
|
3750
|
+
|
3751
|
+
WINDOWS = 'WINDOWS'
|
3752
|
+
'''WINDOWS'''
|
3753
|
+
UBUNTU = 'UBUNTU'
|
3754
|
+
'''UBUNTU'''
|
3755
|
+
MACOS = 'MACOS'
|
3756
|
+
'''MACOS'''
|
3757
|
+
UNKNOWN = 'UNKNOWN'
|
3758
|
+
'''UNKNOWN'''
|
3759
|
+
|
3760
|
+
def __reduce_ex__(self, proto):
|
3761
|
+
return self.__class__, (self.name,)
|
3762
|
+
|
3763
|
+
|
3764
|
+
connect_download_Platform.__name__ = "Platform"
|
3765
|
+
connect_download_Platform.__qualname__ = "Platform"
|
3766
|
+
connect_download_Platform.__module__ = "nominal_api.connect_download"
|
3767
|
+
|
3768
|
+
|
3749
3769
|
class datasource_TimestampType(ConjureEnumType):
|
3750
3770
|
|
3751
3771
|
RELATIVE = 'RELATIVE'
|
@@ -13128,15 +13148,17 @@ class ingest_api_UpdateContainerizedExtractorRequest(ConjureBeanType):
|
|
13128
13148
|
'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
|
13129
13149
|
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
13130
13150
|
'output_file_format': ConjureFieldDefinition('outputFileFormat', OptionalTypeWrapper[ingest_api_FileOutputFormat]),
|
13151
|
+
'registry': ConjureFieldDefinition('registry', OptionalTypeWrapper[str]),
|
13152
|
+
'repository': ConjureFieldDefinition('repository', OptionalTypeWrapper[str]),
|
13131
13153
|
'tags': ConjureFieldDefinition('tags', OptionalTypeWrapper[List[str]]),
|
13132
13154
|
'default_tag': ConjureFieldDefinition('defaultTag', OptionalTypeWrapper[str]),
|
13133
13155
|
'authentication': ConjureFieldDefinition('authentication', OptionalTypeWrapper[ingest_api_Authentication]),
|
13134
13156
|
'command': ConjureFieldDefinition('command', OptionalTypeWrapper[str])
|
13135
13157
|
}
|
13136
13158
|
|
13137
|
-
__slots__: List[str] = ['_name', '_description', '_inputs', '_parameters', '_properties', '_labels', '_timestamp_metadata', '_output_file_format', '_tags', '_default_tag', '_authentication', '_command']
|
13159
|
+
__slots__: List[str] = ['_name', '_description', '_inputs', '_parameters', '_properties', '_labels', '_timestamp_metadata', '_output_file_format', '_registry', '_repository', '_tags', '_default_tag', '_authentication', '_command']
|
13138
13160
|
|
13139
|
-
def __init__(self, authentication: Optional["ingest_api_Authentication"] = None, command: Optional[str] = None, default_tag: Optional[str] = None, description: Optional[str] = None, inputs: Optional[List["ingest_api_FileExtractionInput"]] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, output_file_format: Optional["ingest_api_FileOutputFormat"] = None, parameters: Optional[List["ingest_api_FileExtractionParameter"]] = None, properties: Optional[Dict[str, str]] = None, tags: Optional[List[str]] = None, timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
|
13161
|
+
def __init__(self, authentication: Optional["ingest_api_Authentication"] = None, command: Optional[str] = None, default_tag: Optional[str] = None, description: Optional[str] = None, inputs: Optional[List["ingest_api_FileExtractionInput"]] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, output_file_format: Optional["ingest_api_FileOutputFormat"] = None, parameters: Optional[List["ingest_api_FileExtractionParameter"]] = None, properties: Optional[Dict[str, str]] = None, registry: Optional[str] = None, repository: Optional[str] = None, tags: Optional[List[str]] = None, timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
|
13140
13162
|
self._name = name
|
13141
13163
|
self._description = description
|
13142
13164
|
self._inputs = inputs
|
@@ -13145,6 +13167,8 @@ class ingest_api_UpdateContainerizedExtractorRequest(ConjureBeanType):
|
|
13145
13167
|
self._labels = labels
|
13146
13168
|
self._timestamp_metadata = timestamp_metadata
|
13147
13169
|
self._output_file_format = output_file_format
|
13170
|
+
self._registry = registry
|
13171
|
+
self._repository = repository
|
13148
13172
|
self._tags = tags
|
13149
13173
|
self._default_tag = default_tag
|
13150
13174
|
self._authentication = authentication
|
@@ -13182,6 +13206,14 @@ class ingest_api_UpdateContainerizedExtractorRequest(ConjureBeanType):
|
|
13182
13206
|
def output_file_format(self) -> Optional["ingest_api_FileOutputFormat"]:
|
13183
13207
|
return self._output_file_format
|
13184
13208
|
|
13209
|
+
@builtins.property
|
13210
|
+
def registry(self) -> Optional[str]:
|
13211
|
+
return self._registry
|
13212
|
+
|
13213
|
+
@builtins.property
|
13214
|
+
def repository(self) -> Optional[str]:
|
13215
|
+
return self._repository
|
13216
|
+
|
13185
13217
|
@builtins.property
|
13186
13218
|
def tags(self) -> Optional[List[str]]:
|
13187
13219
|
return self._tags
|
@@ -41010,38 +41042,26 @@ scout_compute_api_ArraySeriesVisitor.__module__ = "nominal_api.scout_compute_api
|
|
41010
41042
|
|
41011
41043
|
|
41012
41044
|
class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
41013
|
-
_numeric_array_series: Optional["scout_compute_api_NumericArrayPlot"] = None
|
41014
|
-
_enum_array_series: Optional["scout_compute_api_EnumArrayPlot"] = None
|
41015
41045
|
_bucketed_numeric: Optional["scout_compute_api_BucketedNumericArrayPlot"] = None
|
41016
41046
|
_bucketed_enum: Optional["scout_compute_api_BucketedEnumArrayPlot"] = None
|
41017
41047
|
|
41018
41048
|
@builtins.classmethod
|
41019
41049
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
41020
41050
|
return {
|
41021
|
-
'numeric_array_series': ConjureFieldDefinition('numericArraySeries', scout_compute_api_NumericArrayPlot),
|
41022
|
-
'enum_array_series': ConjureFieldDefinition('enumArraySeries', scout_compute_api_EnumArrayPlot),
|
41023
41051
|
'bucketed_numeric': ConjureFieldDefinition('bucketedNumeric', scout_compute_api_BucketedNumericArrayPlot),
|
41024
41052
|
'bucketed_enum': ConjureFieldDefinition('bucketedEnum', scout_compute_api_BucketedEnumArrayPlot)
|
41025
41053
|
}
|
41026
41054
|
|
41027
41055
|
def __init__(
|
41028
41056
|
self,
|
41029
|
-
numeric_array_series: Optional["scout_compute_api_NumericArrayPlot"] = None,
|
41030
|
-
enum_array_series: Optional["scout_compute_api_EnumArrayPlot"] = None,
|
41031
41057
|
bucketed_numeric: Optional["scout_compute_api_BucketedNumericArrayPlot"] = None,
|
41032
41058
|
bucketed_enum: Optional["scout_compute_api_BucketedEnumArrayPlot"] = None,
|
41033
41059
|
type_of_union: Optional[str] = None
|
41034
41060
|
) -> None:
|
41035
41061
|
if type_of_union is None:
|
41036
|
-
if (
|
41062
|
+
if (bucketed_numeric is not None) + (bucketed_enum is not None) != 1:
|
41037
41063
|
raise ValueError('a union must contain a single member')
|
41038
41064
|
|
41039
|
-
if numeric_array_series is not None:
|
41040
|
-
self._numeric_array_series = numeric_array_series
|
41041
|
-
self._type = 'numericArraySeries'
|
41042
|
-
if enum_array_series is not None:
|
41043
|
-
self._enum_array_series = enum_array_series
|
41044
|
-
self._type = 'enumArraySeries'
|
41045
41065
|
if bucketed_numeric is not None:
|
41046
41066
|
self._bucketed_numeric = bucketed_numeric
|
41047
41067
|
self._type = 'bucketedNumeric'
|
@@ -41049,16 +41069,6 @@ class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
41049
41069
|
self._bucketed_enum = bucketed_enum
|
41050
41070
|
self._type = 'bucketedEnum'
|
41051
41071
|
|
41052
|
-
elif type_of_union == 'numericArraySeries':
|
41053
|
-
if numeric_array_series is None:
|
41054
|
-
raise ValueError('a union value must not be None')
|
41055
|
-
self._numeric_array_series = numeric_array_series
|
41056
|
-
self._type = 'numericArraySeries'
|
41057
|
-
elif type_of_union == 'enumArraySeries':
|
41058
|
-
if enum_array_series is None:
|
41059
|
-
raise ValueError('a union value must not be None')
|
41060
|
-
self._enum_array_series = enum_array_series
|
41061
|
-
self._type = 'enumArraySeries'
|
41062
41072
|
elif type_of_union == 'bucketedNumeric':
|
41063
41073
|
if bucketed_numeric is None:
|
41064
41074
|
raise ValueError('a union value must not be None')
|
@@ -41070,14 +41080,6 @@ class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
41070
41080
|
self._bucketed_enum = bucketed_enum
|
41071
41081
|
self._type = 'bucketedEnum'
|
41072
41082
|
|
41073
|
-
@builtins.property
|
41074
|
-
def numeric_array_series(self) -> Optional["scout_compute_api_NumericArrayPlot"]:
|
41075
|
-
return self._numeric_array_series
|
41076
|
-
|
41077
|
-
@builtins.property
|
41078
|
-
def enum_array_series(self) -> Optional["scout_compute_api_EnumArrayPlot"]:
|
41079
|
-
return self._enum_array_series
|
41080
|
-
|
41081
41083
|
@builtins.property
|
41082
41084
|
def bucketed_numeric(self) -> Optional["scout_compute_api_BucketedNumericArrayPlot"]:
|
41083
41085
|
return self._bucketed_numeric
|
@@ -41089,10 +41091,6 @@ class scout_compute_api_ArrowArrayPlot(ConjureUnionType):
|
|
41089
41091
|
def accept(self, visitor) -> Any:
|
41090
41092
|
if not isinstance(visitor, scout_compute_api_ArrowArrayPlotVisitor):
|
41091
41093
|
raise ValueError('{} is not an instance of scout_compute_api_ArrowArrayPlotVisitor'.format(visitor.__class__.__name__))
|
41092
|
-
if self._type == 'numericArraySeries' and self.numeric_array_series is not None:
|
41093
|
-
return visitor._numeric_array_series(self.numeric_array_series)
|
41094
|
-
if self._type == 'enumArraySeries' and self.enum_array_series is not None:
|
41095
|
-
return visitor._enum_array_series(self.enum_array_series)
|
41096
41094
|
if self._type == 'bucketedNumeric' and self.bucketed_numeric is not None:
|
41097
41095
|
return visitor._bucketed_numeric(self.bucketed_numeric)
|
41098
41096
|
if self._type == 'bucketedEnum' and self.bucketed_enum is not None:
|
@@ -41106,14 +41104,6 @@ scout_compute_api_ArrowArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
|
41106
41104
|
|
41107
41105
|
class scout_compute_api_ArrowArrayPlotVisitor:
|
41108
41106
|
|
41109
|
-
@abstractmethod
|
41110
|
-
def _numeric_array_series(self, numeric_array_series: "scout_compute_api_NumericArrayPlot") -> Any:
|
41111
|
-
pass
|
41112
|
-
|
41113
|
-
@abstractmethod
|
41114
|
-
def _enum_array_series(self, enum_array_series: "scout_compute_api_EnumArrayPlot") -> Any:
|
41115
|
-
pass
|
41116
|
-
|
41117
41107
|
@abstractmethod
|
41118
41108
|
def _bucketed_numeric(self, bucketed_numeric: "scout_compute_api_BucketedNumericArrayPlot") -> Any:
|
41119
41109
|
pass
|
@@ -41221,6 +41211,40 @@ scout_compute_api_ArrowEnumPlot.__qualname__ = "ArrowEnumPlot"
|
|
41221
41211
|
scout_compute_api_ArrowEnumPlot.__module__ = "nominal_api.scout_compute_api"
|
41222
41212
|
|
41223
41213
|
|
41214
|
+
class scout_compute_api_ArrowFullResolutionPlot(ConjureBeanType):
|
41215
|
+
|
41216
|
+
@builtins.classmethod
|
41217
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
41218
|
+
return {
|
41219
|
+
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
41220
|
+
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
41221
|
+
}
|
41222
|
+
|
41223
|
+
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
41224
|
+
|
41225
|
+
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
41226
|
+
self._arrow_binary = arrow_binary
|
41227
|
+
self._group_by_keys = group_by_keys
|
41228
|
+
|
41229
|
+
@builtins.property
|
41230
|
+
def arrow_binary(self) -> Any:
|
41231
|
+
"""The raw binary containing Arrow IPC stream for the first n rows of a full resolution plot sorted by timestamp.
|
41232
|
+
"""
|
41233
|
+
return self._arrow_binary
|
41234
|
+
|
41235
|
+
@builtins.property
|
41236
|
+
def group_by_keys(self) -> Optional[List[str]]:
|
41237
|
+
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
41238
|
+
this list represents the superset of all group by keys used across every individual channel.
|
41239
|
+
"""
|
41240
|
+
return self._group_by_keys
|
41241
|
+
|
41242
|
+
|
41243
|
+
scout_compute_api_ArrowFullResolutionPlot.__name__ = "ArrowFullResolutionPlot"
|
41244
|
+
scout_compute_api_ArrowFullResolutionPlot.__qualname__ = "ArrowFullResolutionPlot"
|
41245
|
+
scout_compute_api_ArrowFullResolutionPlot.__module__ = "nominal_api.scout_compute_api"
|
41246
|
+
|
41247
|
+
|
41224
41248
|
class scout_compute_api_ArrowNumericPlot(ConjureBeanType):
|
41225
41249
|
|
41226
41250
|
@builtins.classmethod
|
@@ -43803,6 +43827,7 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
43803
43827
|
_curve_fit: Optional["scout_compute_api_CurveFitResult"] = None
|
43804
43828
|
_grouped: Optional["scout_compute_api_GroupedComputeNodeResponses"] = None
|
43805
43829
|
_array: Optional["scout_compute_api_ArrowArrayPlot"] = None
|
43830
|
+
_full_resolution: Optional["scout_compute_api_ArrowFullResolutionPlot"] = None
|
43806
43831
|
|
43807
43832
|
@builtins.classmethod
|
43808
43833
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
@@ -43832,7 +43857,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
43832
43857
|
'enum_histogram': ConjureFieldDefinition('enumHistogram', scout_compute_api_EnumHistogramPlot),
|
43833
43858
|
'curve_fit': ConjureFieldDefinition('curveFit', scout_compute_api_CurveFitResult),
|
43834
43859
|
'grouped': ConjureFieldDefinition('grouped', scout_compute_api_GroupedComputeNodeResponses),
|
43835
|
-
'array': ConjureFieldDefinition('array', scout_compute_api_ArrowArrayPlot)
|
43860
|
+
'array': ConjureFieldDefinition('array', scout_compute_api_ArrowArrayPlot),
|
43861
|
+
'full_resolution': ConjureFieldDefinition('fullResolution', scout_compute_api_ArrowFullResolutionPlot)
|
43836
43862
|
}
|
43837
43863
|
|
43838
43864
|
def __init__(
|
@@ -43863,10 +43889,11 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
43863
43889
|
curve_fit: Optional["scout_compute_api_CurveFitResult"] = None,
|
43864
43890
|
grouped: Optional["scout_compute_api_GroupedComputeNodeResponses"] = None,
|
43865
43891
|
array: Optional["scout_compute_api_ArrowArrayPlot"] = None,
|
43892
|
+
full_resolution: Optional["scout_compute_api_ArrowFullResolutionPlot"] = None,
|
43866
43893
|
type_of_union: Optional[str] = None
|
43867
43894
|
) -> None:
|
43868
43895
|
if type_of_union is None:
|
43869
|
-
if (range is not None) + (ranges_summary is not None) + (range_value is not None) + (numeric is not None) + (bucketed_numeric is not None) + (numeric_point is not None) + (single_point is not None) + (arrow_numeric is not None) + (arrow_bucketed_numeric is not None) + (enum is not None) + (enum_point is not None) + (bucketed_enum is not None) + (arrow_enum is not None) + (arrow_bucketed_enum is not None) + (paged_log is not None) + (log_point is not None) + (cartesian is not None) + (bucketed_cartesian is not None) + (bucketed_cartesian3d is not None) + (bucketed_geo is not None) + (frequency_domain is not None) + (numeric_histogram is not None) + (enum_histogram is not None) + (curve_fit is not None) + (grouped is not None) + (array is not None) != 1:
|
43896
|
+
if (range is not None) + (ranges_summary is not None) + (range_value is not None) + (numeric is not None) + (bucketed_numeric is not None) + (numeric_point is not None) + (single_point is not None) + (arrow_numeric is not None) + (arrow_bucketed_numeric is not None) + (enum is not None) + (enum_point is not None) + (bucketed_enum is not None) + (arrow_enum is not None) + (arrow_bucketed_enum is not None) + (paged_log is not None) + (log_point is not None) + (cartesian is not None) + (bucketed_cartesian is not None) + (bucketed_cartesian3d is not None) + (bucketed_geo is not None) + (frequency_domain is not None) + (numeric_histogram is not None) + (enum_histogram is not None) + (curve_fit is not None) + (grouped is not None) + (array is not None) + (full_resolution is not None) != 1:
|
43870
43897
|
raise ValueError('a union must contain a single member')
|
43871
43898
|
|
43872
43899
|
if range is not None:
|
@@ -43947,6 +43974,9 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
43947
43974
|
if array is not None:
|
43948
43975
|
self._array = array
|
43949
43976
|
self._type = 'array'
|
43977
|
+
if full_resolution is not None:
|
43978
|
+
self._full_resolution = full_resolution
|
43979
|
+
self._type = 'fullResolution'
|
43950
43980
|
|
43951
43981
|
elif type_of_union == 'range':
|
43952
43982
|
if range is None:
|
@@ -44078,6 +44108,11 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
44078
44108
|
raise ValueError('a union value must not be None')
|
44079
44109
|
self._array = array
|
44080
44110
|
self._type = 'array'
|
44111
|
+
elif type_of_union == 'fullResolution':
|
44112
|
+
if full_resolution is None:
|
44113
|
+
raise ValueError('a union value must not be None')
|
44114
|
+
self._full_resolution = full_resolution
|
44115
|
+
self._type = 'fullResolution'
|
44081
44116
|
|
44082
44117
|
@builtins.property
|
44083
44118
|
def range(self) -> Optional[List["scout_compute_api_Range"]]:
|
@@ -44183,6 +44218,10 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
44183
44218
|
def array(self) -> Optional["scout_compute_api_ArrowArrayPlot"]:
|
44184
44219
|
return self._array
|
44185
44220
|
|
44221
|
+
@builtins.property
|
44222
|
+
def full_resolution(self) -> Optional["scout_compute_api_ArrowFullResolutionPlot"]:
|
44223
|
+
return self._full_resolution
|
44224
|
+
|
44186
44225
|
def accept(self, visitor) -> Any:
|
44187
44226
|
if not isinstance(visitor, scout_compute_api_ComputeNodeResponseVisitor):
|
44188
44227
|
raise ValueError('{} is not an instance of scout_compute_api_ComputeNodeResponseVisitor'.format(visitor.__class__.__name__))
|
@@ -44238,6 +44277,8 @@ class scout_compute_api_ComputeNodeResponse(ConjureUnionType):
|
|
44238
44277
|
return visitor._grouped(self.grouped)
|
44239
44278
|
if self._type == 'array' and self.array is not None:
|
44240
44279
|
return visitor._array(self.array)
|
44280
|
+
if self._type == 'fullResolution' and self.full_resolution is not None:
|
44281
|
+
return visitor._full_resolution(self.full_resolution)
|
44241
44282
|
|
44242
44283
|
|
44243
44284
|
scout_compute_api_ComputeNodeResponse.__name__ = "ComputeNodeResponse"
|
@@ -44351,6 +44392,10 @@ class scout_compute_api_ComputeNodeResponseVisitor:
|
|
44351
44392
|
def _array(self, array: "scout_compute_api_ArrowArrayPlot") -> Any:
|
44352
44393
|
pass
|
44353
44394
|
|
44395
|
+
@abstractmethod
|
44396
|
+
def _full_resolution(self, full_resolution: "scout_compute_api_ArrowFullResolutionPlot") -> Any:
|
44397
|
+
pass
|
44398
|
+
|
44354
44399
|
|
44355
44400
|
scout_compute_api_ComputeNodeResponseVisitor.__name__ = "ComputeNodeResponseVisitor"
|
44356
44401
|
scout_compute_api_ComputeNodeResponseVisitor.__qualname__ = "ComputeNodeResponseVisitor"
|
@@ -46024,40 +46069,6 @@ scout_compute_api_EnumAggregationFunction.__qualname__ = "EnumAggregationFunctio
|
|
46024
46069
|
scout_compute_api_EnumAggregationFunction.__module__ = "nominal_api.scout_compute_api"
|
46025
46070
|
|
46026
46071
|
|
46027
|
-
class scout_compute_api_EnumArrayPlot(ConjureBeanType):
|
46028
|
-
|
46029
|
-
@builtins.classmethod
|
46030
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
46031
|
-
return {
|
46032
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
46033
|
-
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
46034
|
-
}
|
46035
|
-
|
46036
|
-
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
46037
|
-
|
46038
|
-
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
46039
|
-
self._arrow_binary = arrow_binary
|
46040
|
-
self._group_by_keys = group_by_keys
|
46041
|
-
|
46042
|
-
@builtins.property
|
46043
|
-
def arrow_binary(self) -> Any:
|
46044
|
-
"""The raw binary containing Arrow IPC stream for the first n rows of an enum array plot sorted by timestamp.
|
46045
|
-
"""
|
46046
|
-
return self._arrow_binary
|
46047
|
-
|
46048
|
-
@builtins.property
|
46049
|
-
def group_by_keys(self) -> Optional[List[str]]:
|
46050
|
-
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
46051
|
-
this list represents the superset of all group by keys used across every individual channel.
|
46052
|
-
"""
|
46053
|
-
return self._group_by_keys
|
46054
|
-
|
46055
|
-
|
46056
|
-
scout_compute_api_EnumArrayPlot.__name__ = "EnumArrayPlot"
|
46057
|
-
scout_compute_api_EnumArrayPlot.__qualname__ = "EnumArrayPlot"
|
46058
|
-
scout_compute_api_EnumArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
46059
|
-
|
46060
|
-
|
46061
46072
|
class scout_compute_api_EnumBucket(ConjureBeanType):
|
46062
46073
|
|
46063
46074
|
@builtins.classmethod
|
@@ -49672,40 +49683,6 @@ scout_compute_api_NumericApproximateFilterSeries.__qualname__ = "NumericApproxim
|
|
49672
49683
|
scout_compute_api_NumericApproximateFilterSeries.__module__ = "nominal_api.scout_compute_api"
|
49673
49684
|
|
49674
49685
|
|
49675
|
-
class scout_compute_api_NumericArrayPlot(ConjureBeanType):
|
49676
|
-
|
49677
|
-
@builtins.classmethod
|
49678
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
49679
|
-
return {
|
49680
|
-
'arrow_binary': ConjureFieldDefinition('arrowBinary', BinaryType),
|
49681
|
-
'group_by_keys': ConjureFieldDefinition('groupByKeys', OptionalTypeWrapper[List[str]])
|
49682
|
-
}
|
49683
|
-
|
49684
|
-
__slots__: List[str] = ['_arrow_binary', '_group_by_keys']
|
49685
|
-
|
49686
|
-
def __init__(self, arrow_binary: Any, group_by_keys: Optional[List[str]] = None) -> None:
|
49687
|
-
self._arrow_binary = arrow_binary
|
49688
|
-
self._group_by_keys = group_by_keys
|
49689
|
-
|
49690
|
-
@builtins.property
|
49691
|
-
def arrow_binary(self) -> Any:
|
49692
|
-
"""The raw binary containing Arrow IPC stream for the first n rows of a numeric array plot sorted by timestamp.
|
49693
|
-
"""
|
49694
|
-
return self._arrow_binary
|
49695
|
-
|
49696
|
-
@builtins.property
|
49697
|
-
def group_by_keys(self) -> Optional[List[str]]:
|
49698
|
-
"""This field specifies the tags that the final output is grouped by. When you combine multiple channels,
|
49699
|
-
this list represents the superset of all group by keys used across every individual channel.
|
49700
|
-
"""
|
49701
|
-
return self._group_by_keys
|
49702
|
-
|
49703
|
-
|
49704
|
-
scout_compute_api_NumericArrayPlot.__name__ = "NumericArrayPlot"
|
49705
|
-
scout_compute_api_NumericArrayPlot.__qualname__ = "NumericArrayPlot"
|
49706
|
-
scout_compute_api_NumericArrayPlot.__module__ = "nominal_api.scout_compute_api"
|
49707
|
-
|
49708
|
-
|
49709
49686
|
class scout_compute_api_NumericBucket(ConjureBeanType):
|
49710
49687
|
|
49711
49688
|
@builtins.classmethod
|
@@ -17,6 +17,7 @@ from .._impl import (
|
|
17
17
|
scout_compute_api_ArrowBucketedEnumPlot as ArrowBucketedEnumPlot,
|
18
18
|
scout_compute_api_ArrowBucketedNumericPlot as ArrowBucketedNumericPlot,
|
19
19
|
scout_compute_api_ArrowEnumPlot as ArrowEnumPlot,
|
20
|
+
scout_compute_api_ArrowFullResolutionPlot as ArrowFullResolutionPlot,
|
20
21
|
scout_compute_api_ArrowNumericPlot as ArrowNumericPlot,
|
21
22
|
scout_compute_api_AssetChannel as AssetChannel,
|
22
23
|
scout_compute_api_Average as Average,
|
@@ -109,7 +110,6 @@ from .._impl import (
|
|
109
110
|
scout_compute_api_Enum1dArraySeries as Enum1dArraySeries,
|
110
111
|
scout_compute_api_Enum1dArraySeriesVisitor as Enum1dArraySeriesVisitor,
|
111
112
|
scout_compute_api_EnumAggregationFunction as EnumAggregationFunction,
|
112
|
-
scout_compute_api_EnumArrayPlot as EnumArrayPlot,
|
113
113
|
scout_compute_api_EnumBucket as EnumBucket,
|
114
114
|
scout_compute_api_EnumConstantResampleInterpolationConfiguration as EnumConstantResampleInterpolationConfiguration,
|
115
115
|
scout_compute_api_EnumCountDuplicateSeries as EnumCountDuplicateSeries,
|
@@ -221,7 +221,6 @@ from .._impl import (
|
|
221
221
|
scout_compute_api_Numeric1dArraySeriesVisitor as Numeric1dArraySeriesVisitor,
|
222
222
|
scout_compute_api_NumericAggregationFunction as NumericAggregationFunction,
|
223
223
|
scout_compute_api_NumericApproximateFilterSeries as NumericApproximateFilterSeries,
|
224
|
-
scout_compute_api_NumericArrayPlot as NumericArrayPlot,
|
225
224
|
scout_compute_api_NumericBucket as NumericBucket,
|
226
225
|
scout_compute_api_NumericConstantResampleInterpolationConfiguration as NumericConstantResampleInterpolationConfiguration,
|
227
226
|
scout_compute_api_NumericFilterTransformationSeries as NumericFilterTransformationSeries,
|
@@ -397,6 +396,7 @@ __all__ = [
|
|
397
396
|
'ArrowBucketedEnumPlot',
|
398
397
|
'ArrowBucketedNumericPlot',
|
399
398
|
'ArrowEnumPlot',
|
399
|
+
'ArrowFullResolutionPlot',
|
400
400
|
'ArrowNumericPlot',
|
401
401
|
'AssetChannel',
|
402
402
|
'Average',
|
@@ -488,7 +488,6 @@ __all__ = [
|
|
488
488
|
'Enum1dArraySeries',
|
489
489
|
'Enum1dArraySeriesVisitor',
|
490
490
|
'EnumAggregationFunction',
|
491
|
-
'EnumArrayPlot',
|
492
491
|
'EnumBucket',
|
493
492
|
'EnumConstantResampleInterpolationConfiguration',
|
494
493
|
'EnumCountDuplicateSeries',
|
@@ -600,7 +599,6 @@ __all__ = [
|
|
600
599
|
'Numeric1dArraySeriesVisitor',
|
601
600
|
'NumericAggregationFunction',
|
602
601
|
'NumericApproximateFilterSeries',
|
603
|
-
'NumericArrayPlot',
|
604
602
|
'NumericBucket',
|
605
603
|
'NumericConstantResampleInterpolationConfiguration',
|
606
604
|
'NumericFilterTransformationSeries',
|
@@ -1,5 +1,5 @@
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
2
|
-
nominal_api/_impl.py,sha256=
|
1
|
+
nominal_api/__init__.py,sha256=a6M_WwGTK1TWp8ZTMSDzk7FAOk8pq87-U3hwp-HqIQQ,2109
|
2
|
+
nominal_api/_impl.py,sha256=b3eBuu8Yx0NnwuEzFr6NNTVkk4P-qcYtMi-ZjMa8BzI,3816173
|
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
|
@@ -8,6 +8,7 @@ nominal_api/attachments_api/__init__.py,sha256=OYiF9nptXlr47pkina5cOCIJbD4RKSOeA
|
|
8
8
|
nominal_api/authentication_api/__init__.py,sha256=CHdoJufV7evcjYqtntb20sK_PFvaMmgjV7UKOzieLe8,1370
|
9
9
|
nominal_api/authorization/__init__.py,sha256=76PqMnOKri5j9wb9XtT_OwBJox9qia6VyloR_-urasM,1529
|
10
10
|
nominal_api/comments_api/__init__.py,sha256=npfzjAE2xkJ7NY8hPzs2AmBNJsm3g8xASjRV9ndPEfU,1165
|
11
|
+
nominal_api/connect_download/__init__.py,sha256=GSnm2ukeKKwci_7Wg-NehwfBLqBwC9H0__aBXRSmChs,114
|
11
12
|
nominal_api/datasource/__init__.py,sha256=PgLYxRrPIhTLglNtH1NBbzBVBE-DE9td5wAvJTHiOlM,191
|
12
13
|
nominal_api/datasource_api/__init__.py,sha256=dY0JTeJ6_GW4ruADYQvjbFVIV40eUni14-G2fPvWGRM,3112
|
13
14
|
nominal_api/datasource_logset/__init__.py,sha256=SGt5PmLgYpLfhcoESk69aVufuZugg8dp6XBHOZ480IA,130
|
@@ -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=OdXCRDj0Mj9eQmG-_t5yt3G9VslnBruBGD5uxMAr8G4,34528
|
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.950.0.dist-info/METADATA,sha256=EZY84IB34S2eTuIyVZhNgT7_NtjBP9-irkxxfGzrudk,199
|
83
|
+
nominal_api-0.950.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
84
|
+
nominal_api-0.950.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
85
|
+
nominal_api-0.950.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|