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
|
interactions:
- request:
body: '{"location": "westus2", "properties": {"orchestratorProfile": {"orchestratorType":
"DCOS"}, "masterProfile": {"count": 1, "dnsPrefix": "MasterPrefixTest", "vmSize":
"Standard_D2_v2"}, "agentPoolProfiles": [{"name": "agentpool0", "count": 3,
"vmSize": "Standard_A2_v2"}], "linuxProfile": {"adminUsername": "acslinuxadmin",
"ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==
azureuser@linuxvm"}]}}}}'
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['763']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01
response:
body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\
,\n \"location\": \"westus2\",\n \"name\": \"pycontainer665810f8\",\n \"\
type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Updating\",\n \"orchestratorProfile\":\
\ {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\": \"\
1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \"dnsPrefix\"\
: \"MasterPrefixTest\",\n \"vmSize\": \"Standard_D2_v2\",\n \"firstConsecutiveStaticIP\"\
: \"172.16.0.5\",\n \"storageProfile\": \"ManagedDisks\",\n \"fqdn\"\
: \"masterprefixtest.westus2.cloudapp.azure.com\"\n },\n \"agentPoolProfiles\"\
: [\n {\n \"name\": \"agentpool0\",\n \"count\": 3,\n \"vmSize\"\
: \"Standard_A2_v2\",\n \"dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \
\ \"storageProfile\": \"ManagedDisks\",\n \"osType\": \"Linux\"\n \
\ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"acslinuxadmin\"\
,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\
\ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }"}
headers:
Azure-AsyncOperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30']
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:53:46 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['1505']
x-ms-correlation-request-id: [2f0fd7f4-a0c0-439f-811b-e18287cc66bf]
x-ms-ratelimit-remaining-subscription-writes: ['1199']
x-ms-request-id: [0062da6b-ac14-4048-a662-e9604a748e51]
x-ms-routing-request-id: ['WESTUS:20171017T185347Z:2f0fd7f4-a0c0-439f-811b-e18287cc66bf']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:54:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [86250e3c-2656-4558-b903-e73bbc7709ee]
x-ms-ratelimit-remaining-subscription-reads: ['14991']
x-ms-request-id: [c28a6b62-2d1d-43ab-84c5-f78cc43b4114]
x-ms-routing-request-id: ['WESTUS:20171017T185418Z:86250e3c-2656-4558-b903-e73bbc7709ee']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:54:49 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [c33a6cc4-4ab7-4858-be4f-dd845a5fb331]
x-ms-ratelimit-remaining-subscription-reads: ['14992']
x-ms-request-id: [6df01aeb-65ab-42ce-a649-f457ad582ea2]
x-ms-routing-request-id: ['WESTUS2:20171017T185449Z:c33a6cc4-4ab7-4858-be4f-dd845a5fb331']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:55:20 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [50934c9f-2e27-4e94-b32d-61ac6193d4e0]
x-ms-ratelimit-remaining-subscription-reads: ['14977']
x-ms-request-id: [9cb5e5b3-54b2-48f1-a281-de0c79dd53e8]
x-ms-routing-request-id: ['WESTUS2:20171017T185520Z:50934c9f-2e27-4e94-b32d-61ac6193d4e0']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:55:51 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [bfe6b7c8-3aa0-4184-8dc9-e461bd38e73d]
x-ms-ratelimit-remaining-subscription-reads: ['14991']
x-ms-request-id: [29d5de11-430e-4f38-81dd-8f32bd3d5433]
x-ms-routing-request-id: ['WESTUS2:20171017T185551Z:bfe6b7c8-3aa0-4184-8dc9-e461bd38e73d']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:56:21 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [ec2ae310-7212-45c0-8805-af1043315df3]
x-ms-ratelimit-remaining-subscription-reads: ['14984']
x-ms-request-id: [4e7c041e-eff8-4e83-a1cd-bd1184cb3b9c]
x-ms-routing-request-id: ['WESTUS2:20171017T185622Z:ec2ae310-7212-45c0-8805-af1043315df3']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:56:52 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [f0ae742d-0698-4d00-b861-cfb80122fdec]
x-ms-ratelimit-remaining-subscription-reads: ['14988']
x-ms-request-id: [56cf0b50-e579-4077-8b7e-1e57a19ed883]
x-ms-routing-request-id: ['WESTUS2:20171017T185653Z:f0ae742d-0698-4d00-b861-cfb80122fdec']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:57:23 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [bc4095b3-c8d8-4a0f-a867-0308961f5cfc]
x-ms-ratelimit-remaining-subscription-reads: ['14982']
x-ms-request-id: [606bab65-b5d7-4d5a-b550-a70b39daf00d]
x-ms-routing-request-id: ['WESTUS2:20171017T185724Z:bc4095b3-c8d8-4a0f-a867-0308961f5cfc']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:57:55 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [6997c6e1-ae20-4bc8-9286-a8864ed09a86]
x-ms-ratelimit-remaining-subscription-reads: ['14977']
x-ms-request-id: [e120ac60-b2fc-4332-a5b3-28cf3eb34504]
x-ms-routing-request-id: ['WESTUS2:20171017T185755Z:6997c6e1-ae20-4bc8-9286-a8864ed09a86']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:58:25 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [c89a5cf1-66de-455d-9ef7-d599044dd79e]
x-ms-ratelimit-remaining-subscription-reads: ['14945']
x-ms-request-id: [bface3a8-42da-4f60-b88b-7052be37ec2f]
x-ms-routing-request-id: ['WESTUS2:20171017T185825Z:c89a5cf1-66de-455d-9ef7-d599044dd79e']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:58:56 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [742c1f27-2543-4e81-a564-429ddb1213e1]
x-ms-ratelimit-remaining-subscription-reads: ['14988']
x-ms-request-id: [14acec88-ba40-44d5-9c85-b5fe3fb8aac9]
x-ms-routing-request-id: ['WESTUS2:20171017T185856Z:742c1f27-2543-4e81-a564-429ddb1213e1']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:59:26 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [d0068d95-4ffe-4040-8498-d92d728ce8e0]
x-ms-ratelimit-remaining-subscription-reads: ['14999']
x-ms-request-id: [22bee806-c737-4763-8914-ccb2f9491647]
x-ms-routing-request-id: ['WESTUS2:20171017T185927Z:d0068d95-4ffe-4040-8498-d92d728ce8e0']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 18:59:58 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [6c0d977d-2e87-475a-8a4c-848789989955]
x-ms-ratelimit-remaining-subscription-reads: ['14986']
x-ms-request-id: [2c4afe64-c6b7-49a3-b179-eae717eef9f5]
x-ms-routing-request-id: ['WESTUS2:20171017T185958Z:6c0d977d-2e87-475a-8a4c-848789989955']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:00:28 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [19d23878-b675-40b3-8b12-69917bbef9fb]
x-ms-ratelimit-remaining-subscription-reads: ['14994']
x-ms-request-id: [cb2d39b6-175c-429a-b51c-5c95cbf7fb4d]
x-ms-routing-request-id: ['WESTUS2:20171017T190029Z:19d23878-b675-40b3-8b12-69917bbef9fb']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:01:00 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [8acf084e-4f93-400b-b7aa-09fb1a302929]
x-ms-ratelimit-remaining-subscription-reads: ['14989']
x-ms-request-id: [21780136-ebfd-4378-b3eb-74aa540306f8]
x-ms-routing-request-id: ['WESTUS:20171017T190101Z:8acf084e-4f93-400b-b7aa-09fb1a302929']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:01:32 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [6422858b-21f1-4fce-bfb0-b9eab85ef614]
x-ms-ratelimit-remaining-subscription-reads: ['14984']
x-ms-request-id: [ae51ba70-1785-4b12-84cc-ac91febc23ed]
x-ms-routing-request-id: ['WESTUS:20171017T190133Z:6422858b-21f1-4fce-bfb0-b9eab85ef614']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0062da6b-ac14-4048-a662-e9604a748e51?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"6bda6200-14ac-4840-a662-e9604a748e51\",\n \"\
status\": \"Succeeded\",\n \"startTime\": \"2017-10-17T18:53:46.3596786Z\"\
,\n \"endTime\": \"2017-10-17T19:01:32.8680673Z\"\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['170']
x-ms-correlation-request-id: [13b3143f-d3d9-4578-8508-82d8fbbdcbce]
x-ms-ratelimit-remaining-subscription-reads: ['14992']
x-ms-request-id: [b1476334-7f4c-4bb5-b81b-efc910a9198c]
x-ms-routing-request-id: ['WESTUS2:20171017T190204Z:13b3143f-d3d9-4578-8508-82d8fbbdcbce']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [7ab2f98c-b36c-11e7-8f56-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01
response:
body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\
,\n \"location\": \"westus2\",\n \"name\": \"pycontainer665810f8\",\n \"\
type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\
: {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\": \"\
1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \"dnsPrefix\"\
: \"MasterPrefixTest\",\n \"vmSize\": \"Standard_D2_v2\",\n \"firstConsecutiveStaticIP\"\
: \"172.16.0.5\",\n \"storageProfile\": \"ManagedDisks\",\n \"fqdn\"\
: \"masterprefixtest.westus2.cloudapp.azure.com\"\n },\n \"agentPoolProfiles\"\
: [\n {\n \"name\": \"agentpool0\",\n \"count\": 3,\n \"vmSize\"\
: \"Standard_A2_v2\",\n \"dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \
\ \"storageProfile\": \"ManagedDisks\",\n \"osType\": \"Linux\"\n \
\ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"acslinuxadmin\"\
,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\
\ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:04 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['1506']
x-ms-correlation-request-id: [a8c38a1a-1ff9-437f-a893-92f0ee68b89f]
x-ms-ratelimit-remaining-subscription-reads: ['14985']
x-ms-request-id: [4a0f5178-2f25-4472-b4d1-08b0b23230e4]
x-ms-routing-request-id: ['WESTUS2:20171017T190205Z:a8c38a1a-1ff9-437f-a893-92f0ee68b89f']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [a9a0c7a8-b36d-11e7-8380-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01
response:
body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\
,\n \"location\": \"westus2\",\n \"name\": \"pycontainer665810f8\",\n \"\
type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\
: {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\": \"\
1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \"dnsPrefix\"\
: \"MasterPrefixTest\",\n \"vmSize\": \"Standard_D2_v2\",\n \"firstConsecutiveStaticIP\"\
: \"172.16.0.5\",\n \"storageProfile\": \"ManagedDisks\",\n \"fqdn\"\
: \"masterprefixtest.westus2.cloudapp.azure.com\"\n },\n \"agentPoolProfiles\"\
: [\n {\n \"name\": \"agentpool0\",\n \"count\": 3,\n \"vmSize\"\
: \"Standard_A2_v2\",\n \"dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \
\ \"storageProfile\": \"ManagedDisks\",\n \"osType\": \"Linux\"\n \
\ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"acslinuxadmin\"\
,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\
\ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:05 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['1506']
x-ms-correlation-request-id: [90b3a123-6362-4c21-8c6f-c5e5c0f3008b]
x-ms-ratelimit-remaining-subscription-reads: ['14984']
x-ms-request-id: [d1788e28-2d41-4251-a73e-f9b4740668a8]
x-ms-routing-request-id: ['WESTUS2:20171017T190205Z:90b3a123-6362-4c21-8c6f-c5e5c0f3008b']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [aa1ef838-b36d-11e7-9a70-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices?api-version=2017-07-01
response:
body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\
,\n \"location\": \"westus2\",\n \"name\": \"pycontainer665810f8\",\n\
\ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\
: {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\"\
: \"1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \
\ \"dnsPrefix\": \"MasterPrefixTest\",\n \"vmSize\": \"Standard_D2_v2\"\
,\n \"firstConsecutiveStaticIP\": \"172.16.0.5\",\n \"storageProfile\"\
: \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.westus2.cloudapp.azure.com\"\
\n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\
,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"\
dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\
ManagedDisks\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\
: {\n \"adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \
\ \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\
\ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }\n\
\ ]\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:06 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['1613']
x-ms-correlation-request-id: [d721aa01-d46d-437f-80ad-6a2ab4f790e7]
x-ms-ratelimit-remaining-subscription-reads: ['14994']
x-ms-request-id: [2cf81fc4-f438-499d-9a03-dc945a037817]
x-ms-routing-request-id: ['WESTUS2:20171017T190206Z:d721aa01-d46d-437f-80ad-6a2ab4f790e7']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [aaa7512e-b36d-11e7-ac81-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/containerServices?api-version=2017-07-01
response:
body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/lmazuel-ci-msi/providers/Microsoft.ContainerService/containerServices/lmazuel-ci-msi\"\
,\n \"location\": \"westus2\",\n \"name\": \"lmazuel-ci-msi\",\n \
\ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\
: {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\"\
: \"1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \
\ \"dnsPrefix\": \"lmazuel-ci-msimgmt\",\n \"vmSize\": \"Standard_D2_v2\"\
,\n \"firstConsecutiveStaticIP\": \"172.16.0.5\",\n \"storageProfile\"\
: \"StorageAccount\",\n \"fqdn\": \"lmazuel-ci-msimgmt.westus2.cloudapp.azure.com\"\
\n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool\"\
,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\
dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\
StorageAccount\",\n \"osType\": \"Linux\"\n },\n {\n \
\ \"name\": \"agentpool-public\",\n \"count\": 1,\n \"vmSize\"\
: \"Standard_DS2_v2\",\n \"dnsPrefix\": \"lmazuel-ci-msiagents\",\n\
\ \"fqdn\": \"lmazuel-ci-msiagents.westus2.cloudapp.azure.com\",\n \
\ \"ports\": [\n 80,\n 443,\n 8080\n ],\n\
\ \"storageProfile\": \"StorageAccount\",\n \"osType\": \"Linux\"\
\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"\
lmazuel\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \
\ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAkqQRrXqHNTHfuJa5QoDuNPiQHCDLKGeINwK8NOVR7LCgqYVM4g7W3bMC72FrUigTOf6XD0bpX1NBuXhkaCa2Dt8IvLY4U5bmESrDbs5ue73NaV+69qAdws5MvgZ0NklNlcnZ3zxCyuCS7isVXPWZphTS1+/xq8x+h9vxq8Nbh4/8krVPsXSMNA8oY4/1KE+CF1RLdeQ7vFOSIUKobMRE1AKhum8+z2Tt/XAaGqc703ueRxkDqKhe9Ux/f3228ppU9npKNu89nwm2R+IjMpxfOmx7JSnNrr7E2StDqPMQty071c1uP7Zw/cR6eVUQHJUg0Qde9X4FwnDItGxinTLjGw==\"\
\n }\n ]\n }\n }\n }\n },\n {\n \"id\": \"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\
,\n \"location\": \"westus2\",\n \"name\": \"pycontainer665810f8\",\n\
\ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\
: {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\"\
: \"1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \
\ \"dnsPrefix\": \"MasterPrefixTest\",\n \"vmSize\": \"Standard_D2_v2\"\
,\n \"firstConsecutiveStaticIP\": \"172.16.0.5\",\n \"storageProfile\"\
: \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.westus2.cloudapp.azure.com\"\
\n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\
,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"\
dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\
ManagedDisks\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\
: {\n \"adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \
\ \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\
\ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }\n\
\ ]\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:06 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['3496']
x-ms-correlation-request-id: [617af578-9981-4a2b-a563-861841b04372]
x-ms-ratelimit-remaining-subscription-reads: ['14993']
x-ms-request-id: [e041c573-b940-4a4c-bafd-956526fa6cac]
x-ms-routing-request-id: ['WESTUS2:20171017T190207Z:617af578-9981-4a2b-a563-861841b04372']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01
response:
body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\
,\n \"location\": \"westus2\",\n \"name\": \"pycontainer665810f8\",\n \"\
type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\
: {\n \"provisioningState\": \"Deleting\",\n \"orchestratorProfile\":\
\ {\n \"orchestratorType\": \"DCOS\",\n \"orchestratorVersion\": \"\
1.9.0\"\n },\n \"masterProfile\": {\n \"count\": 1,\n \"dnsPrefix\"\
: \"MasterPrefixTest\",\n \"vmSize\": \"Standard_D2_v2\",\n \"firstConsecutiveStaticIP\"\
: \"172.16.0.5\",\n \"storageProfile\": \"ManagedDisks\",\n \"fqdn\"\
: \"masterprefixtest.westus2.cloudapp.azure.com\"\n },\n \"agentPoolProfiles\"\
: [\n {\n \"name\": \"agentpool0\",\n \"count\": 3,\n \"vmSize\"\
: \"Standard_A2_v2\",\n \"dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \
\ \"storageProfile\": \"ManagedDisks\",\n \"osType\": \"Linux\"\n \
\ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"acslinuxadmin\"\
,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\
\ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }"}
headers:
Azure-AsyncOperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30']
Cache-Control: [no-cache]
Content-Length: ['1505']
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:10 GMT']
Expires: ['-1']
Location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
x-ms-correlation-request-id: [61f0168c-bf55-4dbb-8d5e-50f23793e8d8]
x-ms-ratelimit-remaining-subscription-writes: ['1197']
x-ms-request-id: [b2cafb91-51a1-4026-81e9-fd0a968dda56]
x-ms-routing-request-id: ['WESTUS2:20171017T190210Z:61f0168c-bf55-4dbb-8d5e-50f23793e8d8']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:02:40 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [790d4db8-26b7-45b9-8505-89077d7951df]
x-ms-ratelimit-remaining-subscription-reads: ['14994']
x-ms-request-id: [e6e07863-87b5-4ab8-8cfc-a2f09c00626a]
x-ms-routing-request-id: ['WESTUS2:20171017T190241Z:790d4db8-26b7-45b9-8505-89077d7951df']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:03:11 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [cd99f82d-56e7-40f5-b98c-6de0266ab757]
x-ms-ratelimit-remaining-subscription-reads: ['14985']
x-ms-request-id: [78c4f55e-0896-49dc-87bf-bcf3f26e79a1]
x-ms-routing-request-id: ['WESTUS2:20171017T190312Z:cd99f82d-56e7-40f5-b98c-6de0266ab757']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:03:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [2049194b-b3ac-4786-9988-edc58330c897]
x-ms-ratelimit-remaining-subscription-reads: ['14998']
x-ms-request-id: [b0e208fb-808d-43c6-9c1c-43ea42498728]
x-ms-routing-request-id: ['WESTUS2:20171017T190343Z:2049194b-b3ac-4786-9988-edc58330c897']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:04:14 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [2bdf9cfe-0627-4899-add9-f08545c49367]
x-ms-ratelimit-remaining-subscription-reads: ['14962']
x-ms-request-id: [562aefc3-4b8f-420a-b1f9-07cbbb816936]
x-ms-routing-request-id: ['WESTUS2:20171017T190414Z:2bdf9cfe-0627-4899-add9-f08545c49367']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:04:45 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [9654cc1f-71e9-453d-96fa-c637a9a8cb85]
x-ms-ratelimit-remaining-subscription-reads: ['14975']
x-ms-request-id: [47b2babb-6de4-490a-9701-4ee715e54839]
x-ms-routing-request-id: ['WESTUS2:20171017T190445Z:9654cc1f-71e9-453d-96fa-c637a9a8cb85']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:05:16 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [6f14307f-5447-4ee4-ac29-d4927d58a4fa]
x-ms-ratelimit-remaining-subscription-reads: ['14989']
x-ms-request-id: [ea6058c8-1c14-464d-9fd4-00ed1631a9f5]
x-ms-routing-request-id: ['WESTUS:20171017T190516Z:6f14307f-5447-4ee4-ac29-d4927d58a4fa']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:05:47 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [b0245ace-914c-4db8-bc7e-8149b1f47070]
x-ms-ratelimit-remaining-subscription-reads: ['14994']
x-ms-request-id: [ebd0935e-6970-485a-8068-c4f700a2a051]
x-ms-routing-request-id: ['WESTUS:20171017T190547Z:b0245ace-914c-4db8-bc7e-8149b1f47070']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:06:17 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [315515f8-bfd8-4bd2-9f21-63a503be0e83]
x-ms-ratelimit-remaining-subscription-reads: ['14996']
x-ms-request-id: [f6cac62f-a4d9-45be-adfd-1a1086816412]
x-ms-routing-request-id: ['WESTUS2:20171017T190618Z:315515f8-bfd8-4bd2-9f21-63a503be0e83']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:06:49 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [f04dd1f7-81b2-4b3a-bb15-8568bd856eff]
x-ms-ratelimit-remaining-subscription-reads: ['14969']
x-ms-request-id: [640163b7-0781-4d2b-81d7-4ab4243b327e]
x-ms-routing-request-id: ['WESTUS2:20171017T190649Z:f04dd1f7-81b2-4b3a-bb15-8568bd856eff']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:07:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [b7b5c6df-3759-4f77-9f5f-6a466c0c1372]
x-ms-ratelimit-remaining-subscription-reads: ['14993']
x-ms-request-id: [06992e04-02e0-40b0-8fee-d1678095b165]
x-ms-routing-request-id: ['WESTUS2:20171017T190720Z:b7b5c6df-3759-4f77-9f5f-6a466c0c1372']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:07:51 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [4fb588b8-4641-4fc1-b73f-bcf85119d76c]
x-ms-ratelimit-remaining-subscription-reads: ['14992']
x-ms-request-id: [c48b2cf7-63cb-4627-9645-e5ee38ada48a]
x-ms-routing-request-id: ['WESTUS:20171017T190751Z:4fb588b8-4641-4fc1-b73f-bcf85119d76c']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:08:22 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [ff3dcd96-bafe-4dbc-88e8-ec57a157d336]
x-ms-ratelimit-remaining-subscription-reads: ['14981']
x-ms-request-id: [3bf4b860-58fc-421d-8f2e-613e19d93b09]
x-ms-routing-request-id: ['WESTUS:20171017T190823Z:ff3dcd96-bafe-4dbc-88e8-ec57a157d336']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:08:53 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [6261f2c9-2fce-4b4a-8687-5a7cd253fad9]
x-ms-ratelimit-remaining-subscription-reads: ['14995']
x-ms-request-id: [d8073fd5-0da4-4787-ade2-3fe1d1d4ca41]
x-ms-routing-request-id: ['WESTUS:20171017T190854Z:6261f2c9-2fce-4b4a-8687-5a7cd253fad9']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:09:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [bcb71078-7690-4341-81dc-dcdf90183706]
x-ms-ratelimit-remaining-subscription-reads: ['14992']
x-ms-request-id: [d47b421d-5fa3-4b70-b45d-1e021b1d5b76]
x-ms-routing-request-id: ['WESTUS:20171017T190925Z:bcb71078-7690-4341-81dc-dcdf90183706']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:09:56 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [76f72c58-1adf-4d22-91a5-158f31161417]
x-ms-ratelimit-remaining-subscription-reads: ['14988']
x-ms-request-id: [f52379fe-4139-4b33-be1f-a27946d6cc20]
x-ms-routing-request-id: ['WESTUS:20171017T190956Z:76f72c58-1adf-4d22-91a5-158f31161417']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"InProgress\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:10:28 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['126']
x-ms-correlation-request-id: [67ab80e9-3fca-4820-a08f-f4edd319d112]
x-ms-ratelimit-remaining-subscription-reads: ['14996']
x-ms-request-id: [ba8a8596-f110-459b-b7bb-447e6c8c765a]
x-ms-routing-request-id: ['WESTUS:20171017T191028Z:67ab80e9-3fca-4820-a08f-f4edd319d112']
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.3 (Windows-10-10.0.15063-SP0) requests/2.18.4 msrest/0.4.16
msrest_azure/0.4.14 azure-mgmt-containerservice/2.0.0 Azure-SDK-For-Python]
accept-language: [en-US]
x-ms-client-request-id: [ab3ce130-b36d-11e7-98f5-20cf30e81033]
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2cafb91-51a1-4026-81e9-fd0a968dda56?api-version=2016-03-30
response:
body: {string: "{\n \"name\": \"91fbcab2-a151-2640-81e9-fd0a968dda56\",\n \"\
status\": \"Succeeded\",\n \"startTime\": \"2017-10-17T19:02:09.8024491Z\"\
,\n \"endTime\": \"2017-10-17T19:10:54.24677Z\"\n }"}
headers:
Cache-Control: [no-cache]
Content-Type: [application/json]
Date: ['Tue, 17 Oct 2017 19:10:59 GMT']
Expires: ['-1']
Pragma: [no-cache]
Server: [nginx]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
Transfer-Encoding: [chunked]
Vary: [Accept-Encoding]
content-length: ['168']
x-ms-correlation-request-id: [ebb45d51-3499-4792-abfa-78437f0dbf06]
x-ms-ratelimit-remaining-subscription-reads: ['14988']
x-ms-request-id: [a4a385fe-a825-4ce5-90f5-97f790e171e8]
x-ms-routing-request-id: ['WESTUS2:20171017T191059Z:ebb45d51-3499-4792-abfa-78437f0dbf06']
status: {code: 200, message: OK}
version: 1
|