v1.0.0-rc.67

This commit is contained in:
2025-08-11 11:13:59 +02:00
parent 4189fa3e3c
commit a32cec3404
144 changed files with 2065 additions and 1656 deletions

View File

@@ -22,8 +22,8 @@ communicate through network calls or other mechanisms.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 1.0.0-rc.66
- Package version: 1.0.0-rc.66
- API version: 1.0.0-rc.67
- Package version: 1.0.0-rc.67
- Generator version: 7.8.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
@@ -191,6 +191,7 @@ Class | Method | HTTP request | Description
- [IndexingSettings](docs/IndexingSettings.md)
- [InstrumentMetadata](docs/InstrumentMetadata.md)
- [JfjochSettings](docs/JfjochSettings.md)
- [JfjochSettingsSsl](docs/JfjochSettingsSsl.md)
- [JfjochStatistics](docs/JfjochStatistics.md)
- [MeasurementStatistics](docs/MeasurementStatistics.md)
- [PcieDevicesInner](docs/PcieDevicesInner.md)

View File

@@ -21,6 +21,7 @@ Name | Type | Description | Notes
**numa_policy** | **str** | NUMA policy to bind CPUs | [optional]
**frontend_directory** | **str** | Location of built JavaScript web frontend |
**inference_server_addr** | **List[str]** | Address to ML-based inference servers | [optional]
**ssl** | [**JfjochSettingsSsl**](JfjochSettingsSsl.md) | | [optional]
**image_pusher** | [**ImagePusherType**](ImagePusherType.md) | | [default to ImagePusherType.NONE]
**zeromq_preview** | [**ZeromqPreviewSettings**](ZeromqPreviewSettings.md) | | [optional]
**zeromq_metadata** | [**ZeromqMetadataSettings**](ZeromqMetadataSettings.md) | | [optional]

View File

@@ -0,0 +1,30 @@
# JfjochSettingsSsl
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**certificate** | **str** | |
**key** | **str** | |
## Example
```python
from jfjoch_client.models.jfjoch_settings_ssl import JfjochSettingsSsl
# TODO update the JSON string below
json = "{}"
# create an instance of JfjochSettingsSsl from a JSON string
jfjoch_settings_ssl_instance = JfjochSettingsSsl.from_json(json)
# print the JSON string representation of the object
print(JfjochSettingsSsl.to_json())
# convert the object into a dict
jfjoch_settings_ssl_dict = jfjoch_settings_ssl_instance.to_dict()
# create an instance of JfjochSettingsSsl from a dict
jfjoch_settings_ssl_from_dict = JfjochSettingsSsl.from_dict(jfjoch_settings_ssl_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)