nominal-api 0.630.0__py3-none-any.whl → 0.632.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 CHANGED
@@ -76,5 +76,5 @@ __all__ = [
76
76
 
77
77
  __conjure_generator_version__ = "4.9.0"
78
78
 
79
- __version__ = "0.630.0"
79
+ __version__ = "0.632.0"
80
80
 
nominal_api/_impl.py CHANGED
@@ -2163,39 +2163,6 @@ is not authorized on the resource, will omit the resource from the response.
2163
2163
  _decoder = ConjureDecoder()
2164
2164
  return _decoder.decode(_response.json(), Dict[str, api_rids_WorkspaceRid], self._return_none_for_unknown_union_types)
2165
2165
 
2166
- def register(self, auth_header: str, register_request: "authorization_RegistrationRequest") -> None:
2167
- """
2168
- Marks a resource as belonging to an organization.
2169
- Will throw if trying to register a resource that already
2170
- belongs to a different organization.
2171
- """
2172
-
2173
- _headers: Dict[str, Any] = {
2174
- 'Accept': 'application/json',
2175
- 'Content-Type': 'application/json',
2176
- 'Authorization': auth_header,
2177
- }
2178
-
2179
- _params: Dict[str, Any] = {
2180
- }
2181
-
2182
- _path_params: Dict[str, Any] = {
2183
- }
2184
-
2185
- _json: Any = ConjureEncoder().default(register_request)
2186
-
2187
- _path = '/authorization/v1/register'
2188
- _path = _path.format(**_path_params)
2189
-
2190
- _response: Response = self._request(
2191
- 'POST',
2192
- self._uri + _path,
2193
- params=_params,
2194
- headers=_headers,
2195
- json=_json)
2196
-
2197
- return
2198
-
2199
2166
  def register_in_workspace(self, auth_header: str, request: "authorization_RegisterInWorkspaceRequest") -> None:
2200
2167
  """
2201
2168
  Marks a set of resources as belonging to a workspace. Either all resources are
@@ -2897,38 +2864,6 @@ authorization_RegisterInWorkspaceRequest.__qualname__ = "RegisterInWorkspaceRequ
2897
2864
  authorization_RegisterInWorkspaceRequest.__module__ = "nominal_api.authorization"
2898
2865
 
2899
2866
 
2900
- class authorization_RegistrationRequest(ConjureBeanType):
2901
-
2902
- @builtins.classmethod
2903
- def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
2904
- return {
2905
- 'rids': ConjureFieldDefinition('rids', List[str]),
2906
- 'organization_rid': ConjureFieldDefinition('organizationRid', OptionalTypeWrapper[str])
2907
- }
2908
-
2909
- __slots__: List[str] = ['_rids', '_organization_rid']
2910
-
2911
- def __init__(self, rids: List[str], organization_rid: Optional[str] = None) -> None:
2912
- self._rids = rids
2913
- self._organization_rid = organization_rid
2914
-
2915
- @builtins.property
2916
- def rids(self) -> List[str]:
2917
- return self._rids
2918
-
2919
- @builtins.property
2920
- def organization_rid(self) -> Optional[str]:
2921
- """
2922
- If omitted, will use the user's organizationRid.
2923
- """
2924
- return self._organization_rid
2925
-
2926
-
2927
- authorization_RegistrationRequest.__name__ = "RegistrationRequest"
2928
- authorization_RegistrationRequest.__qualname__ = "RegistrationRequest"
2929
- authorization_RegistrationRequest.__module__ = "nominal_api.authorization"
2930
-
2931
-
2932
2867
  class comments_api_Comment(ConjureBeanType):
2933
2868
 
2934
2869
  @builtins.classmethod
@@ -5710,7 +5645,7 @@ class event_Event(ConjureBeanType):
5710
5645
  @builtins.classmethod
5711
5646
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
5712
5647
  return {
5713
- 'uuid': ConjureFieldDefinition('uuid', OptionalTypeWrapper[str]),
5648
+ 'uuid': ConjureFieldDefinition('uuid', str),
5714
5649
  'rid': ConjureFieldDefinition('rid', api_rids_EventRid),
5715
5650
  'asset_rids': ConjureFieldDefinition('assetRids', List[scout_rids_api_AssetRid]),
5716
5651
  'origins': ConjureFieldDefinition('origins', List[event_EventOrigin]),
@@ -5727,7 +5662,7 @@ class event_Event(ConjureBeanType):
5727
5662
 
5728
5663
  __slots__: List[str] = ['_uuid', '_rid', '_asset_rids', '_origins', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties', '_is_archived', '_created_by']
5729
5664
 
5730
- def __init__(self, asset_rids: List[str], description: str, duration: "scout_run_api_Duration", is_archived: bool, labels: List[str], name: str, origins: List["event_EventOrigin"], properties: Dict[str, str], rid: str, timestamp: "api_Timestamp", type: "event_EventType", created_by: Optional[str] = None, uuid: Optional[str] = None) -> None:
5665
+ def __init__(self, asset_rids: List[str], description: str, duration: "scout_run_api_Duration", is_archived: bool, labels: List[str], name: str, origins: List["event_EventOrigin"], properties: Dict[str, str], rid: str, timestamp: "api_Timestamp", type: "event_EventType", uuid: str, created_by: Optional[str] = None) -> None:
5731
5666
  self._uuid = uuid
5732
5667
  self._rid = rid
5733
5668
  self._asset_rids = asset_rids
@@ -5743,7 +5678,7 @@ class event_Event(ConjureBeanType):
5743
5678
  self._created_by = created_by
5744
5679
 
5745
5680
  @builtins.property
5746
- def uuid(self) -> Optional[str]:
5681
+ def uuid(self) -> str:
5747
5682
  return self._uuid
5748
5683
 
5749
5684
  @builtins.property
@@ -6608,7 +6543,7 @@ class event_UpdateEvent(ConjureBeanType):
6608
6543
  @builtins.classmethod
6609
6544
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
6610
6545
  return {
6611
- 'uuid': ConjureFieldDefinition('uuid', OptionalTypeWrapper[str]),
6546
+ 'uuid': ConjureFieldDefinition('uuid', str),
6612
6547
  'rid': ConjureFieldDefinition('rid', OptionalTypeWrapper[api_rids_EventRid]),
6613
6548
  'asset_rids': ConjureFieldDefinition('assetRids', OptionalTypeWrapper[List[scout_rids_api_AssetRid]]),
6614
6549
  'timestamp': ConjureFieldDefinition('timestamp', OptionalTypeWrapper[api_Timestamp]),
@@ -6622,7 +6557,7 @@ class event_UpdateEvent(ConjureBeanType):
6622
6557
 
6623
6558
  __slots__: List[str] = ['_uuid', '_rid', '_asset_rids', '_timestamp', '_duration', '_name', '_description', '_type', '_labels', '_properties']
6624
6559
 
6625
- def __init__(self, asset_rids: Optional[List[str]] = None, description: Optional[str] = None, duration: Optional["scout_run_api_Duration"] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, properties: Optional[Dict[str, str]] = None, rid: Optional[str] = None, timestamp: Optional["api_Timestamp"] = None, type: Optional["event_EventType"] = None, uuid: Optional[str] = None) -> None:
6560
+ def __init__(self, uuid: str, asset_rids: Optional[List[str]] = None, description: Optional[str] = None, duration: Optional["scout_run_api_Duration"] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, properties: Optional[Dict[str, str]] = None, rid: Optional[str] = None, timestamp: Optional["api_Timestamp"] = None, type: Optional["event_EventType"] = None) -> None:
6626
6561
  self._uuid = uuid
6627
6562
  self._rid = rid
6628
6563
  self._asset_rids = asset_rids
@@ -6635,7 +6570,7 @@ class event_UpdateEvent(ConjureBeanType):
6635
6570
  self._properties = properties
6636
6571
 
6637
6572
  @builtins.property
6638
- def uuid(self) -> Optional[str]:
6573
+ def uuid(self) -> str:
6639
6574
  return self._uuid
6640
6575
 
6641
6576
  @builtins.property
@@ -6835,41 +6770,58 @@ ingest_api_AsyncHandle.__module__ = "nominal_api.ingest_api"
6835
6770
  class ingest_api_Authentication(ConjureUnionType):
6836
6771
  """Authentication methods for Docker registries."""
6837
6772
  _user_and_password: Optional["ingest_api_UserAndPasswordAuthentication"] = None
6773
+ _public: Optional["ingest_api_PublicAuthentication"] = None
6838
6774
 
6839
6775
  @builtins.classmethod
6840
6776
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
6841
6777
  return {
6842
- 'user_and_password': ConjureFieldDefinition('userAndPassword', ingest_api_UserAndPasswordAuthentication)
6778
+ 'user_and_password': ConjureFieldDefinition('userAndPassword', ingest_api_UserAndPasswordAuthentication),
6779
+ 'public': ConjureFieldDefinition('public', ingest_api_PublicAuthentication)
6843
6780
  }
6844
6781
 
6845
6782
  def __init__(
6846
6783
  self,
6847
6784
  user_and_password: Optional["ingest_api_UserAndPasswordAuthentication"] = None,
6785
+ public: Optional["ingest_api_PublicAuthentication"] = None,
6848
6786
  type_of_union: Optional[str] = None
6849
6787
  ) -> None:
6850
6788
  if type_of_union is None:
6851
- if (user_and_password is not None) != 1:
6789
+ if (user_and_password is not None) + (public is not None) != 1:
6852
6790
  raise ValueError('a union must contain a single member')
6853
6791
 
6854
6792
  if user_and_password is not None:
6855
6793
  self._user_and_password = user_and_password
6856
6794
  self._type = 'userAndPassword'
6795
+ if public is not None:
6796
+ self._public = public
6797
+ self._type = 'public'
6857
6798
 
6858
6799
  elif type_of_union == 'userAndPassword':
6859
6800
  if user_and_password is None:
6860
6801
  raise ValueError('a union value must not be None')
6861
6802
  self._user_and_password = user_and_password
6862
6803
  self._type = 'userAndPassword'
6804
+ elif type_of_union == 'public':
6805
+ if public is None:
6806
+ raise ValueError('a union value must not be None')
6807
+ self._public = public
6808
+ self._type = 'public'
6863
6809
 
6864
6810
  @builtins.property
6865
6811
  def user_and_password(self) -> Optional["ingest_api_UserAndPasswordAuthentication"]:
6866
6812
  return self._user_and_password
6867
6813
 
6814
+ @builtins.property
6815
+ def public(self) -> Optional["ingest_api_PublicAuthentication"]:
6816
+ return self._public
6817
+
6868
6818
  def accept(self, visitor) -> Any:
6869
6819
  if not isinstance(visitor, ingest_api_AuthenticationVisitor):
6870
6820
  raise ValueError('{} is not an instance of ingest_api_AuthenticationVisitor'.format(visitor.__class__.__name__))
6871
6821
  if self._type == 'userAndPassword' and self.user_and_password is not None:
6872
6822
  return visitor._user_and_password(self.user_and_password)
6823
+ if self._type == 'public' and self.public is not None:
6824
+ return visitor._public(self.public)
6873
6825
 
6874
6826
 
6875
6827
  ingest_api_Authentication.__name__ = "Authentication"
@@ -6883,6 +6835,10 @@ class ingest_api_AuthenticationVisitor:
6883
6835
  def _user_and_password(self, user_and_password: "ingest_api_UserAndPasswordAuthentication") -> Any:
6884
6836
  pass
6885
6837
 
6838
+ @abstractmethod
6839
+ def _public(self, public: "ingest_api_PublicAuthentication") -> Any:
6840
+ pass
6841
+
6886
6842
 
6887
6843
  ingest_api_AuthenticationVisitor.__name__ = "AuthenticationVisitor"
6888
6844
  ingest_api_AuthenticationVisitor.__qualname__ = "AuthenticationVisitor"
@@ -6954,12 +6910,13 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
6954
6910
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
6955
6911
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
6956
6912
  'created_at': ConjureFieldDefinition('createdAt', str),
6957
- 'is_archived': ConjureFieldDefinition('isArchived', bool)
6913
+ 'is_archived': ConjureFieldDefinition('isArchived', bool),
6914
+ 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata)
6958
6915
  }
6959
6916
 
6960
- __slots__: List[str] = ['_rid', '_name', '_description', '_image', '_inputs', '_properties', '_labels', '_created_at', '_is_archived']
6917
+ __slots__: List[str] = ['_rid', '_name', '_description', '_image', '_inputs', '_properties', '_labels', '_created_at', '_is_archived', '_timestamp_metadata']
6961
6918
 
6962
- def __init__(self, created_at: str, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], is_archived: bool, labels: List[str], name: str, properties: Dict[str, str], rid: str, description: Optional[str] = None) -> None:
6919
+ def __init__(self, created_at: str, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], is_archived: bool, labels: List[str], name: str, properties: Dict[str, str], rid: str, timestamp_metadata: "ingest_api_TimestampMetadata", description: Optional[str] = None) -> None:
6963
6920
  self._rid = rid
6964
6921
  self._name = name
6965
6922
  self._description = description
@@ -6969,6 +6926,7 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
6969
6926
  self._labels = labels
6970
6927
  self._created_at = created_at
6971
6928
  self._is_archived = is_archived
6929
+ self._timestamp_metadata = timestamp_metadata
6972
6930
 
6973
6931
  @builtins.property
6974
6932
  def rid(self) -> str:
@@ -7033,6 +6991,13 @@ class ingest_api_ContainerizedExtractor(ConjureBeanType):
7033
6991
  """
7034
6992
  return self._is_archived
7035
6993
 
6994
+ @builtins.property
6995
+ def timestamp_metadata(self) -> "ingest_api_TimestampMetadata":
6996
+ """
6997
+ Metadata about the intermediate parquet this extractor will produce
6998
+ """
6999
+ return self._timestamp_metadata
7000
+
7036
7001
 
7037
7002
  ingest_api_ContainerizedExtractor.__name__ = "ContainerizedExtractor"
7038
7003
  ingest_api_ContainerizedExtractor.__qualname__ = "ContainerizedExtractor"
@@ -7248,16 +7213,14 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
7248
7213
  return {
7249
7214
  'sources': ConjureFieldDefinition('sources', Dict[ingest_api_EnvironmentVariable, ingest_api_IngestSource]),
7250
7215
  'extractor': ConjureFieldDefinition('extractor', ingest_api_ContainerizedExtractorRid),
7251
- 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata]),
7252
7216
  'target': ConjureFieldDefinition('target', ingest_api_DatasetIngestTarget)
7253
7217
  }
7254
7218
 
7255
- __slots__: List[str] = ['_sources', '_extractor', '_timestamp_metadata', '_target']
7219
+ __slots__: List[str] = ['_sources', '_extractor', '_target']
7256
7220
 
7257
- def __init__(self, extractor: str, sources: Dict[str, "ingest_api_IngestSource"], target: "ingest_api_DatasetIngestTarget", timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
7221
+ def __init__(self, extractor: str, sources: Dict[str, "ingest_api_IngestSource"], target: "ingest_api_DatasetIngestTarget") -> None:
7258
7222
  self._sources = sources
7259
7223
  self._extractor = extractor
7260
- self._timestamp_metadata = timestamp_metadata
7261
7224
  self._target = target
7262
7225
 
7263
7226
  @builtins.property
@@ -7268,10 +7231,6 @@ class ingest_api_ContainerizedOpts(ConjureBeanType):
7268
7231
  def extractor(self) -> str:
7269
7232
  return self._extractor
7270
7233
 
7271
- @builtins.property
7272
- def timestamp_metadata(self) -> Optional["ingest_api_TimestampMetadata"]:
7273
- return self._timestamp_metadata
7274
-
7275
7234
  @builtins.property
7276
7235
  def target(self) -> "ingest_api_DatasetIngestTarget":
7277
7236
  return self._target
@@ -7714,12 +7673,12 @@ class ingest_api_DockerImageSource(ConjureBeanType):
7714
7673
  'registry': ConjureFieldDefinition('registry', str),
7715
7674
  'repository': ConjureFieldDefinition('repository', str),
7716
7675
  'tag': ConjureFieldDefinition('tag', str),
7717
- 'authentication': ConjureFieldDefinition('authentication', OptionalTypeWrapper[ingest_api_Authentication])
7676
+ 'authentication': ConjureFieldDefinition('authentication', ingest_api_Authentication)
7718
7677
  }
7719
7678
 
7720
7679
  __slots__: List[str] = ['_registry', '_repository', '_tag', '_authentication']
7721
7680
 
7722
- def __init__(self, registry: str, repository: str, tag: str, authentication: Optional["ingest_api_Authentication"] = None) -> None:
7681
+ def __init__(self, authentication: "ingest_api_Authentication", registry: str, repository: str, tag: str) -> None:
7723
7682
  self._registry = registry
7724
7683
  self._repository = repository
7725
7684
  self._tag = tag
@@ -7747,7 +7706,7 @@ class ingest_api_DockerImageSource(ConjureBeanType):
7747
7706
  return self._tag
7748
7707
 
7749
7708
  @builtins.property
7750
- def authentication(self) -> Optional["ingest_api_Authentication"]:
7709
+ def authentication(self) -> "ingest_api_Authentication":
7751
7710
  """
7752
7711
  Optional authentication for accessing private container registries.
7753
7712
  """
@@ -10302,6 +10261,22 @@ ingest_api_PartWithSize.__qualname__ = "PartWithSize"
10302
10261
  ingest_api_PartWithSize.__module__ = "nominal_api.ingest_api"
10303
10262
 
10304
10263
 
10264
+ class ingest_api_PublicAuthentication(ConjureBeanType):
10265
+
10266
+ @builtins.classmethod
10267
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
10268
+ return {
10269
+ }
10270
+
10271
+ __slots__: List[str] = []
10272
+
10273
+
10274
+
10275
+ ingest_api_PublicAuthentication.__name__ = "PublicAuthentication"
10276
+ ingest_api_PublicAuthentication.__qualname__ = "PublicAuthentication"
10277
+ ingest_api_PublicAuthentication.__module__ = "nominal_api.ingest_api"
10278
+
10279
+
10305
10280
  class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10306
10281
 
10307
10282
  @builtins.classmethod
@@ -10313,12 +10288,13 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10313
10288
  'inputs': ConjureFieldDefinition('inputs', List[ingest_api_FileExtractionInput]),
10314
10289
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
10315
10290
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
10316
- 'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid)
10291
+ 'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
10292
+ 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', ingest_api_TimestampMetadata)
10317
10293
  }
10318
10294
 
10319
- __slots__: List[str] = ['_name', '_description', '_image', '_inputs', '_properties', '_labels', '_workspace']
10295
+ __slots__: List[str] = ['_name', '_description', '_image', '_inputs', '_properties', '_labels', '_workspace', '_timestamp_metadata']
10320
10296
 
10321
- def __init__(self, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], labels: List[str], name: str, properties: Dict[str, str], workspace: str, description: Optional[str] = None) -> None:
10297
+ def __init__(self, image: "ingest_api_DockerImageSource", inputs: List["ingest_api_FileExtractionInput"], labels: List[str], name: str, properties: Dict[str, str], timestamp_metadata: "ingest_api_TimestampMetadata", workspace: str, description: Optional[str] = None) -> None:
10322
10298
  self._name = name
10323
10299
  self._description = description
10324
10300
  self._image = image
@@ -10326,6 +10302,7 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10326
10302
  self._properties = properties
10327
10303
  self._labels = labels
10328
10304
  self._workspace = workspace
10305
+ self._timestamp_metadata = timestamp_metadata
10329
10306
 
10330
10307
  @builtins.property
10331
10308
  def name(self) -> str:
@@ -10361,6 +10338,13 @@ class ingest_api_RegisterContainerizedExtractorRequest(ConjureBeanType):
10361
10338
  """
10362
10339
  return self._workspace
10363
10340
 
10341
+ @builtins.property
10342
+ def timestamp_metadata(self) -> "ingest_api_TimestampMetadata":
10343
+ """
10344
+ Metadata about the intermediate parquet this extractor will produce
10345
+ """
10346
+ return self._timestamp_metadata
10347
+
10364
10348
 
10365
10349
  ingest_api_RegisterContainerizedExtractorRequest.__name__ = "RegisterContainerizedExtractorRequest"
10366
10350
  ingest_api_RegisterContainerizedExtractorRequest.__qualname__ = "RegisterContainerizedExtractorRequest"
@@ -11142,16 +11126,18 @@ class ingest_api_UpdateContainerizedExtractorRequest(ConjureBeanType):
11142
11126
  'name': ConjureFieldDefinition('name', OptionalTypeWrapper[str]),
11143
11127
  'description': ConjureFieldDefinition('description', OptionalTypeWrapper[str]),
11144
11128
  'properties': ConjureFieldDefinition('properties', OptionalTypeWrapper[Dict[api_PropertyName, api_PropertyValue]]),
11145
- 'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]])
11129
+ 'labels': ConjureFieldDefinition('labels', OptionalTypeWrapper[List[api_Label]]),
11130
+ 'timestamp_metadata': ConjureFieldDefinition('timestampMetadata', OptionalTypeWrapper[ingest_api_TimestampMetadata])
11146
11131
  }
11147
11132
 
11148
- __slots__: List[str] = ['_name', '_description', '_properties', '_labels']
11133
+ __slots__: List[str] = ['_name', '_description', '_properties', '_labels', '_timestamp_metadata']
11149
11134
 
11150
- def __init__(self, description: Optional[str] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, properties: Optional[Dict[str, str]] = None) -> None:
11135
+ def __init__(self, description: Optional[str] = None, labels: Optional[List[str]] = None, name: Optional[str] = None, properties: Optional[Dict[str, str]] = None, timestamp_metadata: Optional["ingest_api_TimestampMetadata"] = None) -> None:
11151
11136
  self._name = name
11152
11137
  self._description = description
11153
11138
  self._properties = properties
11154
11139
  self._labels = labels
11140
+ self._timestamp_metadata = timestamp_metadata
11155
11141
 
11156
11142
  @builtins.property
11157
11143
  def name(self) -> Optional[str]:
@@ -11169,6 +11155,10 @@ class ingest_api_UpdateContainerizedExtractorRequest(ConjureBeanType):
11169
11155
  def labels(self) -> Optional[List[str]]:
11170
11156
  return self._labels
11171
11157
 
11158
+ @builtins.property
11159
+ def timestamp_metadata(self) -> Optional["ingest_api_TimestampMetadata"]:
11160
+ return self._timestamp_metadata
11161
+
11172
11162
 
11173
11163
  ingest_api_UpdateContainerizedExtractorRequest.__name__ = "UpdateContainerizedExtractorRequest"
11174
11164
  ingest_api_UpdateContainerizedExtractorRequest.__qualname__ = "UpdateContainerizedExtractorRequest"
@@ -17,6 +17,5 @@ from .._impl import (
17
17
  authorization_ListApiKeyRequest as ListApiKeyRequest,
18
18
  authorization_ListApiKeyResponse as ListApiKeyResponse,
19
19
  authorization_RegisterInWorkspaceRequest as RegisterInWorkspaceRequest,
20
- authorization_RegistrationRequest as RegistrationRequest,
21
20
  )
22
21
 
@@ -85,6 +85,7 @@ from .._impl import (
85
85
  ingest_api_ParquetOpts as ParquetOpts,
86
86
  ingest_api_Part as Part,
87
87
  ingest_api_PartWithSize as PartWithSize,
88
+ ingest_api_PublicAuthentication as PublicAuthentication,
88
89
  ingest_api_RegisterContainerizedExtractorRequest as RegisterContainerizedExtractorRequest,
89
90
  ingest_api_RegisterContainerizedExtractorResponse as RegisterContainerizedExtractorResponse,
90
91
  ingest_api_RelativeTimestamp as RelativeTimestamp,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.630.0
3
+ Version: 0.632.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<3,>=2.8.0
@@ -1,12 +1,12 @@
1
- nominal_api/__init__.py,sha256=o1to-qLuTDVlk4NzXMuykGoN-S5GqUf7jGTiyppSrRU,1995
2
- nominal_api/_impl.py,sha256=7vZVXgGY5wZA2_Wx-2PUQvk2pOxMhaXbRMfyK8L853c,3015247
1
+ nominal_api/__init__.py,sha256=wT8iighyPg7HmURDZQwc7FD_DZMQZy_hyh7mHWnbn1s,1995
2
+ nominal_api/_impl.py,sha256=QV6dxulObj3AAMXfoAXOZfTD9i06Nu0uJGdFCewgJxI,3015395
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
6
6
  nominal_api/api_rids/__init__.py,sha256=8A7KLHxUyUzrx9Gss8zB2i08qf2QjtJgaMvcLfk-P2g,608
7
7
  nominal_api/attachments_api/__init__.py,sha256=eQBE8xVTFDaTItCZv-WJSZqSStpgdai192n23pmVeeQ,634
8
8
  nominal_api/authentication_api/__init__.py,sha256=HBQrldagoqcvYES_kjB1Eh8oZTZ8SJdX85UZySJB9z0,986
9
- nominal_api/authorization/__init__.py,sha256=F6JRzi_O0vr5jgwPbDlQMHLLKpCzyc9u5DYHfycnhYU,1130
9
+ nominal_api/authorization/__init__.py,sha256=WeUTCL9MLsd78_ZWvY-8j5RI3lyhbPI3eC6gyTfLIS4,1068
10
10
  nominal_api/comments_api/__init__.py,sha256=bt24EdmTY513nKMrWMCsfYV0XmX7VKQgOFH4I4tKWy4,860
11
11
  nominal_api/connect_download/__init__.py,sha256=kYpjIjuFHA3uix70bJ5gV9-7BmDcJZAcm_e3MeMVSSQ,83
12
12
  nominal_api/datasource/__init__.py,sha256=C2lvxiWYnZRjaMKL2sY9_bfgZezBpK39A3VtgSASgRI,134
@@ -15,7 +15,7 @@ nominal_api/datasource_logset/__init__.py,sha256=H3fNxqyYC490MwvdWbt5BwhgWQUev7u
15
15
  nominal_api/datasource_logset_api/__init__.py,sha256=JyjO1tQmG-HZ7kYMi8lSfeaaYddBZdCMIyqc0IUJfWo,1006
16
16
  nominal_api/datasource_pagination_api/__init__.py,sha256=3GO8TAUavOe6dUEitOhje74aSZHjTKVI5N1MNuct1lI,212
17
17
  nominal_api/event/__init__.py,sha256=7PFDYCfwSm4AfVtWkHIUrLv1qo1LD-Ed09hTpMGjaFA,916
18
- nominal_api/ingest_api/__init__.py,sha256=jpxmJO0dzcCEIv5iM7xvziQEs1x92XLTm-LmbHxtii4,6953
18
+ nominal_api/ingest_api/__init__.py,sha256=o-JBX6tm7Tfwkll1eqiiOzqZYvIyajtgqGkPjmYjrrQ,7014
19
19
  nominal_api/ingest_workflow_api/__init__.py,sha256=Ni-u6N4Ixbp4z1WIymYa1-28UQmDsyQsBgf9HYpunSU,1426
20
20
  nominal_api/persistent_compute_api/__init__.py,sha256=OTn2mzP57Bq4MOItkXMockPrDZmHvp6wisuZHcy2K90,1973
21
21
  nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
@@ -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.630.0.dist-info/METADATA,sha256=wSDr_qOclpJTcebxxtUomNRYQQAmVrjZW2fESsTkF90,199
77
- nominal_api-0.630.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
78
- nominal_api-0.630.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
79
- nominal_api-0.630.0.dist-info/RECORD,,
76
+ nominal_api-0.632.0.dist-info/METADATA,sha256=O3rUO3kXWItktNky9vPk2aF2RDt-9Os9jiBKVffZbJA,199
77
+ nominal_api-0.632.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
78
+ nominal_api-0.632.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
79
+ nominal_api-0.632.0.dist-info/RECORD,,