mirror of
https://github.com/openziti/zrok.git
synced 2025-06-06 01:47:26 +02:00
37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
# Environment
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**description** | **str** | | [optional]
|
|
**host** | **str** | | [optional]
|
|
**address** | **str** | | [optional]
|
|
**z_id** | **str** | | [optional]
|
|
**activity** | [**List[SparkDataSample]**](SparkDataSample.md) | | [optional]
|
|
**limited** | **bool** | | [optional]
|
|
**created_at** | **int** | | [optional]
|
|
**updated_at** | **int** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from zrok_api.models.environment import Environment
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of Environment from a JSON string
|
|
environment_instance = Environment.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(Environment.to_json())
|
|
|
|
# convert the object into a dict
|
|
environment_dict = environment_instance.to_dict()
|
|
# create an instance of Environment from a dict
|
|
environment_from_dict = Environment.from_dict(environment_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)
|
|
|
|
|