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 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
|
package managementgroups
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"context"
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/tracing"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2019-11-01/managementgroups"
// CheckNameAvailabilityRequest management group name availability check parameters.
type CheckNameAvailabilityRequest struct {
// Name - the name to check for availability
Name *string `json:"name,omitempty"`
// Type - fully qualified resource type which includes provider namespace. Possible values include: 'MicrosoftManagementmanagementGroups'
Type Type `json:"type,omitempty"`
}
// CheckNameAvailabilityResult describes the result of the request to check management group name
// availability.
type CheckNameAvailabilityResult struct {
autorest.Response `json:"-"`
// NameAvailable - READ-ONLY; Required. True indicates name is valid and available. False indicates the name is invalid, unavailable, or both.
NameAvailable *bool `json:"nameAvailable,omitempty"`
// Reason - READ-ONLY; Required if nameAvailable == false. Invalid indicates the name provided does not match the resource provider's naming requirements (incorrect length, unsupported characters, etc.) AlreadyExists indicates that the name is already in use and is therefore unavailable. Possible values include: 'Invalid', 'AlreadyExists'
Reason Reason `json:"reason,omitempty"`
// Message - READ-ONLY; Required if nameAvailable == false. Localized. If reason == invalid, provide the user with the reason why the given name is invalid, and provide the resource naming requirements so that the user can select a valid name. If reason == AlreadyExists, explain that is already in use, and direct them to select a different name.
Message *string `json:"message,omitempty"`
}
// MarshalJSON is the custom marshaler for CheckNameAvailabilityResult.
func (cnar CheckNameAvailabilityResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// ChildInfo the child information of a management group.
type ChildInfo struct {
// Type - The fully qualified resource type which includes provider namespace (e.g. Microsoft.Management/managementGroups). Possible values include: 'Type1MicrosoftManagementmanagementGroups', 'Type1Subscriptions'
Type Type1 `json:"type,omitempty"`
// ID - The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Name - The name of the child entity.
Name *string `json:"name,omitempty"`
// DisplayName - The friendly name of the child resource.
DisplayName *string `json:"displayName,omitempty"`
// Roles - The roles definitions associated with the management group.
Roles *[]string `json:"roles,omitempty"`
// Children - The list of children.
Children *[]ChildInfo `json:"children,omitempty"`
}
// CreateManagementGroupChildInfo the child information of a management group used during creation.
type CreateManagementGroupChildInfo struct {
// Type - READ-ONLY; The fully qualified resource type which includes provider namespace (e.g. Microsoft.Management/managementGroups). Possible values include: 'Type2MicrosoftManagementmanagementGroups', 'Type2Subscriptions'
Type Type2 `json:"type,omitempty"`
// ID - READ-ONLY; The fully qualified ID for the child resource (management group or subscription). For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the child entity.
Name *string `json:"name,omitempty"`
// DisplayName - READ-ONLY; The friendly name of the child resource.
DisplayName *string `json:"displayName,omitempty"`
// Roles - READ-ONLY; The roles definitions associated with the management group.
Roles *[]string `json:"roles,omitempty"`
// Children - READ-ONLY; The list of children.
Children *[]CreateManagementGroupChildInfo `json:"children,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateManagementGroupChildInfo.
func (cmgci CreateManagementGroupChildInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// CreateManagementGroupDetails the details of a management group used during creation.
type CreateManagementGroupDetails struct {
// Version - READ-ONLY; The version number of the object.
Version *float64 `json:"version,omitempty"`
// UpdatedTime - READ-ONLY; The date and time when this object was last updated.
UpdatedTime *date.Time `json:"updatedTime,omitempty"`
// UpdatedBy - READ-ONLY; The identity of the principal or process that updated the object.
UpdatedBy *string `json:"updatedBy,omitempty"`
Parent *CreateParentGroupInfo `json:"parent,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateManagementGroupDetails.
func (cmgd CreateManagementGroupDetails) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cmgd.Parent != nil {
objectMap["parent"] = cmgd.Parent
}
return json.Marshal(objectMap)
}
// CreateManagementGroupProperties the generic properties of a management group used during creation.
type CreateManagementGroupProperties struct {
// TenantID - READ-ONLY; The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000
TenantID *string `json:"tenantId,omitempty"`
// DisplayName - The friendly name of the management group. If no value is passed then this field will be set to the groupId.
DisplayName *string `json:"displayName,omitempty"`
// Roles - READ-ONLY; The roles definitions associated with the management group.
Roles *[]string `json:"roles,omitempty"`
Details *CreateManagementGroupDetails `json:"details,omitempty"`
// Children - READ-ONLY; The list of children.
Children *[]CreateManagementGroupChildInfo `json:"children,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateManagementGroupProperties.
func (cmgp CreateManagementGroupProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cmgp.DisplayName != nil {
objectMap["displayName"] = cmgp.DisplayName
}
if cmgp.Details != nil {
objectMap["details"] = cmgp.Details
}
return json.Marshal(objectMap)
}
// CreateManagementGroupRequest management group creation parameters.
type CreateManagementGroupRequest struct {
// ID - READ-ONLY; The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups
Type *string `json:"type,omitempty"`
// Name - The name of the management group. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
*CreateManagementGroupProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateManagementGroupRequest.
func (cmgr CreateManagementGroupRequest) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cmgr.Name != nil {
objectMap["name"] = cmgr.Name
}
if cmgr.CreateManagementGroupProperties != nil {
objectMap["properties"] = cmgr.CreateManagementGroupProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateManagementGroupRequest struct.
func (cmgr *CreateManagementGroupRequest) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
cmgr.ID = &ID
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
cmgr.Type = &typeVar
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
cmgr.Name = &name
}
case "properties":
if v != nil {
var createManagementGroupProperties CreateManagementGroupProperties
err = json.Unmarshal(*v, &createManagementGroupProperties)
if err != nil {
return err
}
cmgr.CreateManagementGroupProperties = &createManagementGroupProperties
}
}
}
return nil
}
// CreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type CreateOrUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (SetObject, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *CreateOrUpdateFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for CreateOrUpdateFuture.Result.
func (future *CreateOrUpdateFuture) result(client Client) (so SetObject, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managementgroups.CreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
so.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managementgroups.CreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if so.Response.Response, err = future.GetResult(sender); err == nil && so.Response.Response.StatusCode != http.StatusNoContent {
so, err = client.CreateOrUpdateResponder(so.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managementgroups.CreateOrUpdateFuture", "Result", so.Response.Response, "Failure responding to request")
}
}
return
}
// CreateParentGroupInfo (Optional) The ID of the parent management group used during creation.
type CreateParentGroupInfo struct {
// ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The name of the parent management group
Name *string `json:"name,omitempty"`
// DisplayName - READ-ONLY; The friendly name of the parent management group.
DisplayName *string `json:"displayName,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateParentGroupInfo.
func (cpgi CreateParentGroupInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cpgi.ID != nil {
objectMap["id"] = cpgi.ID
}
return json.Marshal(objectMap)
}
// DeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type DeleteFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(Client) (OperationResults, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *DeleteFuture) UnmarshalJSON(body []byte) error {
var azFuture azure.Future
if err := json.Unmarshal(body, &azFuture); err != nil {
return err
}
future.FutureAPI = &azFuture
future.Result = future.result
return nil
}
// result is the default implementation for DeleteFuture.Result.
func (future *DeleteFuture) result(client Client) (or OperationResults, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managementgroups.DeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
or.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managementgroups.DeleteFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if or.Response.Response, err = future.GetResult(sender); err == nil && or.Response.Response.StatusCode != http.StatusNoContent {
or, err = client.DeleteResponder(or.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managementgroups.DeleteFuture", "Result", or.Response.Response, "Failure responding to request")
}
}
return
}
// DescendantInfo the descendant.
type DescendantInfo struct {
// ID - READ-ONLY; The fully qualified ID for the descendant. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 or /subscriptions/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups or /subscriptions
Type *string `json:"type,omitempty"`
// Name - READ-ONLY; The name of the descendant. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
*DescendantInfoProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for DescendantInfo.
func (di DescendantInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if di.DescendantInfoProperties != nil {
objectMap["properties"] = di.DescendantInfoProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DescendantInfo struct.
func (di *DescendantInfo) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
di.ID = &ID
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
di.Type = &typeVar
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
di.Name = &name
}
case "properties":
if v != nil {
var descendantInfoProperties DescendantInfoProperties
err = json.Unmarshal(*v, &descendantInfoProperties)
if err != nil {
return err
}
di.DescendantInfoProperties = &descendantInfoProperties
}
}
}
return nil
}
// DescendantInfoProperties the generic properties of an descendant.
type DescendantInfoProperties struct {
// DisplayName - The friendly name of the management group.
DisplayName *string `json:"displayName,omitempty"`
Parent *DescendantParentGroupInfo `json:"parent,omitempty"`
}
// DescendantListResult describes the result of the request to view descendants.
type DescendantListResult struct {
autorest.Response `json:"-"`
// Value - The list of descendants.
Value *[]DescendantInfo `json:"value,omitempty"`
// NextLink - READ-ONLY; The URL to use for getting the next set of results.
NextLink *string `json:"nextLink,omitempty"`
}
// MarshalJSON is the custom marshaler for DescendantListResult.
func (dlr DescendantListResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dlr.Value != nil {
objectMap["value"] = dlr.Value
}
return json.Marshal(objectMap)
}
// DescendantListResultIterator provides access to a complete listing of DescendantInfo values.
type DescendantListResultIterator struct {
i int
page DescendantListResultPage
}
// NextWithContext advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *DescendantListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/DescendantListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *DescendantListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter DescendantListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter DescendantListResultIterator) Response() DescendantListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter DescendantListResultIterator) Value() DescendantInfo {
if !iter.page.NotDone() {
return DescendantInfo{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the DescendantListResultIterator type.
func NewDescendantListResultIterator(page DescendantListResultPage) DescendantListResultIterator {
return DescendantListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (dlr DescendantListResult) IsEmpty() bool {
return dlr.Value == nil || len(*dlr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (dlr DescendantListResult) hasNextLink() bool {
return dlr.NextLink != nil && len(*dlr.NextLink) != 0
}
// descendantListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (dlr DescendantListResult) descendantListResultPreparer(ctx context.Context) (*http.Request, error) {
if !dlr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(dlr.NextLink)))
}
// DescendantListResultPage contains a page of DescendantInfo values.
type DescendantListResultPage struct {
fn func(context.Context, DescendantListResult) (DescendantListResult, error)
dlr DescendantListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *DescendantListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/DescendantListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.dlr)
if err != nil {
return err
}
page.dlr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *DescendantListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page DescendantListResultPage) NotDone() bool {
return !page.dlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page DescendantListResultPage) Response() DescendantListResult {
return page.dlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page DescendantListResultPage) Values() []DescendantInfo {
if page.dlr.IsEmpty() {
return nil
}
return *page.dlr.Value
}
// Creates a new instance of the DescendantListResultPage type.
func NewDescendantListResultPage(cur DescendantListResult, getNextPage func(context.Context, DescendantListResult) (DescendantListResult, error)) DescendantListResultPage {
return DescendantListResultPage{
fn: getNextPage,
dlr: cur,
}
}
// DescendantParentGroupInfo the ID of the parent management group.
type DescendantParentGroupInfo struct {
// ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
}
// Details the details of a management group.
type Details struct {
// Version - The version number of the object.
Version *float64 `json:"version,omitempty"`
// UpdatedTime - The date and time when this object was last updated.
UpdatedTime *date.Time `json:"updatedTime,omitempty"`
// UpdatedBy - The identity of the principal or process that updated the object.
UpdatedBy *string `json:"updatedBy,omitempty"`
Parent *ParentGroupInfo `json:"parent,omitempty"`
}
// EntityHierarchyItem the management group details for the hierarchy view.
type EntityHierarchyItem struct {
// ID - READ-ONLY; The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups
Type *string `json:"type,omitempty"`
// Name - READ-ONLY; The name of the management group. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
*EntityHierarchyItemProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for EntityHierarchyItem.
func (ehi EntityHierarchyItem) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ehi.EntityHierarchyItemProperties != nil {
objectMap["properties"] = ehi.EntityHierarchyItemProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EntityHierarchyItem struct.
func (ehi *EntityHierarchyItem) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ehi.ID = &ID
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ehi.Type = &typeVar
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ehi.Name = &name
}
case "properties":
if v != nil {
var entityHierarchyItemProperties EntityHierarchyItemProperties
err = json.Unmarshal(*v, &entityHierarchyItemProperties)
if err != nil {
return err
}
ehi.EntityHierarchyItemProperties = &entityHierarchyItemProperties
}
}
}
return nil
}
// EntityHierarchyItemProperties the generic properties of a management group.
type EntityHierarchyItemProperties struct {
// DisplayName - The friendly name of the management group.
DisplayName *string `json:"displayName,omitempty"`
// Permissions - Possible values include: 'Permissions1Noaccess', 'Permissions1View', 'Permissions1Edit', 'Permissions1Delete'
Permissions Permissions1 `json:"permissions,omitempty"`
// Children - The list of children.
Children *[]EntityHierarchyItem `json:"children,omitempty"`
}
// EntityInfo the entity.
type EntityInfo struct {
// ID - READ-ONLY; The fully qualified ID for the entity. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups
Type *string `json:"type,omitempty"`
// Name - READ-ONLY; The name of the entity. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
*EntityInfoProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for EntityInfo.
func (ei EntityInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ei.EntityInfoProperties != nil {
objectMap["properties"] = ei.EntityInfoProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EntityInfo struct.
func (ei *EntityInfo) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ei.ID = &ID
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ei.Type = &typeVar
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ei.Name = &name
}
case "properties":
if v != nil {
var entityInfoProperties EntityInfoProperties
err = json.Unmarshal(*v, &entityInfoProperties)
if err != nil {
return err
}
ei.EntityInfoProperties = &entityInfoProperties
}
}
}
return nil
}
// EntityInfoProperties the generic properties of an entity.
type EntityInfoProperties struct {
// TenantID - The AAD Tenant ID associated with the entity. For example, 00000000-0000-0000-0000-000000000000
TenantID *string `json:"tenantId,omitempty"`
// DisplayName - The friendly name of the management group.
DisplayName *string `json:"displayName,omitempty"`
Parent *EntityParentGroupInfo `json:"parent,omitempty"`
// Permissions - Possible values include: 'PermissionsNoaccess', 'PermissionsView', 'PermissionsEdit', 'PermissionsDelete'
Permissions Permissions `json:"permissions,omitempty"`
// InheritedPermissions - Possible values include: 'Noaccess', 'View', 'Edit', 'Delete'
InheritedPermissions InheritedPermissions `json:"inheritedPermissions,omitempty"`
NumberOfDescendants *int32 `json:"numberOfDescendants,omitempty"`
// NumberOfChildren - Number of children is the number of Groups and Subscriptions that are exactly one level underneath the current Group.
NumberOfChildren *int32 `json:"numberOfChildren,omitempty"`
// NumberOfChildGroups - Number of children is the number of Groups that are exactly one level underneath the current Group.
NumberOfChildGroups *int32 `json:"numberOfChildGroups,omitempty"`
// ParentDisplayNameChain - The parent display name chain from the root group to the immediate parent
ParentDisplayNameChain *[]string `json:"parentDisplayNameChain,omitempty"`
// ParentNameChain - The parent name chain from the root group to the immediate parent
ParentNameChain *[]string `json:"parentNameChain,omitempty"`
}
// EntityListResult describes the result of the request to view entities.
type EntityListResult struct {
autorest.Response `json:"-"`
// Value - The list of entities.
Value *[]EntityInfo `json:"value,omitempty"`
// Count - READ-ONLY; Total count of records that match the filter
Count *int32 `json:"count,omitempty"`
// NextLink - READ-ONLY; The URL to use for getting the next set of results.
NextLink *string `json:"nextLink,omitempty"`
}
// MarshalJSON is the custom marshaler for EntityListResult.
func (elr EntityListResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if elr.Value != nil {
objectMap["value"] = elr.Value
}
return json.Marshal(objectMap)
}
// EntityListResultIterator provides access to a complete listing of EntityInfo values.
type EntityListResultIterator struct {
i int
page EntityListResultPage
}
// NextWithContext advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *EntityListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/EntityListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *EntityListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter EntityListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter EntityListResultIterator) Response() EntityListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter EntityListResultIterator) Value() EntityInfo {
if !iter.page.NotDone() {
return EntityInfo{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the EntityListResultIterator type.
func NewEntityListResultIterator(page EntityListResultPage) EntityListResultIterator {
return EntityListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (elr EntityListResult) IsEmpty() bool {
return elr.Value == nil || len(*elr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (elr EntityListResult) hasNextLink() bool {
return elr.NextLink != nil && len(*elr.NextLink) != 0
}
// entityListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (elr EntityListResult) entityListResultPreparer(ctx context.Context) (*http.Request, error) {
if !elr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(elr.NextLink)))
}
// EntityListResultPage contains a page of EntityInfo values.
type EntityListResultPage struct {
fn func(context.Context, EntityListResult) (EntityListResult, error)
elr EntityListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *EntityListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/EntityListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.elr)
if err != nil {
return err
}
page.elr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *EntityListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page EntityListResultPage) NotDone() bool {
return !page.elr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page EntityListResultPage) Response() EntityListResult {
return page.elr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page EntityListResultPage) Values() []EntityInfo {
if page.elr.IsEmpty() {
return nil
}
return *page.elr.Value
}
// Creates a new instance of the EntityListResultPage type.
func NewEntityListResultPage(cur EntityListResult, getNextPage func(context.Context, EntityListResult) (EntityListResult, error)) EntityListResultPage {
return EntityListResultPage{
fn: getNextPage,
elr: cur,
}
}
// EntityParentGroupInfo (Optional) The ID of the parent management group.
type EntityParentGroupInfo struct {
// ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
}
// ErrorDetails the details of the error.
type ErrorDetails struct {
// Code - One of a server-defined set of error codes.
Code *string `json:"code,omitempty"`
// Message - A human-readable representation of the error.
Message *string `json:"message,omitempty"`
// Details - A human-readable representation of the error's details.
Details *string `json:"details,omitempty"`
}
// ErrorResponse the error object.
type ErrorResponse struct {
Error *ErrorDetails `json:"error,omitempty"`
}
// Info the management group resource.
type Info struct {
// ID - READ-ONLY; The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups
Type *string `json:"type,omitempty"`
// Name - READ-ONLY; The name of the management group. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
*InfoProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for Info.
func (i Info) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if i.InfoProperties != nil {
objectMap["properties"] = i.InfoProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Info struct.
func (i *Info) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
i.ID = &ID
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
i.Type = &typeVar
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
i.Name = &name
}
case "properties":
if v != nil {
var infoProperties InfoProperties
err = json.Unmarshal(*v, &infoProperties)
if err != nil {
return err
}
i.InfoProperties = &infoProperties
}
}
}
return nil
}
// InfoProperties the generic properties of a management group.
type InfoProperties struct {
// TenantID - The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000
TenantID *string `json:"tenantId,omitempty"`
// DisplayName - The friendly name of the management group.
DisplayName *string `json:"displayName,omitempty"`
}
// ListResult describes the result of the request to list management groups.
type ListResult struct {
autorest.Response `json:"-"`
// Value - The list of management groups.
Value *[]Info `json:"value,omitempty"`
// NextLink - READ-ONLY; The URL to use for getting the next set of results.
NextLink *string `json:"nextLink,omitempty"`
}
// MarshalJSON is the custom marshaler for ListResult.
func (lr ListResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if lr.Value != nil {
objectMap["value"] = lr.Value
}
return json.Marshal(objectMap)
}
// ListResultIterator provides access to a complete listing of Info values.
type ListResultIterator struct {
i int
page ListResultPage
}
// NextWithContext advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *ListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *ListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter ListResultIterator) Response() ListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter ListResultIterator) Value() Info {
if !iter.page.NotDone() {
return Info{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the ListResultIterator type.
func NewListResultIterator(page ListResultPage) ListResultIterator {
return ListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (lr ListResult) IsEmpty() bool {
return lr.Value == nil || len(*lr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (lr ListResult) hasNextLink() bool {
return lr.NextLink != nil && len(*lr.NextLink) != 0
}
// listResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (lr ListResult) listResultPreparer(ctx context.Context) (*http.Request, error) {
if !lr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(lr.NextLink)))
}
// ListResultPage contains a page of Info values.
type ListResultPage struct {
fn func(context.Context, ListResult) (ListResult, error)
lr ListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *ListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.lr)
if err != nil {
return err
}
page.lr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *ListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ListResultPage) NotDone() bool {
return !page.lr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ListResultPage) Response() ListResult {
return page.lr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ListResultPage) Values() []Info {
if page.lr.IsEmpty() {
return nil
}
return *page.lr.Value
}
// Creates a new instance of the ListResultPage type.
func NewListResultPage(cur ListResult, getNextPage func(context.Context, ListResult) (ListResult, error)) ListResultPage {
return ListResultPage{
fn: getNextPage,
lr: cur,
}
}
// ManagementGroup the management group details.
type ManagementGroup struct {
autorest.Response `json:"-"`
// ID - READ-ONLY; The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups
Type *string `json:"type,omitempty"`
// Name - READ-ONLY; The name of the management group. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
*Properties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for ManagementGroup.
func (mg ManagementGroup) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if mg.Properties != nil {
objectMap["properties"] = mg.Properties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ManagementGroup struct.
func (mg *ManagementGroup) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
mg.ID = &ID
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
mg.Type = &typeVar
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
mg.Name = &name
}
case "properties":
if v != nil {
var properties Properties
err = json.Unmarshal(*v, &properties)
if err != nil {
return err
}
mg.Properties = &properties
}
}
}
return nil
}
// Operation operation supported by the Microsoft.Management resource provider.
type Operation struct {
// Name - READ-ONLY; Operation name: {provider}/{resource}/{operation}.
Name *string `json:"name,omitempty"`
Display *OperationDisplayProperties `json:"display,omitempty"`
}
// MarshalJSON is the custom marshaler for Operation.
func (o Operation) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if o.Display != nil {
objectMap["display"] = o.Display
}
return json.Marshal(objectMap)
}
// OperationDisplayProperties the object that represents the operation.
type OperationDisplayProperties struct {
// Provider - READ-ONLY; The name of the provider.
Provider *string `json:"provider,omitempty"`
// Resource - READ-ONLY; The resource on which the operation is performed.
Resource *string `json:"resource,omitempty"`
// Operation - READ-ONLY; The operation that can be performed.
Operation *string `json:"operation,omitempty"`
// Description - READ-ONLY; Operation description.
Description *string `json:"description,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationDisplayProperties.
func (odp OperationDisplayProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// OperationListResult describes the result of the request to list Microsoft.Management operations.
type OperationListResult struct {
autorest.Response `json:"-"`
// Value - READ-ONLY; List of operations supported by the Microsoft.Management resource provider.
Value *[]Operation `json:"value,omitempty"`
// NextLink - READ-ONLY; URL to get the next set of operation list results if there are any.
NextLink *string `json:"nextLink,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationListResult.
func (olr OperationListResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// OperationListResultIterator provides access to a complete listing of Operation values.
type OperationListResultIterator struct {
i int
page OperationListResultPage
}
// NextWithContext advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *OperationListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/OperationListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *OperationListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter OperationListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter OperationListResultIterator) Response() OperationListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter OperationListResultIterator) Value() Operation {
if !iter.page.NotDone() {
return Operation{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the OperationListResultIterator type.
func NewOperationListResultIterator(page OperationListResultPage) OperationListResultIterator {
return OperationListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (olr OperationListResult) IsEmpty() bool {
return olr.Value == nil || len(*olr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (olr OperationListResult) hasNextLink() bool {
return olr.NextLink != nil && len(*olr.NextLink) != 0
}
// operationListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (olr OperationListResult) operationListResultPreparer(ctx context.Context) (*http.Request, error) {
if !olr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(olr.NextLink)))
}
// OperationListResultPage contains a page of Operation values.
type OperationListResultPage struct {
fn func(context.Context, OperationListResult) (OperationListResult, error)
olr OperationListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *OperationListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/OperationListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.olr)
if err != nil {
return err
}
page.olr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *OperationListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page OperationListResultPage) NotDone() bool {
return !page.olr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page OperationListResultPage) Response() OperationListResult {
return page.olr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page OperationListResultPage) Values() []Operation {
if page.olr.IsEmpty() {
return nil
}
return *page.olr.Value
}
// Creates a new instance of the OperationListResultPage type.
func NewOperationListResultPage(cur OperationListResult, getNextPage func(context.Context, OperationListResult) (OperationListResult, error)) OperationListResultPage {
return OperationListResultPage{
fn: getNextPage,
olr: cur,
}
}
// OperationResults the results of an asynchronous operation.
type OperationResults struct {
autorest.Response `json:"-"`
// ID - READ-ONLY; The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Type - READ-ONLY; The type of the resource. For example, Microsoft.Management/managementGroups
Type *string `json:"type,omitempty"`
// Name - READ-ONLY; The name of the management group. For example, 00000000-0000-0000-0000-000000000000
Name *string `json:"name,omitempty"`
// Status - READ-ONLY; The current status of the operation
Status *string `json:"status,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationResults.
func (or OperationResults) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// ParentGroupInfo (Optional) The ID of the parent management group.
type ParentGroupInfo struct {
// ID - The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ID *string `json:"id,omitempty"`
// Name - The name of the parent management group
Name *string `json:"name,omitempty"`
// DisplayName - The friendly name of the parent management group.
DisplayName *string `json:"displayName,omitempty"`
}
// PatchManagementGroupRequest management group patch parameters.
type PatchManagementGroupRequest struct {
// DisplayName - The friendly name of the management group.
DisplayName *string `json:"displayName,omitempty"`
// ParentID - (Optional) The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
ParentID *string `json:"parentId,omitempty"`
}
// PathElement a path element of a management group ancestors.
type PathElement struct {
// Name - The name of the group.
Name *string `json:"name,omitempty"`
// DisplayName - The friendly name of the group.
DisplayName *string `json:"displayName,omitempty"`
}
// Properties the generic properties of a management group.
type Properties struct {
// TenantID - The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000
TenantID *string `json:"tenantId,omitempty"`
// DisplayName - The friendly name of the management group.
DisplayName *string `json:"displayName,omitempty"`
// Roles - The role definitions associated with the management group.
Roles *[]string `json:"roles,omitempty"`
Details *Details `json:"details,omitempty"`
// Children - The list of children.
Children *[]ChildInfo `json:"children,omitempty"`
// Path - The hierarchial path from the root group to the current group.
Path *[]PathElement `json:"path,omitempty"`
}
// SetObject ...
type SetObject struct {
autorest.Response `json:"-"`
Value interface{} `json:"value,omitempty"`
}
// TenantBackfillStatusResult the tenant backfill status
type TenantBackfillStatusResult struct {
autorest.Response `json:"-"`
// TenantID - READ-ONLY; The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000
TenantID *string `json:"tenantId,omitempty"`
// Status - READ-ONLY; The status of the Tenant Backfill. Possible values include: 'NotStarted', 'NotStartedButGroupsExist', 'Started', 'Failed', 'Cancelled', 'Completed'
Status Status `json:"status,omitempty"`
}
// MarshalJSON is the custom marshaler for TenantBackfillStatusResult.
func (tbsr TenantBackfillStatusResult) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
|