nominal-api 0.1020.0__py3-none-any.whl → 0.1037.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 +85 -78
- nominal_api/authentication_api/__init__.py +2 -0
- nominal_api/nominal-api.conjure.json +172 -70
- nominal_api/timeseries_logicalseries_api/__init__.py +0 -2
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1037.0.dist-info}/METADATA +1 -1
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1037.0.dist-info}/RECORD +9 -9
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1037.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1037.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -1732,6 +1732,28 @@ authentication_api_AuthenticationServiceV2.__qualname__ = "AuthenticationService
|
|
|
1732
1732
|
authentication_api_AuthenticationServiceV2.__module__ = "nominal_api.authentication_api"
|
|
1733
1733
|
|
|
1734
1734
|
|
|
1735
|
+
class authentication_api_ChartTooltipModeSetting(ConjureEnumType):
|
|
1736
|
+
|
|
1737
|
+
VERBOSE = 'VERBOSE'
|
|
1738
|
+
'''VERBOSE'''
|
|
1739
|
+
CONCISE = 'CONCISE'
|
|
1740
|
+
'''CONCISE'''
|
|
1741
|
+
SINGLE = 'SINGLE'
|
|
1742
|
+
'''SINGLE'''
|
|
1743
|
+
NONE = 'NONE'
|
|
1744
|
+
'''NONE'''
|
|
1745
|
+
UNKNOWN = 'UNKNOWN'
|
|
1746
|
+
'''UNKNOWN'''
|
|
1747
|
+
|
|
1748
|
+
def __reduce_ex__(self, proto):
|
|
1749
|
+
return self.__class__, (self.name,)
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
authentication_api_ChartTooltipModeSetting.__name__ = "ChartTooltipModeSetting"
|
|
1753
|
+
authentication_api_ChartTooltipModeSetting.__qualname__ = "ChartTooltipModeSetting"
|
|
1754
|
+
authentication_api_ChartTooltipModeSetting.__module__ = "nominal_api.authentication_api"
|
|
1755
|
+
|
|
1756
|
+
|
|
1735
1757
|
class authentication_api_DefaultTimeRangeTypeSetting(ConjureEnumType):
|
|
1736
1758
|
|
|
1737
1759
|
DEFAULT = 'DEFAULT'
|
|
@@ -2241,16 +2263,18 @@ class authentication_api_UserSettings(ConjureBeanType):
|
|
|
2241
2263
|
'default_time_range_type': ConjureFieldDefinition('defaultTimeRangeType', OptionalTypeWrapper[authentication_api_DefaultTimeRangeTypeSetting]),
|
|
2242
2264
|
'appearance': ConjureFieldDefinition('appearance', OptionalTypeWrapper[authentication_api_AppearanceSetting]),
|
|
2243
2265
|
'timezone': ConjureFieldDefinition('timezone', OptionalTypeWrapper[authentication_api_TimezoneSetting]),
|
|
2244
|
-
'time_series_hover_tooltip_concise': ConjureFieldDefinition('timeSeriesHoverTooltipConcise', OptionalTypeWrapper[bool])
|
|
2266
|
+
'time_series_hover_tooltip_concise': ConjureFieldDefinition('timeSeriesHoverTooltipConcise', OptionalTypeWrapper[bool]),
|
|
2267
|
+
'chart_hover_tooltip_mode': ConjureFieldDefinition('chartHoverTooltipMode', OptionalTypeWrapper[authentication_api_ChartTooltipModeSetting])
|
|
2245
2268
|
}
|
|
2246
2269
|
|
|
2247
|
-
__slots__: List[str] = ['_default_time_range_type', '_appearance', '_timezone', '_time_series_hover_tooltip_concise']
|
|
2270
|
+
__slots__: List[str] = ['_default_time_range_type', '_appearance', '_timezone', '_time_series_hover_tooltip_concise', '_chart_hover_tooltip_mode']
|
|
2248
2271
|
|
|
2249
|
-
def __init__(self, appearance: Optional["authentication_api_AppearanceSetting"] = None, default_time_range_type: Optional["authentication_api_DefaultTimeRangeTypeSetting"] = None, time_series_hover_tooltip_concise: Optional[bool] = None, timezone: Optional["authentication_api_TimezoneSetting"] = None) -> None:
|
|
2272
|
+
def __init__(self, appearance: Optional["authentication_api_AppearanceSetting"] = None, chart_hover_tooltip_mode: Optional["authentication_api_ChartTooltipModeSetting"] = None, default_time_range_type: Optional["authentication_api_DefaultTimeRangeTypeSetting"] = None, time_series_hover_tooltip_concise: Optional[bool] = None, timezone: Optional["authentication_api_TimezoneSetting"] = None) -> None:
|
|
2250
2273
|
self._default_time_range_type = default_time_range_type
|
|
2251
2274
|
self._appearance = appearance
|
|
2252
2275
|
self._timezone = timezone
|
|
2253
2276
|
self._time_series_hover_tooltip_concise = time_series_hover_tooltip_concise
|
|
2277
|
+
self._chart_hover_tooltip_mode = chart_hover_tooltip_mode
|
|
2254
2278
|
|
|
2255
2279
|
@builtins.property
|
|
2256
2280
|
def default_time_range_type(self) -> Optional["authentication_api_DefaultTimeRangeTypeSetting"]:
|
|
@@ -2268,6 +2292,10 @@ class authentication_api_UserSettings(ConjureBeanType):
|
|
|
2268
2292
|
def time_series_hover_tooltip_concise(self) -> Optional[bool]:
|
|
2269
2293
|
return self._time_series_hover_tooltip_concise
|
|
2270
2294
|
|
|
2295
|
+
@builtins.property
|
|
2296
|
+
def chart_hover_tooltip_mode(self) -> Optional["authentication_api_ChartTooltipModeSetting"]:
|
|
2297
|
+
return self._chart_hover_tooltip_mode
|
|
2298
|
+
|
|
2271
2299
|
|
|
2272
2300
|
authentication_api_UserSettings.__name__ = "UserSettings"
|
|
2273
2301
|
authentication_api_UserSettings.__qualname__ = "UserSettings"
|
|
@@ -10007,13 +10035,13 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
|
|
|
10007
10035
|
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
10008
10036
|
'created_at': ConjureFieldDefinition('createdAt', str),
|
|
10009
10037
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
|
10010
|
-
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata),
|
|
10038
|
+
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
10011
10039
|
'output_file_format': ConjureFieldDefinition('outputFileFormat', ingest_api_FileOutputFormat)
|
|
10012
10040
|
}
|
|
10013
10041
|
|
|
10014
10042
|
__slots__: List[str] = ['_rid', '_name', '_description', '_image', '_inputs', '_parameters', '_properties', '_labels', '_created_at', '_is_archived', '_timestamp_metadata', '_output_file_format']
|
|
10015
10043
|
|
|
10016
|
-
def __init__(self, created_at: str, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], is_archived: bool, labels: List[str], name: str, output_file_format: "ingest_api_FileOutputFormat", parameters: List["ingest_api_FileExtractionParameter"], properties: Dict[str, str], rid: str,
|
|
10044
|
+
def __init__(self, created_at: str, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], is_archived: bool, labels: List[str], name: str, output_file_format: "ingest_api_FileOutputFormat", parameters: List["ingest_api_FileExtractionParameter"], properties: Dict[str, str], rid: str, description: Optional[str] = None, timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
|
|
10017
10045
|
self._rid = rid
|
|
10018
10046
|
self._name = name
|
|
10019
10047
|
self._description = description
|
|
@@ -10088,8 +10116,9 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
|
|
|
10088
10116
|
return self._is_archived
|
|
10089
10117
|
|
|
10090
10118
|
@builtins.property
|
|
10091
|
-
def timestamp_metadata(self) -> "ingest_api_TimestampMetadata":
|
|
10092
|
-
"""Metadata about the intermediate parquet this extractor will produce
|
|
10119
|
+
def timestamp_metadata(self) -> Optional["ingest_api_TimestampMetadata"]:
|
|
10120
|
+
"""Metadata about the intermediate parquet this extractor will produce.
|
|
10121
|
+
If not set, timestamp metadata must be provided at ingest time.
|
|
10093
10122
|
"""
|
|
10094
10123
|
return self._timestamp_metadata
|
|
10095
10124
|
|
|
@@ -10314,18 +10343,22 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
|
|
|
10314
10343
|
'sources': ConjureFieldDefinition('sources', Dict[ingest_api_EnvironmentVariable, ingest_api_IngestSource]),
|
|
10315
10344
|
'arguments': ConjureFieldDefinition('arguments', Dict[ingest_api_EnvironmentVariable, str]),
|
|
10316
10345
|
'extractor_rid': ConjureFieldDefinition('extractorRid', ingest_api_ContainerizedExtractorRid),
|
|
10346
|
+
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
10317
10347
|
'tag': ConjureFieldDefinition('tag', OptionalTypeWrapper[str]),
|
|
10318
|
-
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget)
|
|
10348
|
+
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget),
|
|
10349
|
+
'additional_file_tags': ConjureFieldDefinition('additionalFileTags', Dict[api_TagName, api_TagValue])
|
|
10319
10350
|
}
|
|
10320
10351
|
|
|
10321
|
-
__slots__: List[str] = ['_sources', '_arguments', '_extractor_rid', '_tag', '_target']
|
|
10352
|
+
__slots__: List[str] = ['_sources', '_arguments', '_extractor_rid', '_timestamp_metadata', '_tag', '_target', '_additional_file_tags']
|
|
10322
10353
|
|
|
10323
|
-
def __init__(self, arguments: Dict[str, str], extractor_rid: str, sources: Dict[str, "ingest_api_IngestSource"], target: "ingest_api_DatasetIngestTarget", tag: Optional[str] = None) -> None:
|
|
10354
|
+
def __init__(self, additional_file_tags: Dict[str, str], arguments: Dict[str, str], extractor_rid: str, sources: Dict[str, "ingest_api_IngestSource"], target: "ingest_api_DatasetIngestTarget", tag: Optional[str] = None, timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
|
|
10324
10355
|
self._sources = sources
|
|
10325
10356
|
self._arguments = arguments
|
|
10326
10357
|
self._extractor_rid = extractor_rid
|
|
10358
|
+
self._timestamp_metadata = timestamp_metadata
|
|
10327
10359
|
self._tag = tag
|
|
10328
10360
|
self._target = target
|
|
10361
|
+
self._additional_file_tags = additional_file_tags
|
|
10329
10362
|
|
|
10330
10363
|
@builtins.property
|
|
10331
10364
|
def sources(self) -> Dict[str, "ingest_api_IngestSource"]:
|
|
@@ -10339,6 +10372,10 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
|
|
|
10339
10372
|
def extractor_rid(self) -> str:
|
|
10340
10373
|
return self._extractor_rid
|
|
10341
10374
|
|
|
10375
|
+
@builtins.property
|
|
10376
|
+
def timestamp_metadata(self) -> Optional["ingest_api_TimestampMetadata"]:
|
|
10377
|
+
return self._timestamp_metadata
|
|
10378
|
+
|
|
10342
10379
|
@builtins.property
|
|
10343
10380
|
def tag(self) -> Optional[str]:
|
|
10344
10381
|
return self._tag
|
|
@@ -10347,6 +10384,12 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
|
|
|
10347
10384
|
def target(self) -> "ingest_api_DatasetIngestTarget":
|
|
10348
10385
|
return self._target
|
|
10349
10386
|
|
|
10387
|
+
@builtins.property
|
|
10388
|
+
def additional_file_tags(self) -> Dict[str, str]:
|
|
10389
|
+
"""Specifies a tag set to apply to all data in the file.
|
|
10390
|
+
"""
|
|
10391
|
+
return self._additional_file_tags
|
|
10392
|
+
|
|
10350
10393
|
|
|
10351
10394
|
ingest_api_ContainerizedOpts.__name__ = "ContainerizedOpts"
|
|
10352
10395
|
ingest_api_ContainerizedOpts.__qualname__ = "ContainerizedOpts"
|
|
@@ -13979,13 +14022,13 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
|
|
|
13979
14022
|
'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
|
|
13980
14023
|
'labels': ConjureFieldDefinition('labels', List[api_Label]),
|
|
13981
14024
|
'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
|
|
13982
|
-
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata),
|
|
14025
|
+
'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
|
|
13983
14026
|
'output_file_format': ConjureFieldDefinition('outputFileFormat', OptionalTypeWrapper[ingest_api_FileOutputFormat])
|
|
13984
14027
|
}
|
|
13985
14028
|
|
|
13986
14029
|
__slots__: List[str] = ['_name', '_description', '_image', '_inputs', '_parameters', '_properties', '_labels', '_workspace', '_timestamp_metadata', '_output_file_format']
|
|
13987
14030
|
|
|
13988
|
-
def __init__(self, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], labels: List[str], name: str, parameters: List["ingest_api_FileExtractionParameter"], properties: Dict[str, str],
|
|
14031
|
+
def __init__(self, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], labels: List[str], name: str, parameters: List["ingest_api_FileExtractionParameter"], properties: Dict[str, str], workspace: str, description: Optional[str] = None, output_file_format: Optional["ingest_api_FileOutputFormat"] = None, timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
|
|
13989
14032
|
self._name = name
|
|
13990
14033
|
self._description = description
|
|
13991
14034
|
self._image = image
|
|
@@ -14036,8 +14079,9 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
|
|
|
14036
14079
|
return self._workspace
|
|
14037
14080
|
|
|
14038
14081
|
@builtins.property
|
|
14039
|
-
def timestamp_metadata(self) -> "ingest_api_TimestampMetadata":
|
|
14040
|
-
"""Metadata about the intermediate parquet this extractor will produce
|
|
14082
|
+
def timestamp_metadata(self) -> Optional["ingest_api_TimestampMetadata"]:
|
|
14083
|
+
"""Metadata about the intermediate parquet this extractor will produce.
|
|
14084
|
+
If not set, timestamp metadata must be provided at ingest time.
|
|
14041
14085
|
"""
|
|
14042
14086
|
return self._timestamp_metadata
|
|
14043
14087
|
|
|
@@ -35312,15 +35356,17 @@ class scout_checklistexecution_api_AssetStreamConfiguration(ConjureBeanType):
|
|
|
35312
35356
|
return {
|
|
35313
35357
|
'notification_configurations': ConjureFieldDefinition('notificationConfigurations', List[scout_integrations_api_NotificationConfiguration]),
|
|
35314
35358
|
'evaluation_delay': ConjureFieldDefinition('evaluationDelay', scout_run_api_Duration),
|
|
35315
|
-
'recovery_delay': ConjureFieldDefinition('recoveryDelay', scout_run_api_Duration)
|
|
35359
|
+
'recovery_delay': ConjureFieldDefinition('recoveryDelay', scout_run_api_Duration),
|
|
35360
|
+
'auto_create_events': ConjureFieldDefinition('autoCreateEvents', bool)
|
|
35316
35361
|
}
|
|
35317
35362
|
|
|
35318
|
-
__slots__: List[str] = ['_notification_configurations', '_evaluation_delay', '_recovery_delay']
|
|
35363
|
+
__slots__: List[str] = ['_notification_configurations', '_evaluation_delay', '_recovery_delay', '_auto_create_events']
|
|
35319
35364
|
|
|
35320
|
-
def __init__(self, evaluation_delay: "scout_run_api_Duration", notification_configurations: List["scout_integrations_api_NotificationConfiguration"], recovery_delay: "scout_run_api_Duration") -> None:
|
|
35365
|
+
def __init__(self, auto_create_events: bool, evaluation_delay: "scout_run_api_Duration", notification_configurations: List["scout_integrations_api_NotificationConfiguration"], recovery_delay: "scout_run_api_Duration") -> None:
|
|
35321
35366
|
self._notification_configurations = notification_configurations
|
|
35322
35367
|
self._evaluation_delay = evaluation_delay
|
|
35323
35368
|
self._recovery_delay = recovery_delay
|
|
35369
|
+
self._auto_create_events = auto_create_events
|
|
35324
35370
|
|
|
35325
35371
|
@builtins.property
|
|
35326
35372
|
def notification_configurations(self) -> List["scout_integrations_api_NotificationConfiguration"]:
|
|
@@ -35334,6 +35380,10 @@ class scout_checklistexecution_api_AssetStreamConfiguration(ConjureBeanType):
|
|
|
35334
35380
|
def recovery_delay(self) -> "scout_run_api_Duration":
|
|
35335
35381
|
return self._recovery_delay
|
|
35336
35382
|
|
|
35383
|
+
@builtins.property
|
|
35384
|
+
def auto_create_events(self) -> bool:
|
|
35385
|
+
return self._auto_create_events
|
|
35386
|
+
|
|
35337
35387
|
|
|
35338
35388
|
scout_checklistexecution_api_AssetStreamConfiguration.__name__ = "AssetStreamConfiguration"
|
|
35339
35389
|
scout_checklistexecution_api_AssetStreamConfiguration.__qualname__ = "AssetStreamConfiguration"
|
|
@@ -35553,6 +35603,7 @@ class scout_checklistexecution_api_CheckLiveStatusResponse(ConjureBeanType):
|
|
|
35553
35603
|
@builtins.property
|
|
35554
35604
|
def check_parameter_index(self) -> Optional[int]:
|
|
35555
35605
|
"""Checks can define a single range computation which can evaluate over multiple implementations of a context.
|
|
35606
|
+
assetRid: common.AssetRid
|
|
35556
35607
|
The check implementation index will correspond to the implementation index of the check condition.
|
|
35557
35608
|
"""
|
|
35558
35609
|
return self._check_parameter_index
|
|
@@ -36217,17 +36268,19 @@ class scout_checklistexecution_api_ExecuteChecklistForAssetsRequest(ConjureBeanT
|
|
|
36217
36268
|
'assets': ConjureFieldDefinition('assets', List[scout_rids_api_AssetRid]),
|
|
36218
36269
|
'notification_configurations': ConjureFieldDefinition('notificationConfigurations', List[scout_integrations_api_NotificationConfiguration]),
|
|
36219
36270
|
'evaluation_delay': ConjureFieldDefinition('evaluationDelay', scout_run_api_Duration),
|
|
36220
|
-
'recovery_delay': ConjureFieldDefinition('recoveryDelay', scout_run_api_Duration)
|
|
36271
|
+
'recovery_delay': ConjureFieldDefinition('recoveryDelay', scout_run_api_Duration),
|
|
36272
|
+
'auto_create_events': ConjureFieldDefinition('autoCreateEvents', OptionalTypeWrapper[bool])
|
|
36221
36273
|
}
|
|
36222
36274
|
|
|
36223
|
-
__slots__: List[str] = ['_checklist', '_assets', '_notification_configurations', '_evaluation_delay', '_recovery_delay']
|
|
36275
|
+
__slots__: List[str] = ['_checklist', '_assets', '_notification_configurations', '_evaluation_delay', '_recovery_delay', '_auto_create_events']
|
|
36224
36276
|
|
|
36225
|
-
def __init__(self, assets: List[str], checklist: str, evaluation_delay: "scout_run_api_Duration", notification_configurations: List["scout_integrations_api_NotificationConfiguration"], recovery_delay: "scout_run_api_Duration") -> None:
|
|
36277
|
+
def __init__(self, assets: List[str], checklist: str, evaluation_delay: "scout_run_api_Duration", notification_configurations: List["scout_integrations_api_NotificationConfiguration"], recovery_delay: "scout_run_api_Duration", auto_create_events: Optional[bool] = None) -> None:
|
|
36226
36278
|
self._checklist = checklist
|
|
36227
36279
|
self._assets = assets
|
|
36228
36280
|
self._notification_configurations = notification_configurations
|
|
36229
36281
|
self._evaluation_delay = evaluation_delay
|
|
36230
36282
|
self._recovery_delay = recovery_delay
|
|
36283
|
+
self._auto_create_events = auto_create_events
|
|
36231
36284
|
|
|
36232
36285
|
@builtins.property
|
|
36233
36286
|
def checklist(self) -> str:
|
|
@@ -36256,6 +36309,14 @@ Minimum value is 15 seconds.
|
|
|
36256
36309
|
"""
|
|
36257
36310
|
return self._recovery_delay
|
|
36258
36311
|
|
|
36312
|
+
@builtins.property
|
|
36313
|
+
def auto_create_events(self) -> Optional[bool]:
|
|
36314
|
+
"""The option to automatically create events for check status changes.
|
|
36315
|
+
If true, events will be created when checks fail and recover.
|
|
36316
|
+
Defaults to false if not specified.
|
|
36317
|
+
"""
|
|
36318
|
+
return self._auto_create_events
|
|
36319
|
+
|
|
36259
36320
|
|
|
36260
36321
|
scout_checklistexecution_api_ExecuteChecklistForAssetsRequest.__name__ = "ExecuteChecklistForAssetsRequest"
|
|
36261
36322
|
scout_checklistexecution_api_ExecuteChecklistForAssetsRequest.__qualname__ = "ExecuteChecklistForAssetsRequest"
|
|
@@ -56680,6 +56741,8 @@ scout_compute_api_SeriesEqualityRanges.__module__ = "nominal_api.scout_compute_a
|
|
|
56680
56741
|
|
|
56681
56742
|
|
|
56682
56743
|
class scout_compute_api_SeriesSpec(ConjureBeanType):
|
|
56744
|
+
"""Deprecated and should not be created by clients. Use ChannelSeries instead.
|
|
56745
|
+
"""
|
|
56683
56746
|
|
|
56684
56747
|
@builtins.classmethod
|
|
56685
56748
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -99902,7 +99965,6 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
99902
99965
|
_visual_crossing_locator: Optional["timeseries_logicalseries_api_VisualCrossingLocator"] = None
|
|
99903
99966
|
_big_query_locator: Optional["timeseries_logicalseries_api_BigQueryLocator"] = None
|
|
99904
99967
|
_api_locator: Optional["timeseries_logicalseries_api_ApiLocator"] = None
|
|
99905
|
-
_video_locator: Optional["timeseries_logicalseries_api_VideoLocator"] = None
|
|
99906
99968
|
|
|
99907
99969
|
@builtins.classmethod
|
|
99908
99970
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
@@ -99914,8 +99976,7 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
99914
99976
|
'timestream_locator': ConjureFieldDefinition('timestreamLocator', timeseries_logicalseries_api_TimestreamLocator),
|
|
99915
99977
|
'visual_crossing_locator': ConjureFieldDefinition('visualCrossingLocator', timeseries_logicalseries_api_VisualCrossingLocator),
|
|
99916
99978
|
'big_query_locator': ConjureFieldDefinition('bigQueryLocator', timeseries_logicalseries_api_BigQueryLocator),
|
|
99917
|
-
'api_locator': ConjureFieldDefinition('apiLocator', timeseries_logicalseries_api_ApiLocator)
|
|
99918
|
-
'video_locator': ConjureFieldDefinition('videoLocator', timeseries_logicalseries_api_VideoLocator)
|
|
99979
|
+
'api_locator': ConjureFieldDefinition('apiLocator', timeseries_logicalseries_api_ApiLocator)
|
|
99919
99980
|
}
|
|
99920
99981
|
|
|
99921
99982
|
def __init__(
|
|
@@ -99928,11 +99989,10 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
99928
99989
|
visual_crossing_locator: Optional["timeseries_logicalseries_api_VisualCrossingLocator"] = None,
|
|
99929
99990
|
big_query_locator: Optional["timeseries_logicalseries_api_BigQueryLocator"] = None,
|
|
99930
99991
|
api_locator: Optional["timeseries_logicalseries_api_ApiLocator"] = None,
|
|
99931
|
-
video_locator: Optional["timeseries_logicalseries_api_VideoLocator"] = None,
|
|
99932
99992
|
type_of_union: Optional[str] = None
|
|
99933
99993
|
) -> None:
|
|
99934
99994
|
if type_of_union is None:
|
|
99935
|
-
if (timescale_db_locator is not None) + (influx_locator is not None) + (influx1_locator is not None) + (nominal_locator is not None) + (timestream_locator is not None) + (visual_crossing_locator is not None) + (big_query_locator is not None) + (api_locator is not None)
|
|
99995
|
+
if (timescale_db_locator is not None) + (influx_locator is not None) + (influx1_locator is not None) + (nominal_locator is not None) + (timestream_locator is not None) + (visual_crossing_locator is not None) + (big_query_locator is not None) + (api_locator is not None) != 1:
|
|
99936
99996
|
raise ValueError('a union must contain a single member')
|
|
99937
99997
|
|
|
99938
99998
|
if timescale_db_locator is not None:
|
|
@@ -99959,9 +100019,6 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
99959
100019
|
if api_locator is not None:
|
|
99960
100020
|
self._api_locator = api_locator
|
|
99961
100021
|
self._type = 'apiLocator'
|
|
99962
|
-
if video_locator is not None:
|
|
99963
|
-
self._video_locator = video_locator
|
|
99964
|
-
self._type = 'videoLocator'
|
|
99965
100022
|
|
|
99966
100023
|
elif type_of_union == 'timescaleDbLocator':
|
|
99967
100024
|
if timescale_db_locator is None:
|
|
@@ -100003,11 +100060,6 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
100003
100060
|
raise ValueError('a union value must not be None')
|
|
100004
100061
|
self._api_locator = api_locator
|
|
100005
100062
|
self._type = 'apiLocator'
|
|
100006
|
-
elif type_of_union == 'videoLocator':
|
|
100007
|
-
if video_locator is None:
|
|
100008
|
-
raise ValueError('a union value must not be None')
|
|
100009
|
-
self._video_locator = video_locator
|
|
100010
|
-
self._type = 'videoLocator'
|
|
100011
100063
|
|
|
100012
100064
|
@builtins.property
|
|
100013
100065
|
def timescale_db_locator(self) -> Optional["timeseries_logicalseries_api_TimescaleDbLocator"]:
|
|
@@ -100041,10 +100093,6 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
100041
100093
|
def api_locator(self) -> Optional["timeseries_logicalseries_api_ApiLocator"]:
|
|
100042
100094
|
return self._api_locator
|
|
100043
100095
|
|
|
100044
|
-
@builtins.property
|
|
100045
|
-
def video_locator(self) -> Optional["timeseries_logicalseries_api_VideoLocator"]:
|
|
100046
|
-
return self._video_locator
|
|
100047
|
-
|
|
100048
100096
|
def accept(self, visitor) -> Any:
|
|
100049
100097
|
if not isinstance(visitor, timeseries_logicalseries_api_LocatorVisitor):
|
|
100050
100098
|
raise ValueError('{} is not an instance of timeseries_logicalseries_api_LocatorVisitor'.format(visitor.__class__.__name__))
|
|
@@ -100064,8 +100112,6 @@ class timeseries_logicalseries_api_Locator(ConjureUnionType):
|
|
|
100064
100112
|
return visitor._big_query_locator(self.big_query_locator)
|
|
100065
100113
|
if self._type == 'apiLocator' and self.api_locator is not None:
|
|
100066
100114
|
return visitor._api_locator(self.api_locator)
|
|
100067
|
-
if self._type == 'videoLocator' and self.video_locator is not None:
|
|
100068
|
-
return visitor._video_locator(self.video_locator)
|
|
100069
100115
|
|
|
100070
100116
|
|
|
100071
100117
|
timeseries_logicalseries_api_Locator.__name__ = "Locator"
|
|
@@ -100107,10 +100153,6 @@ class timeseries_logicalseries_api_LocatorVisitor:
|
|
|
100107
100153
|
def _api_locator(self, api_locator: "timeseries_logicalseries_api_ApiLocator") -> Any:
|
|
100108
100154
|
pass
|
|
100109
100155
|
|
|
100110
|
-
@abstractmethod
|
|
100111
|
-
def _video_locator(self, video_locator: "timeseries_logicalseries_api_VideoLocator") -> Any:
|
|
100112
|
-
pass
|
|
100113
|
-
|
|
100114
100156
|
|
|
100115
100157
|
timeseries_logicalseries_api_LocatorVisitor.__name__ = "LocatorVisitor"
|
|
100116
100158
|
timeseries_logicalseries_api_LocatorVisitor.__qualname__ = "LocatorVisitor"
|
|
@@ -100628,41 +100670,6 @@ timeseries_logicalseries_api_UpdateLogicalSeries.__qualname__ = "UpdateLogicalSe
|
|
|
100628
100670
|
timeseries_logicalseries_api_UpdateLogicalSeries.__module__ = "nominal_api.timeseries_logicalseries_api"
|
|
100629
100671
|
|
|
100630
100672
|
|
|
100631
|
-
class timeseries_logicalseries_api_VideoLocator(ConjureBeanType):
|
|
100632
|
-
|
|
100633
|
-
@builtins.classmethod
|
|
100634
|
-
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
100635
|
-
return {
|
|
100636
|
-
'channel': ConjureFieldDefinition('channel', api_Channel),
|
|
100637
|
-
'video_rid': ConjureFieldDefinition('videoRid', api_rids_VideoRid),
|
|
100638
|
-
'tags': ConjureFieldDefinition('tags', Dict[api_TagName, api_TagValue])
|
|
100639
|
-
}
|
|
100640
|
-
|
|
100641
|
-
__slots__: List[str] = ['_channel', '_video_rid', '_tags']
|
|
100642
|
-
|
|
100643
|
-
def __init__(self, channel: str, tags: Dict[str, str], video_rid: str) -> None:
|
|
100644
|
-
self._channel = channel
|
|
100645
|
-
self._video_rid = video_rid
|
|
100646
|
-
self._tags = tags
|
|
100647
|
-
|
|
100648
|
-
@builtins.property
|
|
100649
|
-
def channel(self) -> str:
|
|
100650
|
-
return self._channel
|
|
100651
|
-
|
|
100652
|
-
@builtins.property
|
|
100653
|
-
def video_rid(self) -> str:
|
|
100654
|
-
return self._video_rid
|
|
100655
|
-
|
|
100656
|
-
@builtins.property
|
|
100657
|
-
def tags(self) -> Dict[str, str]:
|
|
100658
|
-
return self._tags
|
|
100659
|
-
|
|
100660
|
-
|
|
100661
|
-
timeseries_logicalseries_api_VideoLocator.__name__ = "VideoLocator"
|
|
100662
|
-
timeseries_logicalseries_api_VideoLocator.__qualname__ = "VideoLocator"
|
|
100663
|
-
timeseries_logicalseries_api_VideoLocator.__module__ = "nominal_api.timeseries_logicalseries_api"
|
|
100664
|
-
|
|
100665
|
-
|
|
100666
100673
|
class timeseries_logicalseries_api_VisualCrossingEndpointUri(ConjureEnumType):
|
|
100667
100674
|
|
|
100668
100675
|
HISTORY = 'HISTORY'
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
from .._impl import (
|
|
3
3
|
authentication_api_AppearanceSetting as AppearanceSetting,
|
|
4
4
|
authentication_api_AuthenticationServiceV2 as AuthenticationServiceV2,
|
|
5
|
+
authentication_api_ChartTooltipModeSetting as ChartTooltipModeSetting,
|
|
5
6
|
authentication_api_DefaultTimeRangeTypeSetting as DefaultTimeRangeTypeSetting,
|
|
6
7
|
authentication_api_GenerateMediaMtxTokenRequest as GenerateMediaMtxTokenRequest,
|
|
7
8
|
authentication_api_GenerateMediaMtxTokenResponse as GenerateMediaMtxTokenResponse,
|
|
@@ -25,6 +26,7 @@ from .._impl import (
|
|
|
25
26
|
|
|
26
27
|
__all__ = [
|
|
27
28
|
'AppearanceSetting',
|
|
29
|
+
'ChartTooltipModeSetting',
|
|
28
30
|
'DefaultTimeRangeTypeSetting',
|
|
29
31
|
'GenerateMediaMtxTokenRequest',
|
|
30
32
|
'GenerateMediaMtxTokenResponse',
|
|
@@ -1079,6 +1079,15 @@
|
|
|
1079
1079
|
}
|
|
1080
1080
|
} ],
|
|
1081
1081
|
"unsafeArgs" : [ ]
|
|
1082
|
+
}, {
|
|
1083
|
+
"errorName" : {
|
|
1084
|
+
"name" : "NullKey",
|
|
1085
|
+
"package" : "io.nominal.ingest.api"
|
|
1086
|
+
},
|
|
1087
|
+
"namespace" : "UploadService",
|
|
1088
|
+
"code" : "INVALID_ARGUMENT",
|
|
1089
|
+
"safeArgs" : [ ],
|
|
1090
|
+
"unsafeArgs" : [ ]
|
|
1082
1091
|
}, {
|
|
1083
1092
|
"errorName" : {
|
|
1084
1093
|
"name" : "ParallelReingestIntoDatasetV1",
|
|
@@ -2461,6 +2470,16 @@
|
|
|
2461
2470
|
"code" : "INVALID_ARGUMENT",
|
|
2462
2471
|
"safeArgs" : [ ],
|
|
2463
2472
|
"unsafeArgs" : [ ]
|
|
2473
|
+
}, {
|
|
2474
|
+
"errorName" : {
|
|
2475
|
+
"name" : "EmptySet",
|
|
2476
|
+
"package" : "io.nominal.scout.compute.api"
|
|
2477
|
+
},
|
|
2478
|
+
"docs" : "The provided set must contain at least one element.\n",
|
|
2479
|
+
"namespace" : "Compute",
|
|
2480
|
+
"code" : "INVALID_ARGUMENT",
|
|
2481
|
+
"safeArgs" : [ ],
|
|
2482
|
+
"unsafeArgs" : [ ]
|
|
2464
2483
|
}, {
|
|
2465
2484
|
"errorName" : {
|
|
2466
2485
|
"name" : "ExponentialCurveInputTooLarge",
|
|
@@ -2549,6 +2568,16 @@
|
|
|
2549
2568
|
"code" : "INVALID_ARGUMENT",
|
|
2550
2569
|
"safeArgs" : [ ],
|
|
2551
2570
|
"unsafeArgs" : [ ]
|
|
2571
|
+
}, {
|
|
2572
|
+
"errorName" : {
|
|
2573
|
+
"name" : "GroupByMissingTag",
|
|
2574
|
+
"package" : "io.nominal.scout.compute.api"
|
|
2575
|
+
},
|
|
2576
|
+
"docs" : "Attempted to group by a tag that does not exist.\n",
|
|
2577
|
+
"namespace" : "Compute",
|
|
2578
|
+
"code" : "INVALID_ARGUMENT",
|
|
2579
|
+
"safeArgs" : [ ],
|
|
2580
|
+
"unsafeArgs" : [ ]
|
|
2552
2581
|
}, {
|
|
2553
2582
|
"errorName" : {
|
|
2554
2583
|
"name" : "GroupByTagsNotSubset",
|
|
@@ -3352,6 +3381,28 @@
|
|
|
3352
3381
|
}
|
|
3353
3382
|
} ],
|
|
3354
3383
|
"unsafeArgs" : [ ]
|
|
3384
|
+
}, {
|
|
3385
|
+
"errorName" : {
|
|
3386
|
+
"name" : "TooFewInputs",
|
|
3387
|
+
"package" : "io.nominal.scout.compute.api"
|
|
3388
|
+
},
|
|
3389
|
+
"docs" : "The operation requires more input series than were provided.\n",
|
|
3390
|
+
"namespace" : "Compute",
|
|
3391
|
+
"code" : "INVALID_ARGUMENT",
|
|
3392
|
+
"safeArgs" : [ {
|
|
3393
|
+
"fieldName" : "requiredInputCount",
|
|
3394
|
+
"type" : {
|
|
3395
|
+
"type" : "primitive",
|
|
3396
|
+
"primitive" : "INTEGER"
|
|
3397
|
+
}
|
|
3398
|
+
}, {
|
|
3399
|
+
"fieldName" : "providedInputCount",
|
|
3400
|
+
"type" : {
|
|
3401
|
+
"type" : "primitive",
|
|
3402
|
+
"primitive" : "INTEGER"
|
|
3403
|
+
}
|
|
3404
|
+
} ],
|
|
3405
|
+
"unsafeArgs" : [ ]
|
|
3355
3406
|
}, {
|
|
3356
3407
|
"errorName" : {
|
|
3357
3408
|
"name" : "TooManyBuckets",
|
|
@@ -5863,6 +5914,16 @@
|
|
|
5863
5914
|
}
|
|
5864
5915
|
} ],
|
|
5865
5916
|
"unsafeArgs" : [ ]
|
|
5917
|
+
}, {
|
|
5918
|
+
"errorName" : {
|
|
5919
|
+
"name" : "PointsTooLarge",
|
|
5920
|
+
"package" : "io.nominal.storage.writer.api"
|
|
5921
|
+
},
|
|
5922
|
+
"docs" : "The size of the points being written exceeds the maximum allowed size.\n",
|
|
5923
|
+
"namespace" : "NominalChannelWriter",
|
|
5924
|
+
"code" : "REQUEST_ENTITY_TOO_LARGE",
|
|
5925
|
+
"safeArgs" : [ ],
|
|
5926
|
+
"unsafeArgs" : [ ]
|
|
5866
5927
|
}, {
|
|
5867
5928
|
"errorName" : {
|
|
5868
5929
|
"name" : "StreamingDisabledOnDataset",
|
|
@@ -7445,6 +7506,23 @@
|
|
|
7445
7506
|
"value" : "DARK"
|
|
7446
7507
|
} ]
|
|
7447
7508
|
}
|
|
7509
|
+
}, {
|
|
7510
|
+
"type" : "enum",
|
|
7511
|
+
"enum" : {
|
|
7512
|
+
"typeName" : {
|
|
7513
|
+
"name" : "ChartTooltipModeSetting",
|
|
7514
|
+
"package" : "io.nominal.authentication.api"
|
|
7515
|
+
},
|
|
7516
|
+
"values" : [ {
|
|
7517
|
+
"value" : "VERBOSE"
|
|
7518
|
+
}, {
|
|
7519
|
+
"value" : "CONCISE"
|
|
7520
|
+
}, {
|
|
7521
|
+
"value" : "SINGLE"
|
|
7522
|
+
}, {
|
|
7523
|
+
"value" : "NONE"
|
|
7524
|
+
} ]
|
|
7525
|
+
}
|
|
7448
7526
|
}, {
|
|
7449
7527
|
"type" : "enum",
|
|
7450
7528
|
"enum" : {
|
|
@@ -7919,6 +7997,21 @@
|
|
|
7919
7997
|
"primitive" : "BOOLEAN"
|
|
7920
7998
|
}
|
|
7921
7999
|
}
|
|
8000
|
+
},
|
|
8001
|
+
"deprecated" : "Use `chartHoverTooltipMode` instead. If `chartHoverTooltipMode` is not set, this field will be\nused: `true` as `SINGLE` and `false` as `VERBOSE`.\n"
|
|
8002
|
+
}, {
|
|
8003
|
+
"fieldName" : "chartHoverTooltipMode",
|
|
8004
|
+
"type" : {
|
|
8005
|
+
"type" : "optional",
|
|
8006
|
+
"optional" : {
|
|
8007
|
+
"itemType" : {
|
|
8008
|
+
"type" : "reference",
|
|
8009
|
+
"reference" : {
|
|
8010
|
+
"name" : "ChartTooltipModeSetting",
|
|
8011
|
+
"package" : "io.nominal.authentication.api"
|
|
8012
|
+
}
|
|
8013
|
+
}
|
|
8014
|
+
}
|
|
7922
8015
|
}
|
|
7923
8016
|
} ]
|
|
7924
8017
|
}
|
|
@@ -13627,13 +13720,18 @@
|
|
|
13627
13720
|
}, {
|
|
13628
13721
|
"fieldName" : "timestampMetadata",
|
|
13629
13722
|
"type" : {
|
|
13630
|
-
"type" : "
|
|
13631
|
-
"
|
|
13632
|
-
"
|
|
13633
|
-
|
|
13723
|
+
"type" : "optional",
|
|
13724
|
+
"optional" : {
|
|
13725
|
+
"itemType" : {
|
|
13726
|
+
"type" : "reference",
|
|
13727
|
+
"reference" : {
|
|
13728
|
+
"name" : "TimestampMetadata",
|
|
13729
|
+
"package" : "io.nominal.ingest.api"
|
|
13730
|
+
}
|
|
13731
|
+
}
|
|
13634
13732
|
}
|
|
13635
13733
|
},
|
|
13636
|
-
"docs" : "Metadata about the intermediate parquet this extractor will produce
|
|
13734
|
+
"docs" : "Metadata about the intermediate parquet this extractor will produce.\nIf not set, timestamp metadata must be provided at ingest time.\n"
|
|
13637
13735
|
}, {
|
|
13638
13736
|
"fieldName" : "outputFileFormat",
|
|
13639
13737
|
"type" : {
|
|
@@ -13714,6 +13812,20 @@
|
|
|
13714
13812
|
"package" : "io.nominal.ingest.api"
|
|
13715
13813
|
}
|
|
13716
13814
|
}
|
|
13815
|
+
}, {
|
|
13816
|
+
"fieldName" : "timestampMetadata",
|
|
13817
|
+
"type" : {
|
|
13818
|
+
"type" : "optional",
|
|
13819
|
+
"optional" : {
|
|
13820
|
+
"itemType" : {
|
|
13821
|
+
"type" : "reference",
|
|
13822
|
+
"reference" : {
|
|
13823
|
+
"name" : "TimestampMetadata",
|
|
13824
|
+
"package" : "io.nominal.ingest.api"
|
|
13825
|
+
}
|
|
13826
|
+
}
|
|
13827
|
+
}
|
|
13828
|
+
}
|
|
13717
13829
|
}, {
|
|
13718
13830
|
"fieldName" : "tag",
|
|
13719
13831
|
"type" : {
|
|
@@ -13734,6 +13846,28 @@
|
|
|
13734
13846
|
"package" : "io.nominal.ingest.api"
|
|
13735
13847
|
}
|
|
13736
13848
|
}
|
|
13849
|
+
}, {
|
|
13850
|
+
"fieldName" : "additionalFileTags",
|
|
13851
|
+
"type" : {
|
|
13852
|
+
"type" : "map",
|
|
13853
|
+
"map" : {
|
|
13854
|
+
"keyType" : {
|
|
13855
|
+
"type" : "reference",
|
|
13856
|
+
"reference" : {
|
|
13857
|
+
"name" : "TagName",
|
|
13858
|
+
"package" : "io.nominal.api"
|
|
13859
|
+
}
|
|
13860
|
+
},
|
|
13861
|
+
"valueType" : {
|
|
13862
|
+
"type" : "reference",
|
|
13863
|
+
"reference" : {
|
|
13864
|
+
"name" : "TagValue",
|
|
13865
|
+
"package" : "io.nominal.api"
|
|
13866
|
+
}
|
|
13867
|
+
}
|
|
13868
|
+
}
|
|
13869
|
+
},
|
|
13870
|
+
"docs" : "Specifies a tag set to apply to all data in the file."
|
|
13737
13871
|
} ]
|
|
13738
13872
|
}
|
|
13739
13873
|
}, {
|
|
@@ -16825,13 +16959,18 @@
|
|
|
16825
16959
|
}, {
|
|
16826
16960
|
"fieldName" : "timestampMetadata",
|
|
16827
16961
|
"type" : {
|
|
16828
|
-
"type" : "
|
|
16829
|
-
"
|
|
16830
|
-
"
|
|
16831
|
-
|
|
16962
|
+
"type" : "optional",
|
|
16963
|
+
"optional" : {
|
|
16964
|
+
"itemType" : {
|
|
16965
|
+
"type" : "reference",
|
|
16966
|
+
"reference" : {
|
|
16967
|
+
"name" : "TimestampMetadata",
|
|
16968
|
+
"package" : "io.nominal.ingest.api"
|
|
16969
|
+
}
|
|
16970
|
+
}
|
|
16832
16971
|
}
|
|
16833
16972
|
},
|
|
16834
|
-
"docs" : "Metadata about the intermediate parquet this extractor will produce
|
|
16973
|
+
"docs" : "Metadata about the intermediate parquet this extractor will produce.\nIf not set, timestamp metadata must be provided at ingest time.\n"
|
|
16835
16974
|
}, {
|
|
16836
16975
|
"fieldName" : "outputFileFormat",
|
|
16837
16976
|
"type" : {
|
|
@@ -30988,6 +31127,12 @@
|
|
|
30988
31127
|
"package" : "io.nominal.scout.run.api"
|
|
30989
31128
|
}
|
|
30990
31129
|
}
|
|
31130
|
+
}, {
|
|
31131
|
+
"fieldName" : "autoCreateEvents",
|
|
31132
|
+
"type" : {
|
|
31133
|
+
"type" : "primitive",
|
|
31134
|
+
"primitive" : "BOOLEAN"
|
|
31135
|
+
}
|
|
30991
31136
|
} ]
|
|
30992
31137
|
}
|
|
30993
31138
|
}, {
|
|
@@ -31211,7 +31356,7 @@
|
|
|
31211
31356
|
}
|
|
31212
31357
|
}
|
|
31213
31358
|
},
|
|
31214
|
-
"docs" : "Checks can define a single range computation which can evaluate over multiple implementations of a context.\nThe check implementation index will correspond to the implementation index of the check condition.\n"
|
|
31359
|
+
"docs" : "Checks can define a single range computation which can evaluate over multiple implementations of a context.\nassetRid: common.AssetRid\nThe check implementation index will correspond to the implementation index of the check condition.\n"
|
|
31215
31360
|
} ]
|
|
31216
31361
|
}
|
|
31217
31362
|
}, {
|
|
@@ -31440,6 +31585,18 @@
|
|
|
31440
31585
|
}
|
|
31441
31586
|
},
|
|
31442
31587
|
"docs" : "Specifies the minimum amount of time that must pass before a check can recover from a failure.\nMinimum value is 15 seconds.\n"
|
|
31588
|
+
}, {
|
|
31589
|
+
"fieldName" : "autoCreateEvents",
|
|
31590
|
+
"type" : {
|
|
31591
|
+
"type" : "optional",
|
|
31592
|
+
"optional" : {
|
|
31593
|
+
"itemType" : {
|
|
31594
|
+
"type" : "primitive",
|
|
31595
|
+
"primitive" : "BOOLEAN"
|
|
31596
|
+
}
|
|
31597
|
+
}
|
|
31598
|
+
},
|
|
31599
|
+
"docs" : "The option to automatically create events for check status changes.\nIf true, events will be created when checks fail and recover.\nDefaults to false if not specified.\n"
|
|
31443
31600
|
} ]
|
|
31444
31601
|
}
|
|
31445
31602
|
}, {
|
|
@@ -46258,7 +46415,8 @@
|
|
|
46258
46415
|
}
|
|
46259
46416
|
}
|
|
46260
46417
|
}
|
|
46261
|
-
} ]
|
|
46418
|
+
} ],
|
|
46419
|
+
"docs" : "Deprecated and should not be created by clients. Use ChannelSeries instead.\n"
|
|
46262
46420
|
}
|
|
46263
46421
|
}, {
|
|
46264
46422
|
"type" : "object",
|
|
@@ -48051,7 +48209,8 @@
|
|
|
48051
48209
|
"name" : "SeriesSpec",
|
|
48052
48210
|
"package" : "io.nominal.scout.compute.api"
|
|
48053
48211
|
}
|
|
48054
|
-
}
|
|
48212
|
+
},
|
|
48213
|
+
"deprecated" : "use channel instead"
|
|
48055
48214
|
}, {
|
|
48056
48215
|
"fieldName" : "string",
|
|
48057
48216
|
"type" : {
|
|
@@ -77371,15 +77530,6 @@
|
|
|
77371
77530
|
"package" : "io.nominal.timeseries.logicalseries.api"
|
|
77372
77531
|
}
|
|
77373
77532
|
}
|
|
77374
|
-
}, {
|
|
77375
|
-
"fieldName" : "videoLocator",
|
|
77376
|
-
"type" : {
|
|
77377
|
-
"type" : "reference",
|
|
77378
|
-
"reference" : {
|
|
77379
|
-
"name" : "VideoLocator",
|
|
77380
|
-
"package" : "io.nominal.timeseries.logicalseries.api"
|
|
77381
|
-
}
|
|
77382
|
-
}
|
|
77383
77533
|
} ]
|
|
77384
77534
|
}
|
|
77385
77535
|
}, {
|
|
@@ -77971,54 +78121,6 @@
|
|
|
77971
78121
|
}
|
|
77972
78122
|
} ]
|
|
77973
78123
|
}
|
|
77974
|
-
}, {
|
|
77975
|
-
"type" : "object",
|
|
77976
|
-
"object" : {
|
|
77977
|
-
"typeName" : {
|
|
77978
|
-
"name" : "VideoLocator",
|
|
77979
|
-
"package" : "io.nominal.timeseries.logicalseries.api"
|
|
77980
|
-
},
|
|
77981
|
-
"fields" : [ {
|
|
77982
|
-
"fieldName" : "channel",
|
|
77983
|
-
"type" : {
|
|
77984
|
-
"type" : "reference",
|
|
77985
|
-
"reference" : {
|
|
77986
|
-
"name" : "Channel",
|
|
77987
|
-
"package" : "io.nominal.api"
|
|
77988
|
-
}
|
|
77989
|
-
}
|
|
77990
|
-
}, {
|
|
77991
|
-
"fieldName" : "videoRid",
|
|
77992
|
-
"type" : {
|
|
77993
|
-
"type" : "reference",
|
|
77994
|
-
"reference" : {
|
|
77995
|
-
"name" : "VideoRid",
|
|
77996
|
-
"package" : "io.nominal.api.rids"
|
|
77997
|
-
}
|
|
77998
|
-
}
|
|
77999
|
-
}, {
|
|
78000
|
-
"fieldName" : "tags",
|
|
78001
|
-
"type" : {
|
|
78002
|
-
"type" : "map",
|
|
78003
|
-
"map" : {
|
|
78004
|
-
"keyType" : {
|
|
78005
|
-
"type" : "reference",
|
|
78006
|
-
"reference" : {
|
|
78007
|
-
"name" : "TagName",
|
|
78008
|
-
"package" : "io.nominal.api"
|
|
78009
|
-
}
|
|
78010
|
-
},
|
|
78011
|
-
"valueType" : {
|
|
78012
|
-
"type" : "reference",
|
|
78013
|
-
"reference" : {
|
|
78014
|
-
"name" : "TagValue",
|
|
78015
|
-
"package" : "io.nominal.api"
|
|
78016
|
-
}
|
|
78017
|
-
}
|
|
78018
|
-
}
|
|
78019
|
-
}
|
|
78020
|
-
} ]
|
|
78021
|
-
}
|
|
78022
78124
|
}, {
|
|
78023
78125
|
"type" : "enum",
|
|
78024
78126
|
"enum" : {
|
|
@@ -44,7 +44,6 @@ from .._impl import (
|
|
|
44
44
|
timeseries_logicalseries_api_UnitUpdate as UnitUpdate,
|
|
45
45
|
timeseries_logicalseries_api_UnitUpdateVisitor as UnitUpdateVisitor,
|
|
46
46
|
timeseries_logicalseries_api_UpdateLogicalSeries as UpdateLogicalSeries,
|
|
47
|
-
timeseries_logicalseries_api_VideoLocator as VideoLocator,
|
|
48
47
|
timeseries_logicalseries_api_VisualCrossingEndpointUri as VisualCrossingEndpointUri,
|
|
49
48
|
timeseries_logicalseries_api_VisualCrossingLocator as VisualCrossingLocator,
|
|
50
49
|
timeseries_logicalseries_api_VisualCrossingType as VisualCrossingType,
|
|
@@ -95,7 +94,6 @@ __all__ = [
|
|
|
95
94
|
'UnitUpdate',
|
|
96
95
|
'UnitUpdateVisitor',
|
|
97
96
|
'UpdateLogicalSeries',
|
|
98
|
-
'VideoLocator',
|
|
99
97
|
'VisualCrossingEndpointUri',
|
|
100
98
|
'VisualCrossingLocator',
|
|
101
99
|
'VisualCrossingType',
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
3
|
-
nominal_api/nominal-api.conjure.json,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=EZAJCpLU4wPVf4FocdMNlfDfgXX-IQ6NLT0J-E5thN4,2110
|
|
2
|
+
nominal_api/_impl.py,sha256=Kho62ITezLBtjKyIDt7qPhlG6wxZ7OWRf3FI8KAHWAA,4079329
|
|
3
|
+
nominal_api/nominal-api.conjure.json,sha256=2NtGpTGn0V4SwMd_HgpC-nAiNhylikJVJVckxWJ2Izw,2537196
|
|
4
4
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
5
5
|
nominal_api/api/__init__.py,sha256=OHAEgaRoUX60742H_U3q_pBoPGpLspsL5XERHQ-rjMs,2299
|
|
6
6
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
7
7
|
nominal_api/api_rids/__init__.py,sha256=M9I8D1hO-CUPS-Cu17z2zwrxJk3sH6YI1mPzo5aSCGk,1510
|
|
8
8
|
nominal_api/attachments_api/__init__.py,sha256=OYiF9nptXlr47pkina5cOCIJbD4RKSOeAyCNj3kZmbk,901
|
|
9
|
-
nominal_api/authentication_api/__init__.py,sha256=
|
|
9
|
+
nominal_api/authentication_api/__init__.py,sha256=VTDQE9ufEFLWXwU89rnh0TbYvOyDt7ypshOlcXOottA,1907
|
|
10
10
|
nominal_api/authorization/__init__.py,sha256=8vSKJxDAQ8byrVKSK5GIBYJx0cRPTEVKzpsmwo53ofo,2248
|
|
11
11
|
nominal_api/comments_api/__init__.py,sha256=npfzjAE2xkJ7NY8hPzs2AmBNJsm3g8xASjRV9ndPEfU,1165
|
|
12
12
|
nominal_api/connect_download/__init__.py,sha256=GSnm2ukeKKwci_7Wg-NehwfBLqBwC9H0__aBXRSmChs,114
|
|
@@ -73,14 +73,14 @@ nominal_api/themes_api/__init__.py,sha256=5GNGZfslPuTthUYl179XRDS_jR0nrmTi8Z-aiF
|
|
|
73
73
|
nominal_api/timeseries_channelmetadata/__init__.py,sha256=K5rQ2FnPxUJJ-763HWInYu0tRfnOyf1V9H232SyliD4,166
|
|
74
74
|
nominal_api/timeseries_channelmetadata_api/__init__.py,sha256=cnW4lnburn1z58pMO1inqf7DCqbxcTivQmEMCEtqtvQ,1086
|
|
75
75
|
nominal_api/timeseries_logicalseries/__init__.py,sha256=8GyG6TLiwCUsfooVx8fotkILjCFwsqiDmy9LmSb-OrY,158
|
|
76
|
-
nominal_api/timeseries_logicalseries_api/__init__.py,sha256=
|
|
76
|
+
nominal_api/timeseries_logicalseries_api/__init__.py,sha256=mZkVOFQNF9vu6NbpBHZlDDrObCUwuW1j5yqNJnUdxQk,4550
|
|
77
77
|
nominal_api/timeseries_metadata/__init__.py,sha256=uTklzgxa53J9dqoPygpKPBVngcfxajG6EGvSmV_QaSg,156
|
|
78
78
|
nominal_api/timeseries_metadata_api/__init__.py,sha256=-VvktmsyID-pFL3HBicojRFZ6PWR4Dk9d32R7JH_aqc,2638
|
|
79
79
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
80
80
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=i21vITWBn-6ruVuFZg491TDpx6WcIhJBoF3oNw3w338,1186
|
|
81
81
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
82
82
|
nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
|
|
83
|
-
nominal_api-0.
|
|
84
|
-
nominal_api-0.
|
|
85
|
-
nominal_api-0.
|
|
86
|
-
nominal_api-0.
|
|
83
|
+
nominal_api-0.1037.0.dist-info/METADATA,sha256=ClbRwVJIOZoXNFWJ9MDckX5OkyCI4KdVJx5no4wpQVc,200
|
|
84
|
+
nominal_api-0.1037.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
85
|
+
nominal_api-0.1037.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
86
|
+
nominal_api-0.1037.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|