Skip to content

Commit dd1ba1f

Browse files
committed
adding missing struct
1 parent fe24f85 commit dd1ba1f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

azuredevops/pipelines/models.go

+7
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,15 @@ var ConfigurationTypeValues = configurationTypeValuesType{
3131
DesignerHyphenJson: "designerHyphenJson",
3232
}
3333

34+
type CreatePipelineRepositoryParameters struct {
35+
Id *string `json:"id,omitempty"`
36+
Type *string `json:"type,omitempty"`
37+
}
38+
3439
type CreatePipelineConfigurationParameters struct {
3540
Type *ConfigurationType `json:"type,omitempty"`
41+
Repository *CreatePipelineRepositoryParameters `json:"repository,omitempty"`
42+
Path *string `json:"path,omitempty"`
3643
}
3744

3845
type CreatePipelineParameters struct {

0 commit comments

Comments
 (0)