nominal-api 0.1020.0__py3-none-any.whl → 0.1025.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 +11 -3
- nominal_api/nominal-api.conjure.json +32 -0
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1025.0.dist-info}/METADATA +1 -1
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1025.0.dist-info}/RECORD +7 -7
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1025.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.1020.0.dist-info → nominal_api-0.1025.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -10315,17 +10315,19 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
|
|
|
10315
10315
|
'arguments': ConjureFieldDefinition('arguments', Dict[ingest_api_EnvironmentVariable, str]),
|
|
10316
10316
|
'extractor_rid': ConjureFieldDefinition('extractorRid', ingest_api_ContainerizedExtractorRid),
|
|
10317
10317
|
'tag': ConjureFieldDefinition('tag', OptionalTypeWrapper[str]),
|
|
10318
|
-
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget)
|
|
10318
|
+
'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget),
|
|
10319
|
+
'additional_file_tags': ConjureFieldDefinition('additionalFileTags', Dict[api_TagName, api_TagValue])
|
|
10319
10320
|
}
|
|
10320
10321
|
|
|
10321
|
-
__slots__: List[str] = ['_sources', '_arguments', '_extractor_rid', '_tag', '_target']
|
|
10322
|
+
__slots__: List[str] = ['_sources', '_arguments', '_extractor_rid', '_tag', '_target', '_additional_file_tags']
|
|
10322
10323
|
|
|
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:
|
|
10324
|
+
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) -> None:
|
|
10324
10325
|
self._sources = sources
|
|
10325
10326
|
self._arguments = arguments
|
|
10326
10327
|
self._extractor_rid = extractor_rid
|
|
10327
10328
|
self._tag = tag
|
|
10328
10329
|
self._target = target
|
|
10330
|
+
self._additional_file_tags = additional_file_tags
|
|
10329
10331
|
|
|
10330
10332
|
@builtins.property
|
|
10331
10333
|
def sources(self) -> Dict[str, "ingest_api_IngestSource"]:
|
|
@@ -10347,6 +10349,12 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
|
|
|
10347
10349
|
def target(self) -> "ingest_api_DatasetIngestTarget":
|
|
10348
10350
|
return self._target
|
|
10349
10351
|
|
|
10352
|
+
@builtins.property
|
|
10353
|
+
def additional_file_tags(self) -> Dict[str, str]:
|
|
10354
|
+
"""Specifies a tag set to apply to all data in the file.
|
|
10355
|
+
"""
|
|
10356
|
+
return self._additional_file_tags
|
|
10357
|
+
|
|
10350
10358
|
|
|
10351
10359
|
ingest_api_ContainerizedOpts.__name__ = "ContainerizedOpts"
|
|
10352
10360
|
ingest_api_ContainerizedOpts.__qualname__ = "ContainerizedOpts"
|
|
@@ -5863,6 +5863,16 @@
|
|
|
5863
5863
|
}
|
|
5864
5864
|
} ],
|
|
5865
5865
|
"unsafeArgs" : [ ]
|
|
5866
|
+
}, {
|
|
5867
|
+
"errorName" : {
|
|
5868
|
+
"name" : "PointsTooLarge",
|
|
5869
|
+
"package" : "io.nominal.storage.writer.api"
|
|
5870
|
+
},
|
|
5871
|
+
"docs" : "The size of the points being written exceeds the maximum allowed size.\n",
|
|
5872
|
+
"namespace" : "NominalChannelWriter",
|
|
5873
|
+
"code" : "REQUEST_ENTITY_TOO_LARGE",
|
|
5874
|
+
"safeArgs" : [ ],
|
|
5875
|
+
"unsafeArgs" : [ ]
|
|
5866
5876
|
}, {
|
|
5867
5877
|
"errorName" : {
|
|
5868
5878
|
"name" : "StreamingDisabledOnDataset",
|
|
@@ -13734,6 +13744,28 @@
|
|
|
13734
13744
|
"package" : "io.nominal.ingest.api"
|
|
13735
13745
|
}
|
|
13736
13746
|
}
|
|
13747
|
+
}, {
|
|
13748
|
+
"fieldName" : "additionalFileTags",
|
|
13749
|
+
"type" : {
|
|
13750
|
+
"type" : "map",
|
|
13751
|
+
"map" : {
|
|
13752
|
+
"keyType" : {
|
|
13753
|
+
"type" : "reference",
|
|
13754
|
+
"reference" : {
|
|
13755
|
+
"name" : "TagName",
|
|
13756
|
+
"package" : "io.nominal.api"
|
|
13757
|
+
}
|
|
13758
|
+
},
|
|
13759
|
+
"valueType" : {
|
|
13760
|
+
"type" : "reference",
|
|
13761
|
+
"reference" : {
|
|
13762
|
+
"name" : "TagValue",
|
|
13763
|
+
"package" : "io.nominal.api"
|
|
13764
|
+
}
|
|
13765
|
+
}
|
|
13766
|
+
}
|
|
13767
|
+
},
|
|
13768
|
+
"docs" : "Specifies a tag set to apply to all data in the file."
|
|
13737
13769
|
} ]
|
|
13738
13770
|
}
|
|
13739
13771
|
}, {
|
|
@@ -1,6 +1,6 @@
|
|
|
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=0XJkOl259JeWXikQQH8V6d_5SrAClzyohzoEUNPo7w4,2110
|
|
2
|
+
nominal_api/_impl.py,sha256=jko9z0V307CWISzOh-uRECItfJ1s8no9AS7BIseo38I,4078895
|
|
3
|
+
nominal_api/nominal-api.conjure.json,sha256=T7rG8BAeOX9mKSssIIlPSL36KYK9nQxvqj-qZomPoE0,2534806
|
|
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
|
|
@@ -80,7 +80,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
|
|
|
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.1025.0.dist-info/METADATA,sha256=PCgBp7coVOxGYVaIh70iOxOX0CuGfsHOQh3_GnFg5Eg,200
|
|
84
|
+
nominal_api-0.1025.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
85
|
+
nominal_api-0.1025.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
86
|
+
nominal_api-0.1025.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|