nominal-api 0.583.0__py3-none-any.whl → 0.584.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 +8 -8
- {nominal_api-0.583.0.dist-info → nominal_api-0.584.0.dist-info}/METADATA +1 -1
- {nominal_api-0.583.0.dist-info → nominal_api-0.584.0.dist-info}/RECORD +6 -6
- {nominal_api-0.583.0.dist-info → nominal_api-0.584.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.583.0.dist-info → nominal_api-0.584.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -6846,12 +6846,12 @@ class ingest_api_ExistingVideoIngestDestination(ConjureBeanType):
|
|
|
6846
6846
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
6847
6847
|
return {
|
|
6848
6848
|
'video_rid': ConjureFieldDefinition('videoRid', api_rids_VideoRid),
|
|
6849
|
-
'video_file_details': ConjureFieldDefinition('videoFileDetails', ingest_api_VideoFileIngestDetails)
|
|
6849
|
+
'video_file_details': ConjureFieldDefinition('videoFileDetails', OptionalTypeWrapper[ingest_api_VideoFileIngestDetails])
|
|
6850
6850
|
}
|
|
6851
6851
|
|
|
6852
6852
|
__slots__: List[str] = ['_video_rid', '_video_file_details']
|
|
6853
6853
|
|
|
6854
|
-
def __init__(self, video_file_details: "ingest_api_VideoFileIngestDetails"
|
|
6854
|
+
def __init__(self, video_rid: str, video_file_details: Optional["ingest_api_VideoFileIngestDetails"] = None) -> None:
|
|
6855
6855
|
self._video_rid = video_rid
|
|
6856
6856
|
self._video_file_details = video_file_details
|
|
6857
6857
|
|
|
@@ -6863,7 +6863,7 @@ class ingest_api_ExistingVideoIngestDestination(ConjureBeanType):
|
|
|
6863
6863
|
return self._video_rid
|
|
6864
6864
|
|
|
6865
6865
|
@builtins.property
|
|
6866
|
-
def video_file_details(self) -> "ingest_api_VideoFileIngestDetails":
|
|
6866
|
+
def video_file_details(self) -> Optional["ingest_api_VideoFileIngestDetails"]:
|
|
6867
6867
|
"""
|
|
6868
6868
|
Metadata to associate with any created video file
|
|
6869
6869
|
"""
|
|
@@ -9615,13 +9615,13 @@ class ingest_api_VideoFileIngestDetails(ConjureBeanType):
|
|
|
9615
9615
|
def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
|
|
9616
9616
|
return {
|
|
9617
9617
|
'file_description': ConjureFieldDefinition('fileDescription', OptionalTypeWrapper[str]),
|
|
9618
|
-
'file_properties': ConjureFieldDefinition('fileProperties', Dict[api_PropertyName, api_PropertyValue]),
|
|
9619
|
-
'file_labels': ConjureFieldDefinition('fileLabels', List[api_Label])
|
|
9618
|
+
'file_properties': ConjureFieldDefinition('fileProperties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
|
|
9619
|
+
'file_labels': ConjureFieldDefinition('fileLabels', OptionalTypeWrapper[List[api_Label]])
|
|
9620
9620
|
}
|
|
9621
9621
|
|
|
9622
9622
|
__slots__: List[str] = ['_file_description', '_file_properties', '_file_labels']
|
|
9623
9623
|
|
|
9624
|
-
def __init__(self,
|
|
9624
|
+
def __init__(self, file_description: Optional[str] = None, file_labels: Optional[List[str]] = None, file_properties: Optional[Dict[str, str]] = None) -> None:
|
|
9625
9625
|
self._file_description = file_description
|
|
9626
9626
|
self._file_properties = file_properties
|
|
9627
9627
|
self._file_labels = file_labels
|
|
@@ -9635,14 +9635,14 @@ If not provided, defaults to the description used to create the video.
|
|
|
9635
9635
|
return self._file_description
|
|
9636
9636
|
|
|
9637
9637
|
@builtins.property
|
|
9638
|
-
def file_properties(self) -> Dict[str, str]:
|
|
9638
|
+
def file_properties(self) -> Optional[Dict[str, str]]:
|
|
9639
9639
|
"""
|
|
9640
9640
|
Key-Value properties that are applied to the newly created video file.
|
|
9641
9641
|
"""
|
|
9642
9642
|
return self._file_properties
|
|
9643
9643
|
|
|
9644
9644
|
@builtins.property
|
|
9645
|
-
def file_labels(self) -> List[str]:
|
|
9645
|
+
def file_labels(self) -> Optional[List[str]]:
|
|
9646
9646
|
"""
|
|
9647
9647
|
Labels that are applied to the newly created video file.
|
|
9648
9648
|
"""
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=hlazt7F04ugLjExfDf-M_qjlB1Z-VbbmPj7SxygJdlc,1923
|
|
2
|
+
nominal_api/_impl.py,sha256=NRyDv2wZFU9Tlz50mpswAh1yhSxrUJnFVNDLVLSJHz8,2828743
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
|
|
5
5
|
nominal_api/api_rids/__init__.py,sha256=Bu-pKUh3aS9_f5m-DZf6W_BUlVo9qYE7EDvaT-rvWQ0,423
|
|
@@ -70,7 +70,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=7NlQhIzOKOcjwMNUI89f
|
|
|
70
70
|
nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
|
|
71
71
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
|
|
72
72
|
nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
|
|
73
|
-
nominal_api-0.
|
|
74
|
-
nominal_api-0.
|
|
75
|
-
nominal_api-0.
|
|
76
|
-
nominal_api-0.
|
|
73
|
+
nominal_api-0.584.0.dist-info/METADATA,sha256=AVBm4C-YAk5fuSH0l-Avc9kt7H3PgKsDThqVw9pjT9c,199
|
|
74
|
+
nominal_api-0.584.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
75
|
+
nominal_api-0.584.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
76
|
+
nominal_api-0.584.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|