1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# Generated file, DO NOT EDIT
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------------------------
from msrest.serialization import Model
class AadOauthTokenRequest(Model):
"""
:param refresh:
:type refresh: bool
:param resource:
:type resource: str
:param tenant_id:
:type tenant_id: str
:param token:
:type token: str
"""
_attribute_map = {
'refresh': {'key': 'refresh', 'type': 'bool'},
'resource': {'key': 'resource', 'type': 'str'},
'tenant_id': {'key': 'tenantId', 'type': 'str'},
'token': {'key': 'token', 'type': 'str'}
}
def __init__(self, refresh=None, resource=None, tenant_id=None, token=None):
super(AadOauthTokenRequest, self).__init__()
self.refresh = refresh
self.resource = resource
self.tenant_id = tenant_id
self.token = token
class AadOauthTokenResult(Model):
"""
:param access_token:
:type access_token: str
:param refresh_token_cache:
:type refresh_token_cache: str
"""
_attribute_map = {
'access_token': {'key': 'accessToken', 'type': 'str'},
'refresh_token_cache': {'key': 'refreshTokenCache', 'type': 'str'}
}
def __init__(self, access_token=None, refresh_token_cache=None):
super(AadOauthTokenResult, self).__init__()
self.access_token = access_token
self.refresh_token_cache = refresh_token_cache
class AuthenticationSchemeReference(Model):
"""
Specifies the authentication scheme to be used for authentication.
:param inputs: Gets or sets the key and value of the fields used for authentication.
:type inputs: dict
:param type: Gets or sets the type of authentication scheme of an endpoint.
:type type: str
"""
_attribute_map = {
'inputs': {'key': 'inputs', 'type': '{str}'},
'type': {'key': 'type', 'type': 'str'}
}
def __init__(self, inputs=None, type=None):
super(AuthenticationSchemeReference, self).__init__()
self.inputs = inputs
self.type = type
class AuthorizationHeader(Model):
"""
Represents the header of the REST request.
:param name: Gets or sets the name of authorization header.
:type name: str
:param value: Gets or sets the value of authorization header.
:type value: str
"""
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, name=None, value=None):
super(AuthorizationHeader, self).__init__()
self.name = name
self.value = value
class AzureManagementGroup(Model):
"""
Azure Management Group
:param display_name: Display name of azure management group
:type display_name: str
:param id: Id of azure management group
:type id: str
:param name: Azure management group name
:type name: str
:param tenant_id: Id of tenant from which azure management group belogs
:type tenant_id: str
"""
_attribute_map = {
'display_name': {'key': 'displayName', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'tenant_id': {'key': 'tenantId', 'type': 'str'}
}
def __init__(self, display_name=None, id=None, name=None, tenant_id=None):
super(AzureManagementGroup, self).__init__()
self.display_name = display_name
self.id = id
self.name = name
self.tenant_id = tenant_id
class AzureManagementGroupQueryResult(Model):
"""
Azure management group query result
:param error_message: Error message in case of an exception
:type error_message: str
:param value: List of azure management groups
:type value: list of :class:`AzureManagementGroup <azure.devops.v6_0.service_endpoint.models.AzureManagementGroup>`
"""
_attribute_map = {
'error_message': {'key': 'errorMessage', 'type': 'str'},
'value': {'key': 'value', 'type': '[AzureManagementGroup]'}
}
def __init__(self, error_message=None, value=None):
super(AzureManagementGroupQueryResult, self).__init__()
self.error_message = error_message
self.value = value
class AzureSubscription(Model):
"""
:param display_name:
:type display_name: str
:param subscription_id:
:type subscription_id: str
:param subscription_tenant_id:
:type subscription_tenant_id: str
:param subscription_tenant_name:
:type subscription_tenant_name: str
"""
_attribute_map = {
'display_name': {'key': 'displayName', 'type': 'str'},
'subscription_id': {'key': 'subscriptionId', 'type': 'str'},
'subscription_tenant_id': {'key': 'subscriptionTenantId', 'type': 'str'},
'subscription_tenant_name': {'key': 'subscriptionTenantName', 'type': 'str'}
}
def __init__(self, display_name=None, subscription_id=None, subscription_tenant_id=None, subscription_tenant_name=None):
super(AzureSubscription, self).__init__()
self.display_name = display_name
self.subscription_id = subscription_id
self.subscription_tenant_id = subscription_tenant_id
self.subscription_tenant_name = subscription_tenant_name
class AzureSubscriptionQueryResult(Model):
"""
:param error_message:
:type error_message: str
:param value:
:type value: list of :class:`AzureSubscription <azure.devops.v6_0.service_endpoint.models.AzureSubscription>`
"""
_attribute_map = {
'error_message': {'key': 'errorMessage', 'type': 'str'},
'value': {'key': 'value', 'type': '[AzureSubscription]'}
}
def __init__(self, error_message=None, value=None):
super(AzureSubscriptionQueryResult, self).__init__()
self.error_message = error_message
self.value = value
class ClientCertificate(Model):
"""
Specifies the client certificate to be used for the endpoint request.
:param value: Gets or sets the value of client certificate.
:type value: str
"""
_attribute_map = {
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, value=None):
super(ClientCertificate, self).__init__()
self.value = value
class DataSource(Model):
"""
Specifies the data sources for this endpoint.
:param authentication_scheme: Gets or sets the authentication scheme for the endpoint request.
:type authentication_scheme: :class:`AuthenticationSchemeReference <azure.devops.v6_0.service_endpoint.models.AuthenticationSchemeReference>`
:param callback_context_template: Gets or sets the pagination format supported by this data source(ContinuationToken/SkipTop).
:type callback_context_template: str
:param callback_required_template: Gets or sets the template to check if subsequent call is needed.
:type callback_required_template: str
:param endpoint_url: Gets or sets the endpoint url of the data source.
:type endpoint_url: str
:param headers: Gets or sets the authorization headers of the request.
:type headers: list of :class:`AuthorizationHeader <azure.devops.v6_0.service_endpoint.models.AuthorizationHeader>`
:param initial_context_template: Gets or sets the initial value of the query params.
:type initial_context_template: str
:param name: Gets or sets the name of the data source.
:type name: str
:param request_content: Gets or sets the request content of the endpoint request.
:type request_content: str
:param request_verb: Gets or sets the request method of the endpoint request.
:type request_verb: str
:param resource_url: Gets or sets the resource url of the endpoint request.
:type resource_url: str
:param result_selector: Gets or sets the result selector to filter the response of the endpoint request.
:type result_selector: str
"""
_attribute_map = {
'authentication_scheme': {'key': 'authenticationScheme', 'type': 'AuthenticationSchemeReference'},
'callback_context_template': {'key': 'callbackContextTemplate', 'type': 'str'},
'callback_required_template': {'key': 'callbackRequiredTemplate', 'type': 'str'},
'endpoint_url': {'key': 'endpointUrl', 'type': 'str'},
'headers': {'key': 'headers', 'type': '[AuthorizationHeader]'},
'initial_context_template': {'key': 'initialContextTemplate', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'request_content': {'key': 'requestContent', 'type': 'str'},
'request_verb': {'key': 'requestVerb', 'type': 'str'},
'resource_url': {'key': 'resourceUrl', 'type': 'str'},
'result_selector': {'key': 'resultSelector', 'type': 'str'}
}
def __init__(self, authentication_scheme=None, callback_context_template=None, callback_required_template=None, endpoint_url=None, headers=None, initial_context_template=None, name=None, request_content=None, request_verb=None, resource_url=None, result_selector=None):
super(DataSource, self).__init__()
self.authentication_scheme = authentication_scheme
self.callback_context_template = callback_context_template
self.callback_required_template = callback_required_template
self.endpoint_url = endpoint_url
self.headers = headers
self.initial_context_template = initial_context_template
self.name = name
self.request_content = request_content
self.request_verb = request_verb
self.resource_url = resource_url
self.result_selector = result_selector
class DataSourceBindingBase(Model):
"""
Represents binding of data source for the service endpoint request.
:param callback_context_template: Pagination format supported by this data source(ContinuationToken/SkipTop).
:type callback_context_template: str
:param callback_required_template: Subsequent calls needed?
:type callback_required_template: str
:param data_source_name: Gets or sets the name of the data source.
:type data_source_name: str
:param endpoint_id: Gets or sets the endpoint Id.
:type endpoint_id: str
:param endpoint_url: Gets or sets the url of the service endpoint.
:type endpoint_url: str
:param headers: Gets or sets the authorization headers.
:type headers: list of :class:`AuthorizationHeader <azure.devops.v6_0.microsoft._team_foundation._distributed_task._common._contracts.models.AuthorizationHeader>`
:param initial_context_template: Defines the initial value of the query params
:type initial_context_template: str
:param parameters: Gets or sets the parameters for the data source.
:type parameters: dict
:param request_content: Gets or sets http request body
:type request_content: str
:param request_verb: Gets or sets http request verb
:type request_verb: str
:param result_selector: Gets or sets the result selector.
:type result_selector: str
:param result_template: Gets or sets the result template.
:type result_template: str
:param target: Gets or sets the target of the data source.
:type target: str
"""
_attribute_map = {
'callback_context_template': {'key': 'callbackContextTemplate', 'type': 'str'},
'callback_required_template': {'key': 'callbackRequiredTemplate', 'type': 'str'},
'data_source_name': {'key': 'dataSourceName', 'type': 'str'},
'endpoint_id': {'key': 'endpointId', 'type': 'str'},
'endpoint_url': {'key': 'endpointUrl', 'type': 'str'},
'headers': {'key': 'headers', 'type': '[AuthorizationHeader]'},
'initial_context_template': {'key': 'initialContextTemplate', 'type': 'str'},
'parameters': {'key': 'parameters', 'type': '{str}'},
'request_content': {'key': 'requestContent', 'type': 'str'},
'request_verb': {'key': 'requestVerb', 'type': 'str'},
'result_selector': {'key': 'resultSelector', 'type': 'str'},
'result_template': {'key': 'resultTemplate', 'type': 'str'},
'target': {'key': 'target', 'type': 'str'}
}
def __init__(self, callback_context_template=None, callback_required_template=None, data_source_name=None, endpoint_id=None, endpoint_url=None, headers=None, initial_context_template=None, parameters=None, request_content=None, request_verb=None, result_selector=None, result_template=None, target=None):
super(DataSourceBindingBase, self).__init__()
self.callback_context_template = callback_context_template
self.callback_required_template = callback_required_template
self.data_source_name = data_source_name
self.endpoint_id = endpoint_id
self.endpoint_url = endpoint_url
self.headers = headers
self.initial_context_template = initial_context_template
self.parameters = parameters
self.request_content = request_content
self.request_verb = request_verb
self.result_selector = result_selector
self.result_template = result_template
self.target = target
class DataSourceDetails(Model):
"""
Represents details of the service endpoint data source.
:param data_source_name: Gets or sets the data source name.
:type data_source_name: str
:param data_source_url: Gets or sets the data source url.
:type data_source_url: str
:param headers: Gets or sets the request headers.
:type headers: list of :class:`AuthorizationHeader <azure.devops.v6_0.service_endpoint.models.AuthorizationHeader>`
:param initial_context_template: Gets or sets the initialization context used for the initial call to the data source
:type initial_context_template: str
:param parameters: Gets the parameters of data source.
:type parameters: dict
:param request_content: Gets or sets the data source request content.
:type request_content: str
:param request_verb: Gets or sets the data source request verb. Get/Post are the only implemented types
:type request_verb: str
:param resource_url: Gets or sets the resource url of data source.
:type resource_url: str
:param result_selector: Gets or sets the result selector.
:type result_selector: str
"""
_attribute_map = {
'data_source_name': {'key': 'dataSourceName', 'type': 'str'},
'data_source_url': {'key': 'dataSourceUrl', 'type': 'str'},
'headers': {'key': 'headers', 'type': '[AuthorizationHeader]'},
'initial_context_template': {'key': 'initialContextTemplate', 'type': 'str'},
'parameters': {'key': 'parameters', 'type': '{str}'},
'request_content': {'key': 'requestContent', 'type': 'str'},
'request_verb': {'key': 'requestVerb', 'type': 'str'},
'resource_url': {'key': 'resourceUrl', 'type': 'str'},
'result_selector': {'key': 'resultSelector', 'type': 'str'}
}
def __init__(self, data_source_name=None, data_source_url=None, headers=None, initial_context_template=None, parameters=None, request_content=None, request_verb=None, resource_url=None, result_selector=None):
super(DataSourceDetails, self).__init__()
self.data_source_name = data_source_name
self.data_source_url = data_source_url
self.headers = headers
self.initial_context_template = initial_context_template
self.parameters = parameters
self.request_content = request_content
self.request_verb = request_verb
self.resource_url = resource_url
self.result_selector = result_selector
class DependencyBinding(Model):
"""
Represents the details of the input on which a given input is dependent.
:param key: Gets or sets the value of the field on which url is dependent.
:type key: str
:param value: Gets or sets the corresponding value of url.
:type value: str
"""
_attribute_map = {
'key': {'key': 'key', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, key=None, value=None):
super(DependencyBinding, self).__init__()
self.key = key
self.value = value
class DependencyData(Model):
"""
Represents the dependency data for the endpoint inputs.
:param input: Gets or sets the category of dependency data.
:type input: str
:param map: Gets or sets the key-value pair to specify properties and their values.
:type map: list of { key: str; value: [{ key: str; value: str }] }
"""
_attribute_map = {
'input': {'key': 'input', 'type': 'str'},
'map': {'key': 'map', 'type': '[{ key: str; value: [{ key: str; value: str }] }]'}
}
def __init__(self, input=None, map=None):
super(DependencyData, self).__init__()
self.input = input
self.map = map
class DependsOn(Model):
"""
Represents the inputs on which any given input is dependent.
:param input: Gets or sets the ID of the field on which URL's value is dependent.
:type input: str
:param map: Gets or sets key-value pair containing other's field value and corresponding url value.
:type map: list of :class:`DependencyBinding <azure.devops.v6_0.service_endpoint.models.DependencyBinding>`
"""
_attribute_map = {
'input': {'key': 'input', 'type': 'str'},
'map': {'key': 'map', 'type': '[DependencyBinding]'}
}
def __init__(self, input=None, map=None):
super(DependsOn, self).__init__()
self.input = input
self.map = map
class EndpointAuthorization(Model):
"""
Represents the authorization used for service endpoint.
:param parameters: Gets or sets the parameters for the selected authorization scheme.
:type parameters: dict
:param scheme: Gets or sets the scheme used for service endpoint authentication.
:type scheme: str
"""
_attribute_map = {
'parameters': {'key': 'parameters', 'type': '{str}'},
'scheme': {'key': 'scheme', 'type': 'str'}
}
def __init__(self, parameters=None, scheme=None):
super(EndpointAuthorization, self).__init__()
self.parameters = parameters
self.scheme = scheme
class EndpointUrl(Model):
"""
Represents url of the service endpoint.
:param depends_on: Gets or sets the dependency bindings.
:type depends_on: :class:`DependsOn <azure.devops.v6_0.service_endpoint.models.DependsOn>`
:param display_name: Gets or sets the display name of service endpoint url.
:type display_name: str
:param format: Gets or sets the format of the url.
:type format: str
:param help_text: Gets or sets the help text of service endpoint url.
:type help_text: str
:param is_visible: Gets or sets the visibility of service endpoint url.
:type is_visible: str
:param value: Gets or sets the value of service endpoint url.
:type value: str
"""
_attribute_map = {
'depends_on': {'key': 'dependsOn', 'type': 'DependsOn'},
'display_name': {'key': 'displayName', 'type': 'str'},
'format': {'key': 'format', 'type': 'str'},
'help_text': {'key': 'helpText', 'type': 'str'},
'is_visible': {'key': 'isVisible', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, depends_on=None, display_name=None, format=None, help_text=None, is_visible=None, value=None):
super(EndpointUrl, self).__init__()
self.depends_on = depends_on
self.display_name = display_name
self.format = format
self.help_text = help_text
self.is_visible = is_visible
self.value = value
class GraphSubjectBase(Model):
"""
:param _links: This field contains zero or more interesting links about the graph subject. These links may be invoked to obtain additional relationships or more detailed information about this graph subject.
:type _links: :class:`ReferenceLinks <azure.devops.v6_0.microsoft._visual_studio._services._web_api.models.ReferenceLinks>`
:param descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
:type descriptor: str
:param display_name: This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider.
:type display_name: str
:param url: This url is the full route to the source resource of this graph subject.
:type url: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'descriptor': {'key': 'descriptor', 'type': 'str'},
'display_name': {'key': 'displayName', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, _links=None, descriptor=None, display_name=None, url=None):
super(GraphSubjectBase, self).__init__()
self._links = _links
self.descriptor = descriptor
self.display_name = display_name
self.url = url
class HelpLink(Model):
"""
Specifies the public url of the help documentation.
:param text: Gets or sets the help text.
:type text: str
:param url: Gets or sets the public url of the help documentation.
:type url: str
"""
_attribute_map = {
'text': {'key': 'text', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, text=None, url=None):
super(HelpLink, self).__init__()
self.text = text
self.url = url
class IdentityRef(GraphSubjectBase):
"""
:param _links: This field contains zero or more interesting links about the graph subject. These links may be invoked to obtain additional relationships or more detailed information about this graph subject.
:type _links: :class:`ReferenceLinks <azure.devops.v6_0.microsoft._visual_studio._services._web_api.models.ReferenceLinks>`
:param descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the same graph subject across both Accounts and Organizations.
:type descriptor: str
:param display_name: This is the non-unique display name of the graph subject. To change this field, you must alter its value in the source provider.
:type display_name: str
:param url: This url is the full route to the source resource of this graph subject.
:type url: str
:param directory_alias: Deprecated - Can be retrieved by querying the Graph user referenced in the "self" entry of the IdentityRef "_links" dictionary
:type directory_alias: str
:param id:
:type id: str
:param image_url: Deprecated - Available in the "avatar" entry of the IdentityRef "_links" dictionary
:type image_url: str
:param inactive: Deprecated - Can be retrieved by querying the Graph membership state referenced in the "membershipState" entry of the GraphUser "_links" dictionary
:type inactive: bool
:param is_aad_identity: Deprecated - Can be inferred from the subject type of the descriptor (Descriptor.IsAadUserType/Descriptor.IsAadGroupType)
:type is_aad_identity: bool
:param is_container: Deprecated - Can be inferred from the subject type of the descriptor (Descriptor.IsGroupType)
:type is_container: bool
:param is_deleted_in_origin:
:type is_deleted_in_origin: bool
:param profile_url: Deprecated - not in use in most preexisting implementations of ToIdentityRef
:type profile_url: str
:param unique_name: Deprecated - use Domain+PrincipalName instead
:type unique_name: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'descriptor': {'key': 'descriptor', 'type': 'str'},
'display_name': {'key': 'displayName', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'},
'directory_alias': {'key': 'directoryAlias', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'image_url': {'key': 'imageUrl', 'type': 'str'},
'inactive': {'key': 'inactive', 'type': 'bool'},
'is_aad_identity': {'key': 'isAadIdentity', 'type': 'bool'},
'is_container': {'key': 'isContainer', 'type': 'bool'},
'is_deleted_in_origin': {'key': 'isDeletedInOrigin', 'type': 'bool'},
'profile_url': {'key': 'profileUrl', 'type': 'str'},
'unique_name': {'key': 'uniqueName', 'type': 'str'}
}
def __init__(self, _links=None, descriptor=None, display_name=None, url=None, directory_alias=None, id=None, image_url=None, inactive=None, is_aad_identity=None, is_container=None, is_deleted_in_origin=None, profile_url=None, unique_name=None):
super(IdentityRef, self).__init__(_links=_links, descriptor=descriptor, display_name=display_name, url=url)
self.directory_alias = directory_alias
self.id = id
self.image_url = image_url
self.inactive = inactive
self.is_aad_identity = is_aad_identity
self.is_container = is_container
self.is_deleted_in_origin = is_deleted_in_origin
self.profile_url = profile_url
self.unique_name = unique_name
class InputDescriptor(Model):
"""
Describes an input for subscriptions.
:param dependency_input_ids: The ids of all inputs that the value of this input is dependent on.
:type dependency_input_ids: list of str
:param description: Description of what this input is used for
:type description: str
:param group_name: The group localized name to which this input belongs and can be shown as a header for the container that will include all the inputs in the group.
:type group_name: str
:param has_dynamic_value_information: If true, the value information for this input is dynamic and should be fetched when the value of dependency inputs change.
:type has_dynamic_value_information: bool
:param id: Identifier for the subscription input
:type id: str
:param input_mode: Mode in which the value of this input should be entered
:type input_mode: object
:param is_confidential: Gets whether this input is confidential, such as for a password or application key
:type is_confidential: bool
:param name: Localized name which can be shown as a label for the subscription input
:type name: str
:param properties: Custom properties for the input which can be used by the service provider
:type properties: dict
:param type: Underlying data type for the input value. When this value is specified, InputMode, Validation and Values are optional.
:type type: str
:param use_in_default_description: Gets whether this input is included in the default generated action description.
:type use_in_default_description: bool
:param validation: Information to use to validate this input's value
:type validation: :class:`InputValidation <azure.devops.v6_0.microsoft._visual_studio._services._web_api.models.InputValidation>`
:param value_hint: A hint for input value. It can be used in the UI as the input placeholder.
:type value_hint: str
:param values: Information about possible values for this input
:type values: :class:`InputValues <azure.devops.v6_0.microsoft._visual_studio._services._web_api.models.InputValues>`
"""
_attribute_map = {
'dependency_input_ids': {'key': 'dependencyInputIds', 'type': '[str]'},
'description': {'key': 'description', 'type': 'str'},
'group_name': {'key': 'groupName', 'type': 'str'},
'has_dynamic_value_information': {'key': 'hasDynamicValueInformation', 'type': 'bool'},
'id': {'key': 'id', 'type': 'str'},
'input_mode': {'key': 'inputMode', 'type': 'object'},
'is_confidential': {'key': 'isConfidential', 'type': 'bool'},
'name': {'key': 'name', 'type': 'str'},
'properties': {'key': 'properties', 'type': '{object}'},
'type': {'key': 'type', 'type': 'str'},
'use_in_default_description': {'key': 'useInDefaultDescription', 'type': 'bool'},
'validation': {'key': 'validation', 'type': 'InputValidation'},
'value_hint': {'key': 'valueHint', 'type': 'str'},
'values': {'key': 'values', 'type': 'InputValues'}
}
def __init__(self, dependency_input_ids=None, description=None, group_name=None, has_dynamic_value_information=None, id=None, input_mode=None, is_confidential=None, name=None, properties=None, type=None, use_in_default_description=None, validation=None, value_hint=None, values=None):
super(InputDescriptor, self).__init__()
self.dependency_input_ids = dependency_input_ids
self.description = description
self.group_name = group_name
self.has_dynamic_value_information = has_dynamic_value_information
self.id = id
self.input_mode = input_mode
self.is_confidential = is_confidential
self.name = name
self.properties = properties
self.type = type
self.use_in_default_description = use_in_default_description
self.validation = validation
self.value_hint = value_hint
self.values = values
class InputValidation(Model):
"""
Describes what values are valid for a subscription input
:param data_type: Gets or sets the data data type to validate.
:type data_type: object
:param is_required: Gets or sets if this is a required field.
:type is_required: bool
:param max_length: Gets or sets the maximum length of this descriptor.
:type max_length: int
:param max_value: Gets or sets the minimum value for this descriptor.
:type max_value: decimal
:param min_length: Gets or sets the minimum length of this descriptor.
:type min_length: int
:param min_value: Gets or sets the minimum value for this descriptor.
:type min_value: decimal
:param pattern: Gets or sets the pattern to validate.
:type pattern: str
:param pattern_mismatch_error_message: Gets or sets the error on pattern mismatch.
:type pattern_mismatch_error_message: str
"""
_attribute_map = {
'data_type': {'key': 'dataType', 'type': 'object'},
'is_required': {'key': 'isRequired', 'type': 'bool'},
'max_length': {'key': 'maxLength', 'type': 'int'},
'max_value': {'key': 'maxValue', 'type': 'decimal'},
'min_length': {'key': 'minLength', 'type': 'int'},
'min_value': {'key': 'minValue', 'type': 'decimal'},
'pattern': {'key': 'pattern', 'type': 'str'},
'pattern_mismatch_error_message': {'key': 'patternMismatchErrorMessage', 'type': 'str'}
}
def __init__(self, data_type=None, is_required=None, max_length=None, max_value=None, min_length=None, min_value=None, pattern=None, pattern_mismatch_error_message=None):
super(InputValidation, self).__init__()
self.data_type = data_type
self.is_required = is_required
self.max_length = max_length
self.max_value = max_value
self.min_length = min_length
self.min_value = min_value
self.pattern = pattern
self.pattern_mismatch_error_message = pattern_mismatch_error_message
class InputValue(Model):
"""
Information about a single value for an input
:param data: Any other data about this input
:type data: dict
:param display_value: The text to show for the display of this value
:type display_value: str
:param value: The value to store for this input
:type value: str
"""
_attribute_map = {
'data': {'key': 'data', 'type': '{object}'},
'display_value': {'key': 'displayValue', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'}
}
def __init__(self, data=None, display_value=None, value=None):
super(InputValue, self).__init__()
self.data = data
self.display_value = display_value
self.value = value
class InputValues(Model):
"""
Information about the possible/allowed values for a given subscription input
:param default_value: The default value to use for this input
:type default_value: str
:param error: Errors encountered while computing dynamic values.
:type error: :class:`InputValuesError <azure.devops.v6_0.microsoft._visual_studio._services._web_api.models.InputValuesError>`
:param input_id: The id of the input
:type input_id: str
:param is_disabled: Should this input be disabled
:type is_disabled: bool
:param is_limited_to_possible_values: Should the value be restricted to one of the values in the PossibleValues (True) or are the values in PossibleValues just a suggestion (False)
:type is_limited_to_possible_values: bool
:param is_read_only: Should this input be made read-only
:type is_read_only: bool
:param possible_values: Possible values that this input can take
:type possible_values: list of :class:`InputValue <azure.devops.v6_0.microsoft._visual_studio._services._web_api.models.InputValue>`
"""
_attribute_map = {
'default_value': {'key': 'defaultValue', 'type': 'str'},
'error': {'key': 'error', 'type': 'InputValuesError'},
'input_id': {'key': 'inputId', 'type': 'str'},
'is_disabled': {'key': 'isDisabled', 'type': 'bool'},
'is_limited_to_possible_values': {'key': 'isLimitedToPossibleValues', 'type': 'bool'},
'is_read_only': {'key': 'isReadOnly', 'type': 'bool'},
'possible_values': {'key': 'possibleValues', 'type': '[InputValue]'}
}
def __init__(self, default_value=None, error=None, input_id=None, is_disabled=None, is_limited_to_possible_values=None, is_read_only=None, possible_values=None):
super(InputValues, self).__init__()
self.default_value = default_value
self.error = error
self.input_id = input_id
self.is_disabled = is_disabled
self.is_limited_to_possible_values = is_limited_to_possible_values
self.is_read_only = is_read_only
self.possible_values = possible_values
class InputValuesError(Model):
"""
Error information related to a subscription input value.
:param message: The error message.
:type message: str
"""
_attribute_map = {
'message': {'key': 'message', 'type': 'str'}
}
def __init__(self, message=None):
super(InputValuesError, self).__init__()
self.message = message
class OAuthConfiguration(Model):
"""
:param client_id: Gets or sets the ClientId
:type client_id: str
:param client_secret: Gets or sets the ClientSecret
:type client_secret: str
:param created_by: Gets or sets the identity who created the config.
:type created_by: :class:`IdentityRef <azure.devops.v6_0.service_endpoint.models.IdentityRef>`
:param created_on: Gets or sets the time when config was created.
:type created_on: datetime
:param endpoint_type: Gets or sets the type of the endpoint.
:type endpoint_type: str
:param id: Gets or sets the unique identifier of this field
:type id: str
:param modified_by: Gets or sets the identity who modified the config.
:type modified_by: :class:`IdentityRef <azure.devops.v6_0.service_endpoint.models.IdentityRef>`
:param modified_on: Gets or sets the time when variable group was modified
:type modified_on: datetime
:param name: Gets or sets the name
:type name: str
:param url: Gets or sets the Url
:type url: str
"""
_attribute_map = {
'client_id': {'key': 'clientId', 'type': 'str'},
'client_secret': {'key': 'clientSecret', 'type': 'str'},
'created_by': {'key': 'createdBy', 'type': 'IdentityRef'},
'created_on': {'key': 'createdOn', 'type': 'iso-8601'},
'endpoint_type': {'key': 'endpointType', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'modified_by': {'key': 'modifiedBy', 'type': 'IdentityRef'},
'modified_on': {'key': 'modifiedOn', 'type': 'iso-8601'},
'name': {'key': 'name', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, client_id=None, client_secret=None, created_by=None, created_on=None, endpoint_type=None, id=None, modified_by=None, modified_on=None, name=None, url=None):
super(OAuthConfiguration, self).__init__()
self.client_id = client_id
self.client_secret = client_secret
self.created_by = created_by
self.created_on = created_on
self.endpoint_type = endpoint_type
self.id = id
self.modified_by = modified_by
self.modified_on = modified_on
self.name = name
self.url = url
class OAuthConfigurationParams(Model):
"""
:param client_id: Gets or sets the ClientId
:type client_id: str
:param client_secret: Gets or sets the ClientSecret
:type client_secret: str
:param endpoint_type: Gets or sets the type of the endpoint.
:type endpoint_type: str
:param name: Gets or sets the name
:type name: str
:param url: Gets or sets the Url
:type url: str
"""
_attribute_map = {
'client_id': {'key': 'clientId', 'type': 'str'},
'client_secret': {'key': 'clientSecret', 'type': 'str'},
'endpoint_type': {'key': 'endpointType', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, client_id=None, client_secret=None, endpoint_type=None, name=None, url=None):
super(OAuthConfigurationParams, self).__init__()
self.client_id = client_id
self.client_secret = client_secret
self.endpoint_type = endpoint_type
self.name = name
self.url = url
class ProjectReference(Model):
"""
:param id:
:type id: str
:param name:
:type name: str
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'}
}
def __init__(self, id=None, name=None):
super(ProjectReference, self).__init__()
self.id = id
self.name = name
class ReferenceLinks(Model):
"""
The class to represent a collection of REST reference links.
:param links: The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only.
:type links: dict
"""
_attribute_map = {
'links': {'key': 'links', 'type': '{object}'}
}
def __init__(self, links=None):
super(ReferenceLinks, self).__init__()
self.links = links
class RefreshAuthenticationParameters(Model):
"""
Specify the properties for refreshing the endpoint authentication object being queried
:param endpoint_id: EndpointId which needs new authentication params
:type endpoint_id: str
:param scope: Scope of the token requested. For GitHub marketplace apps, scope contains repository Ids
:type scope: list of int
:param token_validity_in_minutes: The requested endpoint authentication should be valid for _ minutes. Authentication params will not be refreshed if the token contained in endpoint already has active token.
:type token_validity_in_minutes: int
"""
_attribute_map = {
'endpoint_id': {'key': 'endpointId', 'type': 'str'},
'scope': {'key': 'scope', 'type': '[int]'},
'token_validity_in_minutes': {'key': 'tokenValidityInMinutes', 'type': 'int'}
}
def __init__(self, endpoint_id=None, scope=None, token_validity_in_minutes=None):
super(RefreshAuthenticationParameters, self).__init__()
self.endpoint_id = endpoint_id
self.scope = scope
self.token_validity_in_minutes = token_validity_in_minutes
class ResultTransformationDetails(Model):
"""
Represents template to transform the result data.
:param callback_context_template: Gets or sets the template for callback parameters
:type callback_context_template: str
:param callback_required_template: Gets or sets the template to decide whether to callback or not
:type callback_required_template: str
:param result_template: Gets or sets the template for result transformation.
:type result_template: str
"""
_attribute_map = {
'callback_context_template': {'key': 'callbackContextTemplate', 'type': 'str'},
'callback_required_template': {'key': 'callbackRequiredTemplate', 'type': 'str'},
'result_template': {'key': 'resultTemplate', 'type': 'str'}
}
def __init__(self, callback_context_template=None, callback_required_template=None, result_template=None):
super(ResultTransformationDetails, self).__init__()
self.callback_context_template = callback_context_template
self.callback_required_template = callback_required_template
self.result_template = result_template
class ServiceEndpoint(Model):
"""
Represents an endpoint which may be used by an orchestration job.
:param administrators_group: Gets or sets the identity reference for the administrators group of the service endpoint.
:type administrators_group: :class:`IdentityRef <azure.devops.v6_0.service_endpoint.models.IdentityRef>`
:param authorization: Gets or sets the authorization data for talking to the endpoint.
:type authorization: :class:`EndpointAuthorization <azure.devops.v6_0.service_endpoint.models.EndpointAuthorization>`
:param created_by: Gets or sets the identity reference for the user who created the Service endpoint.
:type created_by: :class:`IdentityRef <azure.devops.v6_0.service_endpoint.models.IdentityRef>`
:param data:
:type data: dict
:param description: Gets or sets the description of endpoint.
:type description: str
:param group_scope_id: This is a deprecated field.
:type group_scope_id: str
:param id: Gets or sets the identifier of this endpoint.
:type id: str
:param is_ready: EndPoint state indicator
:type is_ready: bool
:param is_shared: Indicates whether service endpoint is shared with other projects or not.
:type is_shared: bool
:param name: Gets or sets the friendly name of the endpoint.
:type name: str
:param operation_status: Error message during creation/deletion of endpoint
:type operation_status: :class:`object <azure.devops.v6_0.service_endpoint.models.object>`
:param owner: Owner of the endpoint Supported values are "library", "agentcloud"
:type owner: str
:param readers_group: Gets or sets the identity reference for the readers group of the service endpoint.
:type readers_group: :class:`IdentityRef <azure.devops.v6_0.service_endpoint.models.IdentityRef>`
:param service_endpoint_project_references: All other project references where the service endpoint is shared.
:type service_endpoint_project_references: list of :class:`ServiceEndpointProjectReference <azure.devops.v6_0.service_endpoint.models.ServiceEndpointProjectReference>`
:param type: Gets or sets the type of the endpoint.
:type type: str
:param url: Gets or sets the url of the endpoint.
:type url: str
"""
_attribute_map = {
'administrators_group': {'key': 'administratorsGroup', 'type': 'IdentityRef'},
'authorization': {'key': 'authorization', 'type': 'EndpointAuthorization'},
'created_by': {'key': 'createdBy', 'type': 'IdentityRef'},
'data': {'key': 'data', 'type': '{str}'},
'description': {'key': 'description', 'type': 'str'},
'group_scope_id': {'key': 'groupScopeId', 'type': 'str'},
'id': {'key': 'id', 'type': 'str'},
'is_ready': {'key': 'isReady', 'type': 'bool'},
'is_shared': {'key': 'isShared', 'type': 'bool'},
'name': {'key': 'name', 'type': 'str'},
'operation_status': {'key': 'operationStatus', 'type': 'object'},
'owner': {'key': 'owner', 'type': 'str'},
'readers_group': {'key': 'readersGroup', 'type': 'IdentityRef'},
'service_endpoint_project_references': {'key': 'serviceEndpointProjectReferences', 'type': '[ServiceEndpointProjectReference]'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, administrators_group=None, authorization=None, created_by=None, data=None, description=None, group_scope_id=None, id=None, is_ready=None, is_shared=None, name=None, operation_status=None, owner=None, readers_group=None, service_endpoint_project_references=None, type=None, url=None):
super(ServiceEndpoint, self).__init__()
self.administrators_group = administrators_group
self.authorization = authorization
self.created_by = created_by
self.data = data
self.description = description
self.group_scope_id = group_scope_id
self.id = id
self.is_ready = is_ready
self.is_shared = is_shared
self.name = name
self.operation_status = operation_status
self.owner = owner
self.readers_group = readers_group
self.service_endpoint_project_references = service_endpoint_project_references
self.type = type
self.url = url
class ServiceEndpointAuthenticationScheme(Model):
"""
Represents the authentication scheme used to authenticate the endpoint.
:param authorization_headers: Gets or sets the authorization headers of service endpoint authentication scheme.
:type authorization_headers: list of :class:`AuthorizationHeader <azure.devops.v6_0.service_endpoint.models.AuthorizationHeader>`
:param authorization_url: Gets or sets the Authorization url required to authenticate using OAuth2
:type authorization_url: str
:param client_certificates: Gets or sets the certificates of service endpoint authentication scheme.
:type client_certificates: list of :class:`ClientCertificate <azure.devops.v6_0.service_endpoint.models.ClientCertificate>`
:param data_source_bindings: Gets or sets the data source bindings of the endpoint.
:type data_source_bindings: list of :class:`DataSourceBinding <azure.devops.v6_0.service_endpoint.models.DataSourceBinding>`
:param display_name: Gets or sets the display name for the service endpoint authentication scheme.
:type display_name: str
:param input_descriptors: Gets or sets the input descriptors for the service endpoint authentication scheme.
:type input_descriptors: list of :class:`InputDescriptor <azure.devops.v6_0.service_endpoint.models.InputDescriptor>`
:param properties: Gets or sets the properties of service endpoint authentication scheme.
:type properties: dict
:param requires_oAuth2_configuration: Gets or sets whether this auth scheme requires OAuth2 configuration or not.
:type requires_oAuth2_configuration: bool
:param scheme: Gets or sets the scheme for service endpoint authentication.
:type scheme: str
"""
_attribute_map = {
'authorization_headers': {'key': 'authorizationHeaders', 'type': '[AuthorizationHeader]'},
'authorization_url': {'key': 'authorizationUrl', 'type': 'str'},
'client_certificates': {'key': 'clientCertificates', 'type': '[ClientCertificate]'},
'data_source_bindings': {'key': 'dataSourceBindings', 'type': '[DataSourceBinding]'},
'display_name': {'key': 'displayName', 'type': 'str'},
'input_descriptors': {'key': 'inputDescriptors', 'type': '[InputDescriptor]'},
'properties': {'key': 'properties', 'type': '{str}'},
'requires_oAuth2_configuration': {'key': 'requiresOAuth2Configuration', 'type': 'bool'},
'scheme': {'key': 'scheme', 'type': 'str'}
}
def __init__(self, authorization_headers=None, authorization_url=None, client_certificates=None, data_source_bindings=None, display_name=None, input_descriptors=None, properties=None, requires_oAuth2_configuration=None, scheme=None):
super(ServiceEndpointAuthenticationScheme, self).__init__()
self.authorization_headers = authorization_headers
self.authorization_url = authorization_url
self.client_certificates = client_certificates
self.data_source_bindings = data_source_bindings
self.display_name = display_name
self.input_descriptors = input_descriptors
self.properties = properties
self.requires_oAuth2_configuration = requires_oAuth2_configuration
self.scheme = scheme
class ServiceEndpointDetails(Model):
"""
Represents details of the service endpoint.
:param authorization: Gets or sets the authorization of service endpoint.
:type authorization: :class:`EndpointAuthorization <azure.devops.v6_0.service_endpoint.models.EndpointAuthorization>`
:param data: Gets or sets the data of service endpoint.
:type data: dict
:param type: Gets or sets the type of service endpoint.
:type type: str
:param url: Gets or sets the connection url of service endpoint.
:type url: str
"""
_attribute_map = {
'authorization': {'key': 'authorization', 'type': 'EndpointAuthorization'},
'data': {'key': 'data', 'type': '{str}'},
'type': {'key': 'type', 'type': 'str'},
'url': {'key': 'url', 'type': 'str'}
}
def __init__(self, authorization=None, data=None, type=None, url=None):
super(ServiceEndpointDetails, self).__init__()
self.authorization = authorization
self.data = data
self.type = type
self.url = url
class ServiceEndpointExecutionData(Model):
"""
Represents service endpoint execution data.
:param definition: Gets the definition of service endpoint execution owner.
:type definition: :class:`ServiceEndpointExecutionOwner <azure.devops.v6_0.service_endpoint.models.ServiceEndpointExecutionOwner>`
:param finish_time: Gets the finish time of service endpoint execution.
:type finish_time: datetime
:param id: Gets the Id of service endpoint execution data.
:type id: long
:param owner: Gets the owner of service endpoint execution data.
:type owner: :class:`ServiceEndpointExecutionOwner <azure.devops.v6_0.service_endpoint.models.ServiceEndpointExecutionOwner>`
:param plan_type: Gets the plan type of service endpoint execution data.
:type plan_type: str
:param result: Gets the result of service endpoint execution.
:type result: object
:param start_time: Gets the start time of service endpoint execution.
:type start_time: datetime
"""
_attribute_map = {
'definition': {'key': 'definition', 'type': 'ServiceEndpointExecutionOwner'},
'finish_time': {'key': 'finishTime', 'type': 'iso-8601'},
'id': {'key': 'id', 'type': 'long'},
'owner': {'key': 'owner', 'type': 'ServiceEndpointExecutionOwner'},
'plan_type': {'key': 'planType', 'type': 'str'},
'result': {'key': 'result', 'type': 'object'},
'start_time': {'key': 'startTime', 'type': 'iso-8601'}
}
def __init__(self, definition=None, finish_time=None, id=None, owner=None, plan_type=None, result=None, start_time=None):
super(ServiceEndpointExecutionData, self).__init__()
self.definition = definition
self.finish_time = finish_time
self.id = id
self.owner = owner
self.plan_type = plan_type
self.result = result
self.start_time = start_time
class ServiceEndpointExecutionOwner(Model):
"""
Represents execution owner of the service endpoint.
:param _links:
:type _links: :class:`ReferenceLinks <azure.devops.v6_0.service_endpoint.models.ReferenceLinks>`
:param id: Gets or sets the Id of service endpoint execution owner.
:type id: int
:param name: Gets or sets the name of service endpoint execution owner.
:type name: str
"""
_attribute_map = {
'_links': {'key': '_links', 'type': 'ReferenceLinks'},
'id': {'key': 'id', 'type': 'int'},
'name': {'key': 'name', 'type': 'str'}
}
def __init__(self, _links=None, id=None, name=None):
super(ServiceEndpointExecutionOwner, self).__init__()
self._links = _links
self.id = id
self.name = name
class ServiceEndpointExecutionRecord(Model):
"""
Represents the details of service endpoint execution.
:param data: Gets the execution data of service endpoint execution.
:type data: :class:`ServiceEndpointExecutionData <azure.devops.v6_0.service_endpoint.models.ServiceEndpointExecutionData>`
:param endpoint_id: Gets the Id of service endpoint.
:type endpoint_id: str
"""
_attribute_map = {
'data': {'key': 'data', 'type': 'ServiceEndpointExecutionData'},
'endpoint_id': {'key': 'endpointId', 'type': 'str'}
}
def __init__(self, data=None, endpoint_id=None):
super(ServiceEndpointExecutionRecord, self).__init__()
self.data = data
self.endpoint_id = endpoint_id
class ServiceEndpointExecutionRecordsInput(Model):
"""
:param data:
:type data: :class:`ServiceEndpointExecutionData <azure.devops.v6_0.service_endpoint.models.ServiceEndpointExecutionData>`
:param endpoint_ids:
:type endpoint_ids: list of str
"""
_attribute_map = {
'data': {'key': 'data', 'type': 'ServiceEndpointExecutionData'},
'endpoint_ids': {'key': 'endpointIds', 'type': '[str]'}
}
def __init__(self, data=None, endpoint_ids=None):
super(ServiceEndpointExecutionRecordsInput, self).__init__()
self.data = data
self.endpoint_ids = endpoint_ids
class ServiceEndpointProjectReference(Model):
"""
:param description: Gets or sets description of the service endpoint.
:type description: str
:param name: Gets or sets name of the service endpoint.
:type name: str
:param project_reference: Gets or sets project reference of the service endpoint.
:type project_reference: :class:`ProjectReference <azure.devops.v6_0.service_endpoint.models.ProjectReference>`
"""
_attribute_map = {
'description': {'key': 'description', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'project_reference': {'key': 'projectReference', 'type': 'ProjectReference'}
}
def __init__(self, description=None, name=None, project_reference=None):
super(ServiceEndpointProjectReference, self).__init__()
self.description = description
self.name = name
self.project_reference = project_reference
class ServiceEndpointRequest(Model):
"""
:param data_source_details: Gets or sets the data source details for the service endpoint request.
:type data_source_details: :class:`DataSourceDetails <azure.devops.v6_0.service_endpoint.models.DataSourceDetails>`
:param result_transformation_details: Gets or sets the result transformation details for the service endpoint request.
:type result_transformation_details: :class:`ResultTransformationDetails <azure.devops.v6_0.service_endpoint.models.ResultTransformationDetails>`
:param service_endpoint_details: Gets or sets the service endpoint details for the service endpoint request.
:type service_endpoint_details: :class:`ServiceEndpointDetails <azure.devops.v6_0.service_endpoint.models.ServiceEndpointDetails>`
"""
_attribute_map = {
'data_source_details': {'key': 'dataSourceDetails', 'type': 'DataSourceDetails'},
'result_transformation_details': {'key': 'resultTransformationDetails', 'type': 'ResultTransformationDetails'},
'service_endpoint_details': {'key': 'serviceEndpointDetails', 'type': 'ServiceEndpointDetails'}
}
def __init__(self, data_source_details=None, result_transformation_details=None, service_endpoint_details=None):
super(ServiceEndpointRequest, self).__init__()
self.data_source_details = data_source_details
self.result_transformation_details = result_transformation_details
self.service_endpoint_details = service_endpoint_details
class ServiceEndpointRequestResult(Model):
"""
Represents result of the service endpoint request.
:param callback_context_parameters: Gets or sets the parameters used to make subsequent calls to the data source
:type callback_context_parameters: dict
:param callback_required: Gets or sets the flat that decides if another call to the data source is to be made
:type callback_required: bool
:param error_message: Gets or sets the error message of the service endpoint request result.
:type error_message: str
:param result: Gets or sets the result of service endpoint request.
:type result: :class:`object <azure.devops.v6_0.service_endpoint.models.object>`
:param status_code: Gets or sets the status code of the service endpoint request result.
:type status_code: object
"""
_attribute_map = {
'callback_context_parameters': {'key': 'callbackContextParameters', 'type': '{str}'},
'callback_required': {'key': 'callbackRequired', 'type': 'bool'},
'error_message': {'key': 'errorMessage', 'type': 'str'},
'result': {'key': 'result', 'type': 'object'},
'status_code': {'key': 'statusCode', 'type': 'object'}
}
def __init__(self, callback_context_parameters=None, callback_required=None, error_message=None, result=None, status_code=None):
super(ServiceEndpointRequestResult, self).__init__()
self.callback_context_parameters = callback_context_parameters
self.callback_required = callback_required
self.error_message = error_message
self.result = result
self.status_code = status_code
class ServiceEndpointType(Model):
"""
Represents type of the service endpoint.
:param authentication_schemes: Authentication scheme of service endpoint type.
:type authentication_schemes: list of :class:`ServiceEndpointAuthenticationScheme <azure.devops.v6_0.service_endpoint.models.ServiceEndpointAuthenticationScheme>`
:param data_sources: Data sources of service endpoint type.
:type data_sources: list of :class:`DataSource <azure.devops.v6_0.service_endpoint.models.DataSource>`
:param dependency_data: Dependency data of service endpoint type.
:type dependency_data: list of :class:`DependencyData <azure.devops.v6_0.service_endpoint.models.DependencyData>`
:param description: Gets or sets the description of service endpoint type.
:type description: str
:param display_name: Gets or sets the display name of service endpoint type.
:type display_name: str
:param endpoint_url: Gets or sets the endpoint url of service endpoint type.
:type endpoint_url: :class:`EndpointUrl <azure.devops.v6_0.service_endpoint.models.EndpointUrl>`
:param help_link: Gets or sets the help link of service endpoint type.
:type help_link: :class:`HelpLink <azure.devops.v6_0.service_endpoint.models.HelpLink>`
:param help_mark_down: Gets or sets the help text shown at the endpoint create dialog.
:type help_mark_down: str
:param icon_url: Gets or sets the icon url of service endpoint type.
:type icon_url: str
:param input_descriptors: Input descriptor of service endpoint type.
:type input_descriptors: list of :class:`InputDescriptor <azure.devops.v6_0.service_endpoint.models.InputDescriptor>`
:param name: Gets or sets the name of service endpoint type.
:type name: str
:param trusted_hosts: Trusted hosts of a service endpoint type.
:type trusted_hosts: list of str
:param ui_contribution_id: Gets or sets the ui contribution id of service endpoint type.
:type ui_contribution_id: str
"""
_attribute_map = {
'authentication_schemes': {'key': 'authenticationSchemes', 'type': '[ServiceEndpointAuthenticationScheme]'},
'data_sources': {'key': 'dataSources', 'type': '[DataSource]'},
'dependency_data': {'key': 'dependencyData', 'type': '[DependencyData]'},
'description': {'key': 'description', 'type': 'str'},
'display_name': {'key': 'displayName', 'type': 'str'},
'endpoint_url': {'key': 'endpointUrl', 'type': 'EndpointUrl'},
'help_link': {'key': 'helpLink', 'type': 'HelpLink'},
'help_mark_down': {'key': 'helpMarkDown', 'type': 'str'},
'icon_url': {'key': 'iconUrl', 'type': 'str'},
'input_descriptors': {'key': 'inputDescriptors', 'type': '[InputDescriptor]'},
'name': {'key': 'name', 'type': 'str'},
'trusted_hosts': {'key': 'trustedHosts', 'type': '[str]'},
'ui_contribution_id': {'key': 'uiContributionId', 'type': 'str'}
}
def __init__(self, authentication_schemes=None, data_sources=None, dependency_data=None, description=None, display_name=None, endpoint_url=None, help_link=None, help_mark_down=None, icon_url=None, input_descriptors=None, name=None, trusted_hosts=None, ui_contribution_id=None):
super(ServiceEndpointType, self).__init__()
self.authentication_schemes = authentication_schemes
self.data_sources = data_sources
self.dependency_data = dependency_data
self.description = description
self.display_name = display_name
self.endpoint_url = endpoint_url
self.help_link = help_link
self.help_mark_down = help_mark_down
self.icon_url = icon_url
self.input_descriptors = input_descriptors
self.name = name
self.trusted_hosts = trusted_hosts
self.ui_contribution_id = ui_contribution_id
class DataSourceBinding(DataSourceBindingBase):
"""
Represents the data source binding of the endpoint.
:param callback_context_template: Pagination format supported by this data source(ContinuationToken/SkipTop).
:type callback_context_template: str
:param callback_required_template: Subsequent calls needed?
:type callback_required_template: str
:param data_source_name: Gets or sets the name of the data source.
:type data_source_name: str
:param endpoint_id: Gets or sets the endpoint Id.
:type endpoint_id: str
:param endpoint_url: Gets or sets the url of the service endpoint.
:type endpoint_url: str
:param headers: Gets or sets the authorization headers.
:type headers: list of :class:`AuthorizationHeader <azure.devops.v6_0.service_endpoint.models.AuthorizationHeader>`
:param initial_context_template: Defines the initial value of the query params
:type initial_context_template: str
:param parameters: Gets or sets the parameters for the data source.
:type parameters: dict
:param request_content: Gets or sets http request body
:type request_content: str
:param request_verb: Gets or sets http request verb
:type request_verb: str
:param result_selector: Gets or sets the result selector.
:type result_selector: str
:param result_template: Gets or sets the result template.
:type result_template: str
:param target: Gets or sets the target of the data source.
:type target: str
"""
_attribute_map = {
'callback_context_template': {'key': 'callbackContextTemplate', 'type': 'str'},
'callback_required_template': {'key': 'callbackRequiredTemplate', 'type': 'str'},
'data_source_name': {'key': 'dataSourceName', 'type': 'str'},
'endpoint_id': {'key': 'endpointId', 'type': 'str'},
'endpoint_url': {'key': 'endpointUrl', 'type': 'str'},
'headers': {'key': 'headers', 'type': '[AuthorizationHeader]'},
'initial_context_template': {'key': 'initialContextTemplate', 'type': 'str'},
'parameters': {'key': 'parameters', 'type': '{str}'},
'request_content': {'key': 'requestContent', 'type': 'str'},
'request_verb': {'key': 'requestVerb', 'type': 'str'},
'result_selector': {'key': 'resultSelector', 'type': 'str'},
'result_template': {'key': 'resultTemplate', 'type': 'str'},
'target': {'key': 'target', 'type': 'str'},
}
def __init__(self, callback_context_template=None, callback_required_template=None, data_source_name=None, endpoint_id=None, endpoint_url=None, headers=None, initial_context_template=None, parameters=None, request_content=None, request_verb=None, result_selector=None, result_template=None, target=None):
super(DataSourceBinding, self).__init__(callback_context_template=callback_context_template, callback_required_template=callback_required_template, data_source_name=data_source_name, endpoint_id=endpoint_id, endpoint_url=endpoint_url, headers=headers, initial_context_template=initial_context_template, parameters=parameters, request_content=request_content, request_verb=request_verb, result_selector=result_selector, result_template=result_template, target=target)
__all__ = [
'AadOauthTokenRequest',
'AadOauthTokenResult',
'AuthenticationSchemeReference',
'AuthorizationHeader',
'AzureManagementGroup',
'AzureManagementGroupQueryResult',
'AzureSubscription',
'AzureSubscriptionQueryResult',
'ClientCertificate',
'DataSource',
'DataSourceBindingBase',
'DataSourceDetails',
'DependencyBinding',
'DependencyData',
'DependsOn',
'EndpointAuthorization',
'EndpointUrl',
'GraphSubjectBase',
'HelpLink',
'IdentityRef',
'InputDescriptor',
'InputValidation',
'InputValue',
'InputValues',
'InputValuesError',
'OAuthConfiguration',
'OAuthConfigurationParams',
'ProjectReference',
'ReferenceLinks',
'RefreshAuthenticationParameters',
'ResultTransformationDetails',
'ServiceEndpoint',
'ServiceEndpointAuthenticationScheme',
'ServiceEndpointDetails',
'ServiceEndpointExecutionData',
'ServiceEndpointExecutionOwner',
'ServiceEndpointExecutionRecord',
'ServiceEndpointExecutionRecordsInput',
'ServiceEndpointProjectReference',
'ServiceEndpointRequest',
'ServiceEndpointRequestResult',
'ServiceEndpointType',
'DataSourceBinding',
]
|