Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.36 KB

File metadata and controls

33 lines (24 loc) · 1.36 KB

PutReleasePolicyRequest

Properties

Name Type Description Notes
scope ReleasePolicyScope [optional]
release_method ReleaseMethod
guarded_release_config GuardedReleaseConfig [optional]
progressive_release_config ProgressiveReleaseConfig [optional]
name str The name of the release policy

Example

from launchdarkly_api.models.put_release_policy_request import PutReleasePolicyRequest

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

# convert the object into a dict
put_release_policy_request_dict = put_release_policy_request_instance.to_dict()
# create an instance of PutReleasePolicyRequest from a dict
put_release_policy_request_from_dict = PutReleasePolicyRequest.from_dict(put_release_policy_request_dict)

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