Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

ReverseProxy

The reverse proxy custom resource is used to configure a path to proxy it to a directory or file.

HTTP proxy may be added in the future.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
rules List[ReverseProxyRule] [optional]

Example

from halo_client.models.reverse_proxy import ReverseProxy

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

# convert the object into a dict
reverse_proxy_dict = reverse_proxy_instance.to_dict()
# create an instance of ReverseProxy from a dict
reverse_proxy_from_dict = ReverseProxy.from_dict(reverse_proxy_dict)

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