nominal-api 0.647.1__py3-none-any.whl → 0.648.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 +38 -12
- nominal_api/ingest_workflow_api/__init__.py +1 -0
- {nominal_api-0.647.1.dist-info → nominal_api-0.648.0.dist-info}/METADATA +1 -1
- {nominal_api-0.647.1.dist-info → nominal_api-0.648.0.dist-info}/RECORD +7 -7
- {nominal_api-0.647.1.dist-info → nominal_api-0.648.0.dist-info}/WHEEL +1 -1
- {nominal_api-0.647.1.dist-info → nominal_api-0.648.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -11714,6 +11714,32 @@ ingest_workflow_api_EnsureImagePullSecretCreatedResponse.__qualname__ = "EnsureI
|
|
|
11714
11714
|
ingest_workflow_api_EnsureImagePullSecretCreatedResponse.__module__ = "nominal_api.ingest_workflow_api"
|
|
11715
11715
|
|
|
11716
11716
|
|
|
11717
|
+
class ingest_workflow_api_EnsureWorkspaceConfigMapCreatedRequest(ConjureBeanType):
|
|
11718
|
+
"""
|
|
11719
|
+
For a given workspace rid, ensures there is a log4j2 config map defined in the namespace.
|
|
11720
|
+
"""
|
|
11721
|
+
|
|
11722
|
+
@builtins.classmethod
|
|
11723
|
+
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
11724
|
+
return {
|
|
11725
|
+
'workspace_rid': ConjureFieldDefinition('workspaceRid', api_rids_WorkspaceRid)
|
|
11726
|
+
}
|
|
11727
|
+
|
|
11728
|
+
__slots__: List[str] = ['_workspace_rid']
|
|
11729
|
+
|
|
11730
|
+
def __init__(self, workspace_rid: str) -> None:
|
|
11731
|
+
self._workspace_rid = workspace_rid
|
|
11732
|
+
|
|
11733
|
+
@builtins.property
|
|
11734
|
+
def workspace_rid(self) -> str:
|
|
11735
|
+
return self._workspace_rid
|
|
11736
|
+
|
|
11737
|
+
|
|
11738
|
+
ingest_workflow_api_EnsureWorkspaceConfigMapCreatedRequest.__name__ = "EnsureWorkspaceConfigMapCreatedRequest"
|
|
11739
|
+
ingest_workflow_api_EnsureWorkspaceConfigMapCreatedRequest.__qualname__ = "EnsureWorkspaceConfigMapCreatedRequest"
|
|
11740
|
+
ingest_workflow_api_EnsureWorkspaceConfigMapCreatedRequest.__module__ = "nominal_api.ingest_workflow_api"
|
|
11741
|
+
|
|
11742
|
+
|
|
11717
11743
|
class ingest_workflow_api_EnsureWorkspaceNamespaceCreatedRequest(ConjureBeanType):
|
|
11718
11744
|
"""
|
|
11719
11745
|
For a given workspace rid, ensures that there is a corresponding K8s namespace created.
|
|
@@ -51679,16 +51705,16 @@ class scout_compute_resolved_api_RawEnumSeriesNode(ConjureBeanType):
|
|
|
51679
51705
|
@builtins.classmethod
|
|
51680
51706
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
51681
51707
|
return {
|
|
51682
|
-
'series': ConjureFieldDefinition('series',
|
|
51708
|
+
'series': ConjureFieldDefinition('series', scout_compute_api_SeriesSpec)
|
|
51683
51709
|
}
|
|
51684
51710
|
|
|
51685
51711
|
__slots__: List[str] = ['_series']
|
|
51686
51712
|
|
|
51687
|
-
def __init__(self, series: "
|
|
51713
|
+
def __init__(self, series: "scout_compute_api_SeriesSpec") -> None:
|
|
51688
51714
|
self._series = series
|
|
51689
51715
|
|
|
51690
51716
|
@builtins.property
|
|
51691
|
-
def series(self) -> "
|
|
51717
|
+
def series(self) -> "scout_compute_api_SeriesSpec":
|
|
51692
51718
|
return self._series
|
|
51693
51719
|
|
|
51694
51720
|
|
|
@@ -51702,16 +51728,16 @@ class scout_compute_resolved_api_RawLogSeriesNode(ConjureBeanType):
|
|
|
51702
51728
|
@builtins.classmethod
|
|
51703
51729
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
51704
51730
|
return {
|
|
51705
|
-
'series': ConjureFieldDefinition('series',
|
|
51731
|
+
'series': ConjureFieldDefinition('series', scout_compute_api_SeriesSpec)
|
|
51706
51732
|
}
|
|
51707
51733
|
|
|
51708
51734
|
__slots__: List[str] = ['_series']
|
|
51709
51735
|
|
|
51710
|
-
def __init__(self, series: "
|
|
51736
|
+
def __init__(self, series: "scout_compute_api_SeriesSpec") -> None:
|
|
51711
51737
|
self._series = series
|
|
51712
51738
|
|
|
51713
51739
|
@builtins.property
|
|
51714
|
-
def series(self) -> "
|
|
51740
|
+
def series(self) -> "scout_compute_api_SeriesSpec":
|
|
51715
51741
|
return self._series
|
|
51716
51742
|
|
|
51717
51743
|
|
|
@@ -51725,16 +51751,16 @@ class scout_compute_resolved_api_RawNumericSeriesNode(ConjureBeanType):
|
|
|
51725
51751
|
@builtins.classmethod
|
|
51726
51752
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
51727
51753
|
return {
|
|
51728
|
-
'series': ConjureFieldDefinition('series',
|
|
51754
|
+
'series': ConjureFieldDefinition('series', scout_compute_api_SeriesSpec)
|
|
51729
51755
|
}
|
|
51730
51756
|
|
|
51731
51757
|
__slots__: List[str] = ['_series']
|
|
51732
51758
|
|
|
51733
|
-
def __init__(self, series: "
|
|
51759
|
+
def __init__(self, series: "scout_compute_api_SeriesSpec") -> None:
|
|
51734
51760
|
self._series = series
|
|
51735
51761
|
|
|
51736
51762
|
@builtins.property
|
|
51737
|
-
def series(self) -> "
|
|
51763
|
+
def series(self) -> "scout_compute_api_SeriesSpec":
|
|
51738
51764
|
return self._series
|
|
51739
51765
|
|
|
51740
51766
|
|
|
@@ -51748,16 +51774,16 @@ class scout_compute_resolved_api_RawUntypedSeriesNode(ConjureBeanType):
|
|
|
51748
51774
|
@builtins.classmethod
|
|
51749
51775
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
51750
51776
|
return {
|
|
51751
|
-
'series': ConjureFieldDefinition('series',
|
|
51777
|
+
'series': ConjureFieldDefinition('series', scout_compute_api_SeriesSpec)
|
|
51752
51778
|
}
|
|
51753
51779
|
|
|
51754
51780
|
__slots__: List[str] = ['_series']
|
|
51755
51781
|
|
|
51756
|
-
def __init__(self, series: "
|
|
51782
|
+
def __init__(self, series: "scout_compute_api_SeriesSpec") -> None:
|
|
51757
51783
|
self._series = series
|
|
51758
51784
|
|
|
51759
51785
|
@builtins.property
|
|
51760
|
-
def series(self) -> "
|
|
51786
|
+
def series(self) -> "scout_compute_api_SeriesSpec":
|
|
51761
51787
|
return self._series
|
|
51762
51788
|
|
|
51763
51789
|
|
|
@@ -5,6 +5,7 @@ from .._impl import (
|
|
|
5
5
|
ingest_workflow_api_EnsureExtractorJobCreatedResponse as EnsureExtractorJobCreatedResponse,
|
|
6
6
|
ingest_workflow_api_EnsureImagePullSecretCreatedRequest as EnsureImagePullSecretCreatedRequest,
|
|
7
7
|
ingest_workflow_api_EnsureImagePullSecretCreatedResponse as EnsureImagePullSecretCreatedResponse,
|
|
8
|
+
ingest_workflow_api_EnsureWorkspaceConfigMapCreatedRequest as EnsureWorkspaceConfigMapCreatedRequest,
|
|
8
9
|
ingest_workflow_api_EnsureWorkspaceNamespaceCreatedRequest as EnsureWorkspaceNamespaceCreatedRequest,
|
|
9
10
|
ingest_workflow_api_EnsureWorkspaceServiceAccountCreatedRequest as EnsureWorkspaceServiceAccountCreatedRequest,
|
|
10
11
|
ingest_workflow_api_ExtractorJobState as ExtractorJobState,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=UyIsaXjtJzowGOZDSBrr5mvJIwOAyFaVsnJf-zEPv2M,1995
|
|
2
|
+
nominal_api/_impl.py,sha256=fEbMKHOIzTdVyoP9HfEERDmfiwa8ZnGZskAoCyIrXHQ,3093123
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=1oJPOuAMfV2uClPUW8Ie1nj2Y6j81TDpedcc3yUFTe0,1294
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=CAtt44XgNZEEUDv-BbEbYtuxQ8y1wqSZU-STjBYdZv8,80
|
|
@@ -16,7 +16,7 @@ nominal_api/datasource_logset_api/__init__.py,sha256=JyjO1tQmG-HZ7kYMi8lSfeaaYdd
|
|
|
16
16
|
nominal_api/datasource_pagination_api/__init__.py,sha256=3GO8TAUavOe6dUEitOhje74aSZHjTKVI5N1MNuct1lI,212
|
|
17
17
|
nominal_api/event/__init__.py,sha256=I6GasoAKx2MLe72oaGDjnB_GWsGOnf6Ow_li3bi4eY8,1024
|
|
18
18
|
nominal_api/ingest_api/__init__.py,sha256=o-JBX6tm7Tfwkll1eqiiOzqZYvIyajtgqGkPjmYjrrQ,7014
|
|
19
|
-
nominal_api/ingest_workflow_api/__init__.py,sha256=
|
|
19
|
+
nominal_api/ingest_workflow_api/__init__.py,sha256=v4R4WHLHlflcrPYzYlB1dqvnObwjxlvr2Whs_QUPj8A,1734
|
|
20
20
|
nominal_api/persistent_compute_api/__init__.py,sha256=ThraDBJyYB5nFrbB6FZZpDoVAmsq8GAibiK0nu63MVA,2050
|
|
21
21
|
nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
|
|
22
22
|
nominal_api/scout_api/__init__.py,sha256=_yhqikk4r2QptjyRGhmcs8z3Ocjpw8rzvxqkc48HS5s,592
|
|
@@ -73,7 +73,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=Q9iZHurmyDsJIFbUg-Eb
|
|
|
73
73
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
74
74
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
75
75
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
76
|
-
nominal_api-0.
|
|
77
|
-
nominal_api-0.
|
|
78
|
-
nominal_api-0.
|
|
79
|
-
nominal_api-0.
|
|
76
|
+
nominal_api-0.648.0.dist-info/METADATA,sha256=3zganmhOd34ybiAGMBgc7VBym6A4kLuqTlLuioYbWgA,199
|
|
77
|
+
nominal_api-0.648.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
78
|
+
nominal_api-0.648.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
79
|
+
nominal_api-0.648.0.dist-info/RECORD,,
|
|
File without changes
|