Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.44 KB

File metadata and controls

33 lines (24 loc) · 1.44 KB

V2RuleProxyActionQuantCloudSelection

Quant Cloud application proxy selection (populated automatically when application_proxy is enabled)

Properties

Name Type Description Notes
app str Application name [optional]
env str Environment name [optional]
container str Container name [optional]
port int Container port [optional]

Example

from quantcdn.models.v2_rule_proxy_action_quant_cloud_selection import V2RuleProxyActionQuantCloudSelection

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

# convert the object into a dict
v2_rule_proxy_action_quant_cloud_selection_dict = v2_rule_proxy_action_quant_cloud_selection_instance.to_dict()
# create an instance of V2RuleProxyActionQuantCloudSelection from a dict
v2_rule_proxy_action_quant_cloud_selection_from_dict = V2RuleProxyActionQuantCloudSelection.from_dict(v2_rule_proxy_action_quant_cloud_selection_dict)

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