Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

RelayAutoConfigPost

Properties

Name Type Description Notes
name str A human-friendly name for the Relay Proxy configuration
policy List[Statement] A description of what environments and projects the Relay Proxy should include or exclude. To learn more, read Write an inline policy.

Example

from launchdarkly_api.models.relay_auto_config_post import RelayAutoConfigPost

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

# convert the object into a dict
relay_auto_config_post_dict = relay_auto_config_post_instance.to_dict()
# create an instance of RelayAutoConfigPost from a dict
relay_auto_config_post_from_dict = RelayAutoConfigPost.from_dict(relay_auto_config_post_dict)

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