gd-sprest-def 1.6.5 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Microsoft/Graph/entityTypes.d.ts +401 -121
- package/main.js +19 -7
- package/package.json +1 -1
|
@@ -22,6 +22,8 @@ export interface workflowBaseMethods {
|
|
|
22
22
|
tasks(id: string | number): IBaseQuery<task> & taskMethods;
|
|
23
23
|
}
|
|
24
24
|
export interface workflowBaseOData {
|
|
25
|
+
createdBy: user;
|
|
26
|
+
lastModifiedBy: user;
|
|
25
27
|
tasks: IBaseResults<task>;
|
|
26
28
|
}
|
|
27
29
|
/*********************************************
|
|
@@ -75,6 +77,9 @@ export interface lifecycleWorkflowsContainerMethods {
|
|
|
75
77
|
}
|
|
76
78
|
export interface lifecycleWorkflowsContainerOData {
|
|
77
79
|
customTaskExtensions: IBaseResults<customTaskExtension>;
|
|
80
|
+
deletedItems: deletedItemContainer;
|
|
81
|
+
insights: insights;
|
|
82
|
+
settings: lifecycleManagementSettings;
|
|
78
83
|
taskDefinitions: IBaseResults<taskDefinition>;
|
|
79
84
|
workflows: IBaseResults<workflow>;
|
|
80
85
|
workflowTemplates: IBaseResults<workflowTemplate>;
|
|
@@ -116,7 +121,8 @@ export interface taskProcessingResultMethods {
|
|
|
116
121
|
task(): IBaseQuery<task> & taskMethods;
|
|
117
122
|
}
|
|
118
123
|
export interface taskProcessingResultOData {
|
|
119
|
-
|
|
124
|
+
subject: user;
|
|
125
|
+
task: task;
|
|
120
126
|
}
|
|
121
127
|
/*********************************************
|
|
122
128
|
* customTaskExtension
|
|
@@ -132,7 +138,8 @@ export interface customTaskExtensionMethods {
|
|
|
132
138
|
lastModifiedBy(): IBaseQuery<user> & userMethods;
|
|
133
139
|
}
|
|
134
140
|
export interface customTaskExtensionOData {
|
|
135
|
-
|
|
141
|
+
createdBy: user;
|
|
142
|
+
lastModifiedBy: user;
|
|
136
143
|
}
|
|
137
144
|
/*********************************************
|
|
138
145
|
* insights
|
|
@@ -245,6 +252,7 @@ export interface userProcessingResultMethods {
|
|
|
245
252
|
taskProcessingResults(id: string | number): IBaseQuery<taskProcessingResult> & taskProcessingResultMethods;
|
|
246
253
|
}
|
|
247
254
|
export interface userProcessingResultOData {
|
|
255
|
+
subject: user;
|
|
248
256
|
taskProcessingResults: IBaseResults<taskProcessingResult>;
|
|
249
257
|
}
|
|
250
258
|
/*********************************************
|
|
@@ -269,6 +277,8 @@ export interface taskReportMethods {
|
|
|
269
277
|
taskProcessingResults(id: string | number): IBaseQuery<taskProcessingResult> & taskProcessingResultMethods;
|
|
270
278
|
}
|
|
271
279
|
export interface taskReportOData {
|
|
280
|
+
task: task;
|
|
281
|
+
taskDefinition: taskDefinition;
|
|
272
282
|
taskProcessingResults: IBaseResults<taskProcessingResult>;
|
|
273
283
|
}
|
|
274
284
|
/*********************************************
|
|
@@ -374,12 +384,14 @@ export interface applicationMethods {
|
|
|
374
384
|
}
|
|
375
385
|
export interface applicationOData {
|
|
376
386
|
appManagementPolicies: IBaseResults<appManagementPolicy>;
|
|
387
|
+
createdOnBehalfOf: directoryObject;
|
|
377
388
|
extensionProperties: IBaseResults<extensionProperty>;
|
|
378
389
|
federatedIdentityCredentials: IBaseResults<federatedIdentityCredential>;
|
|
379
390
|
homeRealmDiscoveryPolicies: IBaseResults<homeRealmDiscoveryPolicy>;
|
|
380
391
|
owners: IBaseResults<directoryObject>;
|
|
381
392
|
tokenIssuancePolicies: IBaseResults<tokenIssuancePolicy>;
|
|
382
393
|
tokenLifetimePolicies: IBaseResults<tokenLifetimePolicy>;
|
|
394
|
+
synchronization: synchronization;
|
|
383
395
|
}
|
|
384
396
|
/*********************************************
|
|
385
397
|
* policyBase
|
|
@@ -727,6 +739,7 @@ export interface eventMethods {
|
|
|
727
739
|
}
|
|
728
740
|
export interface eventOData {
|
|
729
741
|
attachments: IBaseResults<attachment>;
|
|
742
|
+
calendar: calendar;
|
|
730
743
|
extensions: IBaseResults<extension>;
|
|
731
744
|
instances: IBaseResults<event>;
|
|
732
745
|
multiValueExtendedProperties: IBaseResults<multiValueLegacyExtendedProperty>;
|
|
@@ -791,7 +804,8 @@ export interface baseItemMethods {
|
|
|
791
804
|
lastModifiedByUser(): IBaseQuery<user> & userMethods;
|
|
792
805
|
}
|
|
793
806
|
export interface baseItemOData {
|
|
794
|
-
|
|
807
|
+
createdByUser: user;
|
|
808
|
+
lastModifiedByUser: user;
|
|
795
809
|
}
|
|
796
810
|
/*********************************************
|
|
797
811
|
* drive
|
|
@@ -820,6 +834,8 @@ export interface driveOData {
|
|
|
820
834
|
bundles: IBaseResults<driveItem>;
|
|
821
835
|
following: IBaseResults<driveItem>;
|
|
822
836
|
items: IBaseResults<driveItem>;
|
|
837
|
+
list: list;
|
|
838
|
+
root: driveItem;
|
|
823
839
|
special: IBaseResults<driveItem>;
|
|
824
840
|
}
|
|
825
841
|
/*********************************************
|
|
@@ -863,8 +879,10 @@ export interface siteMethods {
|
|
|
863
879
|
onenote(): IBaseQuery<onenote> & onenoteMethods;
|
|
864
880
|
}
|
|
865
881
|
export interface siteOData {
|
|
882
|
+
analytics: itemAnalytics;
|
|
866
883
|
columns: IBaseResults<columnDefinition>;
|
|
867
884
|
contentTypes: IBaseResults<contentType>;
|
|
885
|
+
drive: drive;
|
|
868
886
|
drives: IBaseResults<drive>;
|
|
869
887
|
externalColumns: IBaseResults<columnDefinition>;
|
|
870
888
|
items: IBaseResults<baseItem>;
|
|
@@ -873,7 +891,9 @@ export interface siteOData {
|
|
|
873
891
|
pages: IBaseResults<baseSitePage>;
|
|
874
892
|
permissions: IBaseResults<permission>;
|
|
875
893
|
sites: IBaseResults<site>;
|
|
894
|
+
termStore: store;
|
|
876
895
|
termStores: IBaseResults<store>;
|
|
896
|
+
onenote: onenote;
|
|
877
897
|
}
|
|
878
898
|
/*********************************************
|
|
879
899
|
* extension
|
|
@@ -1007,12 +1027,17 @@ export interface teamMethods {
|
|
|
1007
1027
|
export interface teamOData {
|
|
1008
1028
|
allChannels: IBaseResults<channel>;
|
|
1009
1029
|
channels: IBaseResults<channel>;
|
|
1030
|
+
group: group;
|
|
1010
1031
|
incomingChannels: IBaseResults<channel>;
|
|
1011
1032
|
installedApps: IBaseResults<teamsAppInstallation>;
|
|
1012
1033
|
members: IBaseResults<conversationMember>;
|
|
1013
1034
|
operations: IBaseResults<teamsAsyncOperation>;
|
|
1014
1035
|
permissionGrants: IBaseResults<resourceSpecificPermissionGrant>;
|
|
1036
|
+
photo: profilePhoto;
|
|
1037
|
+
primaryChannel: channel;
|
|
1015
1038
|
tags: IBaseResults<teamworkTag>;
|
|
1039
|
+
template: teamsTemplate;
|
|
1040
|
+
schedule: schedule;
|
|
1016
1041
|
}
|
|
1017
1042
|
/*********************************************
|
|
1018
1043
|
* identityGovernance
|
|
@@ -1030,7 +1055,12 @@ export interface identityGovernanceMethods {
|
|
|
1030
1055
|
privilegedAccess(): IBaseQuery<privilegedAccessRoot> & privilegedAccessRootMethods;
|
|
1031
1056
|
}
|
|
1032
1057
|
export interface identityGovernanceOData {
|
|
1033
|
-
|
|
1058
|
+
lifecycleWorkflows: lifecycleWorkflowsContainer;
|
|
1059
|
+
accessReviews: accessReviewSet;
|
|
1060
|
+
appConsent: appConsentApprovalRoute;
|
|
1061
|
+
termsOfUse: termsOfUseContainer;
|
|
1062
|
+
entitlementManagement: entitlementManagement;
|
|
1063
|
+
privilegedAccess: privilegedAccessRoot;
|
|
1034
1064
|
}
|
|
1035
1065
|
/*********************************************
|
|
1036
1066
|
* accessReviewSet
|
|
@@ -1124,6 +1154,7 @@ export interface entitlementManagementOData {
|
|
|
1124
1154
|
resourceRequests: IBaseResults<accessPackageResourceRequest>;
|
|
1125
1155
|
resourceRoleScopes: IBaseResults<accessPackageResourceRoleScope>;
|
|
1126
1156
|
resources: IBaseResults<accessPackageResource>;
|
|
1157
|
+
settings: entitlementManagementSettings;
|
|
1127
1158
|
}
|
|
1128
1159
|
/*********************************************
|
|
1129
1160
|
* privilegedAccessRoot
|
|
@@ -1136,7 +1167,7 @@ export interface privilegedAccessRootMethods {
|
|
|
1136
1167
|
group(): IBaseQuery<privilegedAccessGroup> & privilegedAccessGroupMethods;
|
|
1137
1168
|
}
|
|
1138
1169
|
export interface privilegedAccessRootOData {
|
|
1139
|
-
|
|
1170
|
+
group: privilegedAccessGroup;
|
|
1140
1171
|
}
|
|
1141
1172
|
/*********************************************
|
|
1142
1173
|
* user
|
|
@@ -1314,6 +1345,7 @@ export interface userOData {
|
|
|
1314
1345
|
createdObjects: IBaseResults<directoryObject>;
|
|
1315
1346
|
directReports: IBaseResults<directoryObject>;
|
|
1316
1347
|
licenseDetails: IBaseResults<licenseDetails>;
|
|
1348
|
+
manager: directoryObject;
|
|
1317
1349
|
memberOf: IBaseResults<directoryObject>;
|
|
1318
1350
|
oauth2PermissionGrants: IBaseResults<oAuth2PermissionGrant>;
|
|
1319
1351
|
ownedDevices: IBaseResults<directoryObject>;
|
|
@@ -1322,15 +1354,19 @@ export interface userOData {
|
|
|
1322
1354
|
scopedRoleMemberOf: IBaseResults<scopedRoleMembership>;
|
|
1323
1355
|
sponsors: IBaseResults<directoryObject>;
|
|
1324
1356
|
transitiveMemberOf: IBaseResults<directoryObject>;
|
|
1357
|
+
calendar: calendar;
|
|
1325
1358
|
calendarGroups: IBaseResults<calendarGroup>;
|
|
1326
1359
|
calendars: IBaseResults<calendar>;
|
|
1327
1360
|
calendarView: IBaseResults<event>;
|
|
1328
1361
|
contactFolders: IBaseResults<contactFolder>;
|
|
1329
1362
|
contacts: IBaseResults<contact>;
|
|
1330
1363
|
events: IBaseResults<event>;
|
|
1364
|
+
inferenceClassification: inferenceClassification;
|
|
1331
1365
|
mailFolders: IBaseResults<mailFolder>;
|
|
1332
1366
|
messages: IBaseResults<message>;
|
|
1367
|
+
outlook: outlookUser;
|
|
1333
1368
|
people: IBaseResults<person>;
|
|
1369
|
+
drive: drive;
|
|
1334
1370
|
drives: IBaseResults<drive>;
|
|
1335
1371
|
followedSites: IBaseResults<site>;
|
|
1336
1372
|
extensions: IBaseResults<extension>;
|
|
@@ -1338,12 +1374,24 @@ export interface userOData {
|
|
|
1338
1374
|
managedDevices: IBaseResults<managedDevice>;
|
|
1339
1375
|
managedAppRegistrations: IBaseResults<managedAppRegistration>;
|
|
1340
1376
|
deviceManagementTroubleshootingEvents: IBaseResults<deviceManagementTroubleshootingEvent>;
|
|
1377
|
+
planner: plannerUser;
|
|
1378
|
+
insights: itemInsights;
|
|
1379
|
+
settings: userSettings;
|
|
1380
|
+
onenote: onenote;
|
|
1381
|
+
cloudClipboard: cloudClipboardRoot;
|
|
1382
|
+
photo: profilePhoto;
|
|
1341
1383
|
photos: IBaseResults<profilePhoto>;
|
|
1342
1384
|
activities: IBaseResults<userActivity>;
|
|
1343
1385
|
onlineMeetings: IBaseResults<onlineMeeting>;
|
|
1386
|
+
presence: presence;
|
|
1387
|
+
authentication: authentication;
|
|
1344
1388
|
chats: IBaseResults<chat>;
|
|
1345
1389
|
joinedTeams: IBaseResults<team>;
|
|
1346
1390
|
permissionGrants: IBaseResults<resourceSpecificPermissionGrant>;
|
|
1391
|
+
teamwork: userTeamwork;
|
|
1392
|
+
solutions: userSolutionRoot;
|
|
1393
|
+
todo: todo;
|
|
1394
|
+
employeeExperience: employeeExperienceUser;
|
|
1347
1395
|
}
|
|
1348
1396
|
/*********************************************
|
|
1349
1397
|
* licenseDetails
|
|
@@ -1483,6 +1531,7 @@ export interface contactMethods {
|
|
|
1483
1531
|
export interface contactOData {
|
|
1484
1532
|
extensions: IBaseResults<extension>;
|
|
1485
1533
|
multiValueExtendedProperties: IBaseResults<multiValueLegacyExtendedProperty>;
|
|
1534
|
+
photo: profilePhoto;
|
|
1486
1535
|
singleValueExtendedProperties: IBaseResults<singleValueLegacyExtendedProperty>;
|
|
1487
1536
|
}
|
|
1488
1537
|
/*********************************************
|
|
@@ -1723,8 +1772,10 @@ export interface managedDeviceMethods {
|
|
|
1723
1772
|
export interface managedDeviceOData {
|
|
1724
1773
|
deviceCompliancePolicyStates: IBaseResults<deviceCompliancePolicyState>;
|
|
1725
1774
|
deviceConfigurationStates: IBaseResults<deviceConfigurationState>;
|
|
1775
|
+
deviceCategory: deviceCategory;
|
|
1726
1776
|
logCollectionRequests: IBaseResults<deviceLogCollectionResponse>;
|
|
1727
1777
|
users: IBaseResults<user>;
|
|
1778
|
+
windowsProtectionState: windowsProtectionState;
|
|
1728
1779
|
}
|
|
1729
1780
|
/*********************************************
|
|
1730
1781
|
* managedAppRegistration
|
|
@@ -1837,7 +1888,10 @@ export interface userSettingsMethods {
|
|
|
1837
1888
|
storage(): IBaseQuery<userStorage> & userStorageMethods;
|
|
1838
1889
|
}
|
|
1839
1890
|
export interface userSettingsOData {
|
|
1891
|
+
itemInsights: userInsightsSettings;
|
|
1840
1892
|
windows: IBaseResults<windowsSetting>;
|
|
1893
|
+
shiftPreferences: shiftPreferences;
|
|
1894
|
+
storage: userStorage;
|
|
1841
1895
|
}
|
|
1842
1896
|
/*********************************************
|
|
1843
1897
|
* cloudClipboardRoot
|
|
@@ -2021,6 +2075,7 @@ export interface chatMethods {
|
|
|
2021
2075
|
}
|
|
2022
2076
|
export interface chatOData {
|
|
2023
2077
|
installedApps: IBaseResults<teamsAppInstallation>;
|
|
2078
|
+
lastMessagePreview: chatMessageInfo;
|
|
2024
2079
|
members: IBaseResults<conversationMember>;
|
|
2025
2080
|
messages: IBaseResults<chatMessage>;
|
|
2026
2081
|
permissionGrants: IBaseResults<resourceSpecificPermissionGrant>;
|
|
@@ -2056,7 +2111,7 @@ export interface userSolutionRootMethods {
|
|
|
2056
2111
|
workingTimeSchedule(): IBaseQuery<workingTimeSchedule> & workingTimeScheduleMethods;
|
|
2057
2112
|
}
|
|
2058
2113
|
export interface userSolutionRootOData {
|
|
2059
|
-
|
|
2114
|
+
workingTimeSchedule: workingTimeSchedule;
|
|
2060
2115
|
}
|
|
2061
2116
|
/*********************************************
|
|
2062
2117
|
* todo
|
|
@@ -2262,7 +2317,9 @@ export interface membershipOutlierInsightMethods {
|
|
|
2262
2317
|
member(): IBaseQuery<directoryObject> & directoryObjectMethods;
|
|
2263
2318
|
}
|
|
2264
2319
|
export interface membershipOutlierInsightOData {
|
|
2265
|
-
|
|
2320
|
+
container: directoryObject;
|
|
2321
|
+
lastModifiedBy: user;
|
|
2322
|
+
member: directoryObject;
|
|
2266
2323
|
}
|
|
2267
2324
|
/*********************************************
|
|
2268
2325
|
* relyingPartyDetailedSummary
|
|
@@ -2308,10 +2365,13 @@ export interface reportRootMethods {
|
|
|
2308
2365
|
security(): IBaseQuery<securityReportsRoot> & securityReportsRootMethods;
|
|
2309
2366
|
}
|
|
2310
2367
|
export interface reportRootOData {
|
|
2368
|
+
authenticationMethods: authenticationMethodsRoot;
|
|
2369
|
+
partners: partners;
|
|
2311
2370
|
dailyPrintUsageByPrinter: IBaseResults<printUsageByPrinter>;
|
|
2312
2371
|
dailyPrintUsageByUser: IBaseResults<printUsageByUser>;
|
|
2313
2372
|
monthlyPrintUsageByPrinter: IBaseResults<printUsageByPrinter>;
|
|
2314
2373
|
monthlyPrintUsageByUser: IBaseResults<printUsageByUser>;
|
|
2374
|
+
security: securityReportsRoot;
|
|
2315
2375
|
}
|
|
2316
2376
|
/*********************************************
|
|
2317
2377
|
* partners
|
|
@@ -2324,7 +2384,7 @@ export interface partnersMethods {
|
|
|
2324
2384
|
billing(): IBaseQuery<billing> & billingMethods;
|
|
2325
2385
|
}
|
|
2326
2386
|
export interface partnersOData {
|
|
2327
|
-
|
|
2387
|
+
billing: billing;
|
|
2328
2388
|
}
|
|
2329
2389
|
/*********************************************
|
|
2330
2390
|
* printUsage
|
|
@@ -2410,6 +2470,7 @@ export interface invitationMethods {
|
|
|
2410
2470
|
invitedUserSponsors(id: string | number): IBaseQuery<directoryObject> & directoryObjectMethods;
|
|
2411
2471
|
}
|
|
2412
2472
|
export interface invitationOData {
|
|
2473
|
+
invitedUser: user;
|
|
2413
2474
|
invitedUserSponsors: IBaseResults<directoryObject>;
|
|
2414
2475
|
}
|
|
2415
2476
|
/*********************************************
|
|
@@ -2502,9 +2563,11 @@ export interface servicePrincipalOData {
|
|
|
2502
2563
|
oauth2PermissionGrants: IBaseResults<oAuth2PermissionGrant>;
|
|
2503
2564
|
ownedObjects: IBaseResults<directoryObject>;
|
|
2504
2565
|
owners: IBaseResults<directoryObject>;
|
|
2566
|
+
remoteDesktopSecurityConfiguration: remoteDesktopSecurityConfiguration;
|
|
2505
2567
|
tokenIssuancePolicies: IBaseResults<tokenIssuancePolicy>;
|
|
2506
2568
|
tokenLifetimePolicies: IBaseResults<tokenLifetimePolicy>;
|
|
2507
2569
|
transitiveMemberOf: IBaseResults<directoryObject>;
|
|
2570
|
+
synchronization: synchronization;
|
|
2508
2571
|
}
|
|
2509
2572
|
/*********************************************
|
|
2510
2573
|
* applicationTemplate
|
|
@@ -2716,6 +2779,7 @@ export interface conditionalAccessRootMethods {
|
|
|
2716
2779
|
templates(id: string | number): IBaseQuery<conditionalAccessTemplate> & conditionalAccessTemplateMethods;
|
|
2717
2780
|
}
|
|
2718
2781
|
export interface conditionalAccessRootOData {
|
|
2782
|
+
authenticationStrength: authenticationStrengthRoot;
|
|
2719
2783
|
authenticationContextClassReferences: IBaseResults<authenticationContextClassReference>;
|
|
2720
2784
|
namedLocations: IBaseResults<namedLocation>;
|
|
2721
2785
|
policies: IBaseResults<conditionalAccessPolicy>;
|
|
@@ -2901,16 +2965,24 @@ export interface policyRootMethods {
|
|
|
2901
2965
|
roleManagementPolicyAssignments(id: string | number): IBaseQuery<unifiedRoleManagementPolicyAssignment> & unifiedRoleManagementPolicyAssignmentMethods;
|
|
2902
2966
|
}
|
|
2903
2967
|
export interface policyRootOData {
|
|
2968
|
+
authenticationMethodsPolicy: authenticationMethodsPolicy;
|
|
2904
2969
|
authenticationStrengthPolicies: IBaseResults<authenticationStrengthPolicy>;
|
|
2970
|
+
authenticationFlowsPolicy: authenticationFlowsPolicy;
|
|
2971
|
+
deviceRegistrationPolicy: deviceRegistrationPolicy;
|
|
2905
2972
|
activityBasedTimeoutPolicies: IBaseResults<activityBasedTimeoutPolicy>;
|
|
2906
2973
|
appManagementPolicies: IBaseResults<appManagementPolicy>;
|
|
2974
|
+
authorizationPolicy: authorizationPolicy;
|
|
2907
2975
|
claimsMappingPolicies: IBaseResults<claimsMappingPolicy>;
|
|
2976
|
+
crossTenantAccessPolicy: crossTenantAccessPolicy;
|
|
2977
|
+
defaultAppManagementPolicy: tenantAppManagementPolicy;
|
|
2908
2978
|
homeRealmDiscoveryPolicies: IBaseResults<homeRealmDiscoveryPolicy>;
|
|
2909
2979
|
permissionGrantPolicies: IBaseResults<permissionGrantPolicy>;
|
|
2910
2980
|
tokenIssuancePolicies: IBaseResults<tokenIssuancePolicy>;
|
|
2911
2981
|
tokenLifetimePolicies: IBaseResults<tokenLifetimePolicy>;
|
|
2912
2982
|
featureRolloutPolicies: IBaseResults<featureRolloutPolicy>;
|
|
2983
|
+
adminConsentRequestPolicy: adminConsentRequestPolicy;
|
|
2913
2984
|
conditionalAccessPolicies: IBaseResults<conditionalAccessPolicy>;
|
|
2985
|
+
identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy;
|
|
2914
2986
|
roleManagementPolicies: IBaseResults<unifiedRoleManagementPolicy>;
|
|
2915
2987
|
roleManagementPolicyAssignments: IBaseResults<unifiedRoleManagementPolicyAssignment>;
|
|
2916
2988
|
}
|
|
@@ -2995,7 +3067,9 @@ export interface crossTenantAccessPolicyMethods {
|
|
|
2995
3067
|
templates(): IBaseQuery<policyTemplate> & policyTemplateMethods;
|
|
2996
3068
|
}
|
|
2997
3069
|
export interface crossTenantAccessPolicyOData {
|
|
3070
|
+
default: crossTenantAccessPolicyConfigurationDefault;
|
|
2998
3071
|
partners: IBaseResults<crossTenantAccessPolicyConfigurationPartner>;
|
|
3072
|
+
templates: policyTemplate;
|
|
2999
3073
|
}
|
|
3000
3074
|
/*********************************************
|
|
3001
3075
|
* tenantAppManagementPolicy
|
|
@@ -3115,7 +3189,7 @@ export interface unifiedRoleManagementPolicyAssignmentMethods {
|
|
|
3115
3189
|
policy(): IBaseQuery<unifiedRoleManagementPolicy> & unifiedRoleManagementPolicyMethods;
|
|
3116
3190
|
}
|
|
3117
3191
|
export interface unifiedRoleManagementPolicyAssignmentOData {
|
|
3118
|
-
|
|
3192
|
+
policy: unifiedRoleManagementPolicy;
|
|
3119
3193
|
}
|
|
3120
3194
|
/*********************************************
|
|
3121
3195
|
* smsAuthenticationMethodConfiguration
|
|
@@ -3262,6 +3336,7 @@ export interface informationProtectionMethods {
|
|
|
3262
3336
|
threatAssessmentRequests(id: string | number): IBaseQuery<threatAssessmentRequest> & threatAssessmentRequestMethods;
|
|
3263
3337
|
}
|
|
3264
3338
|
export interface informationProtectionOData {
|
|
3339
|
+
bitlocker: bitlocker;
|
|
3265
3340
|
threatAssessmentRequests: IBaseResults<threatAssessmentRequest>;
|
|
3266
3341
|
}
|
|
3267
3342
|
/*********************************************
|
|
@@ -3522,6 +3597,8 @@ export interface solutionsRootMethods {
|
|
|
3522
3597
|
export interface solutionsRootOData {
|
|
3523
3598
|
bookingBusinesses: IBaseResults<bookingBusiness>;
|
|
3524
3599
|
bookingCurrencies: IBaseResults<bookingCurrency>;
|
|
3600
|
+
backupRestore: backupRestoreRoot;
|
|
3601
|
+
virtualEvents: virtualEventsRoot;
|
|
3525
3602
|
}
|
|
3526
3603
|
/*********************************************
|
|
3527
3604
|
* backupRestoreRoot
|
|
@@ -3922,18 +3999,25 @@ export interface deviceManagementMethods {
|
|
|
3922
3999
|
}
|
|
3923
4000
|
export interface deviceManagementOData {
|
|
3924
4001
|
auditEvents: IBaseResults<auditEvent>;
|
|
4002
|
+
virtualEndpoint: virtualEndpoint;
|
|
3925
4003
|
termsAndConditions: IBaseResults<termsAndConditions>;
|
|
3926
4004
|
deviceCompliancePolicies: IBaseResults<deviceCompliancePolicy>;
|
|
4005
|
+
deviceCompliancePolicyDeviceStateSummary: deviceCompliancePolicyDeviceStateSummary;
|
|
3927
4006
|
deviceCompliancePolicySettingStateSummaries: IBaseResults<deviceCompliancePolicySettingStateSummary>;
|
|
4007
|
+
deviceConfigurationDeviceStateSummaries: deviceConfigurationDeviceStateSummary;
|
|
3928
4008
|
deviceConfigurations: IBaseResults<deviceConfiguration>;
|
|
3929
4009
|
iosUpdateStatuses: IBaseResults<iosUpdateDeviceStatus>;
|
|
4010
|
+
softwareUpdateStatusSummary: softwareUpdateStatusSummary;
|
|
3930
4011
|
complianceManagementPartners: IBaseResults<complianceManagementPartner>;
|
|
4012
|
+
conditionalAccessSettings: onPremisesConditionalAccessSettings;
|
|
3931
4013
|
deviceCategories: IBaseResults<deviceCategory>;
|
|
3932
4014
|
deviceEnrollmentConfigurations: IBaseResults<deviceEnrollmentConfiguration>;
|
|
3933
4015
|
deviceManagementPartners: IBaseResults<deviceManagementPartner>;
|
|
3934
4016
|
exchangeConnectors: IBaseResults<deviceManagementExchangeConnector>;
|
|
3935
4017
|
mobileThreatDefenseConnectors: IBaseResults<mobileThreatDefenseConnector>;
|
|
4018
|
+
applePushNotificationCertificate: applePushNotificationCertificate;
|
|
3936
4019
|
detectedApps: IBaseResults<detectedApp>;
|
|
4020
|
+
managedDeviceOverview: managedDeviceOverview;
|
|
3937
4021
|
managedDevices: IBaseResults<managedDevice>;
|
|
3938
4022
|
mobileAppTroubleshootingEvents: IBaseResults<mobileAppTroubleshootingEvent>;
|
|
3939
4023
|
userExperienceAnalyticsAppHealthApplicationPerformance: IBaseResults<userExperienceAnalyticsAppHealthApplicationPerformance>;
|
|
@@ -3944,6 +4028,7 @@ export interface deviceManagementOData {
|
|
|
3944
4028
|
userExperienceAnalyticsAppHealthDevicePerformance: IBaseResults<userExperienceAnalyticsAppHealthDevicePerformance>;
|
|
3945
4029
|
userExperienceAnalyticsAppHealthDevicePerformanceDetails: IBaseResults<userExperienceAnalyticsAppHealthDevicePerformanceDetails>;
|
|
3946
4030
|
userExperienceAnalyticsAppHealthOSVersionPerformance: IBaseResults<userExperienceAnalyticsAppHealthOSVersionPerformance>;
|
|
4031
|
+
userExperienceAnalyticsAppHealthOverview: userExperienceAnalyticsCategory;
|
|
3947
4032
|
userExperienceAnalyticsBaselines: IBaseResults<userExperienceAnalyticsBaseline>;
|
|
3948
4033
|
userExperienceAnalyticsCategories: IBaseResults<userExperienceAnalyticsCategory>;
|
|
3949
4034
|
userExperienceAnalyticsDevicePerformance: IBaseResults<userExperienceAnalyticsDevicePerformance>;
|
|
@@ -3953,7 +4038,9 @@ export interface deviceManagementOData {
|
|
|
3953
4038
|
userExperienceAnalyticsDeviceStartupProcessPerformance: IBaseResults<userExperienceAnalyticsDeviceStartupProcessPerformance>;
|
|
3954
4039
|
userExperienceAnalyticsMetricHistory: IBaseResults<userExperienceAnalyticsMetricHistory>;
|
|
3955
4040
|
userExperienceAnalyticsModelScores: IBaseResults<userExperienceAnalyticsModelScores>;
|
|
4041
|
+
userExperienceAnalyticsOverview: userExperienceAnalyticsOverview;
|
|
3956
4042
|
userExperienceAnalyticsScoreHistory: IBaseResults<userExperienceAnalyticsScoreHistory>;
|
|
4043
|
+
userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric: userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric;
|
|
3957
4044
|
userExperienceAnalyticsWorkFromAnywhereMetrics: IBaseResults<userExperienceAnalyticsWorkFromAnywhereMetric>;
|
|
3958
4045
|
userExperienceAnalyticsWorkFromAnywhereModelPerformance: IBaseResults<userExperienceAnalyticsWorkFromAnywhereModelPerformance>;
|
|
3959
4046
|
windowsMalwareInformation: IBaseResults<windowsMalwareInformation>;
|
|
@@ -3964,6 +4051,7 @@ export interface deviceManagementOData {
|
|
|
3964
4051
|
roleAssignments: IBaseResults<deviceAndAppManagementRoleAssignment>;
|
|
3965
4052
|
roleDefinitions: IBaseResults<roleDefinition>;
|
|
3966
4053
|
remoteAssistancePartners: IBaseResults<remoteAssistancePartner>;
|
|
4054
|
+
reports: deviceManagementReports;
|
|
3967
4055
|
telecomExpenseManagementPartners: IBaseResults<telecomExpenseManagementPartner>;
|
|
3968
4056
|
troubleshootingEvents: IBaseResults<deviceManagementTroubleshootingEvent>;
|
|
3969
4057
|
windowsInformationProtectionAppLearningSummaries: IBaseResults<windowsInformationProtectionAppLearningSummary>;
|
|
@@ -4077,8 +4165,10 @@ export interface deviceCompliancePolicyOData {
|
|
|
4077
4165
|
assignments: IBaseResults<deviceCompliancePolicyAssignment>;
|
|
4078
4166
|
deviceSettingStateSummaries: IBaseResults<settingStateDeviceSummary>;
|
|
4079
4167
|
deviceStatuses: IBaseResults<deviceComplianceDeviceStatus>;
|
|
4168
|
+
deviceStatusOverview: deviceComplianceDeviceOverview;
|
|
4080
4169
|
scheduledActionsForRule: IBaseResults<deviceComplianceScheduledActionForRule>;
|
|
4081
4170
|
userStatuses: IBaseResults<deviceComplianceUserStatus>;
|
|
4171
|
+
userStatusOverview: deviceComplianceUserOverview;
|
|
4082
4172
|
}
|
|
4083
4173
|
/*********************************************
|
|
4084
4174
|
* deviceCompliancePolicyDeviceStateSummary
|
|
@@ -4170,7 +4260,9 @@ export interface deviceConfigurationOData {
|
|
|
4170
4260
|
assignments: IBaseResults<deviceConfigurationAssignment>;
|
|
4171
4261
|
deviceSettingStateSummaries: IBaseResults<settingStateDeviceSummary>;
|
|
4172
4262
|
deviceStatuses: IBaseResults<deviceConfigurationDeviceStatus>;
|
|
4263
|
+
deviceStatusOverview: deviceConfigurationDeviceOverview;
|
|
4173
4264
|
userStatuses: IBaseResults<deviceConfigurationUserStatus>;
|
|
4265
|
+
userStatusOverview: deviceConfigurationUserOverview;
|
|
4174
4266
|
}
|
|
4175
4267
|
/*********************************************
|
|
4176
4268
|
* iosUpdateDeviceStatus
|
|
@@ -4623,7 +4715,13 @@ export interface userExperienceAnalyticsBaselineMethods {
|
|
|
4623
4715
|
workFromAnywhereMetrics(): IBaseQuery<userExperienceAnalyticsCategory> & userExperienceAnalyticsCategoryMethods;
|
|
4624
4716
|
}
|
|
4625
4717
|
export interface userExperienceAnalyticsBaselineOData {
|
|
4626
|
-
|
|
4718
|
+
appHealthMetrics: userExperienceAnalyticsCategory;
|
|
4719
|
+
batteryHealthMetrics: userExperienceAnalyticsCategory;
|
|
4720
|
+
bestPracticesMetrics: userExperienceAnalyticsCategory;
|
|
4721
|
+
deviceBootPerformanceMetrics: userExperienceAnalyticsCategory;
|
|
4722
|
+
rebootAnalyticsMetrics: userExperienceAnalyticsCategory;
|
|
4723
|
+
resourcePerformanceMetrics: userExperienceAnalyticsCategory;
|
|
4724
|
+
workFromAnywhereMetrics: userExperienceAnalyticsCategory;
|
|
4627
4725
|
}
|
|
4628
4726
|
/*********************************************
|
|
4629
4727
|
* userExperienceAnalyticsDevicePerformance
|
|
@@ -4972,7 +5070,7 @@ export interface roleAssignmentMethods {
|
|
|
4972
5070
|
roleDefinition(): IBaseQuery<roleDefinition> & roleDefinitionMethods;
|
|
4973
5071
|
}
|
|
4974
5072
|
export interface roleAssignmentOData {
|
|
4975
|
-
|
|
5073
|
+
roleDefinition: roleDefinition;
|
|
4976
5074
|
}
|
|
4977
5075
|
/*********************************************
|
|
4978
5076
|
* deviceAndAppManagementRoleAssignment
|
|
@@ -5152,6 +5250,7 @@ export interface subjectRightsRequestOData {
|
|
|
5152
5250
|
approvers: IBaseResults<user>;
|
|
5153
5251
|
collaborators: IBaseResults<user>;
|
|
5154
5252
|
notes: IBaseResults<authoredNote>;
|
|
5253
|
+
team: team;
|
|
5155
5254
|
}
|
|
5156
5255
|
/*********************************************
|
|
5157
5256
|
* security
|
|
@@ -5183,11 +5282,18 @@ export interface securityMethods {
|
|
|
5183
5282
|
}
|
|
5184
5283
|
export interface securityOData {
|
|
5185
5284
|
subjectRightsRequests: IBaseResults<subjectRightsRequest>;
|
|
5285
|
+
cases: casesRoot;
|
|
5286
|
+
identities: identityContainer;
|
|
5186
5287
|
alerts_v2: IBaseResults<alert>;
|
|
5187
5288
|
incidents: IBaseResults<incident>;
|
|
5289
|
+
attackSimulation: attackSimulationRoot;
|
|
5290
|
+
labels: labelsRoot;
|
|
5291
|
+
triggers: triggersRoot;
|
|
5292
|
+
triggerTypes: triggerTypesRoot;
|
|
5188
5293
|
alerts: IBaseResults<alert>;
|
|
5189
5294
|
secureScoreControlProfiles: IBaseResults<secureScoreControlProfile>;
|
|
5190
5295
|
secureScores: IBaseResults<secureScore>;
|
|
5296
|
+
threatIntelligence: threatIntelligence;
|
|
5191
5297
|
}
|
|
5192
5298
|
/*********************************************
|
|
5193
5299
|
* attackSimulationRoot
|
|
@@ -5349,6 +5455,7 @@ export interface channelMethods {
|
|
|
5349
5455
|
tabs(id: string | number): IBaseQuery<teamsTab> & teamsTabMethods;
|
|
5350
5456
|
}
|
|
5351
5457
|
export interface channelOData {
|
|
5458
|
+
filesFolder: driveItem;
|
|
5352
5459
|
members: IBaseResults<conversationMember>;
|
|
5353
5460
|
messages: IBaseResults<chatMessage>;
|
|
5354
5461
|
sharedWithTeams: IBaseResults<sharedWithChannelTeamInfo>;
|
|
@@ -5366,7 +5473,8 @@ export interface teamsAppInstallationMethods {
|
|
|
5366
5473
|
teamsAppDefinition(): IBaseQuery<teamsAppDefinition> & teamsAppDefinitionMethods;
|
|
5367
5474
|
}
|
|
5368
5475
|
export interface teamsAppInstallationOData {
|
|
5369
|
-
|
|
5476
|
+
teamsApp: teamsApp;
|
|
5477
|
+
teamsAppDefinition: teamsAppDefinition;
|
|
5370
5478
|
}
|
|
5371
5479
|
/*********************************************
|
|
5372
5480
|
* conversationMember
|
|
@@ -5508,7 +5616,9 @@ export interface itemAnalyticsMethods {
|
|
|
5508
5616
|
lastSevenDays(): IBaseQuery<itemActivityStat> & itemActivityStatMethods;
|
|
5509
5617
|
}
|
|
5510
5618
|
export interface itemAnalyticsOData {
|
|
5619
|
+
allTime: itemActivityStat;
|
|
5511
5620
|
itemActivityStats: IBaseResults<itemActivityStat>;
|
|
5621
|
+
lastSevenDays: itemActivityStat;
|
|
5512
5622
|
}
|
|
5513
5623
|
/*********************************************
|
|
5514
5624
|
* columnDefinition
|
|
@@ -5552,7 +5662,8 @@ export interface columnDefinitionMethods {
|
|
|
5552
5662
|
update(values: any): IBaseQuery<void>;
|
|
5553
5663
|
}
|
|
5554
5664
|
export interface columnDefinitionOData {
|
|
5555
|
-
|
|
5665
|
+
sourceColumn: columnDefinition;
|
|
5666
|
+
update(values: any): IBaseQuery<void>;
|
|
5556
5667
|
}
|
|
5557
5668
|
/*********************************************
|
|
5558
5669
|
* contentType
|
|
@@ -5587,10 +5698,12 @@ export interface contentTypeMethods {
|
|
|
5587
5698
|
update(values: any): IBaseQuery<void>;
|
|
5588
5699
|
}
|
|
5589
5700
|
export interface contentTypeOData {
|
|
5701
|
+
base: contentType;
|
|
5590
5702
|
baseTypes: IBaseResults<contentType>;
|
|
5591
5703
|
columnLinks: IBaseResults<columnLink>;
|
|
5592
5704
|
columnPositions: IBaseResults<columnDefinition>;
|
|
5593
5705
|
columns: IBaseResults<columnDefinition>;
|
|
5706
|
+
update(values: any): IBaseQuery<void>;
|
|
5594
5707
|
}
|
|
5595
5708
|
/*********************************************
|
|
5596
5709
|
* list
|
|
@@ -5619,9 +5732,11 @@ export interface listMethods {
|
|
|
5619
5732
|
export interface listOData {
|
|
5620
5733
|
columns: IBaseResults<columnDefinition>;
|
|
5621
5734
|
contentTypes: IBaseResults<contentType>;
|
|
5735
|
+
drive: drive;
|
|
5622
5736
|
items: IBaseResults<listItem>;
|
|
5623
5737
|
operations: IBaseResults<richLongRunningOperation>;
|
|
5624
5738
|
subscriptions: IBaseResults<subscription>;
|
|
5739
|
+
update(values: any): IBaseQuery<void>;
|
|
5625
5740
|
}
|
|
5626
5741
|
/*********************************************
|
|
5627
5742
|
* longRunningOperation
|
|
@@ -5692,7 +5807,7 @@ export interface permissionMethods {
|
|
|
5692
5807
|
update(values: any): IBaseQuery<void>;
|
|
5693
5808
|
}
|
|
5694
5809
|
export interface permissionOData {
|
|
5695
|
-
|
|
5810
|
+
update(values: any): IBaseQuery<void>;
|
|
5696
5811
|
}
|
|
5697
5812
|
/*********************************************
|
|
5698
5813
|
* authenticationConditionApplication
|
|
@@ -5908,7 +6023,7 @@ export interface identityUserFlowAttributeAssignmentMethods {
|
|
|
5908
6023
|
userAttribute(): IBaseQuery<identityUserFlowAttribute> & identityUserFlowAttributeMethods;
|
|
5909
6024
|
}
|
|
5910
6025
|
export interface identityUserFlowAttributeAssignmentOData {
|
|
5911
|
-
|
|
6026
|
+
userAttribute: identityUserFlowAttribute;
|
|
5912
6027
|
}
|
|
5913
6028
|
/*********************************************
|
|
5914
6029
|
* builtInIdentityProvider
|
|
@@ -6322,7 +6437,7 @@ export interface crossTenantAccessPolicyConfigurationPartnerMethods {
|
|
|
6322
6437
|
identitySynchronization(): IBaseQuery<crossTenantIdentitySyncPolicyPartner> & crossTenantIdentitySyncPolicyPartnerMethods;
|
|
6323
6438
|
}
|
|
6324
6439
|
export interface crossTenantAccessPolicyConfigurationPartnerOData {
|
|
6325
|
-
|
|
6440
|
+
identitySynchronization: crossTenantIdentitySyncPolicyPartner;
|
|
6326
6441
|
}
|
|
6327
6442
|
/*********************************************
|
|
6328
6443
|
* policyTemplate
|
|
@@ -6336,7 +6451,8 @@ export interface policyTemplateMethods {
|
|
|
6336
6451
|
multiTenantOrganizationPartnerConfiguration(): IBaseQuery<multiTenantOrganizationPartnerConfigurationTemplate> & multiTenantOrganizationPartnerConfigurationTemplateMethods;
|
|
6337
6452
|
}
|
|
6338
6453
|
export interface policyTemplateOData {
|
|
6339
|
-
|
|
6454
|
+
multiTenantOrganizationIdentitySynchronization: multiTenantOrganizationIdentitySyncPolicyTemplate;
|
|
6455
|
+
multiTenantOrganizationPartnerConfiguration: multiTenantOrganizationPartnerConfigurationTemplate;
|
|
6340
6456
|
}
|
|
6341
6457
|
/*********************************************
|
|
6342
6458
|
* crossTenantIdentitySyncPolicyPartner
|
|
@@ -6490,6 +6606,7 @@ export interface domainMethods {
|
|
|
6490
6606
|
export interface domainOData {
|
|
6491
6607
|
domainNameReferences: IBaseResults<directoryObject>;
|
|
6492
6608
|
federationConfiguration: IBaseResults<internalDomainFederation>;
|
|
6609
|
+
rootDomain: domain;
|
|
6493
6610
|
serviceConfigurationRecords: IBaseResults<domainDnsRecord>;
|
|
6494
6611
|
verificationDnsRecords: IBaseResults<domainDnsRecord>;
|
|
6495
6612
|
}
|
|
@@ -6661,6 +6778,7 @@ export interface multiTenantOrganizationMethods {
|
|
|
6661
6778
|
tenants(id: string | number): IBaseQuery<multiTenantOrganizationMember> & multiTenantOrganizationMemberMethods;
|
|
6662
6779
|
}
|
|
6663
6780
|
export interface multiTenantOrganizationOData {
|
|
6781
|
+
joinRequest: multiTenantOrganizationJoinRequestRecord;
|
|
6664
6782
|
tenants: IBaseResults<multiTenantOrganizationMember>;
|
|
6665
6783
|
}
|
|
6666
6784
|
/*********************************************
|
|
@@ -6770,6 +6888,7 @@ export interface organizationMethods {
|
|
|
6770
6888
|
extensions(id: string | number): IBaseQuery<extension> & extensionMethods;
|
|
6771
6889
|
}
|
|
6772
6890
|
export interface organizationOData {
|
|
6891
|
+
branding: organizationalBranding;
|
|
6773
6892
|
certificateBasedAuthConfiguration: IBaseResults<certificateBasedAuthConfiguration>;
|
|
6774
6893
|
extensions: IBaseResults<extension>;
|
|
6775
6894
|
}
|
|
@@ -6875,6 +6994,7 @@ export interface orgContactMethods {
|
|
|
6875
6994
|
}
|
|
6876
6995
|
export interface orgContactOData {
|
|
6877
6996
|
directReports: IBaseResults<directoryObject>;
|
|
6997
|
+
manager: directoryObject;
|
|
6878
6998
|
memberOf: IBaseResults<directoryObject>;
|
|
6879
6999
|
transitiveMemberOf: IBaseResults<directoryObject>;
|
|
6880
7000
|
}
|
|
@@ -6968,7 +7088,10 @@ export interface unifiedRoleAssignmentMethods {
|
|
|
6968
7088
|
roleDefinition(): IBaseQuery<unifiedRoleDefinition> & unifiedRoleDefinitionMethods;
|
|
6969
7089
|
}
|
|
6970
7090
|
export interface unifiedRoleAssignmentOData {
|
|
6971
|
-
|
|
7091
|
+
appScope: appScope;
|
|
7092
|
+
directoryScope: directoryObject;
|
|
7093
|
+
principal: directoryObject;
|
|
7094
|
+
roleDefinition: unifiedRoleDefinition;
|
|
6972
7095
|
}
|
|
6973
7096
|
/*********************************************
|
|
6974
7097
|
* unifiedRoleDefinition
|
|
@@ -7008,7 +7131,10 @@ export interface unifiedRoleScheduleInstanceBaseMethods {
|
|
|
7008
7131
|
roleDefinition(): IBaseQuery<unifiedRoleDefinition> & unifiedRoleDefinitionMethods;
|
|
7009
7132
|
}
|
|
7010
7133
|
export interface unifiedRoleScheduleInstanceBaseOData {
|
|
7011
|
-
|
|
7134
|
+
appScope: appScope;
|
|
7135
|
+
directoryScope: directoryObject;
|
|
7136
|
+
principal: directoryObject;
|
|
7137
|
+
roleDefinition: unifiedRoleDefinition;
|
|
7012
7138
|
}
|
|
7013
7139
|
/*********************************************
|
|
7014
7140
|
* unifiedRoleAssignmentScheduleInstance
|
|
@@ -7026,7 +7152,7 @@ export interface unifiedRoleAssignmentScheduleInstanceMethods {
|
|
|
7026
7152
|
activatedUsing(): IBaseQuery<unifiedRoleEligibilityScheduleInstance> & unifiedRoleEligibilityScheduleInstanceMethods;
|
|
7027
7153
|
}
|
|
7028
7154
|
export interface unifiedRoleAssignmentScheduleInstanceOData {
|
|
7029
|
-
|
|
7155
|
+
activatedUsing: unifiedRoleEligibilityScheduleInstance;
|
|
7030
7156
|
}
|
|
7031
7157
|
/*********************************************
|
|
7032
7158
|
* request
|
|
@@ -7071,7 +7197,12 @@ export interface unifiedRoleAssignmentScheduleRequestMethods {
|
|
|
7071
7197
|
targetSchedule(): IBaseQuery<unifiedRoleAssignmentSchedule> & unifiedRoleAssignmentScheduleMethods;
|
|
7072
7198
|
}
|
|
7073
7199
|
export interface unifiedRoleAssignmentScheduleRequestOData {
|
|
7074
|
-
|
|
7200
|
+
activatedUsing: unifiedRoleEligibilitySchedule;
|
|
7201
|
+
appScope: appScope;
|
|
7202
|
+
directoryScope: directoryObject;
|
|
7203
|
+
principal: directoryObject;
|
|
7204
|
+
roleDefinition: unifiedRoleDefinition;
|
|
7205
|
+
targetSchedule: unifiedRoleAssignmentSchedule;
|
|
7075
7206
|
}
|
|
7076
7207
|
/*********************************************
|
|
7077
7208
|
* unifiedRoleScheduleBase
|
|
@@ -7094,7 +7225,10 @@ export interface unifiedRoleScheduleBaseMethods {
|
|
|
7094
7225
|
roleDefinition(): IBaseQuery<unifiedRoleDefinition> & unifiedRoleDefinitionMethods;
|
|
7095
7226
|
}
|
|
7096
7227
|
export interface unifiedRoleScheduleBaseOData {
|
|
7097
|
-
|
|
7228
|
+
appScope: appScope;
|
|
7229
|
+
directoryScope: directoryObject;
|
|
7230
|
+
principal: directoryObject;
|
|
7231
|
+
roleDefinition: unifiedRoleDefinition;
|
|
7098
7232
|
}
|
|
7099
7233
|
/*********************************************
|
|
7100
7234
|
* unifiedRoleAssignmentSchedule
|
|
@@ -7109,7 +7243,7 @@ export interface unifiedRoleAssignmentScheduleMethods {
|
|
|
7109
7243
|
activatedUsing(): IBaseQuery<unifiedRoleEligibilitySchedule> & unifiedRoleEligibilityScheduleMethods;
|
|
7110
7244
|
}
|
|
7111
7245
|
export interface unifiedRoleAssignmentScheduleOData {
|
|
7112
|
-
|
|
7246
|
+
activatedUsing: unifiedRoleEligibilitySchedule;
|
|
7113
7247
|
}
|
|
7114
7248
|
/*********************************************
|
|
7115
7249
|
* unifiedRoleEligibilityScheduleInstance
|
|
@@ -7151,7 +7285,11 @@ export interface unifiedRoleEligibilityScheduleRequestMethods {
|
|
|
7151
7285
|
targetSchedule(): IBaseQuery<unifiedRoleEligibilitySchedule> & unifiedRoleEligibilityScheduleMethods;
|
|
7152
7286
|
}
|
|
7153
7287
|
export interface unifiedRoleEligibilityScheduleRequestOData {
|
|
7154
|
-
|
|
7288
|
+
appScope: appScope;
|
|
7289
|
+
directoryScope: directoryObject;
|
|
7290
|
+
principal: directoryObject;
|
|
7291
|
+
roleDefinition: unifiedRoleDefinition;
|
|
7292
|
+
targetSchedule: unifiedRoleEligibilitySchedule;
|
|
7155
7293
|
}
|
|
7156
7294
|
/*********************************************
|
|
7157
7295
|
* unifiedRoleEligibilitySchedule
|
|
@@ -7192,7 +7330,8 @@ export interface roleManagementMethods {
|
|
|
7192
7330
|
entitlementManagement(): IBaseQuery<rbacApplication> & rbacApplicationMethods;
|
|
7193
7331
|
}
|
|
7194
7332
|
export interface roleManagementOData {
|
|
7195
|
-
|
|
7333
|
+
directory: rbacApplication;
|
|
7334
|
+
entitlementManagement: rbacApplication;
|
|
7196
7335
|
}
|
|
7197
7336
|
/*********************************************
|
|
7198
7337
|
* samlOrWsFedExternalDomainFederation
|
|
@@ -7245,6 +7384,7 @@ export interface tenantRelationshipMethods {
|
|
|
7245
7384
|
delegatedAdminRelationships(id: string | number): IBaseQuery<delegatedAdminRelationship> & delegatedAdminRelationshipMethods;
|
|
7246
7385
|
}
|
|
7247
7386
|
export interface tenantRelationshipOData {
|
|
7387
|
+
multiTenantOrganization: multiTenantOrganization;
|
|
7248
7388
|
delegatedAdminCustomers: IBaseResults<delegatedAdminCustomer>;
|
|
7249
7389
|
delegatedAdminRelationships: IBaseResults<delegatedAdminRelationship>;
|
|
7250
7390
|
}
|
|
@@ -7326,7 +7466,12 @@ export interface adminMethods {
|
|
|
7326
7466
|
people(): IBaseQuery<peopleAdminSettings> & peopleAdminSettingsMethods;
|
|
7327
7467
|
}
|
|
7328
7468
|
export interface adminOData {
|
|
7329
|
-
|
|
7469
|
+
edge: edge;
|
|
7470
|
+
sharepoint: sharepoint;
|
|
7471
|
+
microsoft365Apps: adminMicrosoft365Apps;
|
|
7472
|
+
serviceAnnouncement: serviceAnnouncement;
|
|
7473
|
+
reportSettings: adminReportSettings;
|
|
7474
|
+
people: peopleAdminSettings;
|
|
7330
7475
|
}
|
|
7331
7476
|
/*********************************************
|
|
7332
7477
|
* edge
|
|
@@ -7339,7 +7484,7 @@ export interface edgeMethods {
|
|
|
7339
7484
|
internetExplorerMode(): IBaseQuery<internetExplorerMode> & internetExplorerModeMethods;
|
|
7340
7485
|
}
|
|
7341
7486
|
export interface edgeOData {
|
|
7342
|
-
|
|
7487
|
+
internetExplorerMode: internetExplorerMode;
|
|
7343
7488
|
}
|
|
7344
7489
|
/*********************************************
|
|
7345
7490
|
* sharepoint
|
|
@@ -7352,7 +7497,7 @@ export interface sharepointMethods {
|
|
|
7352
7497
|
settings(): IBaseQuery<sharepointSettings> & sharepointSettingsMethods;
|
|
7353
7498
|
}
|
|
7354
7499
|
export interface sharepointOData {
|
|
7355
|
-
|
|
7500
|
+
settings: sharepointSettings;
|
|
7356
7501
|
}
|
|
7357
7502
|
/*********************************************
|
|
7358
7503
|
* adminMicrosoft365Apps
|
|
@@ -7365,7 +7510,7 @@ export interface adminMicrosoft365AppsMethods {
|
|
|
7365
7510
|
installationOptions(): IBaseQuery<m365AppsInstallationOptions> & m365AppsInstallationOptionsMethods;
|
|
7366
7511
|
}
|
|
7367
7512
|
export interface adminMicrosoft365AppsOData {
|
|
7368
|
-
|
|
7513
|
+
installationOptions: m365AppsInstallationOptions;
|
|
7369
7514
|
}
|
|
7370
7515
|
/*********************************************
|
|
7371
7516
|
* serviceAnnouncement
|
|
@@ -7415,6 +7560,8 @@ export interface peopleAdminSettingsMethods {
|
|
|
7415
7560
|
}
|
|
7416
7561
|
export interface peopleAdminSettingsOData {
|
|
7417
7562
|
profileCardProperties: IBaseResults<profileCardProperty>;
|
|
7563
|
+
pronouns: pronounsSettings;
|
|
7564
|
+
itemInsights: insightsSettings;
|
|
7418
7565
|
}
|
|
7419
7566
|
/*********************************************
|
|
7420
7567
|
* browserSharedCookie
|
|
@@ -7543,7 +7690,9 @@ export interface educationAssignmentMethods {
|
|
|
7543
7690
|
}
|
|
7544
7691
|
export interface educationAssignmentOData {
|
|
7545
7692
|
categories: IBaseResults<educationCategory>;
|
|
7693
|
+
gradingCategory: educationGradingCategory;
|
|
7546
7694
|
resources: IBaseResults<educationAssignmentResource>;
|
|
7695
|
+
rubric: educationRubric;
|
|
7547
7696
|
submissions: IBaseResults<educationSubmission>;
|
|
7548
7697
|
}
|
|
7549
7698
|
/*********************************************
|
|
@@ -7708,8 +7857,11 @@ export interface educationClassMethods {
|
|
|
7708
7857
|
}
|
|
7709
7858
|
export interface educationClassOData {
|
|
7710
7859
|
assignmentCategories: IBaseResults<educationCategory>;
|
|
7860
|
+
assignmentDefaults: educationAssignmentDefaults;
|
|
7711
7861
|
assignments: IBaseResults<educationAssignment>;
|
|
7862
|
+
assignmentSettings: educationAssignmentSettings;
|
|
7712
7863
|
modules: IBaseResults<educationModule>;
|
|
7864
|
+
group: group;
|
|
7713
7865
|
members: IBaseResults<educationUser>;
|
|
7714
7866
|
schools: IBaseResults<educationSchool>;
|
|
7715
7867
|
teachers: IBaseResults<educationUser>;
|
|
@@ -7793,6 +7945,7 @@ export interface educationUserOData {
|
|
|
7793
7945
|
classes: IBaseResults<educationClass>;
|
|
7794
7946
|
schools: IBaseResults<educationSchool>;
|
|
7795
7947
|
taughtClasses: IBaseResults<educationClass>;
|
|
7948
|
+
user: user;
|
|
7796
7949
|
}
|
|
7797
7950
|
/*********************************************
|
|
7798
7951
|
* educationOrganization
|
|
@@ -7835,6 +7988,7 @@ export interface educationSchoolMethods {
|
|
|
7835
7988
|
users(id: string | number): IBaseQuery<educationUser> & educationUserMethods;
|
|
7836
7989
|
}
|
|
7837
7990
|
export interface educationSchoolOData {
|
|
7991
|
+
administrativeUnit: administrativeUnit;
|
|
7838
7992
|
classes: IBaseResults<educationClass>;
|
|
7839
7993
|
users: IBaseResults<educationUser>;
|
|
7840
7994
|
}
|
|
@@ -7925,6 +8079,7 @@ export interface educationRootMethods {
|
|
|
7925
8079
|
}
|
|
7926
8080
|
export interface educationRootOData {
|
|
7927
8081
|
classes: IBaseResults<educationClass>;
|
|
8082
|
+
me: educationUser;
|
|
7928
8083
|
schools: IBaseResults<educationSchool>;
|
|
7929
8084
|
users: IBaseResults<educationUser>;
|
|
7930
8085
|
}
|
|
@@ -7971,7 +8126,7 @@ export interface restorePointMethods {
|
|
|
7971
8126
|
protectionUnit(): IBaseQuery<protectionUnitBase> & protectionUnitBaseMethods;
|
|
7972
8127
|
}
|
|
7973
8128
|
export interface restorePointOData {
|
|
7974
|
-
|
|
8129
|
+
protectionUnit: protectionUnitBase;
|
|
7975
8130
|
}
|
|
7976
8131
|
/*********************************************
|
|
7977
8132
|
* protectionRuleBase
|
|
@@ -8262,7 +8417,7 @@ export interface restoreArtifactBaseMethods {
|
|
|
8262
8417
|
restorePoint(): IBaseQuery<restorePoint> & restorePointMethods;
|
|
8263
8418
|
}
|
|
8264
8419
|
export interface restoreArtifactBaseOData {
|
|
8265
|
-
|
|
8420
|
+
restorePoint: restorePoint;
|
|
8266
8421
|
}
|
|
8267
8422
|
/*********************************************
|
|
8268
8423
|
* driveRestoreArtifact
|
|
@@ -8369,8 +8524,12 @@ export interface driveItemMethods {
|
|
|
8369
8524
|
versions(id: string | number): IBaseQuery<driveItemVersion> & driveItemVersionMethods;
|
|
8370
8525
|
}
|
|
8371
8526
|
export interface driveItemOData {
|
|
8527
|
+
workbook: workbook;
|
|
8528
|
+
analytics: itemAnalytics;
|
|
8372
8529
|
children: IBaseResults<driveItem>;
|
|
8530
|
+
listItem: listItem;
|
|
8373
8531
|
permissions: IBaseResults<permission>;
|
|
8532
|
+
retentionLabel: itemRetentionLabel;
|
|
8374
8533
|
subscriptions: IBaseResults<subscription>;
|
|
8375
8534
|
thumbnails: IBaseResults<thumbnailSet>;
|
|
8376
8535
|
versions: IBaseResults<driveItemVersion>;
|
|
@@ -8397,7 +8556,9 @@ export interface workbookMethods {
|
|
|
8397
8556
|
worksheets(id: string | number): IBaseQuery<workbookWorksheet> & workbookWorksheetMethods;
|
|
8398
8557
|
}
|
|
8399
8558
|
export interface workbookOData {
|
|
8559
|
+
application: workbookApplication;
|
|
8400
8560
|
comments: IBaseResults<workbookComment>;
|
|
8561
|
+
functions: workbookFunctions;
|
|
8401
8562
|
names: IBaseResults<workbookNamedItem>;
|
|
8402
8563
|
operations: IBaseResults<workbookOperation>;
|
|
8403
8564
|
tables: IBaseResults<workbookTable>;
|
|
@@ -8424,8 +8585,14 @@ export interface listItemMethods {
|
|
|
8424
8585
|
update(values: any): IBaseQuery<void>;
|
|
8425
8586
|
}
|
|
8426
8587
|
export interface listItemOData {
|
|
8588
|
+
analytics: itemAnalytics;
|
|
8427
8589
|
documentSetVersions: IBaseResults<documentSetVersion>;
|
|
8590
|
+
driveItem: driveItem;
|
|
8591
|
+
fields: fieldValueSet;
|
|
8428
8592
|
versions: IBaseResults<listItemVersion>;
|
|
8593
|
+
extractSensitivityLabel(values: any): IBaseQuery<void>;
|
|
8594
|
+
setSensitivityLabel(values: { actionSource?: string; assignmentMethod?: string; id: string; justificationText?: string; }): IBaseQuery<void>;
|
|
8595
|
+
update(values: any): IBaseQuery<void>;
|
|
8429
8596
|
}
|
|
8430
8597
|
/*********************************************
|
|
8431
8598
|
* itemRetentionLabel
|
|
@@ -8572,7 +8739,7 @@ export interface workbookNamedItemMethods {
|
|
|
8572
8739
|
worksheet(): IBaseQuery<workbookWorksheet> & workbookWorksheetMethods;
|
|
8573
8740
|
}
|
|
8574
8741
|
export interface workbookNamedItemOData {
|
|
8575
|
-
|
|
8742
|
+
worksheet: workbookWorksheet;
|
|
8576
8743
|
}
|
|
8577
8744
|
/*********************************************
|
|
8578
8745
|
* workbookOperation
|
|
@@ -8616,6 +8783,8 @@ export interface workbookTableMethods {
|
|
|
8616
8783
|
export interface workbookTableOData {
|
|
8617
8784
|
columns: IBaseResults<workbookTableColumn>;
|
|
8618
8785
|
rows: IBaseResults<workbookTableRow>;
|
|
8786
|
+
sort: workbookTableSort;
|
|
8787
|
+
worksheet: workbookWorksheet;
|
|
8619
8788
|
}
|
|
8620
8789
|
/*********************************************
|
|
8621
8790
|
* workbookWorksheet
|
|
@@ -8641,6 +8810,7 @@ export interface workbookWorksheetOData {
|
|
|
8641
8810
|
charts: IBaseResults<workbookChart>;
|
|
8642
8811
|
names: IBaseResults<workbookNamedItem>;
|
|
8643
8812
|
pivotTables: IBaseResults<workbookPivotTable>;
|
|
8813
|
+
protection: workbookWorksheetProtection;
|
|
8644
8814
|
tables: IBaseResults<workbookTable>;
|
|
8645
8815
|
}
|
|
8646
8816
|
/*********************************************
|
|
@@ -8665,7 +8835,13 @@ export interface workbookChartMethods {
|
|
|
8665
8835
|
worksheet(): IBaseQuery<workbookWorksheet> & workbookWorksheetMethods;
|
|
8666
8836
|
}
|
|
8667
8837
|
export interface workbookChartOData {
|
|
8838
|
+
axes: workbookChartAxes;
|
|
8839
|
+
dataLabels: workbookChartDataLabels;
|
|
8840
|
+
format: workbookChartAreaFormat;
|
|
8841
|
+
legend: workbookChartLegend;
|
|
8668
8842
|
series: IBaseResults<workbookChartSeries>;
|
|
8843
|
+
title: workbookChartTitle;
|
|
8844
|
+
worksheet: workbookWorksheet;
|
|
8669
8845
|
}
|
|
8670
8846
|
/*********************************************
|
|
8671
8847
|
* workbookChartAxes
|
|
@@ -8680,7 +8856,9 @@ export interface workbookChartAxesMethods {
|
|
|
8680
8856
|
valueAxis(): IBaseQuery<workbookChartAxis> & workbookChartAxisMethods;
|
|
8681
8857
|
}
|
|
8682
8858
|
export interface workbookChartAxesOData {
|
|
8683
|
-
|
|
8859
|
+
categoryAxis: workbookChartAxis;
|
|
8860
|
+
seriesAxis: workbookChartAxis;
|
|
8861
|
+
valueAxis: workbookChartAxis;
|
|
8684
8862
|
}
|
|
8685
8863
|
/*********************************************
|
|
8686
8864
|
* workbookChartDataLabels
|
|
@@ -8700,7 +8878,7 @@ export interface workbookChartDataLabelsMethods {
|
|
|
8700
8878
|
format(): IBaseQuery<workbookChartDataLabelFormat> & workbookChartDataLabelFormatMethods;
|
|
8701
8879
|
}
|
|
8702
8880
|
export interface workbookChartDataLabelsOData {
|
|
8703
|
-
|
|
8881
|
+
format: workbookChartDataLabelFormat;
|
|
8704
8882
|
}
|
|
8705
8883
|
/*********************************************
|
|
8706
8884
|
* workbookChartAreaFormat
|
|
@@ -8714,7 +8892,8 @@ export interface workbookChartAreaFormatMethods {
|
|
|
8714
8892
|
font(): IBaseQuery<workbookChartFont> & workbookChartFontMethods;
|
|
8715
8893
|
}
|
|
8716
8894
|
export interface workbookChartAreaFormatOData {
|
|
8717
|
-
|
|
8895
|
+
fill: workbookChartFill;
|
|
8896
|
+
font: workbookChartFont;
|
|
8718
8897
|
}
|
|
8719
8898
|
/*********************************************
|
|
8720
8899
|
* workbookChartLegend
|
|
@@ -8729,7 +8908,7 @@ export interface workbookChartLegendMethods {
|
|
|
8729
8908
|
format(): IBaseQuery<workbookChartLegendFormat> & workbookChartLegendFormatMethods;
|
|
8730
8909
|
}
|
|
8731
8910
|
export interface workbookChartLegendOData {
|
|
8732
|
-
|
|
8911
|
+
format: workbookChartLegendFormat;
|
|
8733
8912
|
}
|
|
8734
8913
|
/*********************************************
|
|
8735
8914
|
* workbookChartSeries
|
|
@@ -8744,6 +8923,7 @@ export interface workbookChartSeriesMethods {
|
|
|
8744
8923
|
points(id: string | number): IBaseQuery<workbookChartPoint> & workbookChartPointMethods;
|
|
8745
8924
|
}
|
|
8746
8925
|
export interface workbookChartSeriesOData {
|
|
8926
|
+
format: workbookChartSeriesFormat;
|
|
8747
8927
|
points: IBaseResults<workbookChartPoint>;
|
|
8748
8928
|
}
|
|
8749
8929
|
/*********************************************
|
|
@@ -8759,7 +8939,7 @@ export interface workbookChartTitleMethods {
|
|
|
8759
8939
|
format(): IBaseQuery<workbookChartTitleFormat> & workbookChartTitleFormatMethods;
|
|
8760
8940
|
}
|
|
8761
8941
|
export interface workbookChartTitleOData {
|
|
8762
|
-
|
|
8942
|
+
format: workbookChartTitleFormat;
|
|
8763
8943
|
}
|
|
8764
8944
|
/*********************************************
|
|
8765
8945
|
* workbookChartFill
|
|
@@ -8809,7 +8989,10 @@ export interface workbookChartAxisMethods {
|
|
|
8809
8989
|
title(): IBaseQuery<workbookChartAxisTitle> & workbookChartAxisTitleMethods;
|
|
8810
8990
|
}
|
|
8811
8991
|
export interface workbookChartAxisOData {
|
|
8812
|
-
|
|
8992
|
+
format: workbookChartAxisFormat;
|
|
8993
|
+
majorGridlines: workbookChartGridlines;
|
|
8994
|
+
minorGridlines: workbookChartGridlines;
|
|
8995
|
+
title: workbookChartAxisTitle;
|
|
8813
8996
|
}
|
|
8814
8997
|
/*********************************************
|
|
8815
8998
|
* workbookChartAxisFormat
|
|
@@ -8823,7 +9006,8 @@ export interface workbookChartAxisFormatMethods {
|
|
|
8823
9006
|
line(): IBaseQuery<workbookChartLineFormat> & workbookChartLineFormatMethods;
|
|
8824
9007
|
}
|
|
8825
9008
|
export interface workbookChartAxisFormatOData {
|
|
8826
|
-
|
|
9009
|
+
font: workbookChartFont;
|
|
9010
|
+
line: workbookChartLineFormat;
|
|
8827
9011
|
}
|
|
8828
9012
|
/*********************************************
|
|
8829
9013
|
* workbookChartGridlines
|
|
@@ -8836,7 +9020,7 @@ export interface workbookChartGridlinesMethods {
|
|
|
8836
9020
|
format(): IBaseQuery<workbookChartGridlinesFormat> & workbookChartGridlinesFormatMethods;
|
|
8837
9021
|
}
|
|
8838
9022
|
export interface workbookChartGridlinesOData {
|
|
8839
|
-
|
|
9023
|
+
format: workbookChartGridlinesFormat;
|
|
8840
9024
|
}
|
|
8841
9025
|
/*********************************************
|
|
8842
9026
|
* workbookChartAxisTitle
|
|
@@ -8850,7 +9034,7 @@ export interface workbookChartAxisTitleMethods {
|
|
|
8850
9034
|
format(): IBaseQuery<workbookChartAxisTitleFormat> & workbookChartAxisTitleFormatMethods;
|
|
8851
9035
|
}
|
|
8852
9036
|
export interface workbookChartAxisTitleOData {
|
|
8853
|
-
|
|
9037
|
+
format: workbookChartAxisTitleFormat;
|
|
8854
9038
|
}
|
|
8855
9039
|
/*********************************************
|
|
8856
9040
|
* workbookChartLineFormat
|
|
@@ -8876,7 +9060,7 @@ export interface workbookChartAxisTitleFormatMethods {
|
|
|
8876
9060
|
font(): IBaseQuery<workbookChartFont> & workbookChartFontMethods;
|
|
8877
9061
|
}
|
|
8878
9062
|
export interface workbookChartAxisTitleFormatOData {
|
|
8879
|
-
|
|
9063
|
+
font: workbookChartFont;
|
|
8880
9064
|
}
|
|
8881
9065
|
/*********************************************
|
|
8882
9066
|
* workbookChartDataLabelFormat
|
|
@@ -8890,7 +9074,8 @@ export interface workbookChartDataLabelFormatMethods {
|
|
|
8890
9074
|
font(): IBaseQuery<workbookChartFont> & workbookChartFontMethods;
|
|
8891
9075
|
}
|
|
8892
9076
|
export interface workbookChartDataLabelFormatOData {
|
|
8893
|
-
|
|
9077
|
+
fill: workbookChartFill;
|
|
9078
|
+
font: workbookChartFont;
|
|
8894
9079
|
}
|
|
8895
9080
|
/*********************************************
|
|
8896
9081
|
* workbookChartGridlinesFormat
|
|
@@ -8903,7 +9088,7 @@ export interface workbookChartGridlinesFormatMethods {
|
|
|
8903
9088
|
line(): IBaseQuery<workbookChartLineFormat> & workbookChartLineFormatMethods;
|
|
8904
9089
|
}
|
|
8905
9090
|
export interface workbookChartGridlinesFormatOData {
|
|
8906
|
-
|
|
9091
|
+
line: workbookChartLineFormat;
|
|
8907
9092
|
}
|
|
8908
9093
|
/*********************************************
|
|
8909
9094
|
* workbookChartLegendFormat
|
|
@@ -8917,7 +9102,8 @@ export interface workbookChartLegendFormatMethods {
|
|
|
8917
9102
|
font(): IBaseQuery<workbookChartFont> & workbookChartFontMethods;
|
|
8918
9103
|
}
|
|
8919
9104
|
export interface workbookChartLegendFormatOData {
|
|
8920
|
-
|
|
9105
|
+
fill: workbookChartFill;
|
|
9106
|
+
font: workbookChartFont;
|
|
8921
9107
|
}
|
|
8922
9108
|
/*********************************************
|
|
8923
9109
|
* workbookChartPoint
|
|
@@ -8930,7 +9116,7 @@ export interface workbookChartPointMethods {
|
|
|
8930
9116
|
format(): IBaseQuery<workbookChartPointFormat> & workbookChartPointFormatMethods;
|
|
8931
9117
|
}
|
|
8932
9118
|
export interface workbookChartPointOData {
|
|
8933
|
-
|
|
9119
|
+
format: workbookChartPointFormat;
|
|
8934
9120
|
}
|
|
8935
9121
|
/*********************************************
|
|
8936
9122
|
* workbookChartPointFormat
|
|
@@ -8943,7 +9129,7 @@ export interface workbookChartPointFormatMethods {
|
|
|
8943
9129
|
fill(): IBaseQuery<workbookChartFill> & workbookChartFillMethods;
|
|
8944
9130
|
}
|
|
8945
9131
|
export interface workbookChartPointFormatOData {
|
|
8946
|
-
|
|
9132
|
+
fill: workbookChartFill;
|
|
8947
9133
|
}
|
|
8948
9134
|
/*********************************************
|
|
8949
9135
|
* workbookChartSeriesFormat
|
|
@@ -8957,7 +9143,8 @@ export interface workbookChartSeriesFormatMethods {
|
|
|
8957
9143
|
line(): IBaseQuery<workbookChartLineFormat> & workbookChartLineFormatMethods;
|
|
8958
9144
|
}
|
|
8959
9145
|
export interface workbookChartSeriesFormatOData {
|
|
8960
|
-
|
|
9146
|
+
fill: workbookChartFill;
|
|
9147
|
+
line: workbookChartLineFormat;
|
|
8961
9148
|
}
|
|
8962
9149
|
/*********************************************
|
|
8963
9150
|
* workbookChartTitleFormat
|
|
@@ -8971,7 +9158,8 @@ export interface workbookChartTitleFormatMethods {
|
|
|
8971
9158
|
font(): IBaseQuery<workbookChartFont> & workbookChartFontMethods;
|
|
8972
9159
|
}
|
|
8973
9160
|
export interface workbookChartTitleFormatOData {
|
|
8974
|
-
|
|
9161
|
+
fill: workbookChartFill;
|
|
9162
|
+
font: workbookChartFont;
|
|
8975
9163
|
}
|
|
8976
9164
|
/*********************************************
|
|
8977
9165
|
* workbookCommentReply
|
|
@@ -9039,7 +9227,7 @@ export interface workbookPivotTableMethods {
|
|
|
9039
9227
|
worksheet(): IBaseQuery<workbookWorksheet> & workbookWorksheetMethods;
|
|
9040
9228
|
}
|
|
9041
9229
|
export interface workbookPivotTableOData {
|
|
9042
|
-
|
|
9230
|
+
worksheet: workbookWorksheet;
|
|
9043
9231
|
}
|
|
9044
9232
|
/*********************************************
|
|
9045
9233
|
* workbookRange
|
|
@@ -9070,7 +9258,9 @@ export interface workbookRangeMethods {
|
|
|
9070
9258
|
worksheet(): IBaseQuery<workbookWorksheet> & workbookWorksheetMethods;
|
|
9071
9259
|
}
|
|
9072
9260
|
export interface workbookRangeOData {
|
|
9073
|
-
|
|
9261
|
+
format: workbookRangeFormat;
|
|
9262
|
+
sort: workbookRangeSort;
|
|
9263
|
+
worksheet: workbookWorksheet;
|
|
9074
9264
|
}
|
|
9075
9265
|
/*********************************************
|
|
9076
9266
|
* workbookRangeFormat
|
|
@@ -9092,6 +9282,9 @@ export interface workbookRangeFormatMethods {
|
|
|
9092
9282
|
}
|
|
9093
9283
|
export interface workbookRangeFormatOData {
|
|
9094
9284
|
borders: IBaseResults<workbookRangeBorder>;
|
|
9285
|
+
fill: workbookRangeFill;
|
|
9286
|
+
font: workbookRangeFont;
|
|
9287
|
+
protection: workbookFormatProtection;
|
|
9095
9288
|
}
|
|
9096
9289
|
/*********************************************
|
|
9097
9290
|
* workbookRangeSort
|
|
@@ -9190,7 +9383,7 @@ export interface workbookTableColumnMethods {
|
|
|
9190
9383
|
filter(): IBaseQuery<workbookFilter> & workbookFilterMethods;
|
|
9191
9384
|
}
|
|
9192
9385
|
export interface workbookTableColumnOData {
|
|
9193
|
-
|
|
9386
|
+
filter: workbookFilter;
|
|
9194
9387
|
}
|
|
9195
9388
|
/*********************************************
|
|
9196
9389
|
* workbookTableRow
|
|
@@ -9394,6 +9587,7 @@ export interface postMethods {
|
|
|
9394
9587
|
export interface postOData {
|
|
9395
9588
|
attachments: IBaseResults<attachment>;
|
|
9396
9589
|
extensions: IBaseResults<extension>;
|
|
9590
|
+
inReplyTo: post;
|
|
9397
9591
|
multiValueExtendedProperties: IBaseResults<multiValueLegacyExtendedProperty>;
|
|
9398
9592
|
singleValueExtendedProperties: IBaseResults<singleValueLegacyExtendedProperty>;
|
|
9399
9593
|
}
|
|
@@ -9416,7 +9610,7 @@ export interface eventMessageMethods {
|
|
|
9416
9610
|
event(): IBaseQuery<event> & eventMethods;
|
|
9417
9611
|
}
|
|
9418
9612
|
export interface eventMessageOData {
|
|
9419
|
-
|
|
9613
|
+
event: event;
|
|
9420
9614
|
}
|
|
9421
9615
|
/*********************************************
|
|
9422
9616
|
* eventMessageRequest
|
|
@@ -9490,7 +9684,7 @@ export interface itemAttachmentMethods {
|
|
|
9490
9684
|
item(): IBaseQuery<outlookItem> & outlookItemMethods;
|
|
9491
9685
|
}
|
|
9492
9686
|
export interface itemAttachmentOData {
|
|
9493
|
-
|
|
9687
|
+
item: outlookItem;
|
|
9494
9688
|
}
|
|
9495
9689
|
/*********************************************
|
|
9496
9690
|
* messageRule
|
|
@@ -9602,6 +9796,7 @@ export interface fileStorageContainerMethods {
|
|
|
9602
9796
|
permissions(id: string | number): IBaseQuery<permission> & permissionMethods;
|
|
9603
9797
|
}
|
|
9604
9798
|
export interface fileStorageContainerOData {
|
|
9799
|
+
drive: drive;
|
|
9605
9800
|
permissions: IBaseResults<permission>;
|
|
9606
9801
|
}
|
|
9607
9802
|
/*********************************************
|
|
@@ -9657,7 +9852,8 @@ export interface storageMethods {
|
|
|
9657
9852
|
settings(): IBaseQuery<storageSettings> & storageSettingsMethods;
|
|
9658
9853
|
}
|
|
9659
9854
|
export interface storageOData {
|
|
9660
|
-
|
|
9855
|
+
fileStorage: fileStorage;
|
|
9856
|
+
settings: storageSettings;
|
|
9661
9857
|
}
|
|
9662
9858
|
/*********************************************
|
|
9663
9859
|
* storageSettings
|
|
@@ -9670,7 +9866,7 @@ export interface storageSettingsMethods {
|
|
|
9670
9866
|
quota(): IBaseQuery<unifiedStorageQuota> & unifiedStorageQuotaMethods;
|
|
9671
9867
|
}
|
|
9672
9868
|
export interface storageSettingsOData {
|
|
9673
|
-
|
|
9869
|
+
quota: unifiedStorageQuota;
|
|
9674
9870
|
}
|
|
9675
9871
|
/*********************************************
|
|
9676
9872
|
* canvasLayout
|
|
@@ -9686,6 +9882,7 @@ export interface canvasLayoutMethods {
|
|
|
9686
9882
|
}
|
|
9687
9883
|
export interface canvasLayoutOData {
|
|
9688
9884
|
horizontalSections: IBaseResults<horizontalSection>;
|
|
9885
|
+
verticalSection: verticalSection;
|
|
9689
9886
|
}
|
|
9690
9887
|
/*********************************************
|
|
9691
9888
|
* horizontalSection
|
|
@@ -9740,7 +9937,7 @@ export interface listItemVersionMethods {
|
|
|
9740
9937
|
fields(): IBaseQuery<fieldValueSet> & fieldValueSetMethods;
|
|
9741
9938
|
}
|
|
9742
9939
|
export interface listItemVersionOData {
|
|
9743
|
-
|
|
9940
|
+
fields: fieldValueSet;
|
|
9744
9941
|
}
|
|
9745
9942
|
/*********************************************
|
|
9746
9943
|
* documentSetVersion
|
|
@@ -9812,7 +10009,7 @@ export interface itemActivityMethods {
|
|
|
9812
10009
|
driveItem(): IBaseQuery<driveItem> & driveItemMethods;
|
|
9813
10010
|
}
|
|
9814
10011
|
export interface itemActivityOData {
|
|
9815
|
-
|
|
10012
|
+
driveItem: driveItem;
|
|
9816
10013
|
}
|
|
9817
10014
|
/*********************************************
|
|
9818
10015
|
* itemActivityStat
|
|
@@ -9854,7 +10051,13 @@ export interface sharedDriveItemMethods {
|
|
|
9854
10051
|
site(): IBaseQuery<site> & siteMethods;
|
|
9855
10052
|
}
|
|
9856
10053
|
export interface sharedDriveItemOData {
|
|
10054
|
+
driveItem: driveItem;
|
|
9857
10055
|
items: IBaseResults<driveItem>;
|
|
10056
|
+
list: list;
|
|
10057
|
+
listItem: listItem;
|
|
10058
|
+
permission: permission;
|
|
10059
|
+
root: driveItem;
|
|
10060
|
+
site: site;
|
|
9858
10061
|
}
|
|
9859
10062
|
/*********************************************
|
|
9860
10063
|
* sitePage
|
|
@@ -9874,6 +10077,7 @@ export interface sitePageMethods {
|
|
|
9874
10077
|
webParts(id: string | number): IBaseQuery<webPart> & webPartMethods;
|
|
9875
10078
|
}
|
|
9876
10079
|
export interface sitePageOData {
|
|
10080
|
+
canvasLayout: canvasLayout;
|
|
9877
10081
|
webParts: IBaseResults<webPart>;
|
|
9878
10082
|
}
|
|
9879
10083
|
/*********************************************
|
|
@@ -10036,7 +10240,8 @@ export interface synchronizationJobMethods {
|
|
|
10036
10240
|
schema(): IBaseQuery<synchronizationSchema> & synchronizationSchemaMethods;
|
|
10037
10241
|
}
|
|
10038
10242
|
export interface synchronizationJobOData {
|
|
10039
|
-
|
|
10243
|
+
bulkUpload: bulkUpload;
|
|
10244
|
+
schema: synchronizationSchema;
|
|
10040
10245
|
}
|
|
10041
10246
|
/*********************************************
|
|
10042
10247
|
* synchronizationTemplate
|
|
@@ -10054,7 +10259,7 @@ export interface synchronizationTemplateMethods {
|
|
|
10054
10259
|
schema(): IBaseQuery<synchronizationSchema> & synchronizationSchemaMethods;
|
|
10055
10260
|
}
|
|
10056
10261
|
export interface synchronizationTemplateOData {
|
|
10057
|
-
|
|
10262
|
+
schema: synchronizationSchema;
|
|
10058
10263
|
}
|
|
10059
10264
|
/*********************************************
|
|
10060
10265
|
* synchronizationSchema
|
|
@@ -10315,7 +10520,7 @@ export interface userConsentRequestMethods {
|
|
|
10315
10520
|
approval(): IBaseQuery<approval> & approvalMethods;
|
|
10316
10521
|
}
|
|
10317
10522
|
export interface userConsentRequestOData {
|
|
10318
|
-
|
|
10523
|
+
approval: approval;
|
|
10319
10524
|
}
|
|
10320
10525
|
/*********************************************
|
|
10321
10526
|
* approval
|
|
@@ -10377,6 +10582,7 @@ export interface accessPackageMethods {
|
|
|
10377
10582
|
export interface accessPackageOData {
|
|
10378
10583
|
accessPackagesIncompatibleWith: IBaseResults<accessPackage>;
|
|
10379
10584
|
assignmentPolicies: IBaseResults<accessPackageAssignmentPolicy>;
|
|
10585
|
+
catalog: accessPackageCatalog;
|
|
10380
10586
|
incompatibleAccessPackages: IBaseResults<accessPackage>;
|
|
10381
10587
|
incompatibleGroups: IBaseResults<group>;
|
|
10382
10588
|
resourceRoleScopes: IBaseResults<accessPackageResourceRoleScope>;
|
|
@@ -10407,6 +10613,8 @@ export interface accessPackageAssignmentPolicyMethods {
|
|
|
10407
10613
|
questions(id: string | number): IBaseQuery<accessPackageQuestion> & accessPackageQuestionMethods;
|
|
10408
10614
|
}
|
|
10409
10615
|
export interface accessPackageAssignmentPolicyOData {
|
|
10616
|
+
accessPackage: accessPackage;
|
|
10617
|
+
catalog: accessPackageCatalog;
|
|
10410
10618
|
customExtensionStageSettings: IBaseResults<customExtensionStageSetting>;
|
|
10411
10619
|
questions: IBaseResults<accessPackageQuestion>;
|
|
10412
10620
|
}
|
|
@@ -10430,7 +10638,9 @@ export interface accessPackageAssignmentRequestMethods {
|
|
|
10430
10638
|
requestor(): IBaseQuery<accessPackageSubject> & accessPackageSubjectMethods;
|
|
10431
10639
|
}
|
|
10432
10640
|
export interface accessPackageAssignmentRequestOData {
|
|
10433
|
-
|
|
10641
|
+
accessPackage: accessPackage;
|
|
10642
|
+
assignment: accessPackageAssignment;
|
|
10643
|
+
requestor: accessPackageSubject;
|
|
10434
10644
|
}
|
|
10435
10645
|
/*********************************************
|
|
10436
10646
|
* accessPackageAssignment
|
|
@@ -10449,7 +10659,9 @@ export interface accessPackageAssignmentMethods {
|
|
|
10449
10659
|
target(): IBaseQuery<accessPackageSubject> & accessPackageSubjectMethods;
|
|
10450
10660
|
}
|
|
10451
10661
|
export interface accessPackageAssignmentOData {
|
|
10452
|
-
|
|
10662
|
+
accessPackage: accessPackage;
|
|
10663
|
+
assignmentPolicy: accessPackageAssignmentPolicy;
|
|
10664
|
+
target: accessPackageSubject;
|
|
10453
10665
|
}
|
|
10454
10666
|
/*********************************************
|
|
10455
10667
|
* accessPackageCatalog
|
|
@@ -10540,7 +10752,8 @@ export interface accessPackageResourceRequestMethods {
|
|
|
10540
10752
|
resource(): IBaseQuery<accessPackageResource> & accessPackageResourceMethods;
|
|
10541
10753
|
}
|
|
10542
10754
|
export interface accessPackageResourceRequestOData {
|
|
10543
|
-
|
|
10755
|
+
catalog: accessPackageCatalog;
|
|
10756
|
+
resource: accessPackageResource;
|
|
10544
10757
|
}
|
|
10545
10758
|
/*********************************************
|
|
10546
10759
|
* accessPackageResourceRoleScope
|
|
@@ -10554,7 +10767,8 @@ export interface accessPackageResourceRoleScopeMethods {
|
|
|
10554
10767
|
scope(): IBaseQuery<accessPackageResourceScope> & accessPackageResourceScopeMethods;
|
|
10555
10768
|
}
|
|
10556
10769
|
export interface accessPackageResourceRoleScopeOData {
|
|
10557
|
-
|
|
10770
|
+
role: accessPackageResourceRole;
|
|
10771
|
+
scope: accessPackageResourceScope;
|
|
10558
10772
|
}
|
|
10559
10773
|
/*********************************************
|
|
10560
10774
|
* accessPackageResource
|
|
@@ -10577,6 +10791,7 @@ export interface accessPackageResourceMethods {
|
|
|
10577
10791
|
scopes(id: string | number): IBaseQuery<accessPackageResourceScope> & accessPackageResourceScopeMethods;
|
|
10578
10792
|
}
|
|
10579
10793
|
export interface accessPackageResourceOData {
|
|
10794
|
+
environment: accessPackageResourceEnvironment;
|
|
10580
10795
|
roles: IBaseResults<accessPackageResourceRole>;
|
|
10581
10796
|
scopes: IBaseResults<accessPackageResourceScope>;
|
|
10582
10797
|
}
|
|
@@ -10658,7 +10873,9 @@ export interface privilegedAccessGroupAssignmentScheduleInstanceMethods {
|
|
|
10658
10873
|
principal(): IBaseQuery<directoryObject> & directoryObjectMethods;
|
|
10659
10874
|
}
|
|
10660
10875
|
export interface privilegedAccessGroupAssignmentScheduleInstanceOData {
|
|
10661
|
-
|
|
10876
|
+
activatedUsing: privilegedAccessGroupEligibilityScheduleInstance;
|
|
10877
|
+
group: group;
|
|
10878
|
+
principal: directoryObject;
|
|
10662
10879
|
}
|
|
10663
10880
|
/*********************************************
|
|
10664
10881
|
* privilegedAccessScheduleRequest
|
|
@@ -10694,7 +10911,10 @@ export interface privilegedAccessGroupAssignmentScheduleRequestMethods {
|
|
|
10694
10911
|
targetSchedule(): IBaseQuery<privilegedAccessGroupEligibilitySchedule> & privilegedAccessGroupEligibilityScheduleMethods;
|
|
10695
10912
|
}
|
|
10696
10913
|
export interface privilegedAccessGroupAssignmentScheduleRequestOData {
|
|
10697
|
-
|
|
10914
|
+
activatedUsing: privilegedAccessGroupEligibilitySchedule;
|
|
10915
|
+
group: group;
|
|
10916
|
+
principal: directoryObject;
|
|
10917
|
+
targetSchedule: privilegedAccessGroupEligibilitySchedule;
|
|
10698
10918
|
}
|
|
10699
10919
|
/*********************************************
|
|
10700
10920
|
* privilegedAccessSchedule
|
|
@@ -10730,7 +10950,9 @@ export interface privilegedAccessGroupAssignmentScheduleMethods {
|
|
|
10730
10950
|
principal(): IBaseQuery<directoryObject> & directoryObjectMethods;
|
|
10731
10951
|
}
|
|
10732
10952
|
export interface privilegedAccessGroupAssignmentScheduleOData {
|
|
10733
|
-
|
|
10953
|
+
activatedUsing: privilegedAccessGroupEligibilitySchedule;
|
|
10954
|
+
group: group;
|
|
10955
|
+
principal: directoryObject;
|
|
10734
10956
|
}
|
|
10735
10957
|
/*********************************************
|
|
10736
10958
|
* privilegedAccessGroupEligibilityScheduleInstance
|
|
@@ -10748,7 +10970,8 @@ export interface privilegedAccessGroupEligibilityScheduleInstanceMethods {
|
|
|
10748
10970
|
principal(): IBaseQuery<directoryObject> & directoryObjectMethods;
|
|
10749
10971
|
}
|
|
10750
10972
|
export interface privilegedAccessGroupEligibilityScheduleInstanceOData {
|
|
10751
|
-
|
|
10973
|
+
group: group;
|
|
10974
|
+
principal: directoryObject;
|
|
10752
10975
|
}
|
|
10753
10976
|
/*********************************************
|
|
10754
10977
|
* privilegedAccessGroupEligibilityScheduleRequest
|
|
@@ -10766,7 +10989,9 @@ export interface privilegedAccessGroupEligibilityScheduleRequestMethods {
|
|
|
10766
10989
|
targetSchedule(): IBaseQuery<privilegedAccessGroupEligibilitySchedule> & privilegedAccessGroupEligibilityScheduleMethods;
|
|
10767
10990
|
}
|
|
10768
10991
|
export interface privilegedAccessGroupEligibilityScheduleRequestOData {
|
|
10769
|
-
|
|
10992
|
+
group: group;
|
|
10993
|
+
principal: directoryObject;
|
|
10994
|
+
targetSchedule: privilegedAccessGroupEligibilitySchedule;
|
|
10770
10995
|
}
|
|
10771
10996
|
/*********************************************
|
|
10772
10997
|
* privilegedAccessGroupEligibilitySchedule
|
|
@@ -10783,7 +11008,8 @@ export interface privilegedAccessGroupEligibilityScheduleMethods {
|
|
|
10783
11008
|
principal(): IBaseQuery<directoryObject> & directoryObjectMethods;
|
|
10784
11009
|
}
|
|
10785
11010
|
export interface privilegedAccessGroupEligibilityScheduleOData {
|
|
10786
|
-
|
|
11011
|
+
group: group;
|
|
11012
|
+
principal: directoryObject;
|
|
10787
11013
|
}
|
|
10788
11014
|
/*********************************************
|
|
10789
11015
|
* userSignInInsight
|
|
@@ -10818,6 +11044,7 @@ export interface agreementMethods {
|
|
|
10818
11044
|
}
|
|
10819
11045
|
export interface agreementOData {
|
|
10820
11046
|
acceptances: IBaseResults<agreementAcceptance>;
|
|
11047
|
+
file: agreementFile;
|
|
10821
11048
|
files: IBaseResults<agreementFileLocalization>;
|
|
10822
11049
|
}
|
|
10823
11050
|
/*********************************************
|
|
@@ -11100,7 +11327,7 @@ export interface accessPackageSubjectMethods {
|
|
|
11100
11327
|
connectedOrganization(): IBaseQuery<connectedOrganization> & connectedOrganizationMethods;
|
|
11101
11328
|
}
|
|
11102
11329
|
export interface accessPackageSubjectOData {
|
|
11103
|
-
|
|
11330
|
+
connectedOrganization: connectedOrganization;
|
|
11104
11331
|
}
|
|
11105
11332
|
/*********************************************
|
|
11106
11333
|
* customExtensionStageSetting
|
|
@@ -11113,7 +11340,7 @@ export interface customExtensionStageSettingMethods {
|
|
|
11113
11340
|
customExtension(): IBaseQuery<customCalloutExtension> & customCalloutExtensionMethods;
|
|
11114
11341
|
}
|
|
11115
11342
|
export interface customExtensionStageSettingOData {
|
|
11116
|
-
|
|
11343
|
+
customExtension: customCalloutExtension;
|
|
11117
11344
|
}
|
|
11118
11345
|
/*********************************************
|
|
11119
11346
|
* accessPackageAssignmentRequestWorkflowExtension
|
|
@@ -11163,7 +11390,7 @@ export interface accessPackageResourceRoleMethods {
|
|
|
11163
11390
|
resource(): IBaseQuery<accessPackageResource> & accessPackageResourceMethods;
|
|
11164
11391
|
}
|
|
11165
11392
|
export interface accessPackageResourceRoleOData {
|
|
11166
|
-
|
|
11393
|
+
resource: accessPackageResource;
|
|
11167
11394
|
}
|
|
11168
11395
|
/*********************************************
|
|
11169
11396
|
* accessPackageResourceScope
|
|
@@ -11180,7 +11407,7 @@ export interface accessPackageResourceScopeMethods {
|
|
|
11180
11407
|
resource(): IBaseQuery<accessPackageResource> & accessPackageResourceMethods;
|
|
11181
11408
|
}
|
|
11182
11409
|
export interface accessPackageResourceScopeOData {
|
|
11183
|
-
|
|
11410
|
+
resource: accessPackageResource;
|
|
11184
11411
|
}
|
|
11185
11412
|
/*********************************************
|
|
11186
11413
|
* accessPackageMultipleChoiceQuestion
|
|
@@ -11369,6 +11596,7 @@ export interface managedEBookMethods {
|
|
|
11369
11596
|
export interface managedEBookOData {
|
|
11370
11597
|
assignments: IBaseResults<managedEBookAssignment>;
|
|
11371
11598
|
deviceStates: IBaseResults<deviceInstallState>;
|
|
11599
|
+
installSummary: eBookInstallSummary;
|
|
11372
11600
|
userStateSummary: IBaseResults<userInstallStateSummary>;
|
|
11373
11601
|
}
|
|
11374
11602
|
/*********************************************
|
|
@@ -11410,7 +11638,9 @@ export interface managedDeviceMobileAppConfigurationMethods {
|
|
|
11410
11638
|
export interface managedDeviceMobileAppConfigurationOData {
|
|
11411
11639
|
assignments: IBaseResults<managedDeviceMobileAppConfigurationAssignment>;
|
|
11412
11640
|
deviceStatuses: IBaseResults<managedDeviceMobileAppConfigurationDeviceStatus>;
|
|
11641
|
+
deviceStatusSummary: managedDeviceMobileAppConfigurationDeviceSummary;
|
|
11413
11642
|
userStatuses: IBaseResults<managedDeviceMobileAppConfigurationUserStatus>;
|
|
11643
|
+
userStatusSummary: managedDeviceMobileAppConfigurationUserSummary;
|
|
11414
11644
|
}
|
|
11415
11645
|
/*********************************************
|
|
11416
11646
|
* vppToken
|
|
@@ -11526,6 +11756,7 @@ export interface androidManagedAppProtectionMethods {
|
|
|
11526
11756
|
}
|
|
11527
11757
|
export interface androidManagedAppProtectionOData {
|
|
11528
11758
|
apps: IBaseResults<managedMobileApp>;
|
|
11759
|
+
deploymentSummary: managedAppPolicyDeploymentSummary;
|
|
11529
11760
|
}
|
|
11530
11761
|
/*********************************************
|
|
11531
11762
|
* defaultManagedAppProtection
|
|
@@ -11550,6 +11781,7 @@ export interface defaultManagedAppProtectionMethods {
|
|
|
11550
11781
|
}
|
|
11551
11782
|
export interface defaultManagedAppProtectionOData {
|
|
11552
11783
|
apps: IBaseResults<managedMobileApp>;
|
|
11784
|
+
deploymentSummary: managedAppPolicyDeploymentSummary;
|
|
11553
11785
|
}
|
|
11554
11786
|
/*********************************************
|
|
11555
11787
|
* iosManagedAppProtection
|
|
@@ -11569,6 +11801,7 @@ export interface iosManagedAppProtectionMethods {
|
|
|
11569
11801
|
}
|
|
11570
11802
|
export interface iosManagedAppProtectionOData {
|
|
11571
11803
|
apps: IBaseResults<managedMobileApp>;
|
|
11804
|
+
deploymentSummary: managedAppPolicyDeploymentSummary;
|
|
11572
11805
|
}
|
|
11573
11806
|
/*********************************************
|
|
11574
11807
|
* managedAppStatus
|
|
@@ -11669,6 +11902,7 @@ export interface targetedManagedAppConfigurationMethods {
|
|
|
11669
11902
|
export interface targetedManagedAppConfigurationOData {
|
|
11670
11903
|
apps: IBaseResults<managedMobileApp>;
|
|
11671
11904
|
assignments: IBaseResults<targetedManagedAppPolicyAssignment>;
|
|
11905
|
+
deploymentSummary: managedAppPolicyDeploymentSummary;
|
|
11672
11906
|
}
|
|
11673
11907
|
/*********************************************
|
|
11674
11908
|
* windowsInformationProtectionPolicy
|
|
@@ -12427,7 +12661,7 @@ export interface termsAndConditionsAcceptanceStatusMethods {
|
|
|
12427
12661
|
termsAndConditions(): IBaseQuery<termsAndConditions> & termsAndConditionsMethods;
|
|
12428
12662
|
}
|
|
12429
12663
|
export interface termsAndConditionsAcceptanceStatusOData {
|
|
12430
|
-
|
|
12664
|
+
termsAndConditions: termsAndConditions;
|
|
12431
12665
|
}
|
|
12432
12666
|
/*********************************************
|
|
12433
12667
|
* termsAndConditionsAssignment
|
|
@@ -14554,6 +14788,7 @@ export interface plannerPlanMethods {
|
|
|
14554
14788
|
}
|
|
14555
14789
|
export interface plannerPlanOData {
|
|
14556
14790
|
buckets: IBaseResults<plannerBucket>;
|
|
14791
|
+
details: plannerPlanDetails;
|
|
14557
14792
|
tasks: IBaseResults<plannerTask>;
|
|
14558
14793
|
}
|
|
14559
14794
|
/*********************************************
|
|
@@ -14590,7 +14825,10 @@ export interface plannerTaskMethods {
|
|
|
14590
14825
|
progressTaskBoardFormat(): IBaseQuery<plannerProgressTaskBoardTaskFormat> & plannerProgressTaskBoardTaskFormatMethods;
|
|
14591
14826
|
}
|
|
14592
14827
|
export interface plannerTaskOData {
|
|
14593
|
-
|
|
14828
|
+
assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat;
|
|
14829
|
+
bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat;
|
|
14830
|
+
details: plannerTaskDetails;
|
|
14831
|
+
progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat;
|
|
14594
14832
|
}
|
|
14595
14833
|
/*********************************************
|
|
14596
14834
|
* plannerAssignedToTaskBoardTaskFormat
|
|
@@ -14677,7 +14915,8 @@ export interface sharedInsightMethods {
|
|
|
14677
14915
|
resource(): IBaseQuery<entity> & entityMethods;
|
|
14678
14916
|
}
|
|
14679
14917
|
export interface sharedInsightOData {
|
|
14680
|
-
|
|
14918
|
+
lastSharedMethod: entity;
|
|
14919
|
+
resource: entity;
|
|
14681
14920
|
}
|
|
14682
14921
|
/*********************************************
|
|
14683
14922
|
* trending
|
|
@@ -14693,7 +14932,7 @@ export interface trendingMethods {
|
|
|
14693
14932
|
resource(): IBaseQuery<entity> & entityMethods;
|
|
14694
14933
|
}
|
|
14695
14934
|
export interface trendingOData {
|
|
14696
|
-
|
|
14935
|
+
resource: entity;
|
|
14697
14936
|
}
|
|
14698
14937
|
/*********************************************
|
|
14699
14938
|
* usedInsight
|
|
@@ -14708,7 +14947,7 @@ export interface usedInsightMethods {
|
|
|
14708
14947
|
resource(): IBaseQuery<entity> & entityMethods;
|
|
14709
14948
|
}
|
|
14710
14949
|
export interface usedInsightOData {
|
|
14711
|
-
|
|
14950
|
+
resource: entity;
|
|
14712
14951
|
}
|
|
14713
14952
|
/*********************************************
|
|
14714
14953
|
* userInsightsSettings
|
|
@@ -14778,7 +15017,7 @@ export interface userStorageMethods {
|
|
|
14778
15017
|
quota(): IBaseQuery<unifiedStorageQuota> & unifiedStorageQuotaMethods;
|
|
14779
15018
|
}
|
|
14780
15019
|
export interface userStorageOData {
|
|
14781
|
-
|
|
15020
|
+
quota: unifiedStorageQuota;
|
|
14782
15021
|
}
|
|
14783
15022
|
/*********************************************
|
|
14784
15023
|
* onenoteEntityBaseModel
|
|
@@ -14861,6 +15100,8 @@ export interface sectionGroupMethods {
|
|
|
14861
15100
|
sections(id: string | number): IBaseQuery<onenoteSection> & onenoteSectionMethods;
|
|
14862
15101
|
}
|
|
14863
15102
|
export interface sectionGroupOData {
|
|
15103
|
+
parentNotebook: notebook;
|
|
15104
|
+
parentSectionGroup: sectionGroup;
|
|
14864
15105
|
sectionGroups: IBaseResults<sectionGroup>;
|
|
14865
15106
|
sections: IBaseResults<onenoteSection>;
|
|
14866
15107
|
}
|
|
@@ -14881,6 +15122,8 @@ export interface onenoteSectionMethods {
|
|
|
14881
15122
|
}
|
|
14882
15123
|
export interface onenoteSectionOData {
|
|
14883
15124
|
pages: IBaseResults<onenotePage>;
|
|
15125
|
+
parentNotebook: notebook;
|
|
15126
|
+
parentSectionGroup: sectionGroup;
|
|
14884
15127
|
}
|
|
14885
15128
|
/*********************************************
|
|
14886
15129
|
* operation
|
|
@@ -14933,7 +15176,8 @@ export interface onenotePageMethods {
|
|
|
14933
15176
|
parentSection(): IBaseQuery<onenoteSection> & onenoteSectionMethods;
|
|
14934
15177
|
}
|
|
14935
15178
|
export interface onenotePageOData {
|
|
14936
|
-
|
|
15179
|
+
parentNotebook: notebook;
|
|
15180
|
+
parentSection: onenoteSection;
|
|
14937
15181
|
}
|
|
14938
15182
|
/*********************************************
|
|
14939
15183
|
* onenoteResource
|
|
@@ -15224,6 +15468,7 @@ export interface printerShareMethods {
|
|
|
15224
15468
|
export interface printerShareOData {
|
|
15225
15469
|
allowedGroups: IBaseResults<group>;
|
|
15226
15470
|
allowedUsers: IBaseResults<user>;
|
|
15471
|
+
printer: printer;
|
|
15227
15472
|
}
|
|
15228
15473
|
/*********************************************
|
|
15229
15474
|
* print
|
|
@@ -15364,7 +15609,7 @@ export interface printTaskTriggerMethods {
|
|
|
15364
15609
|
definition(): IBaseQuery<printTaskDefinition> & printTaskDefinitionMethods;
|
|
15365
15610
|
}
|
|
15366
15611
|
export interface printTaskTriggerOData {
|
|
15367
|
-
|
|
15612
|
+
definition: printTaskDefinition;
|
|
15368
15613
|
}
|
|
15369
15614
|
/*********************************************
|
|
15370
15615
|
* printJob
|
|
@@ -15400,7 +15645,7 @@ export interface printerCreateOperationMethods {
|
|
|
15400
15645
|
printer(): IBaseQuery<printer> & printerMethods;
|
|
15401
15646
|
}
|
|
15402
15647
|
export interface printerCreateOperationOData {
|
|
15403
|
-
|
|
15648
|
+
printer: printer;
|
|
15404
15649
|
}
|
|
15405
15650
|
/*********************************************
|
|
15406
15651
|
* printTask
|
|
@@ -15415,7 +15660,8 @@ export interface printTaskMethods {
|
|
|
15415
15660
|
trigger(): IBaseQuery<printTaskTrigger> & printTaskTriggerMethods;
|
|
15416
15661
|
}
|
|
15417
15662
|
export interface printTaskOData {
|
|
15418
|
-
|
|
15663
|
+
definition: printTaskDefinition;
|
|
15664
|
+
trigger: printTaskTrigger;
|
|
15419
15665
|
}
|
|
15420
15666
|
/*********************************************
|
|
15421
15667
|
* printServiceEndpoint
|
|
@@ -15449,7 +15695,7 @@ export interface activityHistoryItemMethods {
|
|
|
15449
15695
|
activity(): IBaseQuery<userActivity> & userActivityMethods;
|
|
15450
15696
|
}
|
|
15451
15697
|
export interface activityHistoryItemOData {
|
|
15452
|
-
|
|
15698
|
+
activity: userActivity;
|
|
15453
15699
|
}
|
|
15454
15700
|
/*********************************************
|
|
15455
15701
|
* dataPolicyOperation
|
|
@@ -15667,7 +15913,9 @@ export interface simulationMethods {
|
|
|
15667
15913
|
payload(): IBaseQuery<payload> & payloadMethods;
|
|
15668
15914
|
}
|
|
15669
15915
|
export interface simulationOData {
|
|
15670
|
-
|
|
15916
|
+
landingPage: landingPage;
|
|
15917
|
+
loginPage: loginPage;
|
|
15918
|
+
payload: payload;
|
|
15671
15919
|
}
|
|
15672
15920
|
/*********************************************
|
|
15673
15921
|
* endUserNotificationDetail
|
|
@@ -15905,7 +16153,7 @@ export interface participantJoiningNotificationMethods {
|
|
|
15905
16153
|
call(): IBaseQuery<call> & callMethods;
|
|
15906
16154
|
}
|
|
15907
16155
|
export interface participantJoiningNotificationOData {
|
|
15908
|
-
|
|
16156
|
+
call: call;
|
|
15909
16157
|
}
|
|
15910
16158
|
/*********************************************
|
|
15911
16159
|
* participantLeftNotification
|
|
@@ -15918,7 +16166,7 @@ export interface participantLeftNotificationMethods {
|
|
|
15918
16166
|
call(): IBaseQuery<call> & callMethods;
|
|
15919
16167
|
}
|
|
15920
16168
|
export interface participantLeftNotificationOData {
|
|
15921
|
-
|
|
16169
|
+
call: call;
|
|
15922
16170
|
}
|
|
15923
16171
|
/*********************************************
|
|
15924
16172
|
* playPromptOperation
|
|
@@ -16186,6 +16434,7 @@ export interface virtualEventWebinarMethods {
|
|
|
16186
16434
|
registrations(id: string | number): IBaseQuery<virtualEventRegistration> & virtualEventRegistrationMethods;
|
|
16187
16435
|
}
|
|
16188
16436
|
export interface virtualEventWebinarOData {
|
|
16437
|
+
registrationConfiguration: virtualEventWebinarRegistrationConfiguration;
|
|
16189
16438
|
registrations: IBaseResults<virtualEventRegistration>;
|
|
16190
16439
|
}
|
|
16191
16440
|
/*********************************************
|
|
@@ -16260,7 +16509,7 @@ export interface microsoftAuthenticatorAuthenticationMethodMethods {
|
|
|
16260
16509
|
device(): IBaseQuery<device> & deviceMethods;
|
|
16261
16510
|
}
|
|
16262
16511
|
export interface microsoftAuthenticatorAuthenticationMethodOData {
|
|
16263
|
-
|
|
16512
|
+
device: device;
|
|
16264
16513
|
}
|
|
16265
16514
|
/*********************************************
|
|
16266
16515
|
* passwordAuthenticationMethod
|
|
@@ -16336,7 +16585,7 @@ export interface windowsHelloForBusinessAuthenticationMethodMethods {
|
|
|
16336
16585
|
device(): IBaseQuery<device> & deviceMethods;
|
|
16337
16586
|
}
|
|
16338
16587
|
export interface windowsHelloForBusinessAuthenticationMethodOData {
|
|
16339
|
-
|
|
16588
|
+
device: device;
|
|
16340
16589
|
}
|
|
16341
16590
|
/*********************************************
|
|
16342
16591
|
* aadUserConversationMember
|
|
@@ -16351,7 +16600,7 @@ export interface aadUserConversationMemberMethods {
|
|
|
16351
16600
|
user(): IBaseQuery<user> & userMethods;
|
|
16352
16601
|
}
|
|
16353
16602
|
export interface aadUserConversationMemberOData {
|
|
16354
|
-
|
|
16603
|
+
user: user;
|
|
16355
16604
|
}
|
|
16356
16605
|
/*********************************************
|
|
16357
16606
|
* anonymousGuestConversationMember
|
|
@@ -16408,7 +16657,7 @@ export interface teamInfoMethods {
|
|
|
16408
16657
|
team(): IBaseQuery<team> & teamMethods;
|
|
16409
16658
|
}
|
|
16410
16659
|
export interface teamInfoOData {
|
|
16411
|
-
|
|
16660
|
+
team: team;
|
|
16412
16661
|
}
|
|
16413
16662
|
/*********************************************
|
|
16414
16663
|
* associatedTeamInfo
|
|
@@ -16501,7 +16750,7 @@ export interface teamsTabMethods {
|
|
|
16501
16750
|
teamsApp(): IBaseQuery<teamsApp> & teamsAppMethods;
|
|
16502
16751
|
}
|
|
16503
16752
|
export interface teamsTabOData {
|
|
16504
|
-
|
|
16753
|
+
teamsApp: teamsApp;
|
|
16505
16754
|
}
|
|
16506
16755
|
/*********************************************
|
|
16507
16756
|
* chatMessageInfo
|
|
@@ -16532,7 +16781,7 @@ export interface pinnedChatMessageInfoMethods {
|
|
|
16532
16781
|
message(): IBaseQuery<chatMessage> & chatMessageMethods;
|
|
16533
16782
|
}
|
|
16534
16783
|
export interface pinnedChatMessageInfoOData {
|
|
16535
|
-
|
|
16784
|
+
message: chatMessage;
|
|
16536
16785
|
}
|
|
16537
16786
|
/*********************************************
|
|
16538
16787
|
* teamworkHostedContent
|
|
@@ -16647,7 +16896,7 @@ export interface teamsAppDefinitionMethods {
|
|
|
16647
16896
|
bot(): IBaseQuery<teamworkBot> & teamworkBotMethods;
|
|
16648
16897
|
}
|
|
16649
16898
|
export interface teamsAppDefinitionOData {
|
|
16650
|
-
|
|
16899
|
+
bot: teamworkBot;
|
|
16651
16900
|
}
|
|
16652
16901
|
/*********************************************
|
|
16653
16902
|
* teamworkBot
|
|
@@ -16697,6 +16946,7 @@ export interface teamworkOData {
|
|
|
16697
16946
|
workforceIntegrations: IBaseResults<workforceIntegration>;
|
|
16698
16947
|
deletedChats: IBaseResults<deletedChat>;
|
|
16699
16948
|
deletedTeams: IBaseResults<deletedTeam>;
|
|
16949
|
+
teamsAppSettings: teamsAppSettings;
|
|
16700
16950
|
}
|
|
16701
16951
|
/*********************************************
|
|
16702
16952
|
* workforceIntegration
|
|
@@ -16742,7 +16992,7 @@ export interface userScopeTeamsAppInstallationMethods {
|
|
|
16742
16992
|
chat(): IBaseQuery<chat> & chatMethods;
|
|
16743
16993
|
}
|
|
16744
16994
|
export interface userScopeTeamsAppInstallationOData {
|
|
16745
|
-
|
|
16995
|
+
chat: chat;
|
|
16746
16996
|
}
|
|
16747
16997
|
/*********************************************
|
|
16748
16998
|
* scheduleChangeRequest
|
|
@@ -17181,6 +17431,7 @@ export interface communityMethods {
|
|
|
17181
17431
|
owners(id: string | number): IBaseQuery<user> & userMethods;
|
|
17182
17432
|
}
|
|
17183
17433
|
export interface communityOData {
|
|
17434
|
+
group: group;
|
|
17184
17435
|
owners: IBaseResults<user>;
|
|
17185
17436
|
}
|
|
17186
17437
|
/*********************************************
|
|
@@ -17554,6 +17805,7 @@ export interface ediscoveryCaseOData {
|
|
|
17554
17805
|
operations: IBaseResults<caseOperation>;
|
|
17555
17806
|
reviewSets: IBaseResults<ediscoveryReviewSet>;
|
|
17556
17807
|
searches: IBaseResults<ediscoverySearch>;
|
|
17808
|
+
settings: ediscoveryCaseSettings;
|
|
17557
17809
|
tags: IBaseResults<ediscoveryReviewTag>;
|
|
17558
17810
|
}
|
|
17559
17811
|
/*********************************************
|
|
@@ -17618,7 +17870,8 @@ export interface ediscoveryAddToReviewSetOperationMethods {
|
|
|
17618
17870
|
search(): IBaseQuery<ediscoverySearch> & ediscoverySearchMethods;
|
|
17619
17871
|
}
|
|
17620
17872
|
export interface ediscoveryAddToReviewSetOperationOData {
|
|
17621
|
-
|
|
17873
|
+
reviewSet: ediscoveryReviewSet;
|
|
17874
|
+
search: ediscoverySearch;
|
|
17622
17875
|
}
|
|
17623
17876
|
/*********************************************
|
|
17624
17877
|
* ediscoveryReviewSet
|
|
@@ -17672,7 +17925,9 @@ export interface ediscoverySearchMethods {
|
|
|
17672
17925
|
}
|
|
17673
17926
|
export interface ediscoverySearchOData {
|
|
17674
17927
|
additionalSources: IBaseResults<dataSource>;
|
|
17928
|
+
addToReviewSetOperation: ediscoveryAddToReviewSetOperation;
|
|
17675
17929
|
custodianSources: IBaseResults<dataSource>;
|
|
17930
|
+
lastEstimateStatisticsOperation: ediscoveryEstimateOperation;
|
|
17676
17931
|
noncustodialSources: IBaseResults<ediscoveryNoncustodialDataSource>;
|
|
17677
17932
|
}
|
|
17678
17933
|
/*********************************************
|
|
@@ -17693,6 +17948,7 @@ export interface ediscoveryCustodianMethods {
|
|
|
17693
17948
|
userSources(id: string | number): IBaseQuery<userSource> & userSourceMethods;
|
|
17694
17949
|
}
|
|
17695
17950
|
export interface ediscoveryCustodianOData {
|
|
17951
|
+
lastIndexOperation: ediscoveryIndexOperation;
|
|
17696
17952
|
siteSources: IBaseResults<siteSource>;
|
|
17697
17953
|
unifiedGroupSources: IBaseResults<unifiedGroupSource>;
|
|
17698
17954
|
userSources: IBaseResults<userSource>;
|
|
@@ -17709,7 +17965,8 @@ export interface ediscoveryNoncustodialDataSourceMethods {
|
|
|
17709
17965
|
lastIndexOperation(): IBaseQuery<ediscoveryIndexOperation> & ediscoveryIndexOperationMethods;
|
|
17710
17966
|
}
|
|
17711
17967
|
export interface ediscoveryNoncustodialDataSourceOData {
|
|
17712
|
-
|
|
17968
|
+
dataSource: dataSource;
|
|
17969
|
+
lastIndexOperation: ediscoveryIndexOperation;
|
|
17713
17970
|
}
|
|
17714
17971
|
/*********************************************
|
|
17715
17972
|
* ediscoveryCaseSettings
|
|
@@ -17756,6 +18013,7 @@ export interface ediscoveryReviewTagMethods {
|
|
|
17756
18013
|
}
|
|
17757
18014
|
export interface ediscoveryReviewTagOData {
|
|
17758
18015
|
childTags: IBaseResults<ediscoveryReviewTag>;
|
|
18016
|
+
parent: ediscoveryReviewTag;
|
|
17759
18017
|
}
|
|
17760
18018
|
/*********************************************
|
|
17761
18019
|
* ediscoveryIndexOperation
|
|
@@ -17781,7 +18039,7 @@ export interface siteSourceMethods {
|
|
|
17781
18039
|
site(): IBaseQuery<site> & siteMethods;
|
|
17782
18040
|
}
|
|
17783
18041
|
export interface siteSourceOData {
|
|
17784
|
-
|
|
18042
|
+
site: site;
|
|
17785
18043
|
}
|
|
17786
18044
|
/*********************************************
|
|
17787
18045
|
* unifiedGroupSource
|
|
@@ -17794,7 +18052,7 @@ export interface unifiedGroupSourceMethods {
|
|
|
17794
18052
|
group(): IBaseQuery<group> & groupMethods;
|
|
17795
18053
|
}
|
|
17796
18054
|
export interface unifiedGroupSourceOData {
|
|
17797
|
-
|
|
18055
|
+
group: group;
|
|
17798
18056
|
}
|
|
17799
18057
|
/*********************************************
|
|
17800
18058
|
* userSource
|
|
@@ -17827,7 +18085,7 @@ export interface ediscoveryEstimateOperationMethods {
|
|
|
17827
18085
|
search(): IBaseQuery<ediscoverySearch> & ediscoverySearchMethods;
|
|
17828
18086
|
}
|
|
17829
18087
|
export interface ediscoveryEstimateOperationOData {
|
|
17830
|
-
|
|
18088
|
+
search: ediscoverySearch;
|
|
17831
18089
|
}
|
|
17832
18090
|
/*********************************************
|
|
17833
18091
|
* ediscoveryExportOperation
|
|
@@ -17845,7 +18103,8 @@ export interface ediscoveryExportOperationMethods {
|
|
|
17845
18103
|
reviewSetQuery(): IBaseQuery<ediscoveryReviewSetQuery> & ediscoveryReviewSetQueryMethods;
|
|
17846
18104
|
}
|
|
17847
18105
|
export interface ediscoveryExportOperationOData {
|
|
17848
|
-
|
|
18106
|
+
reviewSet: ediscoveryReviewSet;
|
|
18107
|
+
reviewSetQuery: ediscoveryReviewSetQuery;
|
|
17849
18108
|
}
|
|
17850
18109
|
/*********************************************
|
|
17851
18110
|
* ediscoveryReviewSetQuery
|
|
@@ -17904,7 +18163,7 @@ export interface ediscoverySearchExportOperationMethods {
|
|
|
17904
18163
|
search(): IBaseQuery<ediscoverySearch> & ediscoverySearchMethods;
|
|
17905
18164
|
}
|
|
17906
18165
|
export interface ediscoverySearchExportOperationOData {
|
|
17907
|
-
|
|
18166
|
+
search: ediscoverySearch;
|
|
17908
18167
|
}
|
|
17909
18168
|
/*********************************************
|
|
17910
18169
|
* ediscoveryTagOperation
|
|
@@ -18096,7 +18355,11 @@ export interface filePlanDescriptorMethods {
|
|
|
18096
18355
|
filePlanReferenceTemplate(): IBaseQuery<filePlanReferenceTemplate> & filePlanReferenceTemplateMethods;
|
|
18097
18356
|
}
|
|
18098
18357
|
export interface filePlanDescriptorOData {
|
|
18099
|
-
|
|
18358
|
+
authorityTemplate: authorityTemplate;
|
|
18359
|
+
categoryTemplate: categoryTemplate;
|
|
18360
|
+
citationTemplate: citationTemplate;
|
|
18361
|
+
departmentTemplate: departmentTemplate;
|
|
18362
|
+
filePlanReferenceTemplate: filePlanReferenceTemplate;
|
|
18100
18363
|
}
|
|
18101
18364
|
/*********************************************
|
|
18102
18365
|
* filePlanReferenceTemplate
|
|
@@ -18138,7 +18401,9 @@ export interface retentionLabelMethods {
|
|
|
18138
18401
|
retentionEventType(): IBaseQuery<retentionEventType> & retentionEventTypeMethods;
|
|
18139
18402
|
}
|
|
18140
18403
|
export interface retentionLabelOData {
|
|
18404
|
+
descriptors: filePlanDescriptor;
|
|
18141
18405
|
dispositionReviewStages: IBaseResults<dispositionReviewStage>;
|
|
18406
|
+
retentionEventType: retentionEventType;
|
|
18142
18407
|
}
|
|
18143
18408
|
/*********************************************
|
|
18144
18409
|
* retentionEvent
|
|
@@ -18161,7 +18426,7 @@ export interface retentionEventMethods {
|
|
|
18161
18426
|
retentionEventType(): IBaseQuery<retentionEventType> & retentionEventTypeMethods;
|
|
18162
18427
|
}
|
|
18163
18428
|
export interface retentionEventOData {
|
|
18164
|
-
|
|
18429
|
+
retentionEventType: retentionEventType;
|
|
18165
18430
|
}
|
|
18166
18431
|
/*********************************************
|
|
18167
18432
|
* retentionEventType
|
|
@@ -18209,7 +18474,7 @@ export interface hostComponentMethods {
|
|
|
18209
18474
|
host(): IBaseQuery<host> & hostMethods;
|
|
18210
18475
|
}
|
|
18211
18476
|
export interface hostComponentOData {
|
|
18212
|
-
|
|
18477
|
+
host: host;
|
|
18213
18478
|
}
|
|
18214
18479
|
/*********************************************
|
|
18215
18480
|
* host
|
|
@@ -18254,9 +18519,11 @@ export interface hostOData {
|
|
|
18254
18519
|
passiveDns: IBaseResults<passiveDnsRecord>;
|
|
18255
18520
|
passiveDnsReverse: IBaseResults<passiveDnsRecord>;
|
|
18256
18521
|
ports: IBaseResults<hostPort>;
|
|
18522
|
+
reputation: hostReputation;
|
|
18257
18523
|
sslCertificates: IBaseResults<hostSslCertificate>;
|
|
18258
18524
|
subdomains: IBaseResults<subdomain>;
|
|
18259
18525
|
trackers: IBaseResults<hostTracker>;
|
|
18526
|
+
whois: whoisRecord;
|
|
18260
18527
|
}
|
|
18261
18528
|
/*********************************************
|
|
18262
18529
|
* article
|
|
@@ -18290,7 +18557,7 @@ export interface indicatorMethods {
|
|
|
18290
18557
|
artifact(): IBaseQuery<artifact> & artifactMethods;
|
|
18291
18558
|
}
|
|
18292
18559
|
export interface indicatorOData {
|
|
18293
|
-
|
|
18560
|
+
artifact: artifact;
|
|
18294
18561
|
}
|
|
18295
18562
|
/*********************************************
|
|
18296
18563
|
* articleIndicator
|
|
@@ -18319,7 +18586,8 @@ export interface hostPairMethods {
|
|
|
18319
18586
|
parentHost(): IBaseQuery<host> & hostMethods;
|
|
18320
18587
|
}
|
|
18321
18588
|
export interface hostPairOData {
|
|
18322
|
-
|
|
18589
|
+
childHost: host;
|
|
18590
|
+
parentHost: host;
|
|
18323
18591
|
}
|
|
18324
18592
|
/*********************************************
|
|
18325
18593
|
* hostCookie
|
|
@@ -18335,7 +18603,7 @@ export interface hostCookieMethods {
|
|
|
18335
18603
|
host(): IBaseQuery<host> & hostMethods;
|
|
18336
18604
|
}
|
|
18337
18605
|
export interface hostCookieOData {
|
|
18338
|
-
|
|
18606
|
+
host: host;
|
|
18339
18607
|
}
|
|
18340
18608
|
/*********************************************
|
|
18341
18609
|
* passiveDnsRecord
|
|
@@ -18352,7 +18620,8 @@ export interface passiveDnsRecordMethods {
|
|
|
18352
18620
|
parentHost(): IBaseQuery<host> & hostMethods;
|
|
18353
18621
|
}
|
|
18354
18622
|
export interface passiveDnsRecordOData {
|
|
18355
|
-
|
|
18623
|
+
artifact: artifact;
|
|
18624
|
+
parentHost: host;
|
|
18356
18625
|
}
|
|
18357
18626
|
/*********************************************
|
|
18358
18627
|
* hostPort
|
|
@@ -18374,7 +18643,8 @@ export interface hostPortMethods {
|
|
|
18374
18643
|
mostRecentSslCertificate(): IBaseQuery<sslCertificate> & sslCertificateMethods;
|
|
18375
18644
|
}
|
|
18376
18645
|
export interface hostPortOData {
|
|
18377
|
-
|
|
18646
|
+
host: host;
|
|
18647
|
+
mostRecentSslCertificate: sslCertificate;
|
|
18378
18648
|
}
|
|
18379
18649
|
/*********************************************
|
|
18380
18650
|
* hostReputation
|
|
@@ -18405,7 +18675,8 @@ export interface hostSslCertificateMethods {
|
|
|
18405
18675
|
sslCertificate(): IBaseQuery<sslCertificate> & sslCertificateMethods;
|
|
18406
18676
|
}
|
|
18407
18677
|
export interface hostSslCertificateOData {
|
|
18408
|
-
|
|
18678
|
+
host: host;
|
|
18679
|
+
sslCertificate: sslCertificate;
|
|
18409
18680
|
}
|
|
18410
18681
|
/*********************************************
|
|
18411
18682
|
* subdomain
|
|
@@ -18418,7 +18689,7 @@ export interface subdomainMethods {
|
|
|
18418
18689
|
host(): IBaseQuery<host> & hostMethods;
|
|
18419
18690
|
}
|
|
18420
18691
|
export interface subdomainOData {
|
|
18421
|
-
|
|
18692
|
+
host: host;
|
|
18422
18693
|
}
|
|
18423
18694
|
/*********************************************
|
|
18424
18695
|
* hostTracker
|
|
@@ -18434,7 +18705,7 @@ export interface hostTrackerMethods {
|
|
|
18434
18705
|
host(): IBaseQuery<host> & hostMethods;
|
|
18435
18706
|
}
|
|
18436
18707
|
export interface hostTrackerOData {
|
|
18437
|
-
|
|
18708
|
+
host: host;
|
|
18438
18709
|
}
|
|
18439
18710
|
/*********************************************
|
|
18440
18711
|
* whoisBaseRecord
|
|
@@ -18463,7 +18734,7 @@ export interface whoisBaseRecordMethods {
|
|
|
18463
18734
|
host(): IBaseQuery<host> & hostMethods;
|
|
18464
18735
|
}
|
|
18465
18736
|
export interface whoisBaseRecordOData {
|
|
18466
|
-
|
|
18737
|
+
host: host;
|
|
18467
18738
|
}
|
|
18468
18739
|
/*********************************************
|
|
18469
18740
|
* whoisRecord
|
|
@@ -18677,6 +18948,7 @@ export interface setMethods {
|
|
|
18677
18948
|
}
|
|
18678
18949
|
export interface setOData {
|
|
18679
18950
|
children: IBaseResults<term>;
|
|
18951
|
+
parentGroup: group;
|
|
18680
18952
|
relations: IBaseResults<relation>;
|
|
18681
18953
|
terms: IBaseResults<term>;
|
|
18682
18954
|
}
|
|
@@ -18693,7 +18965,9 @@ export interface relationMethods {
|
|
|
18693
18965
|
toTerm(): IBaseQuery<term> & termMethods;
|
|
18694
18966
|
}
|
|
18695
18967
|
export interface relationOData {
|
|
18696
|
-
|
|
18968
|
+
fromTerm: term;
|
|
18969
|
+
set: set;
|
|
18970
|
+
toTerm: term;
|
|
18697
18971
|
}
|
|
18698
18972
|
/*********************************************
|
|
18699
18973
|
* term
|
|
@@ -18716,6 +18990,7 @@ export interface termMethods {
|
|
|
18716
18990
|
export interface termOData {
|
|
18717
18991
|
children: IBaseResults<term>;
|
|
18718
18992
|
relations: IBaseResults<relation>;
|
|
18993
|
+
set: set;
|
|
18719
18994
|
}
|
|
18720
18995
|
/*********************************************
|
|
18721
18996
|
* callRecord
|
|
@@ -18740,6 +19015,7 @@ export interface callRecordMethods {
|
|
|
18740
19015
|
sessions(id: string | number): IBaseQuery<session> & sessionMethods;
|
|
18741
19016
|
}
|
|
18742
19017
|
export interface callRecordOData {
|
|
19018
|
+
organizer_v2: organizer;
|
|
18743
19019
|
participants_v2: IBaseResults<participant>;
|
|
18744
19020
|
sessions: IBaseResults<session>;
|
|
18745
19021
|
}
|
|
@@ -18826,6 +19102,8 @@ export interface billingMethods {
|
|
|
18826
19102
|
export interface billingOData {
|
|
18827
19103
|
manifests: IBaseResults<manifest>;
|
|
18828
19104
|
operations: IBaseResults<operation>;
|
|
19105
|
+
reconciliation: billingReconciliation;
|
|
19106
|
+
usage: azureUsage;
|
|
18829
19107
|
}
|
|
18830
19108
|
/*********************************************
|
|
18831
19109
|
* azureUsage
|
|
@@ -18839,7 +19117,8 @@ export interface azureUsageMethods {
|
|
|
18839
19117
|
unbilled(): IBaseQuery<unbilledUsage> & unbilledUsageMethods;
|
|
18840
19118
|
}
|
|
18841
19119
|
export interface azureUsageOData {
|
|
18842
|
-
|
|
19120
|
+
billed: billedUsage;
|
|
19121
|
+
unbilled: unbilledUsage;
|
|
18843
19122
|
}
|
|
18844
19123
|
/*********************************************
|
|
18845
19124
|
* billedUsage
|
|
@@ -18913,7 +19192,7 @@ export interface billingReconciliationMethods {
|
|
|
18913
19192
|
billed(): IBaseQuery<billedReconciliation> & billedReconciliationMethods;
|
|
18914
19193
|
}
|
|
18915
19194
|
export interface billingReconciliationOData {
|
|
18916
|
-
|
|
19195
|
+
billed: billedReconciliation;
|
|
18917
19196
|
}
|
|
18918
19197
|
/*********************************************
|
|
18919
19198
|
* exportSuccessOperation
|
|
@@ -18926,7 +19205,7 @@ export interface exportSuccessOperationMethods {
|
|
|
18926
19205
|
resourceLocation(): IBaseQuery<manifest> & manifestMethods;
|
|
18927
19206
|
}
|
|
18928
19207
|
export interface exportSuccessOperationOData {
|
|
18929
|
-
|
|
19208
|
+
resourceLocation: manifest;
|
|
18930
19209
|
}
|
|
18931
19210
|
/*********************************************
|
|
18932
19211
|
* failedOperation
|
|
@@ -19083,6 +19362,7 @@ export interface externalConnectionOData {
|
|
|
19083
19362
|
groups: IBaseResults<externalGroup>;
|
|
19084
19363
|
items: IBaseResults<externalItem>;
|
|
19085
19364
|
operations: IBaseResults<connectionOperation>;
|
|
19365
|
+
schema: schema;
|
|
19086
19366
|
}
|
|
19087
19367
|
/*********************************************
|
|
19088
19368
|
* externalActivity
|
|
@@ -19096,7 +19376,7 @@ export interface externalActivityMethods {
|
|
|
19096
19376
|
performedBy(): IBaseQuery<ComplexTypes.identity>;
|
|
19097
19377
|
}
|
|
19098
19378
|
export interface externalActivityOData {
|
|
19099
|
-
|
|
19379
|
+
performedBy: ComplexTypes.identity;
|
|
19100
19380
|
}
|
|
19101
19381
|
/*********************************************
|
|
19102
19382
|
* identity
|