Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.44 KB

File metadata and controls

114 lines (61 loc) · 3.44 KB

TriggerGitRepoConfiguration

Properties

Name Type Description Notes
Paths []File paths in the git repo to watch for changes
Provider string provider for the git repo
Repository string name of the git repository
Revision string branch or tag in the git repository to watch for changes

Methods

NewTriggerGitRepoConfiguration

func NewTriggerGitRepoConfiguration(paths []File, provider string, repository string, revision string, ) *TriggerGitRepoConfiguration

NewTriggerGitRepoConfiguration instantiates a new TriggerGitRepoConfiguration 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

NewTriggerGitRepoConfigurationWithDefaults

func NewTriggerGitRepoConfigurationWithDefaults() *TriggerGitRepoConfiguration

NewTriggerGitRepoConfigurationWithDefaults instantiates a new TriggerGitRepoConfiguration 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

GetPaths

func (o *TriggerGitRepoConfiguration) GetPaths() []File

GetPaths returns the Paths field if non-nil, zero value otherwise.

GetPathsOk

func (o *TriggerGitRepoConfiguration) GetPathsOk() (*[]File, bool)

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

SetPaths

func (o *TriggerGitRepoConfiguration) SetPaths(v []File)

SetPaths sets Paths field to given value.

GetProvider

func (o *TriggerGitRepoConfiguration) GetProvider() string

GetProvider returns the Provider field if non-nil, zero value otherwise.

GetProviderOk

func (o *TriggerGitRepoConfiguration) GetProviderOk() (*string, bool)

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

SetProvider

func (o *TriggerGitRepoConfiguration) SetProvider(v string)

SetProvider sets Provider field to given value.

GetRepository

func (o *TriggerGitRepoConfiguration) GetRepository() string

GetRepository returns the Repository field if non-nil, zero value otherwise.

GetRepositoryOk

func (o *TriggerGitRepoConfiguration) GetRepositoryOk() (*string, bool)

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

SetRepository

func (o *TriggerGitRepoConfiguration) SetRepository(v string)

SetRepository sets Repository field to given value.

GetRevision

func (o *TriggerGitRepoConfiguration) GetRevision() string

GetRevision returns the Revision field if non-nil, zero value otherwise.

GetRevisionOk

func (o *TriggerGitRepoConfiguration) GetRevisionOk() (*string, bool)

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

SetRevision

func (o *TriggerGitRepoConfiguration) SetRevision(v string)

SetRevision sets Revision field to given value.

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