You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A logical grouping of one or more environments that share attributes for rolling out changes
tags
List[str]
A list of tags for this release pipeline
[optional]
Example
fromlaunchdarkly_api.models.update_release_pipeline_inputimportUpdateReleasePipelineInput# TODO update the JSON string belowjson="{}"# create an instance of UpdateReleasePipelineInput from a JSON stringupdate_release_pipeline_input_instance=UpdateReleasePipelineInput.from_json(json)
# print the JSON string representation of the objectprint(UpdateReleasePipelineInput.to_json())
# convert the object into a dictupdate_release_pipeline_input_dict=update_release_pipeline_input_instance.to_dict()
# create an instance of UpdateReleasePipelineInput from a dictupdate_release_pipeline_input_from_dict=UpdateReleasePipelineInput.from_dict(update_release_pipeline_input_dict)