nominal-api 0.791.0__py3-none-any.whl → 0.792.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
@@ -78,5 +78,5 @@ __all__ = [
78
78
 
79
79
  __conjure_generator_version__ = "4.17.0"
80
80
 
81
- __version__ = "0.791.0"
81
+ __version__ = "0.792.0"
82
82
 
nominal_api/_impl.py CHANGED
@@ -11702,18 +11702,20 @@ class ingest_api_NewVideoIngestDestination(ConjureBeanType):
11702
11702
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
11703
11703
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
11704
11704
  'video_file_details': ConjureFieldDefinition('videoFileDetails', OptionalTypeWrapper[ingest_api_VideoFileIngestDetails]),
11705
- 'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid])
11705
+ 'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid]),
11706
+ 'marking_rids': ConjureFieldDefinition('markingRids', List[scout_rids_api_MarkingRid])
11706
11707
  }
11707
11708
 
11708
- __slots__: List[str] = ['_title', '_description', '_properties', '_labels', '_video_file_details', '_workspace']
11709
+ __slots__: List[str] = ['_title', '_description', '_properties', '_labels', '_video_file_details', '_workspace', '_marking_rids']
11709
11710
 
11710
- def __init__(self, labels: List[str], properties: Dict[str, str], description: Optional[str] = None, title: Optional[str] = None, video_file_details: Optional["ingest_api_VideoFileIngestDetails"] = None, workspace: Optional[str] = None) -> None:
11711
+ def __init__(self, labels: List[str], marking_rids: List[str], properties: Dict[str, str], description: Optional[str] = None, title: Optional[str] = None, video_file_details: Optional["ingest_api_VideoFileIngestDetails"] = None, workspace: Optional[str] = None) -> None:
11711
11712
  self._title = title
11712
11713
  self._description = description
11713
11714
  self._properties = properties
11714
11715
  self._labels = labels
11715
11716
  self._video_file_details = video_file_details
11716
11717
  self._workspace = workspace
11718
+ self._marking_rids = marking_rids
11717
11719
 
11718
11720
  @builtins.property
11719
11721
  def title(self) -> Optional[str]:
@@ -11753,6 +11755,13 @@ the user's organization, if the default workspace for the organization is config
11753
11755
  """
11754
11756
  return self._workspace
11755
11757
 
11758
+ @builtins.property
11759
+ def marking_rids(self) -> List[str]:
11760
+ """The markings to apply to the created video.
11761
+ If not provided, the video will be visible to all users in the same workspace.
11762
+ """
11763
+ return self._marking_rids
11764
+
11756
11765
 
11757
11766
  ingest_api_NewVideoIngestDestination.__name__ = "NewVideoIngestDestination"
11758
11767
  ingest_api_NewVideoIngestDestination.__qualname__ = "NewVideoIngestDestination"
@@ -66785,12 +66794,13 @@ class scout_datasource_connection_api_CreateConnection(ConjureBeanType):
66785
66794
  'scraping': ConjureFieldDefinition('scraping', OptionalTypeWrapper[scout_datasource_connection_api_ScrapingConfig]),
66786
66795
  'should_scrape': ConjureFieldDefinition('shouldScrape', bool),
66787
66796
  'limits': ConjureFieldDefinition('limits', OptionalTypeWrapper[scout_datasource_connection_api_LimitsConfig]),
66788
- 'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid])
66797
+ 'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid]),
66798
+ 'marking_rids': ConjureFieldDefinition('markingRids', List[scout_rids_api_MarkingRid])
66789
66799
  }
66790
66800
 
66791
- __slots__: List[str] = ['_name', '_description', '_connection_details', '_metadata', '_required_tag_names', '_available_tag_values', '_scraping', '_should_scrape', '_limits', '_workspace']
66801
+ __slots__: List[str] = ['_name', '_description', '_connection_details', '_metadata', '_required_tag_names', '_available_tag_values', '_scraping', '_should_scrape', '_limits', '_workspace', '_marking_rids']
66792
66802
 
66793
- def __init__(self, connection_details: "scout_datasource_connection_api_ConnectionDetails", metadata: Dict[str, str], name: str, required_tag_names: List[str], should_scrape: bool, available_tag_values: Optional[Dict[str, List[str]]] = None, description: Optional[str] = None, limits: Optional["scout_datasource_connection_api_LimitsConfig"] = None, scraping: Optional["scout_datasource_connection_api_ScrapingConfig"] = None, workspace: Optional[str] = None) -> None:
66803
+ def __init__(self, connection_details: "scout_datasource_connection_api_ConnectionDetails", marking_rids: List[str], metadata: Dict[str, str], name: str, required_tag_names: List[str], should_scrape: bool, available_tag_values: Optional[Dict[str, List[str]]] = None, description: Optional[str] = None, limits: Optional["scout_datasource_connection_api_LimitsConfig"] = None, scraping: Optional["scout_datasource_connection_api_ScrapingConfig"] = None, workspace: Optional[str] = None) -> None:
66794
66804
  self._name = name
66795
66805
  self._description = description
66796
66806
  self._connection_details = connection_details
@@ -66801,6 +66811,7 @@ class scout_datasource_connection_api_CreateConnection(ConjureBeanType):
66801
66811
  self._should_scrape = should_scrape
66802
66812
  self._limits = limits
66803
66813
  self._workspace = workspace
66814
+ self._marking_rids = marking_rids
66804
66815
 
66805
66816
  @builtins.property
66806
66817
  def name(self) -> str:
@@ -66853,6 +66864,13 @@ the user's organization, if the default workspace for the organization is config
66853
66864
  """
66854
66865
  return self._workspace
66855
66866
 
66867
+ @builtins.property
66868
+ def marking_rids(self) -> List[str]:
66869
+ """The markings to apply to the created connection.
66870
+ If not provided, the connection will be visible to all users in the same workspace.
66871
+ """
66872
+ return self._marking_rids
66873
+
66856
66874
 
66857
66875
  scout_datasource_connection_api_CreateConnection.__name__ = "CreateConnection"
66858
66876
  scout_datasource_connection_api_CreateConnection.__qualname__ = "CreateConnection"
@@ -77704,18 +77722,20 @@ class scout_video_api_CreateVideoRequest(ConjureBeanType):
77704
77722
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
77705
77723
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
77706
77724
  'origin_metadata': ConjureFieldDefinition('originMetadata', OptionalTypeWrapper[scout_video_api_VideoOriginMetadata]),
77707
- 'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid])
77725
+ 'workspace': ConjureFieldDefinition('workspace', OptionalTypeWrapper[api_rids_WorkspaceRid]),
77726
+ 'marking_rids': ConjureFieldDefinition('markingRids', List[scout_rids_api_MarkingRid])
77708
77727
  }
77709
77728
 
77710
- __slots__: List[str] = ['_title', '_description', '_labels', '_properties', '_origin_metadata', '_workspace']
77729
+ __slots__: List[str] = ['_title', '_description', '_labels', '_properties', '_origin_metadata', '_workspace', '_marking_rids']
77711
77730
 
77712
- def __init__(self, labels: List[str], properties: Dict[str, str], title: str, description: Optional[str] = None, origin_metadata: Optional["scout_video_api_VideoOriginMetadata"] = None, workspace: Optional[str] = None) -> None:
77731
+ def __init__(self, labels: List[str], marking_rids: List[str], properties: Dict[str, str], title: str, description: Optional[str] = None, origin_metadata: Optional["scout_video_api_VideoOriginMetadata"] = None, workspace: Optional[str] = None) -> None:
77713
77732
  self._title = title
77714
77733
  self._description = description
77715
77734
  self._labels = labels
77716
77735
  self._properties = properties
77717
77736
  self._origin_metadata = origin_metadata
77718
77737
  self._workspace = workspace
77738
+ self._marking_rids = marking_rids
77719
77739
 
77720
77740
  @builtins.property
77721
77741
  def title(self) -> str:
@@ -77745,6 +77765,13 @@ organization is configured.
77745
77765
  """
77746
77766
  return self._workspace
77747
77767
 
77768
+ @builtins.property
77769
+ def marking_rids(self) -> List[str]:
77770
+ """The markings to apply to the created video.
77771
+ If not provided, the video will be visible to all users in the same workspace.
77772
+ """
77773
+ return self._marking_rids
77774
+
77748
77775
 
77749
77776
  scout_video_api_CreateVideoRequest.__name__ = "CreateVideoRequest"
77750
77777
  scout_video_api_CreateVideoRequest.__qualname__ = "CreateVideoRequest"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.791.0
3
+ Version: 0.792.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<4,>=2.8.0
@@ -1,5 +1,5 @@
1
- nominal_api/__init__.py,sha256=qbr_e9sPtwj2kKXytbpjDGuqz74A5Q6OE2z959oA5gs,2012
2
- nominal_api/_impl.py,sha256=DKJKnLX7JxtXjR9mSINbO_0lzsFDzdQnvPGojocAxh4,3465209
1
+ nominal_api/__init__.py,sha256=wEBp4Yx37vGQeoXilHqBtrWkbDbncTJ8WeMD3xWiB7M,2012
2
+ nominal_api/_impl.py,sha256=tzMPlp90BMYjJwyR1Ycd2WuMuQRkfWKZ71i-FkEOP5Y,3466506
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=PMREKP7UhxJ1_gHkrlJET46qlDHksKMm6-woR1p6WnU,1970
5
5
  nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
@@ -75,7 +75,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
75
75
  nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
76
76
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
77
77
  nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
78
- nominal_api-0.791.0.dist-info/METADATA,sha256=q-cnv-zlyjQfOAkS0flNr4iXwczDJuGG-OITpyBlSBc,199
79
- nominal_api-0.791.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
- nominal_api-0.791.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
81
- nominal_api-0.791.0.dist-info/RECORD,,
78
+ nominal_api-0.792.0.dist-info/METADATA,sha256=tzEVB0kToYrCjGuZo9hZYvLqfiuLHPTw-SrWi13H4_g,199
79
+ nominal_api-0.792.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
+ nominal_api-0.792.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
81
+ nominal_api-0.792.0.dist-info/RECORD,,