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 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
|
package managedapplications
// 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/preview/solutions/mgmt/2020-08-21-preview/managedapplications"
// AllowedUpgradePlansResult the array of plan.
type AllowedUpgradePlansResult struct {
autorest.Response `json:"-"`
// Value - The array of plans.
Value *[]Plan `json:"value,omitempty"`
}
// Application information about managed application.
type Application struct {
autorest.Response `json:"-"`
// ApplicationProperties - The managed application properties.
*ApplicationProperties `json:"properties,omitempty"`
// Plan - The plan information.
Plan *Plan `json:"plan,omitempty"`
// Kind - The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog.
Kind *string `json:"kind,omitempty"`
// Identity - The identity of the resource.
Identity *Identity `json:"identity,omitempty"`
// ManagedBy - ID of the resource that manages this resource.
ManagedBy *string `json:"managedBy,omitempty"`
// Sku - The SKU of the resource.
Sku *Sku `json:"sku,omitempty"`
// ID - READ-ONLY; Resource ID
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Application.
func (a Application) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if a.ApplicationProperties != nil {
objectMap["properties"] = a.ApplicationProperties
}
if a.Plan != nil {
objectMap["plan"] = a.Plan
}
if a.Kind != nil {
objectMap["kind"] = a.Kind
}
if a.Identity != nil {
objectMap["identity"] = a.Identity
}
if a.ManagedBy != nil {
objectMap["managedBy"] = a.ManagedBy
}
if a.Sku != nil {
objectMap["sku"] = a.Sku
}
if a.Location != nil {
objectMap["location"] = a.Location
}
if a.Tags != nil {
objectMap["tags"] = a.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Application struct.
func (a *Application) 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 "properties":
if v != nil {
var applicationProperties ApplicationProperties
err = json.Unmarshal(*v, &applicationProperties)
if err != nil {
return err
}
a.ApplicationProperties = &applicationProperties
}
case "plan":
if v != nil {
var plan Plan
err = json.Unmarshal(*v, &plan)
if err != nil {
return err
}
a.Plan = &plan
}
case "kind":
if v != nil {
var kind string
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
a.Kind = &kind
}
case "identity":
if v != nil {
var identity Identity
err = json.Unmarshal(*v, &identity)
if err != nil {
return err
}
a.Identity = &identity
}
case "managedBy":
if v != nil {
var managedBy string
err = json.Unmarshal(*v, &managedBy)
if err != nil {
return err
}
a.ManagedBy = &managedBy
}
case "sku":
if v != nil {
var sku Sku
err = json.Unmarshal(*v, &sku)
if err != nil {
return err
}
a.Sku = &sku
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
a.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
a.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
a.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
a.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
a.Tags = tags
}
}
}
return nil
}
// ApplicationArtifact managed application artifact.
type ApplicationArtifact struct {
// Name - The managed application artifact name. Possible values include: 'NotSpecified', 'ViewDefinition', 'Authorizations', 'CustomRoleDefinition'
Name ApplicationArtifactName `json:"name,omitempty"`
// URI - The managed application artifact blob uri.
URI *string `json:"uri,omitempty"`
// Type - The managed application artifact type. Possible values include: 'ApplicationArtifactTypeNotSpecified', 'ApplicationArtifactTypeTemplate', 'ApplicationArtifactTypeCustom'
Type ApplicationArtifactType `json:"type,omitempty"`
}
// ApplicationAuthorization the managed application provider authorization.
type ApplicationAuthorization struct {
// PrincipalID - The provider's principal identifier. This is the identity that the provider will use to call ARM to manage the managed application resources.
PrincipalID *string `json:"principalId,omitempty"`
// RoleDefinitionID - The provider's role definition identifier. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
RoleDefinitionID *string `json:"roleDefinitionId,omitempty"`
}
// ApplicationBillingDetailsDefinition managed application billing details definition.
type ApplicationBillingDetailsDefinition struct {
// ResourceUsageID - The managed application resource usage Id.
ResourceUsageID *string `json:"resourceUsageId,omitempty"`
}
// ApplicationClientDetails the application client details to track the entity creating/updating the
// managed app resource.
type ApplicationClientDetails struct {
// Oid - The client Oid.
Oid *string `json:"oid,omitempty"`
// Puid - The client Puid
Puid *string `json:"puid,omitempty"`
// ApplicationID - The client application Id.
ApplicationID *string `json:"applicationId,omitempty"`
}
// ApplicationDefinition information about managed application definition.
type ApplicationDefinition struct {
autorest.Response `json:"-"`
// ApplicationDefinitionProperties - The managed application definition properties.
*ApplicationDefinitionProperties `json:"properties,omitempty"`
// ManagedBy - ID of the resource that manages this resource.
ManagedBy *string `json:"managedBy,omitempty"`
// Sku - The SKU of the resource.
Sku *Sku `json:"sku,omitempty"`
// ID - READ-ONLY; Resource ID
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ApplicationDefinition.
func (ad ApplicationDefinition) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ad.ApplicationDefinitionProperties != nil {
objectMap["properties"] = ad.ApplicationDefinitionProperties
}
if ad.ManagedBy != nil {
objectMap["managedBy"] = ad.ManagedBy
}
if ad.Sku != nil {
objectMap["sku"] = ad.Sku
}
if ad.Location != nil {
objectMap["location"] = ad.Location
}
if ad.Tags != nil {
objectMap["tags"] = ad.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ApplicationDefinition struct.
func (ad *ApplicationDefinition) 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 "properties":
if v != nil {
var applicationDefinitionProperties ApplicationDefinitionProperties
err = json.Unmarshal(*v, &applicationDefinitionProperties)
if err != nil {
return err
}
ad.ApplicationDefinitionProperties = &applicationDefinitionProperties
}
case "managedBy":
if v != nil {
var managedBy string
err = json.Unmarshal(*v, &managedBy)
if err != nil {
return err
}
ad.ManagedBy = &managedBy
}
case "sku":
if v != nil {
var sku Sku
err = json.Unmarshal(*v, &sku)
if err != nil {
return err
}
ad.Sku = &sku
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ad.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ad.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ad.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ad.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ad.Tags = tags
}
}
}
return nil
}
// ApplicationDefinitionArtifact application definition artifact.
type ApplicationDefinitionArtifact struct {
// Name - The managed application definition artifact name. Possible values include: 'ApplicationDefinitionArtifactNameNotSpecified', 'ApplicationDefinitionArtifactNameApplicationResourceTemplate', 'ApplicationDefinitionArtifactNameCreateUIDefinition', 'ApplicationDefinitionArtifactNameMainTemplateParameters'
Name ApplicationDefinitionArtifactName `json:"name,omitempty"`
// URI - The managed application definition artifact blob uri.
URI *string `json:"uri,omitempty"`
// Type - The managed application definition artifact type. Possible values include: 'ApplicationArtifactTypeNotSpecified', 'ApplicationArtifactTypeTemplate', 'ApplicationArtifactTypeCustom'
Type ApplicationArtifactType `json:"type,omitempty"`
}
// ApplicationDefinitionListResult list of managed application definitions.
type ApplicationDefinitionListResult struct {
autorest.Response `json:"-"`
// Value - The array of managed application definitions.
Value *[]ApplicationDefinition `json:"value,omitempty"`
// NextLink - The URL to use for getting the next set of results.
NextLink *string `json:"nextLink,omitempty"`
}
// ApplicationDefinitionListResultIterator provides access to a complete listing of ApplicationDefinition
// values.
type ApplicationDefinitionListResultIterator struct {
i int
page ApplicationDefinitionListResultPage
}
// 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 *ApplicationDefinitionListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ApplicationDefinitionListResultIterator.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 *ApplicationDefinitionListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ApplicationDefinitionListResultIterator) 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 ApplicationDefinitionListResultIterator) Response() ApplicationDefinitionListResult {
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 ApplicationDefinitionListResultIterator) Value() ApplicationDefinition {
if !iter.page.NotDone() {
return ApplicationDefinition{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the ApplicationDefinitionListResultIterator type.
func NewApplicationDefinitionListResultIterator(page ApplicationDefinitionListResultPage) ApplicationDefinitionListResultIterator {
return ApplicationDefinitionListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (adlr ApplicationDefinitionListResult) IsEmpty() bool {
return adlr.Value == nil || len(*adlr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (adlr ApplicationDefinitionListResult) hasNextLink() bool {
return adlr.NextLink != nil && len(*adlr.NextLink) != 0
}
// applicationDefinitionListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (adlr ApplicationDefinitionListResult) applicationDefinitionListResultPreparer(ctx context.Context) (*http.Request, error) {
if !adlr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(adlr.NextLink)))
}
// ApplicationDefinitionListResultPage contains a page of ApplicationDefinition values.
type ApplicationDefinitionListResultPage struct {
fn func(context.Context, ApplicationDefinitionListResult) (ApplicationDefinitionListResult, error)
adlr ApplicationDefinitionListResult
}
// 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 *ApplicationDefinitionListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ApplicationDefinitionListResultPage.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.adlr)
if err != nil {
return err
}
page.adlr = 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 *ApplicationDefinitionListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ApplicationDefinitionListResultPage) NotDone() bool {
return !page.adlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ApplicationDefinitionListResultPage) Response() ApplicationDefinitionListResult {
return page.adlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ApplicationDefinitionListResultPage) Values() []ApplicationDefinition {
if page.adlr.IsEmpty() {
return nil
}
return *page.adlr.Value
}
// Creates a new instance of the ApplicationDefinitionListResultPage type.
func NewApplicationDefinitionListResultPage(cur ApplicationDefinitionListResult, getNextPage func(context.Context, ApplicationDefinitionListResult) (ApplicationDefinitionListResult, error)) ApplicationDefinitionListResultPage {
return ApplicationDefinitionListResultPage{
fn: getNextPage,
adlr: cur,
}
}
// ApplicationDefinitionPatchable information about an application definition request.
type ApplicationDefinitionPatchable struct {
// Tags - Application definition tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ApplicationDefinitionPatchable.
func (adp ApplicationDefinitionPatchable) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if adp.Tags != nil {
objectMap["tags"] = adp.Tags
}
return json.Marshal(objectMap)
}
// ApplicationDefinitionProperties the managed application definition properties.
type ApplicationDefinitionProperties struct {
// LockLevel - The managed application lock level. Possible values include: 'CanNotDelete', 'ReadOnly', 'None'
LockLevel ApplicationLockLevel `json:"lockLevel,omitempty"`
// DisplayName - The managed application definition display name.
DisplayName *string `json:"displayName,omitempty"`
// IsEnabled - A value indicating whether the package is enabled or not.
IsEnabled *bool `json:"isEnabled,omitempty"`
// Authorizations - The managed application provider authorizations.
Authorizations *[]ApplicationAuthorization `json:"authorizations,omitempty"`
// Artifacts - The collection of managed application artifacts. The portal will use the files specified as artifacts to construct the user experience of creating a managed application from a managed application definition.
Artifacts *[]ApplicationDefinitionArtifact `json:"artifacts,omitempty"`
// Description - The managed application definition description.
Description *string `json:"description,omitempty"`
// PackageFileURI - The managed application definition package file Uri. Use this element
PackageFileURI *string `json:"packageFileUri,omitempty"`
// StorageAccountID - The storage account id for bring your own storage scenario.
StorageAccountID *string `json:"storageAccountId,omitempty"`
// MainTemplate - The inline main template json which has resources to be provisioned. It can be a JObject or well-formed JSON string.
MainTemplate interface{} `json:"mainTemplate,omitempty"`
// CreateUIDefinition - The createUiDefinition json for the backing template with Microsoft.Solutions/applications resource. It can be a JObject or well-formed JSON string.
CreateUIDefinition interface{} `json:"createUiDefinition,omitempty"`
// NotificationPolicy - The managed application notification policy.
NotificationPolicy *ApplicationNotificationPolicy `json:"notificationPolicy,omitempty"`
// LockingPolicy - The managed application locking policy.
LockingPolicy *ApplicationPackageLockingPolicyDefinition `json:"lockingPolicy,omitempty"`
// DeploymentPolicy - The managed application deployment policy.
DeploymentPolicy *ApplicationDeploymentPolicy `json:"deploymentPolicy,omitempty"`
// ManagementPolicy - The managed application management policy that determines publisher's access to the managed resource group.
ManagementPolicy *ApplicationManagementPolicy `json:"managementPolicy,omitempty"`
// Policies - The managed application provider policies.
Policies *[]ApplicationPolicy `json:"policies,omitempty"`
}
// ApplicationDeploymentPolicy managed application deployment policy.
type ApplicationDeploymentPolicy struct {
// DeploymentMode - The managed application deployment mode. Possible values include: 'DeploymentModeNotSpecified', 'DeploymentModeIncremental', 'DeploymentModeComplete'
DeploymentMode DeploymentMode `json:"deploymentMode,omitempty"`
}
// ApplicationJitAccessPolicy managed application Jit access policy.
type ApplicationJitAccessPolicy struct {
// JitAccessEnabled - Whether the JIT access is enabled.
JitAccessEnabled *bool `json:"jitAccessEnabled,omitempty"`
// JitApprovalMode - JIT approval mode. Possible values include: 'JitApprovalModeNotSpecified', 'JitApprovalModeAutoApprove', 'JitApprovalModeManualApprove'
JitApprovalMode JitApprovalMode `json:"jitApprovalMode,omitempty"`
// JitApprovers - The JIT approvers
JitApprovers *[]JitApproverDefinition `json:"jitApprovers,omitempty"`
// MaximumJitAccessDuration - The maximum duration JIT access is granted. This is an ISO8601 time period value.
MaximumJitAccessDuration *string `json:"maximumJitAccessDuration,omitempty"`
}
// ApplicationListResult list of managed applications.
type ApplicationListResult struct {
autorest.Response `json:"-"`
// Value - The array of managed applications.
Value *[]Application `json:"value,omitempty"`
// NextLink - The URL to use for getting the next set of results.
NextLink *string `json:"nextLink,omitempty"`
}
// ApplicationListResultIterator provides access to a complete listing of Application values.
type ApplicationListResultIterator struct {
i int
page ApplicationListResultPage
}
// 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 *ApplicationListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ApplicationListResultIterator.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 *ApplicationListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ApplicationListResultIterator) 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 ApplicationListResultIterator) Response() ApplicationListResult {
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 ApplicationListResultIterator) Value() Application {
if !iter.page.NotDone() {
return Application{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the ApplicationListResultIterator type.
func NewApplicationListResultIterator(page ApplicationListResultPage) ApplicationListResultIterator {
return ApplicationListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (alr ApplicationListResult) IsEmpty() bool {
return alr.Value == nil || len(*alr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (alr ApplicationListResult) hasNextLink() bool {
return alr.NextLink != nil && len(*alr.NextLink) != 0
}
// applicationListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (alr ApplicationListResult) applicationListResultPreparer(ctx context.Context) (*http.Request, error) {
if !alr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(alr.NextLink)))
}
// ApplicationListResultPage contains a page of Application values.
type ApplicationListResultPage struct {
fn func(context.Context, ApplicationListResult) (ApplicationListResult, error)
alr ApplicationListResult
}
// 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 *ApplicationListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ApplicationListResultPage.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.alr)
if err != nil {
return err
}
page.alr = 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 *ApplicationListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ApplicationListResultPage) NotDone() bool {
return !page.alr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ApplicationListResultPage) Response() ApplicationListResult {
return page.alr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ApplicationListResultPage) Values() []Application {
if page.alr.IsEmpty() {
return nil
}
return *page.alr.Value
}
// Creates a new instance of the ApplicationListResultPage type.
func NewApplicationListResultPage(cur ApplicationListResult, getNextPage func(context.Context, ApplicationListResult) (ApplicationListResult, error)) ApplicationListResultPage {
return ApplicationListResultPage{
fn: getNextPage,
alr: cur,
}
}
// ApplicationManagementPolicy managed application management policy.
type ApplicationManagementPolicy struct {
// Mode - The managed application management mode. Possible values include: 'ApplicationManagementModeNotSpecified', 'ApplicationManagementModeUnmanaged', 'ApplicationManagementModeManaged'
Mode ApplicationManagementMode `json:"mode,omitempty"`
}
// ApplicationNotificationEndpoint managed application notification endpoint.
type ApplicationNotificationEndpoint struct {
// URI - The managed application notification endpoint uri.
URI *string `json:"uri,omitempty"`
}
// ApplicationNotificationPolicy managed application notification policy.
type ApplicationNotificationPolicy struct {
// NotificationEndpoints - The managed application notification endpoint.
NotificationEndpoints *[]ApplicationNotificationEndpoint `json:"notificationEndpoints,omitempty"`
}
// ApplicationPackageContact the application package contact information.
type ApplicationPackageContact struct {
// ContactName - The contact name.
ContactName *string `json:"contactName,omitempty"`
// Email - The contact email.
Email *string `json:"email,omitempty"`
// Phone - The contact phone number.
Phone *string `json:"phone,omitempty"`
}
// ApplicationPackageLockingPolicyDefinition managed application locking policy.
type ApplicationPackageLockingPolicyDefinition struct {
// AllowedActions - The deny assignment excluded actions.
AllowedActions *[]string `json:"allowedActions,omitempty"`
// AllowedDataActions - The deny assignment excluded data actions.
AllowedDataActions *[]string `json:"allowedDataActions,omitempty"`
}
// ApplicationPackageSupportUrls the appliance package support URLs.
type ApplicationPackageSupportUrls struct {
// PublicAzure - The public azure support URL.
PublicAzure *string `json:"publicAzure,omitempty"`
// GovernmentCloud - The government cloud support URL.
GovernmentCloud *string `json:"governmentCloud,omitempty"`
}
// ApplicationPatchable information about managed application.
type ApplicationPatchable struct {
autorest.Response `json:"-"`
// ApplicationProperties - The managed application properties.
*ApplicationProperties `json:"properties,omitempty"`
// Plan - The plan information.
Plan *PlanPatchable `json:"plan,omitempty"`
// Kind - The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog.
Kind *string `json:"kind,omitempty"`
// Identity - The identity of the resource.
Identity *Identity `json:"identity,omitempty"`
// ManagedBy - ID of the resource that manages this resource.
ManagedBy *string `json:"managedBy,omitempty"`
// Sku - The SKU of the resource.
Sku *Sku `json:"sku,omitempty"`
// ID - READ-ONLY; Resource ID
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ApplicationPatchable.
func (ap ApplicationPatchable) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ap.ApplicationProperties != nil {
objectMap["properties"] = ap.ApplicationProperties
}
if ap.Plan != nil {
objectMap["plan"] = ap.Plan
}
if ap.Kind != nil {
objectMap["kind"] = ap.Kind
}
if ap.Identity != nil {
objectMap["identity"] = ap.Identity
}
if ap.ManagedBy != nil {
objectMap["managedBy"] = ap.ManagedBy
}
if ap.Sku != nil {
objectMap["sku"] = ap.Sku
}
if ap.Location != nil {
objectMap["location"] = ap.Location
}
if ap.Tags != nil {
objectMap["tags"] = ap.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ApplicationPatchable struct.
func (ap *ApplicationPatchable) 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 "properties":
if v != nil {
var applicationProperties ApplicationProperties
err = json.Unmarshal(*v, &applicationProperties)
if err != nil {
return err
}
ap.ApplicationProperties = &applicationProperties
}
case "plan":
if v != nil {
var plan PlanPatchable
err = json.Unmarshal(*v, &plan)
if err != nil {
return err
}
ap.Plan = &plan
}
case "kind":
if v != nil {
var kind string
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
ap.Kind = &kind
}
case "identity":
if v != nil {
var identity Identity
err = json.Unmarshal(*v, &identity)
if err != nil {
return err
}
ap.Identity = &identity
}
case "managedBy":
if v != nil {
var managedBy string
err = json.Unmarshal(*v, &managedBy)
if err != nil {
return err
}
ap.ManagedBy = &managedBy
}
case "sku":
if v != nil {
var sku Sku
err = json.Unmarshal(*v, &sku)
if err != nil {
return err
}
ap.Sku = &sku
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ap.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ap.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ap.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ap.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ap.Tags = tags
}
}
}
return nil
}
// ApplicationPolicy managed application policy.
type ApplicationPolicy struct {
// Name - The policy name
Name *string `json:"name,omitempty"`
// PolicyDefinitionID - The policy definition Id.
PolicyDefinitionID *string `json:"policyDefinitionId,omitempty"`
// Parameters - The policy parameters.
Parameters *string `json:"parameters,omitempty"`
}
// ApplicationProperties the managed application properties.
type ApplicationProperties struct {
// ManagedResourceGroupID - The managed resource group Id.
ManagedResourceGroupID *string `json:"managedResourceGroupId,omitempty"`
// ApplicationDefinitionID - The fully qualified path of managed application definition Id.
ApplicationDefinitionID *string `json:"applicationDefinitionId,omitempty"`
// Parameters - Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string.
Parameters interface{} `json:"parameters,omitempty"`
// Outputs - READ-ONLY; Name and value pairs that define the managed application outputs.
Outputs interface{} `json:"outputs,omitempty"`
// ProvisioningState - READ-ONLY; The managed application provisioning state. Possible values include: 'ProvisioningStateNotSpecified', 'ProvisioningStateAccepted', 'ProvisioningStateRunning', 'ProvisioningStateReady', 'ProvisioningStateCreating', 'ProvisioningStateCreated', 'ProvisioningStateDeleting', 'ProvisioningStateDeleted', 'ProvisioningStateCanceled', 'ProvisioningStateFailed', 'ProvisioningStateSucceeded', 'ProvisioningStateUpdating'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// BillingDetails - READ-ONLY; The managed application billing details.
BillingDetails *ApplicationBillingDetailsDefinition `json:"billingDetails,omitempty"`
// JitAccessPolicy - The managed application Jit access policy.
JitAccessPolicy *ApplicationJitAccessPolicy `json:"jitAccessPolicy,omitempty"`
// PublisherTenantID - READ-ONLY; The publisher tenant Id.
PublisherTenantID *string `json:"publisherTenantId,omitempty"`
// Authorizations - READ-ONLY; The read-only authorizations property that is retrieved from the application package.
Authorizations *[]ApplicationAuthorization `json:"authorizations,omitempty"`
// ManagementMode - READ-ONLY; The managed application management mode. Possible values include: 'ApplicationManagementModeNotSpecified', 'ApplicationManagementModeUnmanaged', 'ApplicationManagementModeManaged'
ManagementMode ApplicationManagementMode `json:"managementMode,omitempty"`
// CustomerSupport - READ-ONLY; The read-only customer support property that is retrieved from the application package.
CustomerSupport *ApplicationPackageContact `json:"customerSupport,omitempty"`
// SupportUrls - READ-ONLY; The read-only support URLs property that is retrieved from the application package.
SupportUrls *ApplicationPackageSupportUrls `json:"supportUrls,omitempty"`
// Artifacts - READ-ONLY; The collection of managed application artifacts.
Artifacts *[]ApplicationArtifact `json:"artifacts,omitempty"`
// CreatedBy - READ-ONLY; The client entity that created the JIT request.
CreatedBy *ApplicationClientDetails `json:"createdBy,omitempty"`
// UpdatedBy - READ-ONLY; The client entity that last updated the JIT request.
UpdatedBy *ApplicationClientDetails `json:"updatedBy,omitempty"`
}
// MarshalJSON is the custom marshaler for ApplicationProperties.
func (ap ApplicationProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ap.ManagedResourceGroupID != nil {
objectMap["managedResourceGroupId"] = ap.ManagedResourceGroupID
}
if ap.ApplicationDefinitionID != nil {
objectMap["applicationDefinitionId"] = ap.ApplicationDefinitionID
}
if ap.Parameters != nil {
objectMap["parameters"] = ap.Parameters
}
if ap.JitAccessPolicy != nil {
objectMap["jitAccessPolicy"] = ap.JitAccessPolicy
}
return json.Marshal(objectMap)
}
// ApplicationPropertiesPatchable the managed application properties.
type ApplicationPropertiesPatchable struct {
// ManagedResourceGroupID - The managed resource group Id.
ManagedResourceGroupID *string `json:"managedResourceGroupId,omitempty"`
// ApplicationDefinitionID - The fully qualified path of managed application definition Id.
ApplicationDefinitionID *string `json:"applicationDefinitionId,omitempty"`
// Parameters - Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string.
Parameters interface{} `json:"parameters,omitempty"`
// Outputs - READ-ONLY; Name and value pairs that define the managed application outputs.
Outputs interface{} `json:"outputs,omitempty"`
// ProvisioningState - READ-ONLY; The managed application provisioning state. Possible values include: 'ProvisioningStateNotSpecified', 'ProvisioningStateAccepted', 'ProvisioningStateRunning', 'ProvisioningStateReady', 'ProvisioningStateCreating', 'ProvisioningStateCreated', 'ProvisioningStateDeleting', 'ProvisioningStateDeleted', 'ProvisioningStateCanceled', 'ProvisioningStateFailed', 'ProvisioningStateSucceeded', 'ProvisioningStateUpdating'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
}
// MarshalJSON is the custom marshaler for ApplicationPropertiesPatchable.
func (app ApplicationPropertiesPatchable) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if app.ManagedResourceGroupID != nil {
objectMap["managedResourceGroupId"] = app.ManagedResourceGroupID
}
if app.ApplicationDefinitionID != nil {
objectMap["applicationDefinitionId"] = app.ApplicationDefinitionID
}
if app.Parameters != nil {
objectMap["parameters"] = app.Parameters
}
return json.Marshal(objectMap)
}
// ApplicationsCreateOrUpdateByIDFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type ApplicationsCreateOrUpdateByIDFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (Application, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsCreateOrUpdateByIDFuture) 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 ApplicationsCreateOrUpdateByIDFuture.Result.
func (future *ApplicationsCreateOrUpdateByIDFuture) result(client ApplicationsClient) (a Application, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsCreateOrUpdateByIDFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
a.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsCreateOrUpdateByIDFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if a.Response.Response, err = future.GetResult(sender); err == nil && a.Response.Response.StatusCode != http.StatusNoContent {
a, err = client.CreateOrUpdateByIDResponder(a.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsCreateOrUpdateByIDFuture", "Result", a.Response.Response, "Failure responding to request")
}
}
return
}
// ApplicationsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type ApplicationsCreateOrUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (Application, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsCreateOrUpdateFuture) 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 ApplicationsCreateOrUpdateFuture.Result.
func (future *ApplicationsCreateOrUpdateFuture) result(client ApplicationsClient) (a Application, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
a.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsCreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if a.Response.Response, err = future.GetResult(sender); err == nil && a.Response.Response.StatusCode != http.StatusNoContent {
a, err = client.CreateOrUpdateResponder(a.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsCreateOrUpdateFuture", "Result", a.Response.Response, "Failure responding to request")
}
}
return
}
// ApplicationsDeleteByIDFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ApplicationsDeleteByIDFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsDeleteByIDFuture) 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 ApplicationsDeleteByIDFuture.Result.
func (future *ApplicationsDeleteByIDFuture) result(client ApplicationsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsDeleteByIDFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsDeleteByIDFuture")
return
}
ar.Response = future.Response()
return
}
// ApplicationsDeleteFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ApplicationsDeleteFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsDeleteFuture) 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 ApplicationsDeleteFuture.Result.
func (future *ApplicationsDeleteFuture) result(client ApplicationsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsDeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsDeleteFuture")
return
}
ar.Response = future.Response()
return
}
// ApplicationsRefreshPermissionsFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type ApplicationsRefreshPermissionsFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (autorest.Response, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsRefreshPermissionsFuture) 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 ApplicationsRefreshPermissionsFuture.Result.
func (future *ApplicationsRefreshPermissionsFuture) result(client ApplicationsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsRefreshPermissionsFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ar.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsRefreshPermissionsFuture")
return
}
ar.Response = future.Response()
return
}
// ApplicationsUpdateAccessFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type ApplicationsUpdateAccessFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (UpdateAccessDefinition, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsUpdateAccessFuture) 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 ApplicationsUpdateAccessFuture.Result.
func (future *ApplicationsUpdateAccessFuture) result(client ApplicationsClient) (uad UpdateAccessDefinition, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsUpdateAccessFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
uad.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsUpdateAccessFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if uad.Response.Response, err = future.GetResult(sender); err == nil && uad.Response.Response.StatusCode != http.StatusNoContent {
uad, err = client.UpdateAccessResponder(uad.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsUpdateAccessFuture", "Result", uad.Response.Response, "Failure responding to request")
}
}
return
}
// ApplicationsUpdateByIDFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type ApplicationsUpdateByIDFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(ApplicationsClient) (ApplicationPatchable, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *ApplicationsUpdateByIDFuture) 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 ApplicationsUpdateByIDFuture.Result.
func (future *ApplicationsUpdateByIDFuture) result(client ApplicationsClient) (ap ApplicationPatchable, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsUpdateByIDFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
ap.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.ApplicationsUpdateByIDFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if ap.Response.Response, err = future.GetResult(sender); err == nil && ap.Response.Response.StatusCode != http.StatusNoContent {
ap, err = client.UpdateByIDResponder(ap.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.ApplicationsUpdateByIDFuture", "Result", ap.Response.Response, "Failure responding to request")
}
}
return
}
// ErrorAdditionalInfo the resource management error additional info.
type ErrorAdditionalInfo struct {
// Type - READ-ONLY; The additional info type.
Type *string `json:"type,omitempty"`
// Info - READ-ONLY; The additional info.
Info interface{} `json:"info,omitempty"`
}
// MarshalJSON is the custom marshaler for ErrorAdditionalInfo.
func (eai ErrorAdditionalInfo) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// ErrorDetail the error detail.
type ErrorDetail struct {
// Code - READ-ONLY; The error code.
Code *string `json:"code,omitempty"`
// Message - READ-ONLY; The error message.
Message *string `json:"message,omitempty"`
// Target - READ-ONLY; The error target.
Target *string `json:"target,omitempty"`
// Details - READ-ONLY; The error details.
Details *[]ErrorDetail `json:"details,omitempty"`
// AdditionalInfo - READ-ONLY; The error additional info.
AdditionalInfo *[]ErrorAdditionalInfo `json:"additionalInfo,omitempty"`
}
// MarshalJSON is the custom marshaler for ErrorDetail.
func (ed ErrorDetail) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// ErrorResponse common error response for all Azure Resource Manager APIs to return error details for
// failed operations. (This also follows the OData error response format.).
type ErrorResponse struct {
// Error - The error object.
Error *ErrorDetail `json:"error,omitempty"`
}
// GenericResource resource information.
type GenericResource struct {
// ManagedBy - ID of the resource that manages this resource.
ManagedBy *string `json:"managedBy,omitempty"`
// Sku - The SKU of the resource.
Sku *Sku `json:"sku,omitempty"`
// ID - READ-ONLY; Resource ID
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for GenericResource.
func (gr GenericResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if gr.ManagedBy != nil {
objectMap["managedBy"] = gr.ManagedBy
}
if gr.Sku != nil {
objectMap["sku"] = gr.Sku
}
if gr.Location != nil {
objectMap["location"] = gr.Location
}
if gr.Tags != nil {
objectMap["tags"] = gr.Tags
}
return json.Marshal(objectMap)
}
// Identity identity for the resource.
type Identity struct {
// PrincipalID - READ-ONLY; The principal ID of resource identity.
PrincipalID *string `json:"principalId,omitempty"`
// TenantID - READ-ONLY; The tenant ID of resource.
TenantID *string `json:"tenantId,omitempty"`
// Type - The identity type. Possible values include: 'ResourceIdentityTypeSystemAssigned', 'ResourceIdentityTypeUserAssigned', 'ResourceIdentityTypeSystemAssignedUserAssigned', 'ResourceIdentityTypeNone'
Type ResourceIdentityType `json:"type,omitempty"`
// UserAssignedIdentities - The list of user identities associated with the resource. The user identity dictionary key references will be resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
UserAssignedIdentities map[string]*UserAssignedResourceIdentity `json:"userAssignedIdentities"`
}
// MarshalJSON is the custom marshaler for Identity.
func (i Identity) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if i.Type != "" {
objectMap["type"] = i.Type
}
if i.UserAssignedIdentities != nil {
objectMap["userAssignedIdentities"] = i.UserAssignedIdentities
}
return json.Marshal(objectMap)
}
// JitApproverDefinition JIT approver definition.
type JitApproverDefinition struct {
// ID - The approver service principal Id.
ID *string `json:"id,omitempty"`
// Type - The approver type. Possible values include: 'User', 'Group'
Type JitApproverType `json:"type,omitempty"`
// DisplayName - The approver display name.
DisplayName *string `json:"displayName,omitempty"`
}
// JitAuthorizationPolicies the JIT authorization policies.
type JitAuthorizationPolicies struct {
// PrincipalID - The the principal id that will be granted JIT access.
PrincipalID *string `json:"principalId,omitempty"`
// RoleDefinitionID - The role definition id that will be granted to the Principal.
RoleDefinitionID *string `json:"roleDefinitionId,omitempty"`
}
// JitRequestDefinition information about JIT request definition.
type JitRequestDefinition struct {
autorest.Response `json:"-"`
// JitRequestProperties - The JIT request properties.
*JitRequestProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Resource ID
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for JitRequestDefinition.
func (jrd JitRequestDefinition) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if jrd.JitRequestProperties != nil {
objectMap["properties"] = jrd.JitRequestProperties
}
if jrd.Location != nil {
objectMap["location"] = jrd.Location
}
if jrd.Tags != nil {
objectMap["tags"] = jrd.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for JitRequestDefinition struct.
func (jrd *JitRequestDefinition) 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 "properties":
if v != nil {
var jitRequestProperties JitRequestProperties
err = json.Unmarshal(*v, &jitRequestProperties)
if err != nil {
return err
}
jrd.JitRequestProperties = &jitRequestProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
jrd.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
jrd.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
jrd.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
jrd.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
jrd.Tags = tags
}
}
}
return nil
}
// JitRequestDefinitionListResult list of JIT requests.
type JitRequestDefinitionListResult struct {
autorest.Response `json:"-"`
// Value - The array of Jit request definition.
Value *[]JitRequestDefinition `json:"value,omitempty"`
// NextLink - The URL to use for getting the next set of results.
NextLink *string `json:"nextLink,omitempty"`
}
// JitRequestMetadata the JIT request metadata.
type JitRequestMetadata struct {
// OriginRequestID - The origin request id.
OriginRequestID *string `json:"originRequestId,omitempty"`
// RequestorID - The requestor id.
RequestorID *string `json:"requestorId,omitempty"`
// TenantDisplayName - The publisher's tenant name.
TenantDisplayName *string `json:"tenantDisplayName,omitempty"`
// SubjectDisplayName - The subject display name.
SubjectDisplayName *string `json:"subjectDisplayName,omitempty"`
}
// JitRequestPatchable information about JIT request.
type JitRequestPatchable struct {
// Tags - Jit request tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for JitRequestPatchable.
func (jrp JitRequestPatchable) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if jrp.Tags != nil {
objectMap["tags"] = jrp.Tags
}
return json.Marshal(objectMap)
}
// JitRequestProperties information about JIT request properties
type JitRequestProperties struct {
// ApplicationResourceID - The parent application id.
ApplicationResourceID *string `json:"applicationResourceId,omitempty"`
// PublisherTenantID - READ-ONLY; The publisher tenant id.
PublisherTenantID *string `json:"publisherTenantId,omitempty"`
// JitAuthorizationPolicies - The JIT authorization policies.
JitAuthorizationPolicies *[]JitAuthorizationPolicies `json:"jitAuthorizationPolicies,omitempty"`
// JitSchedulingPolicy - The JIT request properties.
JitSchedulingPolicy *JitSchedulingPolicy `json:"jitSchedulingPolicy,omitempty"`
// ProvisioningState - READ-ONLY; The JIT request provisioning state. Possible values include: 'ProvisioningStateNotSpecified', 'ProvisioningStateAccepted', 'ProvisioningStateRunning', 'ProvisioningStateReady', 'ProvisioningStateCreating', 'ProvisioningStateCreated', 'ProvisioningStateDeleting', 'ProvisioningStateDeleted', 'ProvisioningStateCanceled', 'ProvisioningStateFailed', 'ProvisioningStateSucceeded', 'ProvisioningStateUpdating'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// JitRequestState - READ-ONLY; The JIT request state. Possible values include: 'JitRequestStateNotSpecified', 'JitRequestStatePending', 'JitRequestStateApproved', 'JitRequestStateDenied', 'JitRequestStateFailed', 'JitRequestStateCanceled', 'JitRequestStateExpired', 'JitRequestStateTimeout'
JitRequestState JitRequestState `json:"jitRequestState,omitempty"`
// CreatedBy - READ-ONLY; The client entity that created the JIT request.
CreatedBy *ApplicationClientDetails `json:"createdBy,omitempty"`
// UpdatedBy - READ-ONLY; The client entity that last updated the JIT request.
UpdatedBy *ApplicationClientDetails `json:"updatedBy,omitempty"`
}
// MarshalJSON is the custom marshaler for JitRequestProperties.
func (jrp JitRequestProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if jrp.ApplicationResourceID != nil {
objectMap["applicationResourceId"] = jrp.ApplicationResourceID
}
if jrp.JitAuthorizationPolicies != nil {
objectMap["jitAuthorizationPolicies"] = jrp.JitAuthorizationPolicies
}
if jrp.JitSchedulingPolicy != nil {
objectMap["jitSchedulingPolicy"] = jrp.JitSchedulingPolicy
}
return json.Marshal(objectMap)
}
// JitRequestsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type JitRequestsCreateOrUpdateFuture struct {
azure.FutureAPI
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
Result func(JitRequestsClient) (JitRequestDefinition, error)
}
// UnmarshalJSON is the custom unmarshaller for CreateFuture.
func (future *JitRequestsCreateOrUpdateFuture) 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 JitRequestsCreateOrUpdateFuture.Result.
func (future *JitRequestsCreateOrUpdateFuture) result(client JitRequestsClient) (jrd JitRequestDefinition, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.JitRequestsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
jrd.Response.Response = future.Response()
err = azure.NewAsyncOpIncompleteError("managedapplications.JitRequestsCreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if jrd.Response.Response, err = future.GetResult(sender); err == nil && jrd.Response.Response.StatusCode != http.StatusNoContent {
jrd, err = client.CreateOrUpdateResponder(jrd.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "managedapplications.JitRequestsCreateOrUpdateFuture", "Result", jrd.Response.Response, "Failure responding to request")
}
}
return
}
// JitSchedulingPolicy the JIT scheduling policies.
type JitSchedulingPolicy struct {
// Type - The type of JIT schedule. Possible values include: 'JitSchedulingTypeNotSpecified', 'JitSchedulingTypeOnce', 'JitSchedulingTypeRecurring'
Type JitSchedulingType `json:"type,omitempty"`
Duration *string `json:"duration,omitempty"`
// StartTime - The start time of the request.
StartTime *date.Time `json:"startTime,omitempty"`
}
// ListTokenRequest list token request body.
type ListTokenRequest struct {
// AuthorizationAudience - The authorization audience.
AuthorizationAudience *string `json:"authorizationAudience,omitempty"`
// UserAssignedIdentities - The user assigned identities.
UserAssignedIdentities *[]string `json:"userAssignedIdentities,omitempty"`
}
// ManagedIdentityToken the managed identity token for the managed app resource.
type ManagedIdentityToken struct {
// AccessToken - The requested access token.
AccessToken *string `json:"accessToken,omitempty"`
// ExpiresIn - The number of seconds the access token will be valid.
ExpiresIn *string `json:"expiresIn,omitempty"`
// ExpiresOn - The timespan when the access token expires. This is represented as the number of seconds from epoch.
ExpiresOn *string `json:"expiresOn,omitempty"`
// NotBefore - The timespan when the access token takes effect. This is represented as the number of seconds from epoch.
NotBefore *string `json:"notBefore,omitempty"`
// AuthorizationAudience - The aud (audience) the access token was request for. This is the same as what was provided in the listTokens request.
AuthorizationAudience *string `json:"authorizationAudience,omitempty"`
// ResourceID - The Azure resource ID for the issued token. This is either the managed application ID or the user-assigned identity ID.
ResourceID *string `json:"resourceId,omitempty"`
// TokenType - The type of the token.
TokenType *string `json:"tokenType,omitempty"`
}
// ManagedIdentityTokenResult the array of managed identity tokens.
type ManagedIdentityTokenResult struct {
autorest.Response `json:"-"`
// Value - The array of managed identity tokens.
Value *[]ManagedIdentityToken `json:"value,omitempty"`
}
// Operation microsoft.Solutions operation
type Operation struct {
// Name - Operation name: {provider}/{resource}/{operation}
Name *string `json:"name,omitempty"`
// IsDataAction - Indicates whether the operation is a data action
IsDataAction *bool `json:"isDataAction,omitempty"`
// Display - The object that represents the operation.
Display *OperationDisplay `json:"display,omitempty"`
}
// OperationDisplay the object that represents the operation.
type OperationDisplay struct {
// Provider - Service provider: Microsoft.Solutions
Provider *string `json:"provider,omitempty"`
// Resource - Resource on which the operation is performed: Application, JitRequest, etc.
Resource *string `json:"resource,omitempty"`
// Operation - Operation type: Read, write, delete, etc.
Operation *string `json:"operation,omitempty"`
// Description - READ-ONLY; Localized friendly description for the operation
Description *string `json:"description,omitempty"`
}
// MarshalJSON is the custom marshaler for OperationDisplay.
func (o OperationDisplay) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if o.Provider != nil {
objectMap["provider"] = o.Provider
}
if o.Resource != nil {
objectMap["resource"] = o.Resource
}
if o.Operation != nil {
objectMap["operation"] = o.Operation
}
return json.Marshal(objectMap)
}
// OperationListResult result of the request to list Microsoft.Solutions operations. It contains a list of
// operations and a URL link to get the next set of results.
type OperationListResult struct {
autorest.Response `json:"-"`
// Value - List of Microsoft.Solutions operations.
Value *[]Operation `json:"value,omitempty"`
// NextLink - URL to get the next set of operation list results if there are any.
NextLink *string `json:"nextLink,omitempty"`
}
// 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,
}
}
// Plan plan for the managed application.
type Plan struct {
// Name - The plan name.
Name *string `json:"name,omitempty"`
// Publisher - The publisher ID.
Publisher *string `json:"publisher,omitempty"`
// Product - The product code.
Product *string `json:"product,omitempty"`
// PromotionCode - The promotion code.
PromotionCode *string `json:"promotionCode,omitempty"`
// Version - The plan's version.
Version *string `json:"version,omitempty"`
}
// PlanPatchable plan for the managed application.
type PlanPatchable struct {
// Name - The plan name.
Name *string `json:"name,omitempty"`
// Publisher - The publisher ID.
Publisher *string `json:"publisher,omitempty"`
// Product - The product code.
Product *string `json:"product,omitempty"`
// PromotionCode - The promotion code.
PromotionCode *string `json:"promotionCode,omitempty"`
// Version - The plan's version.
Version *string `json:"version,omitempty"`
}
// Resource resource information.
type Resource struct {
// ID - READ-ONLY; Resource ID
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Resource.
func (r Resource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if r.Location != nil {
objectMap["location"] = r.Location
}
if r.Tags != nil {
objectMap["tags"] = r.Tags
}
return json.Marshal(objectMap)
}
// Sku SKU for the resource.
type Sku struct {
// Name - The SKU name.
Name *string `json:"name,omitempty"`
// Tier - The SKU tier.
Tier *string `json:"tier,omitempty"`
// Size - The SKU size.
Size *string `json:"size,omitempty"`
// Family - The SKU family.
Family *string `json:"family,omitempty"`
// Model - The SKU model.
Model *string `json:"model,omitempty"`
// Capacity - The SKU capacity.
Capacity *int32 `json:"capacity,omitempty"`
}
// UpdateAccessDefinition update access request definition.
type UpdateAccessDefinition struct {
autorest.Response `json:"-"`
// Approver - The approver name.
Approver *string `json:"approver,omitempty"`
// Metadata - The JIT request metadata.
Metadata *JitRequestMetadata `json:"metadata,omitempty"`
// Status - The JIT status. Possible values include: 'StatusNotSpecified', 'StatusElevate', 'StatusRemove'
Status Status `json:"status,omitempty"`
// SubStatus - The JIT status. Possible values include: 'SubstatusNotSpecified', 'SubstatusApproved', 'SubstatusDenied', 'SubstatusFailed', 'SubstatusExpired', 'SubstatusTimeout'
SubStatus Substatus `json:"subStatus,omitempty"`
}
// UserAssignedResourceIdentity represents the user assigned identity that is contained within the
// UserAssignedIdentities dictionary on ResourceIdentity
type UserAssignedResourceIdentity struct {
// PrincipalID - READ-ONLY; The principal id of user assigned identity.
PrincipalID *string `json:"principalId,omitempty"`
// TenantID - READ-ONLY; The tenant id of user assigned identity.
TenantID *string `json:"tenantId,omitempty"`
}
// MarshalJSON is the custom marshaler for UserAssignedResourceIdentity.
func (uari UserAssignedResourceIdentity) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
|