We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe24f85 commit dd1ba1fCopy full SHA for dd1ba1f
azuredevops/pipelines/models.go
@@ -31,8 +31,15 @@ var ConfigurationTypeValues = configurationTypeValuesType{
31
DesignerHyphenJson: "designerHyphenJson",
32
}
33
34
+type CreatePipelineRepositoryParameters struct {
35
+ Id *string `json:"id,omitempty"`
36
+ Type *string `json:"type,omitempty"`
37
+}
38
+
39
type CreatePipelineConfigurationParameters struct {
40
Type *ConfigurationType `json:"type,omitempty"`
41
+ Repository *CreatePipelineRepositoryParameters `json:"repository,omitempty"`
42
+ Path *string `json:"path,omitempty"`
43
44
45
type CreatePipelineParameters struct {
0 commit comments