Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 3.72 KB

File metadata and controls

124 lines (67 loc) · 3.72 KB

UpdateReleasePipelineInput

Properties

Name Type Description Notes
Description Pointer to string The release pipeline description [optional]
Name string The name of the release pipeline
Phases []CreatePhaseInput A logical grouping of one or more environments that share attributes for rolling out changes
Tags Pointer to []string A list of tags for this release pipeline [optional]

Methods

NewUpdateReleasePipelineInput

func NewUpdateReleasePipelineInput(name string, phases []CreatePhaseInput, ) *UpdateReleasePipelineInput

NewUpdateReleasePipelineInput instantiates a new UpdateReleasePipelineInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewUpdateReleasePipelineInputWithDefaults

func NewUpdateReleasePipelineInputWithDefaults() *UpdateReleasePipelineInput

NewUpdateReleasePipelineInputWithDefaults instantiates a new UpdateReleasePipelineInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetDescription

func (o *UpdateReleasePipelineInput) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *UpdateReleasePipelineInput) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDescription

func (o *UpdateReleasePipelineInput) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *UpdateReleasePipelineInput) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetName

func (o *UpdateReleasePipelineInput) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *UpdateReleasePipelineInput) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *UpdateReleasePipelineInput) SetName(v string)

SetName sets Name field to given value.

GetPhases

func (o *UpdateReleasePipelineInput) GetPhases() []CreatePhaseInput

GetPhases returns the Phases field if non-nil, zero value otherwise.

GetPhasesOk

func (o *UpdateReleasePipelineInput) GetPhasesOk() (*[]CreatePhaseInput, bool)

GetPhasesOk returns a tuple with the Phases field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPhases

func (o *UpdateReleasePipelineInput) SetPhases(v []CreatePhaseInput)

SetPhases sets Phases field to given value.

GetTags

func (o *UpdateReleasePipelineInput) GetTags() []string

GetTags returns the Tags field if non-nil, zero value otherwise.

GetTagsOk

func (o *UpdateReleasePipelineInput) GetTagsOk() (*[]string, bool)

GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTags

func (o *UpdateReleasePipelineInput) SetTags(v []string)

SetTags sets Tags field to given value.

HasTags

func (o *UpdateReleasePipelineInput) HasTags() bool

HasTags returns a boolean if a field has been set.

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