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]
is_project_default
bool
Whether or not the newly created pipeline should be set as the default pipeline for this project
[optional]
is_legacy
bool
Whether or not the pipeline is enabled for Release Automation.
[optional]
Example
fromlaunchdarkly_api.models.create_release_pipeline_inputimportCreateReleasePipelineInput# TODO update the JSON string belowjson="{}"# create an instance of CreateReleasePipelineInput from a JSON stringcreate_release_pipeline_input_instance=CreateReleasePipelineInput.from_json(json)
# print the JSON string representation of the objectprint(CreateReleasePipelineInput.to_json())
# convert the object into a dictcreate_release_pipeline_input_dict=create_release_pipeline_input_instance.to_dict()
# create an instance of CreateReleasePipelineInput from a dictcreate_release_pipeline_input_from_dict=CreateReleasePipelineInput.from_dict(create_release_pipeline_input_dict)