nominal-api 0.967.0__py3-none-any.whl → 0.967.1__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 +3 -19
- {nominal_api-0.967.0.dist-info → nominal_api-0.967.1.dist-info}/METADATA +1 -1
- {nominal_api-0.967.0.dist-info → nominal_api-0.967.1.dist-info}/RECORD +6 -6
- {nominal_api-0.967.0.dist-info → nominal_api-0.967.1.dist-info}/WHEEL +0 -0
- {nominal_api-0.967.0.dist-info → nominal_api-0.967.1.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
|
@@ -79894,8 +79894,6 @@ class scout_run_api_CreateRunRequest(ConjureBeanType):
|
|
|
79894
79894
|
|
|
79895
79895
|
@builtins.property
|
|
79896
79896
|
def title(self) -> str:
|
|
79897
|
-
"""This must be non-empty.
|
|
79898
|
-
"""
|
|
79899
79897
|
return self._title
|
|
79900
79898
|
|
|
79901
79899
|
@builtins.property
|
|
@@ -79928,9 +79926,6 @@ class scout_run_api_CreateRunRequest(ConjureBeanType):
|
|
|
79928
79926
|
|
|
79929
79927
|
@builtins.property
|
|
79930
79928
|
def data_sources(self) -> Dict[str, "scout_run_api_CreateRunDataSource"]:
|
|
79931
|
-
"""The data sources to include in this run. If asset or assets is provided, this field
|
|
79932
|
-
will be ignored. Exactly one of data source(s) or asset(s) must be provided for a run.
|
|
79933
|
-
"""
|
|
79934
79929
|
return self._data_sources
|
|
79935
79930
|
|
|
79936
79931
|
@builtins.property
|
|
@@ -79943,10 +79938,6 @@ will be ignored. Exactly one of data source(s) or asset(s) must be provided for
|
|
|
79943
79938
|
|
|
79944
79939
|
@builtins.property
|
|
79945
79940
|
def assets(self) -> List[str]:
|
|
79946
|
-
"""The assets to associate with the run. If this is specified, the deprecated asset field
|
|
79947
|
-
is ignored and least one asset must be specified. Exactly one of data source(s) or asset(s)
|
|
79948
|
-
must be provided for a run.
|
|
79949
|
-
"""
|
|
79950
79941
|
return self._assets
|
|
79951
79942
|
|
|
79952
79943
|
@builtins.property
|
|
@@ -82058,12 +82049,12 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
|
|
|
82058
82049
|
'data_sources': ConjureFieldDefinition('dataSources', OptionalTypeWrapper[Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]]),
|
|
82059
82050
|
'attachments': ConjureFieldDefinition('attachments', OptionalTypeWrapper[List[api_rids_AttachmentRid]]),
|
|
82060
82051
|
'asset': ConjureFieldDefinition('asset', OptionalTypeWrapper[scout_rids_api_AssetRid]),
|
|
82061
|
-
'assets': ConjureFieldDefinition('assets',
|
|
82052
|
+
'assets': ConjureFieldDefinition('assets', List[scout_rids_api_AssetRid])
|
|
82062
82053
|
}
|
|
82063
82054
|
|
|
82064
82055
|
__slots__: List[str] = ['_title', '_description', '_start_time', '_end_time', '_properties', '_labels', '_links', '_run_prefix', '_data_sources', '_attachments', '_asset', '_assets']
|
|
82065
82056
|
|
|
82066
|
-
def __init__(self,
|
|
82057
|
+
def __init__(self, assets: List[str], asset: Optional[str] = None, attachments: Optional[List[str]] = None, data_sources: Optional[Dict[str, "scout_run_api_CreateRunDataSource"]] = None, description: Optional[str] = None, end_time: Optional["scout_run_api_UtcTimestamp"] = None, labels: Optional[List[str]] = None, links: Optional[List["scout_run_api_Link"]] = None, properties: Optional[Dict[str, str]] = None, run_prefix: Optional[str] = None, start_time: Optional["scout_run_api_UtcTimestamp"] = None, title: Optional[str] = None) -> None:
|
|
82067
82058
|
self._title = title
|
|
82068
82059
|
self._description = description
|
|
82069
82060
|
self._start_time = start_time
|
|
@@ -82113,9 +82104,6 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
|
|
|
82113
82104
|
|
|
82114
82105
|
@builtins.property
|
|
82115
82106
|
def data_sources(self) -> Optional[Dict[str, "scout_run_api_CreateRunDataSource"]]:
|
|
82116
|
-
"""The data sources to include in this run. If asset or assets is provided, this field
|
|
82117
|
-
will be ignored. Exactly one of data source(s) or asset(s) must be provided for a run.
|
|
82118
|
-
"""
|
|
82119
82107
|
return self._data_sources
|
|
82120
82108
|
|
|
82121
82109
|
@builtins.property
|
|
@@ -82127,11 +82115,7 @@ will be ignored. Exactly one of data source(s) or asset(s) must be provided for
|
|
|
82127
82115
|
return self._asset
|
|
82128
82116
|
|
|
82129
82117
|
@builtins.property
|
|
82130
|
-
def assets(self) ->
|
|
82131
|
-
"""The assets to associate with the run. If this is specified, the deprecated asset field
|
|
82132
|
-
is ignored and at least one asset must be specified. Exactly one of data source(s) or
|
|
82133
|
-
asset(s) must be provided for a run.
|
|
82134
|
-
"""
|
|
82118
|
+
def assets(self) -> List[str]:
|
|
82135
82119
|
return self._assets
|
|
82136
82120
|
|
|
82137
82121
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=xZqLp757U80j0i6Pu0EwSipy3kDrUb9AW0jN1h9dCo0,2109
|
|
2
|
+
nominal_api/_impl.py,sha256=kNYX2M1hwJmmjIEHPxo3bZ_UTmf-41MT1BgkJnFUTLU,3870868
|
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
|
4
4
|
nominal_api/api/__init__.py,sha256=OHAEgaRoUX60742H_U3q_pBoPGpLspsL5XERHQ-rjMs,2299
|
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
|
@@ -79,7 +79,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
|
|
|
79
79
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=i21vITWBn-6ruVuFZg491TDpx6WcIhJBoF3oNw3w338,1186
|
|
80
80
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
|
81
81
|
nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
|
|
82
|
-
nominal_api-0.967.
|
|
83
|
-
nominal_api-0.967.
|
|
84
|
-
nominal_api-0.967.
|
|
85
|
-
nominal_api-0.967.
|
|
82
|
+
nominal_api-0.967.1.dist-info/METADATA,sha256=HzdEgTa7XaA2k8XC1kYM7LgNHRUX90OEjxm1-xA6YlQ,199
|
|
83
|
+
nominal_api-0.967.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
84
|
+
nominal_api-0.967.1.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
85
|
+
nominal_api-0.967.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|