nominal-api 0.951.2__py3-none-any.whl → 0.952.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 +1 -1
- nominal_api/_impl.py +619 -5
- nominal_api/authentication_api/__init__.py +4 -0
- nominal_api/datasource_api/__init__.py +10 -0
- nominal_api/scout_chartdefinition_api/__init__.py +16 -0
- {nominal_api-0.951.2.dist-info → nominal_api-0.952.0.dist-info}/METADATA +1 -1
- {nominal_api-0.951.2.dist-info → nominal_api-0.952.0.dist-info}/RECORD +9 -9
- {nominal_api-0.951.2.dist-info → nominal_api-0.952.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.951.2.dist-info → nominal_api-0.952.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
@@ -1657,6 +1657,37 @@ Its name is a bit of a misnomer.
|
|
1657
1657
|
_decoder = ConjureDecoder()
|
1658
1658
|
return _decoder.decode(_response.json(), authentication_api_UserV2, self._return_none_for_unknown_union_types)
|
1659
1659
|
|
1660
|
+
def get_jwks(self, ) -> "authentication_api_Jwks":
|
1661
|
+
"""Returns JWKS (JSON Web Key Set) for MediaMTX JWT verification.
|
1662
|
+
Only available if MediaMTX integration is enabled.
|
1663
|
+
"""
|
1664
|
+
_conjure_encoder = ConjureEncoder()
|
1665
|
+
|
1666
|
+
_headers: Dict[str, Any] = {
|
1667
|
+
'Accept': 'application/json',
|
1668
|
+
}
|
1669
|
+
|
1670
|
+
_params: Dict[str, Any] = {
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
_path_params: Dict[str, str] = {
|
1674
|
+
}
|
1675
|
+
|
1676
|
+
_json: Any = None
|
1677
|
+
|
1678
|
+
_path = '/authentication/v2/jwks'
|
1679
|
+
_path = _path.format(**_path_params)
|
1680
|
+
|
1681
|
+
_response: Response = self._request(
|
1682
|
+
'GET',
|
1683
|
+
self._uri + _path,
|
1684
|
+
params=_params,
|
1685
|
+
headers=_headers,
|
1686
|
+
json=_json)
|
1687
|
+
|
1688
|
+
_decoder = ConjureDecoder()
|
1689
|
+
return _decoder.decode(_response.json(), authentication_api_Jwks, self._return_none_for_unknown_union_types)
|
1690
|
+
|
1660
1691
|
|
1661
1692
|
authentication_api_AuthenticationServiceV2.__name__ = "AuthenticationServiceV2"
|
1662
1693
|
authentication_api_AuthenticationServiceV2.__qualname__ = "AuthenticationServiceV2"
|
@@ -1683,6 +1714,86 @@ authentication_api_DefaultTimeRangeTypeSetting.__qualname__ = "DefaultTimeRangeT
|
|
1683
1714
|
authentication_api_DefaultTimeRangeTypeSetting.__module__ = "nominal_api.authentication_api"
|
1684
1715
|
|
1685
1716
|
|
1717
|
+
class authentication_api_Jwk(ConjureBeanType):
|
1718
|
+
"""A JSON Web Key (JWK) representation for RSA public keys
|
1719
|
+
"""
|
1720
|
+
|
1721
|
+
@builtins.classmethod
|
1722
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
1723
|
+
return {
|
1724
|
+
'kty': ConjureFieldDefinition('kty', str),
|
1725
|
+
'kid': ConjureFieldDefinition('kid', str),
|
1726
|
+
'use': ConjureFieldDefinition('use', str),
|
1727
|
+
'alg': ConjureFieldDefinition('alg', str),
|
1728
|
+
'n': ConjureFieldDefinition('n', str),
|
1729
|
+
'e': ConjureFieldDefinition('e', str)
|
1730
|
+
}
|
1731
|
+
|
1732
|
+
__slots__: List[str] = ['_kty', '_kid', '_use', '_alg', '_n', '_e']
|
1733
|
+
|
1734
|
+
def __init__(self, alg: str, e: str, kid: str, kty: str, n: str, use: str) -> None:
|
1735
|
+
self._kty = kty
|
1736
|
+
self._kid = kid
|
1737
|
+
self._use = use
|
1738
|
+
self._alg = alg
|
1739
|
+
self._n = n
|
1740
|
+
self._e = e
|
1741
|
+
|
1742
|
+
@builtins.property
|
1743
|
+
def kty(self) -> str:
|
1744
|
+
return self._kty
|
1745
|
+
|
1746
|
+
@builtins.property
|
1747
|
+
def kid(self) -> str:
|
1748
|
+
return self._kid
|
1749
|
+
|
1750
|
+
@builtins.property
|
1751
|
+
def use(self) -> str:
|
1752
|
+
return self._use
|
1753
|
+
|
1754
|
+
@builtins.property
|
1755
|
+
def alg(self) -> str:
|
1756
|
+
return self._alg
|
1757
|
+
|
1758
|
+
@builtins.property
|
1759
|
+
def n(self) -> str:
|
1760
|
+
return self._n
|
1761
|
+
|
1762
|
+
@builtins.property
|
1763
|
+
def e(self) -> str:
|
1764
|
+
return self._e
|
1765
|
+
|
1766
|
+
|
1767
|
+
authentication_api_Jwk.__name__ = "Jwk"
|
1768
|
+
authentication_api_Jwk.__qualname__ = "Jwk"
|
1769
|
+
authentication_api_Jwk.__module__ = "nominal_api.authentication_api"
|
1770
|
+
|
1771
|
+
|
1772
|
+
class authentication_api_Jwks(ConjureBeanType):
|
1773
|
+
"""A JSON Web Key Set (JWKS) containing one or more keys
|
1774
|
+
"""
|
1775
|
+
|
1776
|
+
@builtins.classmethod
|
1777
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
1778
|
+
return {
|
1779
|
+
'keys': ConjureFieldDefinition('keys', List[authentication_api_Jwk])
|
1780
|
+
}
|
1781
|
+
|
1782
|
+
__slots__: List[str] = ['_keys']
|
1783
|
+
|
1784
|
+
def __init__(self, keys: List["authentication_api_Jwk"]) -> None:
|
1785
|
+
self._keys = keys
|
1786
|
+
|
1787
|
+
@builtins.property
|
1788
|
+
def keys(self) -> List["authentication_api_Jwk"]:
|
1789
|
+
return self._keys
|
1790
|
+
|
1791
|
+
|
1792
|
+
authentication_api_Jwks.__name__ = "Jwks"
|
1793
|
+
authentication_api_Jwks.__qualname__ = "Jwks"
|
1794
|
+
authentication_api_Jwks.__module__ = "nominal_api.authentication_api"
|
1795
|
+
|
1796
|
+
|
1686
1797
|
class authentication_api_OrgSettings(ConjureBeanType):
|
1687
1798
|
|
1688
1799
|
@builtins.classmethod
|
@@ -4223,6 +4334,142 @@ datasource_api_DataSourcePrefixNode.__qualname__ = "DataSourcePrefixNode"
|
|
4223
4334
|
datasource_api_DataSourcePrefixNode.__module__ = "nominal_api.datasource_api"
|
4224
4335
|
|
4225
4336
|
|
4337
|
+
class datasource_api_GetAvailableTagKeysRequest(ConjureBeanType):
|
4338
|
+
|
4339
|
+
@builtins.classmethod
|
4340
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
4341
|
+
return {
|
4342
|
+
'filters': ConjureFieldDefinition('filters', datasource_api_TagSearchFilters),
|
4343
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_TagName]),
|
4344
|
+
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
4345
|
+
}
|
4346
|
+
|
4347
|
+
__slots__: List[str] = ['_filters', '_next_page_token', '_page_size']
|
4348
|
+
|
4349
|
+
def __init__(self, filters: "datasource_api_TagSearchFilters", next_page_token: Optional[str] = None, page_size: Optional[int] = None) -> None:
|
4350
|
+
self._filters = filters
|
4351
|
+
self._next_page_token = next_page_token
|
4352
|
+
self._page_size = page_size
|
4353
|
+
|
4354
|
+
@builtins.property
|
4355
|
+
def filters(self) -> "datasource_api_TagSearchFilters":
|
4356
|
+
return self._filters
|
4357
|
+
|
4358
|
+
@builtins.property
|
4359
|
+
def next_page_token(self) -> Optional[str]:
|
4360
|
+
return self._next_page_token
|
4361
|
+
|
4362
|
+
@builtins.property
|
4363
|
+
def page_size(self) -> Optional[int]:
|
4364
|
+
return self._page_size
|
4365
|
+
|
4366
|
+
|
4367
|
+
datasource_api_GetAvailableTagKeysRequest.__name__ = "GetAvailableTagKeysRequest"
|
4368
|
+
datasource_api_GetAvailableTagKeysRequest.__qualname__ = "GetAvailableTagKeysRequest"
|
4369
|
+
datasource_api_GetAvailableTagKeysRequest.__module__ = "nominal_api.datasource_api"
|
4370
|
+
|
4371
|
+
|
4372
|
+
class datasource_api_GetAvailableTagKeysResponse(ConjureBeanType):
|
4373
|
+
|
4374
|
+
@builtins.classmethod
|
4375
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
4376
|
+
return {
|
4377
|
+
'results': ConjureFieldDefinition('results', List[api_TagName]),
|
4378
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_TagName])
|
4379
|
+
}
|
4380
|
+
|
4381
|
+
__slots__: List[str] = ['_results', '_next_page_token']
|
4382
|
+
|
4383
|
+
def __init__(self, results: List[str], next_page_token: Optional[str] = None) -> None:
|
4384
|
+
self._results = results
|
4385
|
+
self._next_page_token = next_page_token
|
4386
|
+
|
4387
|
+
@builtins.property
|
4388
|
+
def results(self) -> List[str]:
|
4389
|
+
return self._results
|
4390
|
+
|
4391
|
+
@builtins.property
|
4392
|
+
def next_page_token(self) -> Optional[str]:
|
4393
|
+
return self._next_page_token
|
4394
|
+
|
4395
|
+
|
4396
|
+
datasource_api_GetAvailableTagKeysResponse.__name__ = "GetAvailableTagKeysResponse"
|
4397
|
+
datasource_api_GetAvailableTagKeysResponse.__qualname__ = "GetAvailableTagKeysResponse"
|
4398
|
+
datasource_api_GetAvailableTagKeysResponse.__module__ = "nominal_api.datasource_api"
|
4399
|
+
|
4400
|
+
|
4401
|
+
class datasource_api_GetAvailableTagValuesRequest(ConjureBeanType):
|
4402
|
+
|
4403
|
+
@builtins.classmethod
|
4404
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
4405
|
+
return {
|
4406
|
+
'filters': ConjureFieldDefinition('filters', datasource_api_TagSearchFilters),
|
4407
|
+
'tag_name': ConjureFieldDefinition('tagName', api_TagName),
|
4408
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_TagValue]),
|
4409
|
+
'page_size': ConjureFieldDefinition('pageSize', OptionalTypeWrapper[int])
|
4410
|
+
}
|
4411
|
+
|
4412
|
+
__slots__: List[str] = ['_filters', '_tag_name', '_next_page_token', '_page_size']
|
4413
|
+
|
4414
|
+
def __init__(self, filters: "datasource_api_TagSearchFilters", tag_name: str, next_page_token: Optional[str] = None, page_size: Optional[int] = None) -> None:
|
4415
|
+
self._filters = filters
|
4416
|
+
self._tag_name = tag_name
|
4417
|
+
self._next_page_token = next_page_token
|
4418
|
+
self._page_size = page_size
|
4419
|
+
|
4420
|
+
@builtins.property
|
4421
|
+
def filters(self) -> "datasource_api_TagSearchFilters":
|
4422
|
+
return self._filters
|
4423
|
+
|
4424
|
+
@builtins.property
|
4425
|
+
def tag_name(self) -> str:
|
4426
|
+
return self._tag_name
|
4427
|
+
|
4428
|
+
@builtins.property
|
4429
|
+
def next_page_token(self) -> Optional[str]:
|
4430
|
+
return self._next_page_token
|
4431
|
+
|
4432
|
+
@builtins.property
|
4433
|
+
def page_size(self) -> Optional[int]:
|
4434
|
+
"""Defaults to 1000. Will throw if larger than 10000.
|
4435
|
+
"""
|
4436
|
+
return self._page_size
|
4437
|
+
|
4438
|
+
|
4439
|
+
datasource_api_GetAvailableTagValuesRequest.__name__ = "GetAvailableTagValuesRequest"
|
4440
|
+
datasource_api_GetAvailableTagValuesRequest.__qualname__ = "GetAvailableTagValuesRequest"
|
4441
|
+
datasource_api_GetAvailableTagValuesRequest.__module__ = "nominal_api.datasource_api"
|
4442
|
+
|
4443
|
+
|
4444
|
+
class datasource_api_GetAvailableTagValuesResponse(ConjureBeanType):
|
4445
|
+
|
4446
|
+
@builtins.classmethod
|
4447
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
4448
|
+
return {
|
4449
|
+
'results': ConjureFieldDefinition('results', List[api_TagValue]),
|
4450
|
+
'next_page_token': ConjureFieldDefinition('nextPageToken', OptionalTypeWrapper[api_TagValue])
|
4451
|
+
}
|
4452
|
+
|
4453
|
+
__slots__: List[str] = ['_results', '_next_page_token']
|
4454
|
+
|
4455
|
+
def __init__(self, results: List[str], next_page_token: Optional[str] = None) -> None:
|
4456
|
+
self._results = results
|
4457
|
+
self._next_page_token = next_page_token
|
4458
|
+
|
4459
|
+
@builtins.property
|
4460
|
+
def results(self) -> List[str]:
|
4461
|
+
return self._results
|
4462
|
+
|
4463
|
+
@builtins.property
|
4464
|
+
def next_page_token(self) -> Optional[str]:
|
4465
|
+
return self._next_page_token
|
4466
|
+
|
4467
|
+
|
4468
|
+
datasource_api_GetAvailableTagValuesResponse.__name__ = "GetAvailableTagValuesResponse"
|
4469
|
+
datasource_api_GetAvailableTagValuesResponse.__qualname__ = "GetAvailableTagValuesResponse"
|
4470
|
+
datasource_api_GetAvailableTagValuesResponse.__module__ = "nominal_api.datasource_api"
|
4471
|
+
|
4472
|
+
|
4226
4473
|
class datasource_api_GetAvailableTagsForChannelRequest(ConjureBeanType):
|
4227
4474
|
|
4228
4475
|
@builtins.classmethod
|
@@ -4749,6 +4996,50 @@ datasource_api_SeriesMetadataRidOrLogicalSeriesRidVisitor.__qualname__ = "Series
|
|
4749
4996
|
datasource_api_SeriesMetadataRidOrLogicalSeriesRidVisitor.__module__ = "nominal_api.datasource_api"
|
4750
4997
|
|
4751
4998
|
|
4999
|
+
class datasource_api_TagSearchFilters(ConjureBeanType):
|
5000
|
+
"""Filters to use when searching for available tag names and values in paged endpoints.
|
5001
|
+
All filters are optional.
|
5002
|
+
"""
|
5003
|
+
|
5004
|
+
@builtins.classmethod
|
5005
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
5006
|
+
return {
|
5007
|
+
'channel': ConjureFieldDefinition('channel', OptionalTypeWrapper[api_Channel]),
|
5008
|
+
'tag_filters': ConjureFieldDefinition('tagFilters', Dict[api_TagName, api_TagValue]),
|
5009
|
+
'range': ConjureFieldDefinition('range', OptionalTypeWrapper[api_Range])
|
5010
|
+
}
|
5011
|
+
|
5012
|
+
__slots__: List[str] = ['_channel', '_tag_filters', '_range']
|
5013
|
+
|
5014
|
+
def __init__(self, tag_filters: Dict[str, str], channel: Optional[str] = None, range: Optional["api_Range"] = None) -> None:
|
5015
|
+
self._channel = channel
|
5016
|
+
self._tag_filters = tag_filters
|
5017
|
+
self._range = range
|
5018
|
+
|
5019
|
+
@builtins.property
|
5020
|
+
def channel(self) -> Optional[str]:
|
5021
|
+
"""Optional, defaults to all channels in datasource.
|
5022
|
+
"""
|
5023
|
+
return self._channel
|
5024
|
+
|
5025
|
+
@builtins.property
|
5026
|
+
def tag_filters(self) -> Dict[str, str]:
|
5027
|
+
"""Optional, defaults to no tag filter.
|
5028
|
+
"""
|
5029
|
+
return self._tag_filters
|
5030
|
+
|
5031
|
+
@builtins.property
|
5032
|
+
def range(self) -> Optional["api_Range"]:
|
5033
|
+
"""Optional, defaults to no range filter.
|
5034
|
+
"""
|
5035
|
+
return self._range
|
5036
|
+
|
5037
|
+
|
5038
|
+
datasource_api_TagSearchFilters.__name__ = "TagSearchFilters"
|
5039
|
+
datasource_api_TagSearchFilters.__qualname__ = "TagSearchFilters"
|
5040
|
+
datasource_api_TagSearchFilters.__module__ = "nominal_api.datasource_api"
|
5041
|
+
|
5042
|
+
|
4752
5043
|
class datasource_logset_LogSetService(Service):
|
4753
5044
|
"""Log sets are a type of datasource which can be used to store log data.
|
4754
5045
|
"""
|
@@ -28171,6 +28462,103 @@ scout_chartdefinition_api_DisconnectedValueVisualizationVisitor.__qualname__ = "
|
|
28171
28462
|
scout_chartdefinition_api_DisconnectedValueVisualizationVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
28172
28463
|
|
28173
28464
|
|
28465
|
+
class scout_chartdefinition_api_EnumArrayCellConfig(ConjureBeanType):
|
28466
|
+
|
28467
|
+
@builtins.classmethod
|
28468
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
28469
|
+
return {
|
28470
|
+
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_EnumArrayVisualisation])
|
28471
|
+
}
|
28472
|
+
|
28473
|
+
__slots__: List[str] = ['_visualisation']
|
28474
|
+
|
28475
|
+
def __init__(self, visualisation: Optional["scout_chartdefinition_api_EnumArrayVisualisation"] = None) -> None:
|
28476
|
+
self._visualisation = visualisation
|
28477
|
+
|
28478
|
+
@builtins.property
|
28479
|
+
def visualisation(self) -> Optional["scout_chartdefinition_api_EnumArrayVisualisation"]:
|
28480
|
+
return self._visualisation
|
28481
|
+
|
28482
|
+
|
28483
|
+
scout_chartdefinition_api_EnumArrayCellConfig.__name__ = "EnumArrayCellConfig"
|
28484
|
+
scout_chartdefinition_api_EnumArrayCellConfig.__qualname__ = "EnumArrayCellConfig"
|
28485
|
+
scout_chartdefinition_api_EnumArrayCellConfig.__module__ = "nominal_api.scout_chartdefinition_api"
|
28486
|
+
|
28487
|
+
|
28488
|
+
class scout_chartdefinition_api_EnumArrayRawVisualisation(ConjureBeanType):
|
28489
|
+
"""A raw enum array visualisation with optional coloring based on enum thresholds.
|
28490
|
+
"""
|
28491
|
+
|
28492
|
+
@builtins.classmethod
|
28493
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
28494
|
+
return {
|
28495
|
+
}
|
28496
|
+
|
28497
|
+
__slots__: List[str] = []
|
28498
|
+
|
28499
|
+
|
28500
|
+
|
28501
|
+
scout_chartdefinition_api_EnumArrayRawVisualisation.__name__ = "EnumArrayRawVisualisation"
|
28502
|
+
scout_chartdefinition_api_EnumArrayRawVisualisation.__qualname__ = "EnumArrayRawVisualisation"
|
28503
|
+
scout_chartdefinition_api_EnumArrayRawVisualisation.__module__ = "nominal_api.scout_chartdefinition_api"
|
28504
|
+
|
28505
|
+
|
28506
|
+
class scout_chartdefinition_api_EnumArrayVisualisation(ConjureUnionType):
|
28507
|
+
_raw: Optional["scout_chartdefinition_api_EnumArrayRawVisualisation"] = None
|
28508
|
+
|
28509
|
+
@builtins.classmethod
|
28510
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
28511
|
+
return {
|
28512
|
+
'raw': ConjureFieldDefinition('raw', scout_chartdefinition_api_EnumArrayRawVisualisation)
|
28513
|
+
}
|
28514
|
+
|
28515
|
+
def __init__(
|
28516
|
+
self,
|
28517
|
+
raw: Optional["scout_chartdefinition_api_EnumArrayRawVisualisation"] = None,
|
28518
|
+
type_of_union: Optional[str] = None
|
28519
|
+
) -> None:
|
28520
|
+
if type_of_union is None:
|
28521
|
+
if (raw is not None) != 1:
|
28522
|
+
raise ValueError('a union must contain a single member')
|
28523
|
+
|
28524
|
+
if raw is not None:
|
28525
|
+
self._raw = raw
|
28526
|
+
self._type = 'raw'
|
28527
|
+
|
28528
|
+
elif type_of_union == 'raw':
|
28529
|
+
if raw is None:
|
28530
|
+
raise ValueError('a union value must not be None')
|
28531
|
+
self._raw = raw
|
28532
|
+
self._type = 'raw'
|
28533
|
+
|
28534
|
+
@builtins.property
|
28535
|
+
def raw(self) -> Optional["scout_chartdefinition_api_EnumArrayRawVisualisation"]:
|
28536
|
+
return self._raw
|
28537
|
+
|
28538
|
+
def accept(self, visitor) -> Any:
|
28539
|
+
if not isinstance(visitor, scout_chartdefinition_api_EnumArrayVisualisationVisitor):
|
28540
|
+
raise ValueError('{} is not an instance of scout_chartdefinition_api_EnumArrayVisualisationVisitor'.format(visitor.__class__.__name__))
|
28541
|
+
if self._type == 'raw' and self.raw is not None:
|
28542
|
+
return visitor._raw(self.raw)
|
28543
|
+
|
28544
|
+
|
28545
|
+
scout_chartdefinition_api_EnumArrayVisualisation.__name__ = "EnumArrayVisualisation"
|
28546
|
+
scout_chartdefinition_api_EnumArrayVisualisation.__qualname__ = "EnumArrayVisualisation"
|
28547
|
+
scout_chartdefinition_api_EnumArrayVisualisation.__module__ = "nominal_api.scout_chartdefinition_api"
|
28548
|
+
|
28549
|
+
|
28550
|
+
class scout_chartdefinition_api_EnumArrayVisualisationVisitor:
|
28551
|
+
|
28552
|
+
@abstractmethod
|
28553
|
+
def _raw(self, raw: "scout_chartdefinition_api_EnumArrayRawVisualisation") -> Any:
|
28554
|
+
pass
|
28555
|
+
|
28556
|
+
|
28557
|
+
scout_chartdefinition_api_EnumArrayVisualisationVisitor.__name__ = "EnumArrayVisualisationVisitor"
|
28558
|
+
scout_chartdefinition_api_EnumArrayVisualisationVisitor.__qualname__ = "EnumArrayVisualisationVisitor"
|
28559
|
+
scout_chartdefinition_api_EnumArrayVisualisationVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
28560
|
+
|
28561
|
+
|
28174
28562
|
class scout_chartdefinition_api_EnumCellConfig(ConjureBeanType):
|
28175
28563
|
|
28176
28564
|
@builtins.classmethod
|
@@ -30342,6 +30730,109 @@ scout_chartdefinition_api_NumberFormatDisplayOption.__qualname__ = "NumberFormat
|
|
30342
30730
|
scout_chartdefinition_api_NumberFormatDisplayOption.__module__ = "nominal_api.scout_chartdefinition_api"
|
30343
30731
|
|
30344
30732
|
|
30733
|
+
class scout_chartdefinition_api_NumericArrayCellConfig(ConjureBeanType):
|
30734
|
+
|
30735
|
+
@builtins.classmethod
|
30736
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
30737
|
+
return {
|
30738
|
+
'visualisation': ConjureFieldDefinition('visualisation', OptionalTypeWrapper[scout_chartdefinition_api_NumericArrayVisualisation]),
|
30739
|
+
'number_format': ConjureFieldDefinition('numberFormat', OptionalTypeWrapper[scout_chartdefinition_api_NumberFormat])
|
30740
|
+
}
|
30741
|
+
|
30742
|
+
__slots__: List[str] = ['_visualisation', '_number_format']
|
30743
|
+
|
30744
|
+
def __init__(self, number_format: Optional["scout_chartdefinition_api_NumberFormat"] = None, visualisation: Optional["scout_chartdefinition_api_NumericArrayVisualisation"] = None) -> None:
|
30745
|
+
self._visualisation = visualisation
|
30746
|
+
self._number_format = number_format
|
30747
|
+
|
30748
|
+
@builtins.property
|
30749
|
+
def visualisation(self) -> Optional["scout_chartdefinition_api_NumericArrayVisualisation"]:
|
30750
|
+
return self._visualisation
|
30751
|
+
|
30752
|
+
@builtins.property
|
30753
|
+
def number_format(self) -> Optional["scout_chartdefinition_api_NumberFormat"]:
|
30754
|
+
return self._number_format
|
30755
|
+
|
30756
|
+
|
30757
|
+
scout_chartdefinition_api_NumericArrayCellConfig.__name__ = "NumericArrayCellConfig"
|
30758
|
+
scout_chartdefinition_api_NumericArrayCellConfig.__qualname__ = "NumericArrayCellConfig"
|
30759
|
+
scout_chartdefinition_api_NumericArrayCellConfig.__module__ = "nominal_api.scout_chartdefinition_api"
|
30760
|
+
|
30761
|
+
|
30762
|
+
class scout_chartdefinition_api_NumericArrayRawVisualisation(ConjureBeanType):
|
30763
|
+
"""A raw numeric array visualisation with optional coloring based on numeric thresholds.
|
30764
|
+
"""
|
30765
|
+
|
30766
|
+
@builtins.classmethod
|
30767
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
30768
|
+
return {
|
30769
|
+
}
|
30770
|
+
|
30771
|
+
__slots__: List[str] = []
|
30772
|
+
|
30773
|
+
|
30774
|
+
|
30775
|
+
scout_chartdefinition_api_NumericArrayRawVisualisation.__name__ = "NumericArrayRawVisualisation"
|
30776
|
+
scout_chartdefinition_api_NumericArrayRawVisualisation.__qualname__ = "NumericArrayRawVisualisation"
|
30777
|
+
scout_chartdefinition_api_NumericArrayRawVisualisation.__module__ = "nominal_api.scout_chartdefinition_api"
|
30778
|
+
|
30779
|
+
|
30780
|
+
class scout_chartdefinition_api_NumericArrayVisualisation(ConjureUnionType):
|
30781
|
+
_raw: Optional["scout_chartdefinition_api_NumericArrayRawVisualisation"] = None
|
30782
|
+
|
30783
|
+
@builtins.classmethod
|
30784
|
+
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
30785
|
+
return {
|
30786
|
+
'raw': ConjureFieldDefinition('raw', scout_chartdefinition_api_NumericArrayRawVisualisation)
|
30787
|
+
}
|
30788
|
+
|
30789
|
+
def __init__(
|
30790
|
+
self,
|
30791
|
+
raw: Optional["scout_chartdefinition_api_NumericArrayRawVisualisation"] = None,
|
30792
|
+
type_of_union: Optional[str] = None
|
30793
|
+
) -> None:
|
30794
|
+
if type_of_union is None:
|
30795
|
+
if (raw is not None) != 1:
|
30796
|
+
raise ValueError('a union must contain a single member')
|
30797
|
+
|
30798
|
+
if raw is not None:
|
30799
|
+
self._raw = raw
|
30800
|
+
self._type = 'raw'
|
30801
|
+
|
30802
|
+
elif type_of_union == 'raw':
|
30803
|
+
if raw is None:
|
30804
|
+
raise ValueError('a union value must not be None')
|
30805
|
+
self._raw = raw
|
30806
|
+
self._type = 'raw'
|
30807
|
+
|
30808
|
+
@builtins.property
|
30809
|
+
def raw(self) -> Optional["scout_chartdefinition_api_NumericArrayRawVisualisation"]:
|
30810
|
+
return self._raw
|
30811
|
+
|
30812
|
+
def accept(self, visitor) -> Any:
|
30813
|
+
if not isinstance(visitor, scout_chartdefinition_api_NumericArrayVisualisationVisitor):
|
30814
|
+
raise ValueError('{} is not an instance of scout_chartdefinition_api_NumericArrayVisualisationVisitor'.format(visitor.__class__.__name__))
|
30815
|
+
if self._type == 'raw' and self.raw is not None:
|
30816
|
+
return visitor._raw(self.raw)
|
30817
|
+
|
30818
|
+
|
30819
|
+
scout_chartdefinition_api_NumericArrayVisualisation.__name__ = "NumericArrayVisualisation"
|
30820
|
+
scout_chartdefinition_api_NumericArrayVisualisation.__qualname__ = "NumericArrayVisualisation"
|
30821
|
+
scout_chartdefinition_api_NumericArrayVisualisation.__module__ = "nominal_api.scout_chartdefinition_api"
|
30822
|
+
|
30823
|
+
|
30824
|
+
class scout_chartdefinition_api_NumericArrayVisualisationVisitor:
|
30825
|
+
|
30826
|
+
@abstractmethod
|
30827
|
+
def _raw(self, raw: "scout_chartdefinition_api_NumericArrayRawVisualisation") -> Any:
|
30828
|
+
pass
|
30829
|
+
|
30830
|
+
|
30831
|
+
scout_chartdefinition_api_NumericArrayVisualisationVisitor.__name__ = "NumericArrayVisualisationVisitor"
|
30832
|
+
scout_chartdefinition_api_NumericArrayVisualisationVisitor.__qualname__ = "NumericArrayVisualisationVisitor"
|
30833
|
+
scout_chartdefinition_api_NumericArrayVisualisationVisitor.__module__ = "nominal_api.scout_chartdefinition_api"
|
30834
|
+
|
30835
|
+
|
30345
30836
|
class scout_chartdefinition_api_NumericBarGaugeVisualisation(ConjureBeanType):
|
30346
30837
|
"""The settings for a bar gauge visualisation.
|
30347
30838
|
"""
|
@@ -32349,6 +32840,8 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32349
32840
|
_range: Optional["scout_chartdefinition_api_RangeCellConfig"] = None
|
32350
32841
|
_bit_flag_map: Optional["scout_chartdefinition_api_BitFlagMapCellConfig"] = None
|
32351
32842
|
_staleness: Optional["scout_chartdefinition_api_StalenessCellConfig"] = None
|
32843
|
+
_numeric_array: Optional["scout_chartdefinition_api_NumericArrayCellConfig"] = None
|
32844
|
+
_enum_array: Optional["scout_chartdefinition_api_EnumArrayCellConfig"] = None
|
32352
32845
|
|
32353
32846
|
@builtins.classmethod
|
32354
32847
|
def _options(cls) -> Dict[str, ConjureFieldDefinition]:
|
@@ -32357,7 +32850,9 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32357
32850
|
'enum': ConjureFieldDefinition('enum', scout_chartdefinition_api_EnumCellConfig),
|
32358
32851
|
'range': ConjureFieldDefinition('range', scout_chartdefinition_api_RangeCellConfig),
|
32359
32852
|
'bit_flag_map': ConjureFieldDefinition('bitFlagMap', scout_chartdefinition_api_BitFlagMapCellConfig),
|
32360
|
-
'staleness': ConjureFieldDefinition('staleness', scout_chartdefinition_api_StalenessCellConfig)
|
32853
|
+
'staleness': ConjureFieldDefinition('staleness', scout_chartdefinition_api_StalenessCellConfig),
|
32854
|
+
'numeric_array': ConjureFieldDefinition('numericArray', scout_chartdefinition_api_NumericArrayCellConfig),
|
32855
|
+
'enum_array': ConjureFieldDefinition('enumArray', scout_chartdefinition_api_EnumArrayCellConfig)
|
32361
32856
|
}
|
32362
32857
|
|
32363
32858
|
def __init__(
|
@@ -32367,10 +32862,12 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32367
32862
|
range: Optional["scout_chartdefinition_api_RangeCellConfig"] = None,
|
32368
32863
|
bit_flag_map: Optional["scout_chartdefinition_api_BitFlagMapCellConfig"] = None,
|
32369
32864
|
staleness: Optional["scout_chartdefinition_api_StalenessCellConfig"] = None,
|
32865
|
+
numeric_array: Optional["scout_chartdefinition_api_NumericArrayCellConfig"] = None,
|
32866
|
+
enum_array: Optional["scout_chartdefinition_api_EnumArrayCellConfig"] = None,
|
32370
32867
|
type_of_union: Optional[str] = None
|
32371
32868
|
) -> None:
|
32372
32869
|
if type_of_union is None:
|
32373
|
-
if (numeric is not None) + (enum is not None) + (range is not None) + (bit_flag_map is not None) + (staleness is not None) != 1:
|
32870
|
+
if (numeric is not None) + (enum is not None) + (range is not None) + (bit_flag_map is not None) + (staleness is not None) + (numeric_array is not None) + (enum_array is not None) != 1:
|
32374
32871
|
raise ValueError('a union must contain a single member')
|
32375
32872
|
|
32376
32873
|
if numeric is not None:
|
@@ -32388,6 +32885,12 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32388
32885
|
if staleness is not None:
|
32389
32886
|
self._staleness = staleness
|
32390
32887
|
self._type = 'staleness'
|
32888
|
+
if numeric_array is not None:
|
32889
|
+
self._numeric_array = numeric_array
|
32890
|
+
self._type = 'numericArray'
|
32891
|
+
if enum_array is not None:
|
32892
|
+
self._enum_array = enum_array
|
32893
|
+
self._type = 'enumArray'
|
32391
32894
|
|
32392
32895
|
elif type_of_union == 'numeric':
|
32393
32896
|
if numeric is None:
|
@@ -32414,6 +32917,16 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32414
32917
|
raise ValueError('a union value must not be None')
|
32415
32918
|
self._staleness = staleness
|
32416
32919
|
self._type = 'staleness'
|
32920
|
+
elif type_of_union == 'numericArray':
|
32921
|
+
if numeric_array is None:
|
32922
|
+
raise ValueError('a union value must not be None')
|
32923
|
+
self._numeric_array = numeric_array
|
32924
|
+
self._type = 'numericArray'
|
32925
|
+
elif type_of_union == 'enumArray':
|
32926
|
+
if enum_array is None:
|
32927
|
+
raise ValueError('a union value must not be None')
|
32928
|
+
self._enum_array = enum_array
|
32929
|
+
self._type = 'enumArray'
|
32417
32930
|
|
32418
32931
|
@builtins.property
|
32419
32932
|
def numeric(self) -> Optional["scout_chartdefinition_api_NumericCellConfig"]:
|
@@ -32435,6 +32948,14 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32435
32948
|
def staleness(self) -> Optional["scout_chartdefinition_api_StalenessCellConfig"]:
|
32436
32949
|
return self._staleness
|
32437
32950
|
|
32951
|
+
@builtins.property
|
32952
|
+
def numeric_array(self) -> Optional["scout_chartdefinition_api_NumericArrayCellConfig"]:
|
32953
|
+
return self._numeric_array
|
32954
|
+
|
32955
|
+
@builtins.property
|
32956
|
+
def enum_array(self) -> Optional["scout_chartdefinition_api_EnumArrayCellConfig"]:
|
32957
|
+
return self._enum_array
|
32958
|
+
|
32438
32959
|
def accept(self, visitor) -> Any:
|
32439
32960
|
if not isinstance(visitor, scout_chartdefinition_api_ValueTableCellConfigVisitor):
|
32440
32961
|
raise ValueError('{} is not an instance of scout_chartdefinition_api_ValueTableCellConfigVisitor'.format(visitor.__class__.__name__))
|
@@ -32448,6 +32969,10 @@ class scout_chartdefinition_api_ValueTableCellConfig(ConjureUnionType):
|
|
32448
32969
|
return visitor._bit_flag_map(self.bit_flag_map)
|
32449
32970
|
if self._type == 'staleness' and self.staleness is not None:
|
32450
32971
|
return visitor._staleness(self.staleness)
|
32972
|
+
if self._type == 'numericArray' and self.numeric_array is not None:
|
32973
|
+
return visitor._numeric_array(self.numeric_array)
|
32974
|
+
if self._type == 'enumArray' and self.enum_array is not None:
|
32975
|
+
return visitor._enum_array(self.enum_array)
|
32451
32976
|
|
32452
32977
|
|
32453
32978
|
scout_chartdefinition_api_ValueTableCellConfig.__name__ = "ValueTableCellConfig"
|
@@ -32477,6 +33002,14 @@ class scout_chartdefinition_api_ValueTableCellConfigVisitor:
|
|
32477
33002
|
def _staleness(self, staleness: "scout_chartdefinition_api_StalenessCellConfig") -> Any:
|
32478
33003
|
pass
|
32479
33004
|
|
33005
|
+
@abstractmethod
|
33006
|
+
def _numeric_array(self, numeric_array: "scout_chartdefinition_api_NumericArrayCellConfig") -> Any:
|
33007
|
+
pass
|
33008
|
+
|
33009
|
+
@abstractmethod
|
33010
|
+
def _enum_array(self, enum_array: "scout_chartdefinition_api_EnumArrayCellConfig") -> Any:
|
33011
|
+
pass
|
33012
|
+
|
32480
33013
|
|
32481
33014
|
scout_chartdefinition_api_ValueTableCellConfigVisitor.__name__ = "ValueTableCellConfigVisitor"
|
32482
33015
|
scout_chartdefinition_api_ValueTableCellConfigVisitor.__qualname__ = "ValueTableCellConfigVisitor"
|
@@ -32973,16 +33506,20 @@ for a row, for a column, or for the entire grid.
|
|
32973
33506
|
'range': ConjureFieldDefinition('range', OptionalTypeWrapper[scout_chartdefinition_api_RangeCellConfig]),
|
32974
33507
|
'enum': ConjureFieldDefinition('enum', OptionalTypeWrapper[scout_chartdefinition_api_EnumCellConfig]),
|
32975
33508
|
'numeric': ConjureFieldDefinition('numeric', OptionalTypeWrapper[scout_chartdefinition_api_NumericCellConfig]),
|
32976
|
-
'staleness': ConjureFieldDefinition('staleness', OptionalTypeWrapper[scout_chartdefinition_api_StalenessCellConfig])
|
33509
|
+
'staleness': ConjureFieldDefinition('staleness', OptionalTypeWrapper[scout_chartdefinition_api_StalenessCellConfig]),
|
33510
|
+
'numeric_array': ConjureFieldDefinition('numericArray', OptionalTypeWrapper[scout_chartdefinition_api_NumericArrayCellConfig]),
|
33511
|
+
'enum_array': ConjureFieldDefinition('enumArray', OptionalTypeWrapper[scout_chartdefinition_api_EnumArrayCellConfig])
|
32977
33512
|
}
|
32978
33513
|
|
32979
|
-
__slots__: List[str] = ['_range', '_enum', '_numeric', '_staleness']
|
33514
|
+
__slots__: List[str] = ['_range', '_enum', '_numeric', '_staleness', '_numeric_array', '_enum_array']
|
32980
33515
|
|
32981
|
-
def __init__(self, enum: Optional["scout_chartdefinition_api_EnumCellConfig"] = None, numeric: Optional["scout_chartdefinition_api_NumericCellConfig"] = None, range: Optional["scout_chartdefinition_api_RangeCellConfig"] = None, staleness: Optional["scout_chartdefinition_api_StalenessCellConfig"] = None) -> None:
|
33516
|
+
def __init__(self, enum: Optional["scout_chartdefinition_api_EnumCellConfig"] = None, enum_array: Optional["scout_chartdefinition_api_EnumArrayCellConfig"] = None, numeric: Optional["scout_chartdefinition_api_NumericCellConfig"] = None, numeric_array: Optional["scout_chartdefinition_api_NumericArrayCellConfig"] = None, range: Optional["scout_chartdefinition_api_RangeCellConfig"] = None, staleness: Optional["scout_chartdefinition_api_StalenessCellConfig"] = None) -> None:
|
32982
33517
|
self._range = range
|
32983
33518
|
self._enum = enum
|
32984
33519
|
self._numeric = numeric
|
32985
33520
|
self._staleness = staleness
|
33521
|
+
self._numeric_array = numeric_array
|
33522
|
+
self._enum_array = enum_array
|
32986
33523
|
|
32987
33524
|
@builtins.property
|
32988
33525
|
def range(self) -> Optional["scout_chartdefinition_api_RangeCellConfig"]:
|
@@ -33000,6 +33537,14 @@ for a row, for a column, or for the entire grid.
|
|
33000
33537
|
def staleness(self) -> Optional["scout_chartdefinition_api_StalenessCellConfig"]:
|
33001
33538
|
return self._staleness
|
33002
33539
|
|
33540
|
+
@builtins.property
|
33541
|
+
def numeric_array(self) -> Optional["scout_chartdefinition_api_NumericArrayCellConfig"]:
|
33542
|
+
return self._numeric_array
|
33543
|
+
|
33544
|
+
@builtins.property
|
33545
|
+
def enum_array(self) -> Optional["scout_chartdefinition_api_EnumArrayCellConfig"]:
|
33546
|
+
return self._enum_array
|
33547
|
+
|
33003
33548
|
|
33004
33549
|
scout_chartdefinition_api_ValueTableMultiCellConfig.__name__ = "ValueTableMultiCellConfig"
|
33005
33550
|
scout_chartdefinition_api_ValueTableMultiCellConfig.__qualname__ = "ValueTableMultiCellConfig"
|
@@ -71510,6 +72055,75 @@ specified, as all tag values are returned.
|
|
71510
72055
|
_decoder = ConjureDecoder()
|
71511
72056
|
return _decoder.decode(_response.json(), Dict[api_TagName, List[api_TagValue]], self._return_none_for_unknown_union_types)
|
71512
72057
|
|
72058
|
+
def get_available_tag_keys(self, auth_header: str, data_source_rid: str, request: "datasource_api_GetAvailableTagKeysRequest") -> "datasource_api_GetAvailableTagKeysResponse":
|
72059
|
+
"""Paged endpoint returning the set of all tag keys that are available for the specified channel given an
|
72060
|
+
initial set of filters.
|
72061
|
+
If any tag filters are supplied, their tag keys are omitted from the result.
|
72062
|
+
"""
|
72063
|
+
_conjure_encoder = ConjureEncoder()
|
72064
|
+
|
72065
|
+
_headers: Dict[str, Any] = {
|
72066
|
+
'Accept': 'application/json',
|
72067
|
+
'Content-Type': 'application/json',
|
72068
|
+
'Authorization': auth_header,
|
72069
|
+
}
|
72070
|
+
|
72071
|
+
_params: Dict[str, Any] = {
|
72072
|
+
}
|
72073
|
+
|
72074
|
+
_path_params: Dict[str, str] = {
|
72075
|
+
'dataSourceRid': quote(str(_conjure_encoder.default(data_source_rid)), safe=''),
|
72076
|
+
}
|
72077
|
+
|
72078
|
+
_json: Any = _conjure_encoder.default(request)
|
72079
|
+
|
72080
|
+
_path = '/data-source/v1/data-sources/{dataSourceRid}/get-tag-keys'
|
72081
|
+
_path = _path.format(**_path_params)
|
72082
|
+
|
72083
|
+
_response: Response = self._request(
|
72084
|
+
'POST',
|
72085
|
+
self._uri + _path,
|
72086
|
+
params=_params,
|
72087
|
+
headers=_headers,
|
72088
|
+
json=_json)
|
72089
|
+
|
72090
|
+
_decoder = ConjureDecoder()
|
72091
|
+
return _decoder.decode(_response.json(), datasource_api_GetAvailableTagKeysResponse, self._return_none_for_unknown_union_types)
|
72092
|
+
|
72093
|
+
def get_available_tag_values(self, auth_header: str, data_source_rid: str, request: "datasource_api_GetAvailableTagValuesRequest") -> "datasource_api_GetAvailableTagValuesResponse":
|
72094
|
+
"""Paged endpoint returning the set of all tag values that are available for the specified tag and datasource
|
72095
|
+
given an initial set of filters.
|
72096
|
+
"""
|
72097
|
+
_conjure_encoder = ConjureEncoder()
|
72098
|
+
|
72099
|
+
_headers: Dict[str, Any] = {
|
72100
|
+
'Accept': 'application/json',
|
72101
|
+
'Content-Type': 'application/json',
|
72102
|
+
'Authorization': auth_header,
|
72103
|
+
}
|
72104
|
+
|
72105
|
+
_params: Dict[str, Any] = {
|
72106
|
+
}
|
72107
|
+
|
72108
|
+
_path_params: Dict[str, str] = {
|
72109
|
+
'dataSourceRid': quote(str(_conjure_encoder.default(data_source_rid)), safe=''),
|
72110
|
+
}
|
72111
|
+
|
72112
|
+
_json: Any = _conjure_encoder.default(request)
|
72113
|
+
|
72114
|
+
_path = '/data-source/v1/data-sources/{dataSourceRid}/get-tag-values'
|
72115
|
+
_path = _path.format(**_path_params)
|
72116
|
+
|
72117
|
+
_response: Response = self._request(
|
72118
|
+
'POST',
|
72119
|
+
self._uri + _path,
|
72120
|
+
params=_params,
|
72121
|
+
headers=_headers,
|
72122
|
+
json=_json)
|
72123
|
+
|
72124
|
+
_decoder = ConjureDecoder()
|
72125
|
+
return _decoder.decode(_response.json(), datasource_api_GetAvailableTagValuesResponse, self._return_none_for_unknown_union_types)
|
72126
|
+
|
71513
72127
|
|
71514
72128
|
scout_datasource_DataSourceService.__name__ = "DataSourceService"
|
71515
72129
|
scout_datasource_DataSourceService.__qualname__ = "DataSourceService"
|
@@ -3,6 +3,8 @@ from .._impl import (
|
|
3
3
|
authentication_api_AppearanceSetting as AppearanceSetting,
|
4
4
|
authentication_api_AuthenticationServiceV2 as AuthenticationServiceV2,
|
5
5
|
authentication_api_DefaultTimeRangeTypeSetting as DefaultTimeRangeTypeSetting,
|
6
|
+
authentication_api_Jwk as Jwk,
|
7
|
+
authentication_api_Jwks as Jwks,
|
6
8
|
authentication_api_OrgRid as OrgRid,
|
7
9
|
authentication_api_OrgSettings as OrgSettings,
|
8
10
|
authentication_api_SearchUsersQuery as SearchUsersQuery,
|
@@ -21,6 +23,8 @@ from .._impl import (
|
|
21
23
|
__all__ = [
|
22
24
|
'AppearanceSetting',
|
23
25
|
'DefaultTimeRangeTypeSetting',
|
26
|
+
'Jwk',
|
27
|
+
'Jwks',
|
24
28
|
'OrgRid',
|
25
29
|
'OrgSettings',
|
26
30
|
'SearchUsersQuery',
|
@@ -13,6 +13,10 @@ from .._impl import (
|
|
13
13
|
datasource_api_ChannelWithTagFilters as ChannelWithTagFilters,
|
14
14
|
datasource_api_DataScopeFilters as DataScopeFilters,
|
15
15
|
datasource_api_DataSourcePrefixNode as DataSourcePrefixNode,
|
16
|
+
datasource_api_GetAvailableTagKeysRequest as GetAvailableTagKeysRequest,
|
17
|
+
datasource_api_GetAvailableTagKeysResponse as GetAvailableTagKeysResponse,
|
18
|
+
datasource_api_GetAvailableTagValuesRequest as GetAvailableTagValuesRequest,
|
19
|
+
datasource_api_GetAvailableTagValuesResponse as GetAvailableTagValuesResponse,
|
16
20
|
datasource_api_GetAvailableTagsForChannelRequest as GetAvailableTagsForChannelRequest,
|
17
21
|
datasource_api_GetAvailableTagsForChannelResponse as GetAvailableTagsForChannelResponse,
|
18
22
|
datasource_api_GetDataScopeBoundsRequest as GetDataScopeBoundsRequest,
|
@@ -27,6 +31,7 @@ from .._impl import (
|
|
27
31
|
datasource_api_SearchHierarchicalChannelsResponse as SearchHierarchicalChannelsResponse,
|
28
32
|
datasource_api_SeriesMetadataRidOrLogicalSeriesRid as SeriesMetadataRidOrLogicalSeriesRid,
|
29
33
|
datasource_api_SeriesMetadataRidOrLogicalSeriesRidVisitor as SeriesMetadataRidOrLogicalSeriesRidVisitor,
|
34
|
+
datasource_api_TagSearchFilters as TagSearchFilters,
|
30
35
|
)
|
31
36
|
|
32
37
|
__all__ = [
|
@@ -43,6 +48,10 @@ __all__ = [
|
|
43
48
|
'ChannelWithTagFilters',
|
44
49
|
'DataScopeFilters',
|
45
50
|
'DataSourcePrefixNode',
|
51
|
+
'GetAvailableTagKeysRequest',
|
52
|
+
'GetAvailableTagKeysResponse',
|
53
|
+
'GetAvailableTagValuesRequest',
|
54
|
+
'GetAvailableTagValuesResponse',
|
46
55
|
'GetAvailableTagsForChannelRequest',
|
47
56
|
'GetAvailableTagsForChannelResponse',
|
48
57
|
'GetDataScopeBoundsRequest',
|
@@ -57,5 +66,6 @@ __all__ = [
|
|
57
66
|
'SearchHierarchicalChannelsResponse',
|
58
67
|
'SeriesMetadataRidOrLogicalSeriesRid',
|
59
68
|
'SeriesMetadataRidOrLogicalSeriesRidVisitor',
|
69
|
+
'TagSearchFilters',
|
60
70
|
]
|
61
71
|
|
@@ -28,6 +28,10 @@ from .._impl import (
|
|
28
28
|
scout_chartdefinition_api_DefaultFill as DefaultFill,
|
29
29
|
scout_chartdefinition_api_DisconnectedValueVisualization as DisconnectedValueVisualization,
|
30
30
|
scout_chartdefinition_api_DisconnectedValueVisualizationVisitor as DisconnectedValueVisualizationVisitor,
|
31
|
+
scout_chartdefinition_api_EnumArrayCellConfig as EnumArrayCellConfig,
|
32
|
+
scout_chartdefinition_api_EnumArrayRawVisualisation as EnumArrayRawVisualisation,
|
33
|
+
scout_chartdefinition_api_EnumArrayVisualisation as EnumArrayVisualisation,
|
34
|
+
scout_chartdefinition_api_EnumArrayVisualisationVisitor as EnumArrayVisualisationVisitor,
|
31
35
|
scout_chartdefinition_api_EnumCellConfig as EnumCellConfig,
|
32
36
|
scout_chartdefinition_api_EnumGroupBySort as EnumGroupBySort,
|
33
37
|
scout_chartdefinition_api_EnumGroupBySortCustom as EnumGroupBySortCustom,
|
@@ -98,6 +102,10 @@ from .._impl import (
|
|
98
102
|
scout_chartdefinition_api_NeverConnectDisconnectedValues as NeverConnectDisconnectedValues,
|
99
103
|
scout_chartdefinition_api_NumberFormat as NumberFormat,
|
100
104
|
scout_chartdefinition_api_NumberFormatDisplayOption as NumberFormatDisplayOption,
|
105
|
+
scout_chartdefinition_api_NumericArrayCellConfig as NumericArrayCellConfig,
|
106
|
+
scout_chartdefinition_api_NumericArrayRawVisualisation as NumericArrayRawVisualisation,
|
107
|
+
scout_chartdefinition_api_NumericArrayVisualisation as NumericArrayVisualisation,
|
108
|
+
scout_chartdefinition_api_NumericArrayVisualisationVisitor as NumericArrayVisualisationVisitor,
|
101
109
|
scout_chartdefinition_api_NumericBarGaugeVisualisation as NumericBarGaugeVisualisation,
|
102
110
|
scout_chartdefinition_api_NumericBarVisualisationV2 as NumericBarVisualisationV2,
|
103
111
|
scout_chartdefinition_api_NumericCellConfig as NumericCellConfig,
|
@@ -214,6 +222,10 @@ __all__ = [
|
|
214
222
|
'DefaultFill',
|
215
223
|
'DisconnectedValueVisualization',
|
216
224
|
'DisconnectedValueVisualizationVisitor',
|
225
|
+
'EnumArrayCellConfig',
|
226
|
+
'EnumArrayRawVisualisation',
|
227
|
+
'EnumArrayVisualisation',
|
228
|
+
'EnumArrayVisualisationVisitor',
|
217
229
|
'EnumCellConfig',
|
218
230
|
'EnumGroupBySort',
|
219
231
|
'EnumGroupBySortVisitor',
|
@@ -284,6 +296,10 @@ __all__ = [
|
|
284
296
|
'NeverConnectDisconnectedValues',
|
285
297
|
'NumberFormat',
|
286
298
|
'NumberFormatDisplayOption',
|
299
|
+
'NumericArrayCellConfig',
|
300
|
+
'NumericArrayRawVisualisation',
|
301
|
+
'NumericArrayVisualisation',
|
302
|
+
'NumericArrayVisualisationVisitor',
|
287
303
|
'NumericBarGaugeVisualisation',
|
288
304
|
'NumericBarVisualisationV2',
|
289
305
|
'NumericCellConfig',
|
@@ -1,16 +1,16 @@
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
2
|
-
nominal_api/_impl.py,sha256=
|
1
|
+
nominal_api/__init__.py,sha256=URxNSgg7kuKJDHFssd24vhdYHOivBDqtzNk87AXrZyI,2109
|
2
|
+
nominal_api/_impl.py,sha256=9kmMquDzI6cVYGYfjNVJBDrLO6MW3FJMQ-GmBkSyrew,3841219
|
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
|
6
6
|
nominal_api/api_rids/__init__.py,sha256=aSOwY2GcEN7dvhnHUcTwpMRA7QGkySIkdBvG-R7VZ5M,1357
|
7
7
|
nominal_api/attachments_api/__init__.py,sha256=OYiF9nptXlr47pkina5cOCIJbD4RKSOeAyCNj3kZmbk,901
|
8
|
-
nominal_api/authentication_api/__init__.py,sha256=
|
8
|
+
nominal_api/authentication_api/__init__.py,sha256=ZM1X6UcxHga4u8Nw8PBM6ZcMie-7kl4AXMj_D8WnsPs,1465
|
9
9
|
nominal_api/authorization/__init__.py,sha256=76PqMnOKri5j9wb9XtT_OwBJox9qia6VyloR_-urasM,1529
|
10
10
|
nominal_api/comments_api/__init__.py,sha256=npfzjAE2xkJ7NY8hPzs2AmBNJsm3g8xASjRV9ndPEfU,1165
|
11
11
|
nominal_api/connect_download/__init__.py,sha256=GSnm2ukeKKwci_7Wg-NehwfBLqBwC9H0__aBXRSmChs,114
|
12
12
|
nominal_api/datasource/__init__.py,sha256=PgLYxRrPIhTLglNtH1NBbzBVBE-DE9td5wAvJTHiOlM,191
|
13
|
-
nominal_api/datasource_api/__init__.py,sha256=
|
13
|
+
nominal_api/datasource_api/__init__.py,sha256=75g1qHgKGFMR87uXPvyowgKuLua62v3NPTB76OH4qwI,3655
|
14
14
|
nominal_api/datasource_logset/__init__.py,sha256=SGt5PmLgYpLfhcoESk69aVufuZugg8dp6XBHOZ480IA,130
|
15
15
|
nominal_api/datasource_logset_api/__init__.py,sha256=QydoWxNXCVgIV8HWnZAKA77N5G6mTSqSzGkj36tPe4U,1376
|
16
16
|
nominal_api/datasource_pagination_api/__init__.py,sha256=WeENj6yqi2XfInU8YgjFwqwiR8L0jDHCBZfucJ0ahyY,283
|
@@ -29,7 +29,7 @@ nominal_api/scout_assets/__init__.py,sha256=1ZyiolDjhxnrhyeUxW_KyeQ_q-6stlqd1I2d
|
|
29
29
|
nominal_api/scout_catalog/__init__.py,sha256=1EnyVFs0chW7ne4yECCPvNC_Lzb9SIGtYlb2RzSc0KE,4988
|
30
30
|
nominal_api/scout_channelvariables_api/__init__.py,sha256=Wahkyy-m3gEcaRFYU5ZV3beW-W4OeYnOs9Y4eirQO38,1033
|
31
31
|
nominal_api/scout_chart_api/__init__.py,sha256=hkNhoFOmPYnLFeINiQXqya78wbAsx65DoKU0TpUwhQo,261
|
32
|
-
nominal_api/scout_chartdefinition_api/__init__.py,sha256=
|
32
|
+
nominal_api/scout_chartdefinition_api/__init__.py,sha256=O6rcTfj35-vyWMoyyEHUtENWvO32bkKO7jiJoPrdCWY,20120
|
33
33
|
nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHrNDiFdqaWaQeGb6TQxuox-1c,4892
|
34
34
|
nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
|
35
35
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=F5cQo_KqeTpFwqKBDV-iEjrND7xQgkycC1yocpxq1Qk,6277
|
@@ -79,7 +79,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
|
|
79
79
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=i21vITWBn-6ruVuFZg491TDpx6WcIhJBoF3oNw3w338,1186
|
80
80
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
81
81
|
nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
|
82
|
-
nominal_api-0.
|
83
|
-
nominal_api-0.
|
84
|
-
nominal_api-0.
|
85
|
-
nominal_api-0.
|
82
|
+
nominal_api-0.952.0.dist-info/METADATA,sha256=LExzykw2T4a_5p30ty3UfOn2EE6XN7Y9r6FoX7SidtU,199
|
83
|
+
nominal_api-0.952.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
84
|
+
nominal_api-0.952.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
85
|
+
nominal_api-0.952.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|