nominal-api 0.854.0__py3-none-any.whl → 0.856.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 CHANGED
@@ -80,5 +80,5 @@ __all__ = [
80
80
 
81
81
  __conjure_generator_version__ = "4.17.0"
82
82
 
83
- __version__ = "0.854.0"
83
+ __version__ = "0.856.0"
84
84
 
nominal_api/_impl.py CHANGED
@@ -44989,41 +44989,58 @@ class scout_compute_api_DerivedSeries(ConjureUnionType):
44989
44989
  This is a series that is derived from a function within a module.
44990
44990
  """
44991
44991
  _module_application: Optional["scout_compute_api_ModuleApplicationDerivedSeries"] = None
44992
+ _function: Optional["scout_compute_api_FunctionDerivedSeries"] = None
44992
44993
 
44993
44994
  @builtins.classmethod
44994
44995
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
44995
44996
  return {
44996
- 'module_application': ConjureFieldDefinition('moduleApplication', scout_compute_api_ModuleApplicationDerivedSeries)
44997
+ 'module_application': ConjureFieldDefinition('moduleApplication', scout_compute_api_ModuleApplicationDerivedSeries),
44998
+ 'function': ConjureFieldDefinition('function', scout_compute_api_FunctionDerivedSeries)
44997
44999
  }
44998
45000
 
44999
45001
  def __init__(
45000
45002
  self,
45001
45003
  module_application: Optional["scout_compute_api_ModuleApplicationDerivedSeries"] = None,
45004
+ function: Optional["scout_compute_api_FunctionDerivedSeries"] = None,
45002
45005
  type_of_union: Optional[str] = None
45003
45006
  ) -> None:
45004
45007
  if type_of_union is None:
45005
- if (module_application is not None) != 1:
45008
+ if (module_application is not None) + (function is not None) != 1:
45006
45009
  raise ValueError('a union must contain a single member')
45007
45010
 
45008
45011
  if module_application is not None:
45009
45012
  self._module_application = module_application
45010
45013
  self._type = 'moduleApplication'
45014
+ if function is not None:
45015
+ self._function = function
45016
+ self._type = 'function'
45011
45017
 
45012
45018
  elif type_of_union == 'moduleApplication':
45013
45019
  if module_application is None:
45014
45020
  raise ValueError('a union value must not be None')
45015
45021
  self._module_application = module_application
45016
45022
  self._type = 'moduleApplication'
45023
+ elif type_of_union == 'function':
45024
+ if function is None:
45025
+ raise ValueError('a union value must not be None')
45026
+ self._function = function
45027
+ self._type = 'function'
45017
45028
 
45018
45029
  @builtins.property
45019
45030
  def module_application(self) -> Optional["scout_compute_api_ModuleApplicationDerivedSeries"]:
45020
45031
  return self._module_application
45021
45032
 
45033
+ @builtins.property
45034
+ def function(self) -> Optional["scout_compute_api_FunctionDerivedSeries"]:
45035
+ return self._function
45036
+
45022
45037
  def accept(self, visitor) -> Any:
45023
45038
  if not isinstance(visitor, scout_compute_api_DerivedSeriesVisitor):
45024
45039
  raise ValueError('{} is not an instance of scout_compute_api_DerivedSeriesVisitor'.format(visitor.__class__.__name__))
45025
45040
  if self._type == 'moduleApplication' and self.module_application is not None:
45026
45041
  return visitor._module_application(self.module_application)
45042
+ if self._type == 'function' and self.function is not None:
45043
+ return visitor._function(self.function)
45027
45044
 
45028
45045
 
45029
45046
  scout_compute_api_DerivedSeries.__name__ = "DerivedSeries"
@@ -45037,6 +45054,10 @@ class scout_compute_api_DerivedSeriesVisitor:
45037
45054
  def _module_application(self, module_application: "scout_compute_api_ModuleApplicationDerivedSeries") -> Any:
45038
45055
  pass
45039
45056
 
45057
+ @abstractmethod
45058
+ def _function(self, function: "scout_compute_api_FunctionDerivedSeries") -> Any:
45059
+ pass
45060
+
45040
45061
 
45041
45062
  scout_compute_api_DerivedSeriesVisitor.__name__ = "DerivedSeriesVisitor"
45042
45063
  scout_compute_api_DerivedSeriesVisitor.__qualname__ = "DerivedSeriesVisitor"
@@ -46605,6 +46626,129 @@ scout_compute_api_FrequencyDomainPlot.__qualname__ = "FrequencyDomainPlot"
46605
46626
  scout_compute_api_FrequencyDomainPlot.__module__ = "nominal_api.scout_compute_api"
46606
46627
 
46607
46628
 
46629
+ class scout_compute_api_FunctionDerivedSeries(ConjureBeanType):
46630
+ """A reference to a derived series resulting from applying a function to a set of arguments.
46631
+ """
46632
+
46633
+ @builtins.classmethod
46634
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
46635
+ return {
46636
+ 'module_name': ConjureFieldDefinition('moduleName', scout_compute_api_StringConstant),
46637
+ 'function_name': ConjureFieldDefinition('functionName', scout_compute_api_StringConstant),
46638
+ 'version_reference': ConjureFieldDefinition('versionReference', scout_compute_api_ModuleVersionReference),
46639
+ 'function_args': ConjureFieldDefinition('functionArgs', Dict[scout_compute_api_FunctionParameterName, scout_compute_api_FunctionParameterValue])
46640
+ }
46641
+
46642
+ __slots__: List[str] = ['_module_name', '_function_name', '_version_reference', '_function_args']
46643
+
46644
+ def __init__(self, function_args: Dict[str, "scout_compute_api_FunctionParameterValue"], function_name: "scout_compute_api_StringConstant", module_name: "scout_compute_api_StringConstant", version_reference: "scout_compute_api_ModuleVersionReference") -> None:
46645
+ self._module_name = module_name
46646
+ self._function_name = function_name
46647
+ self._version_reference = version_reference
46648
+ self._function_args = function_args
46649
+
46650
+ @builtins.property
46651
+ def module_name(self) -> "scout_compute_api_StringConstant":
46652
+ return self._module_name
46653
+
46654
+ @builtins.property
46655
+ def function_name(self) -> "scout_compute_api_StringConstant":
46656
+ return self._function_name
46657
+
46658
+ @builtins.property
46659
+ def version_reference(self) -> "scout_compute_api_ModuleVersionReference":
46660
+ return self._version_reference
46661
+
46662
+ @builtins.property
46663
+ def function_args(self) -> Dict[str, "scout_compute_api_FunctionParameterValue"]:
46664
+ """Map of function input names to their values. The function inputs must match the function's parameter
46665
+ names and types. An input must be specified for each of the referenced function's parameters.
46666
+ """
46667
+ return self._function_args
46668
+
46669
+
46670
+ scout_compute_api_FunctionDerivedSeries.__name__ = "FunctionDerivedSeries"
46671
+ scout_compute_api_FunctionDerivedSeries.__qualname__ = "FunctionDerivedSeries"
46672
+ scout_compute_api_FunctionDerivedSeries.__module__ = "nominal_api.scout_compute_api"
46673
+
46674
+
46675
+ class scout_compute_api_FunctionParameterValue(ConjureUnionType):
46676
+ _variable: Optional[str] = None
46677
+ _value: Optional["scout_compute_api_VariableValue"] = None
46678
+
46679
+ @builtins.classmethod
46680
+ def _options(cls) -> Dict[str, ConjureFieldDefinition]:
46681
+ return {
46682
+ 'variable': ConjureFieldDefinition('variable', scout_compute_api_VariableName),
46683
+ 'value': ConjureFieldDefinition('value', scout_compute_api_VariableValue)
46684
+ }
46685
+
46686
+ def __init__(
46687
+ self,
46688
+ variable: Optional[str] = None,
46689
+ value: Optional["scout_compute_api_VariableValue"] = None,
46690
+ type_of_union: Optional[str] = None
46691
+ ) -> None:
46692
+ if type_of_union is None:
46693
+ if (variable is not None) + (value is not None) != 1:
46694
+ raise ValueError('a union must contain a single member')
46695
+
46696
+ if variable is not None:
46697
+ self._variable = variable
46698
+ self._type = 'variable'
46699
+ if value is not None:
46700
+ self._value = value
46701
+ self._type = 'value'
46702
+
46703
+ elif type_of_union == 'variable':
46704
+ if variable is None:
46705
+ raise ValueError('a union value must not be None')
46706
+ self._variable = variable
46707
+ self._type = 'variable'
46708
+ elif type_of_union == 'value':
46709
+ if value is None:
46710
+ raise ValueError('a union value must not be None')
46711
+ self._value = value
46712
+ self._type = 'value'
46713
+
46714
+ @builtins.property
46715
+ def variable(self) -> Optional[str]:
46716
+ return self._variable
46717
+
46718
+ @builtins.property
46719
+ def value(self) -> Optional["scout_compute_api_VariableValue"]:
46720
+ return self._value
46721
+
46722
+ def accept(self, visitor) -> Any:
46723
+ if not isinstance(visitor, scout_compute_api_FunctionParameterValueVisitor):
46724
+ raise ValueError('{} is not an instance of scout_compute_api_FunctionParameterValueVisitor'.format(visitor.__class__.__name__))
46725
+ if self._type == 'variable' and self.variable is not None:
46726
+ return visitor._variable(self.variable)
46727
+ if self._type == 'value' and self.value is not None:
46728
+ return visitor._value(self.value)
46729
+
46730
+
46731
+ scout_compute_api_FunctionParameterValue.__name__ = "FunctionParameterValue"
46732
+ scout_compute_api_FunctionParameterValue.__qualname__ = "FunctionParameterValue"
46733
+ scout_compute_api_FunctionParameterValue.__module__ = "nominal_api.scout_compute_api"
46734
+
46735
+
46736
+ class scout_compute_api_FunctionParameterValueVisitor:
46737
+
46738
+ @abstractmethod
46739
+ def _variable(self, variable: str) -> Any:
46740
+ pass
46741
+
46742
+ @abstractmethod
46743
+ def _value(self, value: "scout_compute_api_VariableValue") -> Any:
46744
+ pass
46745
+
46746
+
46747
+ scout_compute_api_FunctionParameterValueVisitor.__name__ = "FunctionParameterValueVisitor"
46748
+ scout_compute_api_FunctionParameterValueVisitor.__qualname__ = "FunctionParameterValueVisitor"
46749
+ scout_compute_api_FunctionParameterValueVisitor.__module__ = "nominal_api.scout_compute_api"
46750
+
46751
+
46608
46752
  class scout_compute_api_FunctionVariables(ConjureBeanType):
46609
46753
 
46610
46754
  @builtins.classmethod
@@ -48289,12 +48433,12 @@ The referenced module must be applied to the referenced asset.
48289
48433
  return {
48290
48434
  'module_application_rid': ConjureFieldDefinition('moduleApplicationRid', scout_compute_api_StringConstant),
48291
48435
  'function_name': ConjureFieldDefinition('functionName', scout_compute_api_StringConstant),
48292
- 'function_args': ConjureFieldDefinition('functionArgs', Dict[scout_compute_api_VariableName, scout_compute_api_VariableValue])
48436
+ 'function_args': ConjureFieldDefinition('functionArgs', Dict[scout_compute_api_FunctionParameterName, scout_compute_api_FunctionParameterValue])
48293
48437
  }
48294
48438
 
48295
48439
  __slots__: List[str] = ['_module_application_rid', '_function_name', '_function_args']
48296
48440
 
48297
- def __init__(self, function_args: Dict[str, "scout_compute_api_VariableValue"], function_name: "scout_compute_api_StringConstant", module_application_rid: "scout_compute_api_StringConstant") -> None:
48441
+ def __init__(self, function_args: Dict[str, "scout_compute_api_FunctionParameterValue"], function_name: "scout_compute_api_StringConstant", module_application_rid: "scout_compute_api_StringConstant") -> None:
48298
48442
  self._module_application_rid = module_application_rid
48299
48443
  self._function_name = function_name
48300
48444
  self._function_args = function_args
@@ -48310,7 +48454,7 @@ The referenced module must be applied to the referenced asset.
48310
48454
  return self._function_name
48311
48455
 
48312
48456
  @builtins.property
48313
- def function_args(self) -> Dict[str, "scout_compute_api_VariableValue"]:
48457
+ def function_args(self) -> Dict[str, "scout_compute_api_FunctionParameterValue"]:
48314
48458
  """Map of function input names to their values. The function inputs must match the function's parameter
48315
48459
  names and types. Because all function parameters have default values when the module is applied to the asset, this can be empty.
48316
48460
  """
@@ -48322,6 +48466,62 @@ scout_compute_api_ModuleApplicationDerivedSeries.__qualname__ = "ModuleApplicati
48322
48466
  scout_compute_api_ModuleApplicationDerivedSeries.__module__ = "nominal_api.scout_compute_api"
48323
48467
 
48324
48468
 
48469
+ class scout_compute_api_ModuleVersionReference(ConjureUnionType):
48470
+ _pinned: Optional["scout_compute_api_PinnedModuleVersionReference"] = None
48471
+
48472
+ @builtins.classmethod
48473
+ def _options(cls) -> Dict[str, ConjureFieldDefinition]:
48474
+ return {
48475
+ 'pinned': ConjureFieldDefinition('pinned', scout_compute_api_PinnedModuleVersionReference)
48476
+ }
48477
+
48478
+ def __init__(
48479
+ self,
48480
+ pinned: Optional["scout_compute_api_PinnedModuleVersionReference"] = None,
48481
+ type_of_union: Optional[str] = None
48482
+ ) -> None:
48483
+ if type_of_union is None:
48484
+ if (pinned is not None) != 1:
48485
+ raise ValueError('a union must contain a single member')
48486
+
48487
+ if pinned is not None:
48488
+ self._pinned = pinned
48489
+ self._type = 'pinned'
48490
+
48491
+ elif type_of_union == 'pinned':
48492
+ if pinned is None:
48493
+ raise ValueError('a union value must not be None')
48494
+ self._pinned = pinned
48495
+ self._type = 'pinned'
48496
+
48497
+ @builtins.property
48498
+ def pinned(self) -> Optional["scout_compute_api_PinnedModuleVersionReference"]:
48499
+ return self._pinned
48500
+
48501
+ def accept(self, visitor) -> Any:
48502
+ if not isinstance(visitor, scout_compute_api_ModuleVersionReferenceVisitor):
48503
+ raise ValueError('{} is not an instance of scout_compute_api_ModuleVersionReferenceVisitor'.format(visitor.__class__.__name__))
48504
+ if self._type == 'pinned' and self.pinned is not None:
48505
+ return visitor._pinned(self.pinned)
48506
+
48507
+
48508
+ scout_compute_api_ModuleVersionReference.__name__ = "ModuleVersionReference"
48509
+ scout_compute_api_ModuleVersionReference.__qualname__ = "ModuleVersionReference"
48510
+ scout_compute_api_ModuleVersionReference.__module__ = "nominal_api.scout_compute_api"
48511
+
48512
+
48513
+ class scout_compute_api_ModuleVersionReferenceVisitor:
48514
+
48515
+ @abstractmethod
48516
+ def _pinned(self, pinned: "scout_compute_api_PinnedModuleVersionReference") -> Any:
48517
+ pass
48518
+
48519
+
48520
+ scout_compute_api_ModuleVersionReferenceVisitor.__name__ = "ModuleVersionReferenceVisitor"
48521
+ scout_compute_api_ModuleVersionReferenceVisitor.__qualname__ = "ModuleVersionReferenceVisitor"
48522
+ scout_compute_api_ModuleVersionReferenceVisitor.__module__ = "nominal_api.scout_compute_api"
48523
+
48524
+
48325
48525
  class scout_compute_api_NegativeValueConfiguration(ConjureUnionType):
48326
48526
  _allow_negative_values: Optional["scout_compute_api_AllowNegativeValues"] = None
48327
48527
  _set_negative_values_to_zero: Optional["scout_compute_api_SetNegativeValuesToZero"] = None
@@ -50728,6 +50928,29 @@ scout_compute_api_PersistenceWindowConfiguration.__qualname__ = "PersistenceWind
50728
50928
  scout_compute_api_PersistenceWindowConfiguration.__module__ = "nominal_api.scout_compute_api"
50729
50929
 
50730
50930
 
50931
+ class scout_compute_api_PinnedModuleVersionReference(ConjureBeanType):
50932
+
50933
+ @builtins.classmethod
50934
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
50935
+ return {
50936
+ 'version': ConjureFieldDefinition('version', scout_compute_api_StringConstant)
50937
+ }
50938
+
50939
+ __slots__: List[str] = ['_version']
50940
+
50941
+ def __init__(self, version: "scout_compute_api_StringConstant") -> None:
50942
+ self._version = version
50943
+
50944
+ @builtins.property
50945
+ def version(self) -> "scout_compute_api_StringConstant":
50946
+ return self._version
50947
+
50948
+
50949
+ scout_compute_api_PinnedModuleVersionReference.__name__ = "PinnedModuleVersionReference"
50950
+ scout_compute_api_PinnedModuleVersionReference.__qualname__ = "PinnedModuleVersionReference"
50951
+ scout_compute_api_PinnedModuleVersionReference.__module__ = "nominal_api.scout_compute_api"
50952
+
50953
+
50731
50954
  class scout_compute_api_Point3d(ConjureBeanType):
50732
50955
 
50733
50956
  @builtins.classmethod
@@ -79018,14 +79241,13 @@ Throws NOT_FOUND if the view doesn't exist and INVALID_ARGUMENT if it is archive
79018
79241
  _decoder = ConjureDecoder()
79019
79242
  return _decoder.decode(_response.json(), scout_savedviews_api_UpdateSavedViewResponse, self._return_none_for_unknown_union_types)
79020
79243
 
79021
- def archive_saved_views(self, auth_header: str, request: "scout_savedviews_api_ArchiveSavedViewsRequest") -> None:
79022
- """Archives the specified saved views. Archived views are hidden from search.
79244
+ def archive_saved_view(self, auth_header: str, saved_view_rid: str) -> None:
79245
+ """Archives the specified saved view. Archived views are hidden from search.
79023
79246
  """
79024
79247
  _conjure_encoder = ConjureEncoder()
79025
79248
 
79026
79249
  _headers: Dict[str, Any] = {
79027
79250
  'Accept': 'application/json',
79028
- 'Content-Type': 'application/json',
79029
79251
  'Authorization': auth_header,
79030
79252
  }
79031
79253
 
@@ -79033,11 +79255,12 @@ Throws NOT_FOUND if the view doesn't exist and INVALID_ARGUMENT if it is archive
79033
79255
  }
79034
79256
 
79035
79257
  _path_params: Dict[str, str] = {
79258
+ 'savedViewRid': quote(str(_conjure_encoder.default(saved_view_rid)), safe=''),
79036
79259
  }
79037
79260
 
79038
- _json: Any = _conjure_encoder.default(request)
79261
+ _json: Any = None
79039
79262
 
79040
- _path = '/scout/saved-views/v1/archive-batch'
79263
+ _path = '/scout/saved-views/v1/{savedViewRid}/archive'
79041
79264
  _path = _path.format(**_path_params)
79042
79265
 
79043
79266
  _response: Response = self._request(
@@ -79049,14 +79272,13 @@ Throws NOT_FOUND if the view doesn't exist and INVALID_ARGUMENT if it is archive
79049
79272
 
79050
79273
  return
79051
79274
 
79052
- def unarchive_saved_views(self, auth_header: str, request: "scout_savedviews_api_UnarchiveSavedViewsRequest") -> None:
79053
- """Restores archived saved views, making them discoverable in search again.
79275
+ def unarchive_saved_view(self, auth_header: str, saved_view_rid: str) -> None:
79276
+ """Restores archived saved view, making them discoverable in search again.
79054
79277
  """
79055
79278
  _conjure_encoder = ConjureEncoder()
79056
79279
 
79057
79280
  _headers: Dict[str, Any] = {
79058
79281
  'Accept': 'application/json',
79059
- 'Content-Type': 'application/json',
79060
79282
  'Authorization': auth_header,
79061
79283
  }
79062
79284
 
@@ -79064,11 +79286,12 @@ Throws NOT_FOUND if the view doesn't exist and INVALID_ARGUMENT if it is archive
79064
79286
  }
79065
79287
 
79066
79288
  _path_params: Dict[str, str] = {
79289
+ 'savedViewRid': quote(str(_conjure_encoder.default(saved_view_rid)), safe=''),
79067
79290
  }
79068
79291
 
79069
- _json: Any = _conjure_encoder.default(request)
79292
+ _json: Any = None
79070
79293
 
79071
- _path = '/scout/saved-views/v1/unarchive-batch'
79294
+ _path = '/scout/saved-views/v1/{savedViewRid}/unarchive'
79072
79295
  _path = _path.format(**_path_params)
79073
79296
 
79074
79297
  _response: Response = self._request(
@@ -79086,29 +79309,6 @@ scout_savedviews_SavedViewService.__qualname__ = "SavedViewService"
79086
79309
  scout_savedviews_SavedViewService.__module__ = "nominal_api.scout_savedviews"
79087
79310
 
79088
79311
 
79089
- class scout_savedviews_api_ArchiveSavedViewsRequest(ConjureBeanType):
79090
-
79091
- @builtins.classmethod
79092
- def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
79093
- return {
79094
- 'saved_view_rids': ConjureFieldDefinition('savedViewRids', List[scout_rids_api_SavedViewRid])
79095
- }
79096
-
79097
- __slots__: List[str] = ['_saved_view_rids']
79098
-
79099
- def __init__(self, saved_view_rids: List[str]) -> None:
79100
- self._saved_view_rids = saved_view_rids
79101
-
79102
- @builtins.property
79103
- def saved_view_rids(self) -> List[str]:
79104
- return self._saved_view_rids
79105
-
79106
-
79107
- scout_savedviews_api_ArchiveSavedViewsRequest.__name__ = "ArchiveSavedViewsRequest"
79108
- scout_savedviews_api_ArchiveSavedViewsRequest.__qualname__ = "ArchiveSavedViewsRequest"
79109
- scout_savedviews_api_ArchiveSavedViewsRequest.__module__ = "nominal_api.scout_savedviews_api"
79110
-
79111
-
79112
79312
  class scout_savedviews_api_AssetSearchState(ConjureBeanType):
79113
79313
 
79114
79314
  @builtins.classmethod
@@ -79967,6 +80167,8 @@ class scout_savedviews_api_SortField(ConjureEnumType):
79967
80167
  '''TITLE'''
79968
80168
  CREATED_AT = 'CREATED_AT'
79969
80169
  '''CREATED_AT'''
80170
+ USER_DEFINED = 'USER_DEFINED'
80171
+ '''USER_DEFINED'''
79970
80172
  UNKNOWN = 'UNKNOWN'
79971
80173
  '''UNKNOWN'''
79972
80174
 
@@ -80105,29 +80307,6 @@ scout_savedviews_api_TemplateSearchState.__qualname__ = "TemplateSearchState"
80105
80307
  scout_savedviews_api_TemplateSearchState.__module__ = "nominal_api.scout_savedviews_api"
80106
80308
 
80107
80309
 
80108
- class scout_savedviews_api_UnarchiveSavedViewsRequest(ConjureBeanType):
80109
-
80110
- @builtins.classmethod
80111
- def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
80112
- return {
80113
- 'saved_view_rids': ConjureFieldDefinition('savedViewRids', List[scout_rids_api_SavedViewRid])
80114
- }
80115
-
80116
- __slots__: List[str] = ['_saved_view_rids']
80117
-
80118
- def __init__(self, saved_view_rids: List[str]) -> None:
80119
- self._saved_view_rids = saved_view_rids
80120
-
80121
- @builtins.property
80122
- def saved_view_rids(self) -> List[str]:
80123
- return self._saved_view_rids
80124
-
80125
-
80126
- scout_savedviews_api_UnarchiveSavedViewsRequest.__name__ = "UnarchiveSavedViewsRequest"
80127
- scout_savedviews_api_UnarchiveSavedViewsRequest.__qualname__ = "UnarchiveSavedViewsRequest"
80128
- scout_savedviews_api_UnarchiveSavedViewsRequest.__module__ = "nominal_api.scout_savedviews_api"
80129
-
80130
-
80131
80310
  class scout_savedviews_api_UpdateColor(ConjureUnionType):
80132
80311
  _color: Optional["scout_api_Color"] = None
80133
80312
  _clear_color: Optional["api_Empty"] = None
@@ -80214,17 +80393,19 @@ class scout_savedviews_api_UpdateSavedViewRequest(ConjureBeanType):
80214
80393
  'symbol': ConjureFieldDefinition('symbol', OptionalTypeWrapper[scout_savedviews_api_UpdateSymbol]),
80215
80394
  'color': ConjureFieldDefinition('color', OptionalTypeWrapper[scout_savedviews_api_UpdateColor]),
80216
80395
  'search_state': ConjureFieldDefinition('searchState', OptionalTypeWrapper[scout_savedviews_api_SearchState]),
80217
- 'display_state': ConjureFieldDefinition('displayState', OptionalTypeWrapper[scout_savedviews_api_DisplayState])
80396
+ 'display_state': ConjureFieldDefinition('displayState', OptionalTypeWrapper[scout_savedviews_api_DisplayState]),
80397
+ 'index': ConjureFieldDefinition('index', OptionalTypeWrapper[int])
80218
80398
  }
80219
80399
 
80220
- __slots__: List[str] = ['_title', '_symbol', '_color', '_search_state', '_display_state']
80400
+ __slots__: List[str] = ['_title', '_symbol', '_color', '_search_state', '_display_state', '_index']
80221
80401
 
80222
- def __init__(self, color: Optional["scout_savedviews_api_UpdateColor"] = None, display_state: Optional["scout_savedviews_api_DisplayState"] = None, search_state: Optional["scout_savedviews_api_SearchState"] = None, symbol: Optional["scout_savedviews_api_UpdateSymbol"] = None, title: Optional[str] = None) -> None:
80402
+ def __init__(self, color: Optional["scout_savedviews_api_UpdateColor"] = None, display_state: Optional["scout_savedviews_api_DisplayState"] = None, index: Optional[int] = None, search_state: Optional["scout_savedviews_api_SearchState"] = None, symbol: Optional["scout_savedviews_api_UpdateSymbol"] = None, title: Optional[str] = None) -> None:
80223
80403
  self._title = title
80224
80404
  self._symbol = symbol
80225
80405
  self._color = color
80226
80406
  self._search_state = search_state
80227
80407
  self._display_state = display_state
80408
+ self._index = index
80228
80409
 
80229
80410
  @builtins.property
80230
80411
  def title(self) -> Optional[str]:
@@ -80246,6 +80427,10 @@ class scout_savedviews_api_UpdateSavedViewRequest(ConjureBeanType):
80246
80427
  def display_state(self) -> Optional["scout_savedviews_api_DisplayState"]:
80247
80428
  return self._display_state
80248
80429
 
80430
+ @builtins.property
80431
+ def index(self) -> Optional[int]:
80432
+ return self._index
80433
+
80249
80434
 
80250
80435
  scout_savedviews_api_UpdateSavedViewRequest.__name__ = "UpdateSavedViewRequest"
80251
80436
  scout_savedviews_api_UpdateSavedViewRequest.__qualname__ = "UpdateSavedViewRequest"
@@ -89246,14 +89431,16 @@ class themes_api_ChartThemeContentV1(ConjureBeanType):
89246
89431
  'legend_font_size': ConjureFieldDefinition('legendFontSize', int),
89247
89432
  'legend_font_color': ConjureFieldDefinition('legendFontColor', themes_api_HexColor),
89248
89433
  'legend_placement': ConjureFieldDefinition('legendPlacement', themes_api_LegendPlacement),
89434
+ 'row_gap_enabled': ConjureFieldDefinition('rowGapEnabled', bool),
89435
+ 'row_gap_size': ConjureFieldDefinition('rowGapSize', OptionalTypeWrapper[int]),
89249
89436
  'aspect_ratio_width': ConjureFieldDefinition('aspectRatioWidth', int),
89250
89437
  'aspect_ratio_height': ConjureFieldDefinition('aspectRatioHeight', int),
89251
89438
  'chart_type_themes': ConjureFieldDefinition('chartTypeThemes', themes_api_ChartTypeThemes)
89252
89439
  }
89253
89440
 
89254
- __slots__: List[str] = ['_title_enabled', '_title_alignment', '_title_font_size', '_title_font_color', '_caption_enabled', '_caption_alignment', '_caption_font_size', '_caption_font_color', '_background_enabled', '_legend_enabled', '_legend_position', '_legend_font_size', '_legend_font_color', '_legend_placement', '_aspect_ratio_width', '_aspect_ratio_height', '_chart_type_themes']
89441
+ __slots__: List[str] = ['_title_enabled', '_title_alignment', '_title_font_size', '_title_font_color', '_caption_enabled', '_caption_alignment', '_caption_font_size', '_caption_font_color', '_background_enabled', '_legend_enabled', '_legend_position', '_legend_font_size', '_legend_font_color', '_legend_placement', '_row_gap_enabled', '_row_gap_size', '_aspect_ratio_width', '_aspect_ratio_height', '_chart_type_themes']
89255
89442
 
89256
- def __init__(self, aspect_ratio_height: int, aspect_ratio_width: int, background_enabled: bool, caption_alignment: "themes_api_TextAlignment", caption_enabled: bool, caption_font_color: str, caption_font_size: int, chart_type_themes: "themes_api_ChartTypeThemes", legend_enabled: bool, legend_font_color: str, legend_font_size: int, legend_placement: "themes_api_LegendPlacement", legend_position: "themes_api_LegendPosition", title_alignment: "themes_api_TextAlignment", title_enabled: bool, title_font_color: str, title_font_size: int) -> None:
89443
+ def __init__(self, aspect_ratio_height: int, aspect_ratio_width: int, background_enabled: bool, caption_alignment: "themes_api_TextAlignment", caption_enabled: bool, caption_font_color: str, caption_font_size: int, chart_type_themes: "themes_api_ChartTypeThemes", legend_enabled: bool, legend_font_color: str, legend_font_size: int, legend_placement: "themes_api_LegendPlacement", legend_position: "themes_api_LegendPosition", row_gap_enabled: bool, title_alignment: "themes_api_TextAlignment", title_enabled: bool, title_font_color: str, title_font_size: int, row_gap_size: Optional[int] = None) -> None:
89257
89444
  self._title_enabled = title_enabled
89258
89445
  self._title_alignment = title_alignment
89259
89446
  self._title_font_size = title_font_size
@@ -89268,6 +89455,8 @@ class themes_api_ChartThemeContentV1(ConjureBeanType):
89268
89455
  self._legend_font_size = legend_font_size
89269
89456
  self._legend_font_color = legend_font_color
89270
89457
  self._legend_placement = legend_placement
89458
+ self._row_gap_enabled = row_gap_enabled
89459
+ self._row_gap_size = row_gap_size
89271
89460
  self._aspect_ratio_width = aspect_ratio_width
89272
89461
  self._aspect_ratio_height = aspect_ratio_height
89273
89462
  self._chart_type_themes = chart_type_themes
@@ -89357,6 +89546,18 @@ class themes_api_ChartThemeContentV1(ConjureBeanType):
89357
89546
  """
89358
89547
  return self._legend_placement
89359
89548
 
89549
+ @builtins.property
89550
+ def row_gap_enabled(self) -> bool:
89551
+ """Whether rows will be separated.
89552
+ """
89553
+ return self._row_gap_enabled
89554
+
89555
+ @builtins.property
89556
+ def row_gap_size(self) -> Optional[int]:
89557
+ """The size of the row gap.
89558
+ """
89559
+ return self._row_gap_size
89560
+
89360
89561
  @builtins.property
89361
89562
  def aspect_ratio_width(self) -> int:
89362
89563
  """The relative width of the chart export.
@@ -93876,6 +94077,8 @@ scout_compute_api_VariableName = str
93876
94077
 
93877
94078
  scout_datasource_connection_api_MeasurementName = str
93878
94079
 
94080
+ scout_compute_api_FunctionParameterName = str
94081
+
93879
94082
  scout_compute_api_LocalVariableName = str
93880
94083
 
93881
94084
  scout_channelvariables_api_ChannelVariableName = str
@@ -146,6 +146,10 @@ from .._impl import (
146
146
  scout_compute_api_FrequencyDomain as FrequencyDomain,
147
147
  scout_compute_api_FrequencyDomainPlot as FrequencyDomainPlot,
148
148
  scout_compute_api_FrequencyDomainVisitor as FrequencyDomainVisitor,
149
+ scout_compute_api_FunctionDerivedSeries as FunctionDerivedSeries,
150
+ scout_compute_api_FunctionParameterName as FunctionParameterName,
151
+ scout_compute_api_FunctionParameterValue as FunctionParameterValue,
152
+ scout_compute_api_FunctionParameterValueVisitor as FunctionParameterValueVisitor,
149
153
  scout_compute_api_FunctionReference as FunctionReference,
150
154
  scout_compute_api_FunctionVariables as FunctionVariables,
151
155
  scout_compute_api_GeoPoint as GeoPoint,
@@ -201,6 +205,8 @@ from .._impl import (
201
205
  scout_compute_api_MinSeries as MinSeries,
202
206
  scout_compute_api_Minimum as Minimum,
203
207
  scout_compute_api_ModuleApplicationDerivedSeries as ModuleApplicationDerivedSeries,
208
+ scout_compute_api_ModuleVersionReference as ModuleVersionReference,
209
+ scout_compute_api_ModuleVersionReferenceVisitor as ModuleVersionReferenceVisitor,
204
210
  scout_compute_api_NegativeValueConfiguration as NegativeValueConfiguration,
205
211
  scout_compute_api_NegativeValueConfigurationVisitor as NegativeValueConfigurationVisitor,
206
212
  scout_compute_api_NotRanges as NotRanges,
@@ -250,6 +256,7 @@ from .._impl import (
250
256
  scout_compute_api_Periodogram as Periodogram,
251
257
  scout_compute_api_PeriodogramMethod as PeriodogramMethod,
252
258
  scout_compute_api_PersistenceWindowConfiguration as PersistenceWindowConfiguration,
259
+ scout_compute_api_PinnedModuleVersionReference as PinnedModuleVersionReference,
253
260
  scout_compute_api_Point3d as Point3d,
254
261
  scout_compute_api_PolynomialCurve as PolynomialCurve,
255
262
  scout_compute_api_PolynomialResultDetails as PolynomialResultDetails,
@@ -500,6 +507,10 @@ __all__ = [
500
507
  'FrequencyDomain',
501
508
  'FrequencyDomainVisitor',
502
509
  'FrequencyDomainPlot',
510
+ 'FunctionDerivedSeries',
511
+ 'FunctionParameterName',
512
+ 'FunctionParameterValue',
513
+ 'FunctionParameterValueVisitor',
503
514
  'FunctionReference',
504
515
  'FunctionVariables',
505
516
  'GeoPoint',
@@ -555,6 +566,8 @@ __all__ = [
555
566
  'MinSeries',
556
567
  'Minimum',
557
568
  'ModuleApplicationDerivedSeries',
569
+ 'ModuleVersionReference',
570
+ 'ModuleVersionReferenceVisitor',
558
571
  'NegativeValueConfiguration',
559
572
  'NegativeValueConfigurationVisitor',
560
573
  'NotRanges',
@@ -604,6 +617,7 @@ __all__ = [
604
617
  'Periodogram',
605
618
  'PeriodogramMethod',
606
619
  'PersistenceWindowConfiguration',
620
+ 'PinnedModuleVersionReference',
607
621
  'Point3d',
608
622
  'PolynomialCurve',
609
623
  'PolynomialResultDetails',
@@ -1,6 +1,5 @@
1
1
  # coding=utf-8
2
2
  from .._impl import (
3
- scout_savedviews_api_ArchiveSavedViewsRequest as ArchiveSavedViewsRequest,
4
3
  scout_savedviews_api_AssetSearchState as AssetSearchState,
5
4
  scout_savedviews_api_BatchGetSavedViewsResponse as BatchGetSavedViewsResponse,
6
5
  scout_savedviews_api_ChecklistSearchState as ChecklistSearchState,
@@ -27,7 +26,6 @@ from .._impl import (
27
26
  scout_savedviews_api_SortKeyVisitor as SortKeyVisitor,
28
27
  scout_savedviews_api_TableState as TableState,
29
28
  scout_savedviews_api_TemplateSearchState as TemplateSearchState,
30
- scout_savedviews_api_UnarchiveSavedViewsRequest as UnarchiveSavedViewsRequest,
31
29
  scout_savedviews_api_UpdateColor as UpdateColor,
32
30
  scout_savedviews_api_UpdateColorVisitor as UpdateColorVisitor,
33
31
  scout_savedviews_api_UpdateSavedViewRequest as UpdateSavedViewRequest,
@@ -38,7 +36,6 @@ from .._impl import (
38
36
  )
39
37
 
40
38
  __all__ = [
41
- 'ArchiveSavedViewsRequest',
42
39
  'AssetSearchState',
43
40
  'BatchGetSavedViewsResponse',
44
41
  'ChecklistSearchState',
@@ -65,7 +62,6 @@ __all__ = [
65
62
  'SortKeyVisitor',
66
63
  'TableState',
67
64
  'TemplateSearchState',
68
- 'UnarchiveSavedViewsRequest',
69
65
  'UpdateColor',
70
66
  'UpdateColorVisitor',
71
67
  'UpdateSavedViewRequest',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.854.0
3
+ Version: 0.856.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=WpmD7l6nVBG-JDqRhdBdBmr7lhN4OfxcQ9Z11vy9Puc,2064
2
- nominal_api/_impl.py,sha256=jS_ZuikFr9EyIhrmW39Fe5TTw5oM2AgA7SXd-K7pxKo,3705418
1
+ nominal_api/__init__.py,sha256=LwV0eUaSJjKuIizBuKiWHiVCZRR0LAZASVVbOjIif2w,2064
2
+ nominal_api/_impl.py,sha256=wwI2tNVyp2w41BrtAh9ioQnLAMVzhVSlWQwwbhWekQU,3714095
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=ZiGjcYwIBCrZR5pPqyqX2ggRJmVcSlOCazMtF2xCZzw,2171
5
5
  nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
@@ -33,7 +33,7 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
33
33
  nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
34
34
  nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=F5cQo_KqeTpFwqKBDV-iEjrND7xQgkycC1yocpxq1Qk,6277
35
35
  nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
36
- nominal_api/scout_compute_api/__init__.py,sha256=sJFk1Ko5Qs6WpTSTlRVgEZsELblYjEkwTgK14S-Tubw,31846
36
+ nominal_api/scout_compute_api/__init__.py,sha256=X4YeXFn_WG_G37RS_7EHt6vepk_cDz13Kaz6EbBBYbs,32614
37
37
  nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
38
38
  nominal_api/scout_compute_resolved_api/__init__.py,sha256=wHZ-fvDaqCCoO3BRPjCF0ZktxVpCT203fa0bSs3fwz4,16741
39
39
  nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
@@ -54,7 +54,7 @@ nominal_api/scout_plotting/__init__.py,sha256=RJK9HlPmNW_dxSz7CprwjfNKke86x11rQ7
54
54
  nominal_api/scout_rids_api/__init__.py,sha256=tObQlt4-bYGcBEgPDHXaadr159GlkYSDdZME1072m94,2101
55
55
  nominal_api/scout_run_api/__init__.py,sha256=DOerd1dppDM4RLDgPrjh-3i-VAaXtp6XPEqkET0N5W0,4051
56
56
  nominal_api/scout_savedviews/__init__.py,sha256=yky0iF6IK8U5xnDjfzvUuXOb-Tl5RF6dic6abhuX-V8,138
57
- nominal_api/scout_savedviews_api/__init__.py,sha256=8H9OcKyJZZVjmyhdNqfaQSsjYS8u5PzCANJlDmHcSJE,3286
57
+ nominal_api/scout_savedviews_api/__init__.py,sha256=-Ov3D8PnkOLQH_z9dFfba6d2Y8q3U4N9ARzGDl7t_-A,3058
58
58
  nominal_api/scout_template_api/__init__.py,sha256=Yu7FHTypJv09dBKqnWS_dDeXdwI1hgGGZNDbMOHZKr8,1550
59
59
  nominal_api/scout_units_api/__init__.py,sha256=gf47pW6JIcP3FgL1UuHwkibj266FCRszL9q6PGx0-Rg,512
60
60
  nominal_api/scout_versioning_api/__init__.py,sha256=AGSj6Gd1gDUnY3BTpXhPkEzCnrKIMfvs3S17m68HGfQ,1822
@@ -77,7 +77,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=lDuOWyLpdVBI9aoN6ujw
77
77
  nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
78
78
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
79
79
  nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
80
- nominal_api-0.854.0.dist-info/METADATA,sha256=6xviffDaWamNp5nu5-XgxPEHBkZOcwKgsPGaQgE13k0,199
81
- nominal_api-0.854.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
- nominal_api-0.854.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
83
- nominal_api-0.854.0.dist-info/RECORD,,
80
+ nominal_api-0.856.0.dist-info/METADATA,sha256=EUiA_4lj_EGKblhDbWORT4KscClg9kTxi0VRr4nnLPc,199
81
+ nominal_api-0.856.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
+ nominal_api-0.856.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
83
+ nominal_api-0.856.0.dist-info/RECORD,,