1package devops
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// CodeRepositoryType enumerates the values for code repository type.
10type CodeRepositoryType string
11
12const (
13	// GitHub ...
14	GitHub CodeRepositoryType = "gitHub"
15	// VstsGit ...
16	VstsGit CodeRepositoryType = "vstsGit"
17)
18
19// PossibleCodeRepositoryTypeValues returns an array of possible values for the CodeRepositoryType const type.
20func PossibleCodeRepositoryTypeValues() []CodeRepositoryType {
21	return []CodeRepositoryType{GitHub, VstsGit}
22}
23
24// InputDataType enumerates the values for input data type.
25type InputDataType string
26
27const (
28	// InputDataTypeAuthorization ...
29	InputDataTypeAuthorization InputDataType = "Authorization"
30	// InputDataTypeBool ...
31	InputDataTypeBool InputDataType = "Bool"
32	// InputDataTypeInt ...
33	InputDataTypeInt InputDataType = "Int"
34	// InputDataTypeSecureString ...
35	InputDataTypeSecureString InputDataType = "SecureString"
36	// InputDataTypeString ...
37	InputDataTypeString InputDataType = "String"
38)
39
40// PossibleInputDataTypeValues returns an array of possible values for the InputDataType const type.
41func PossibleInputDataTypeValues() []InputDataType {
42	return []InputDataType{InputDataTypeAuthorization, InputDataTypeBool, InputDataTypeInt, InputDataTypeSecureString, InputDataTypeString}
43}
44