Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 2.17 KB

File metadata and controls

39 lines (32 loc) · 2.17 KB

GetDeviceEnvironmentVariablesByPin200Response

Properties

Name Type Description Notes
environment_variables Dict[str, str] The environment variables for this device that have been set using host firmware or the Notehub API or UI.
environment_variables_effective Dict[str, str] The environment variables as they will be seen by the device, fully resolved with project/fleet/device prioritization rules. [optional]
environment_variables_env_default Dict[str, str] The environment variables that have been set using the env.default request through the Notecard API.

Example

from notehub_py.models.get_device_environment_variables_by_pin200_response import (
    GetDeviceEnvironmentVariablesByPin200Response,
)

# TODO update the JSON string below
json = "{}"
# create an instance of GetDeviceEnvironmentVariablesByPin200Response from a JSON string
get_device_environment_variables_by_pin200_response_instance = (
    GetDeviceEnvironmentVariablesByPin200Response.from_json(json)
)
# print the JSON string representation of the object
print(GetDeviceEnvironmentVariablesByPin200Response.to_json())

# convert the object into a dict
get_device_environment_variables_by_pin200_response_dict = (
    get_device_environment_variables_by_pin200_response_instance.to_dict()
)
# create an instance of GetDeviceEnvironmentVariablesByPin200Response from a dict
get_device_environment_variables_by_pin200_response_from_dict = (
    GetDeviceEnvironmentVariablesByPin200Response.from_dict(
        get_device_environment_variables_by_pin200_response_dict
    )
)

[Back to Model list] [Back to API list] [Back to README]