@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.5
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/.rush/temp/package-deps_build.json +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +189 -4
- package/lib/Bleu/V1.0/main.tsp +53 -0
- package/lib/Delos/Beta/main.tsp +954 -4
- package/lib/Delos/V1.0/main.tsp +93 -0
- package/lib/Fairfax/Beta/main.tsp +563 -20
- package/lib/Fairfax/V1.0/main.tsp +3 -0
- package/lib/GovSG/V1.0/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +205 -4
- package/lib/Mooncake/V1.0/main.tsp +2 -0
- package/lib/Prod/Beta/main.tsp +911 -64
- package/lib/Prod/V1.0/main.tsp +478 -0
- package/lib/USNat/Beta/main.tsp +308 -0
- package/lib/USNat/V1.0/main.tsp +210 -0
- package/lib/USSec/Beta/main.tsp +308 -0
- package/lib/USSec/V1.0/main.tsp +210 -0
- package/package.json +2 -2
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -48,6 +48,7 @@ namespace reference.`microsoft.graph` {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
@complex model accessPackageApprovalStage {
|
|
51
|
+
approverInformationVisibility: approverInformationVisibility;
|
|
51
52
|
durationBeforeAutomaticDenial: duration | null;
|
|
52
53
|
durationBeforeEscalation: duration | null;
|
|
53
54
|
escalationApprovers: subjectSet[] | null;
|
|
@@ -147,6 +148,20 @@ namespace reference.`microsoft.graph` {
|
|
|
147
148
|
@complex model accessPackageResourceAttributeSource {
|
|
148
149
|
}
|
|
149
150
|
|
|
151
|
+
@abstract
|
|
152
|
+
@complex model accessPackageSuggestionReason {
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
@complex model accessPackageSuggestionRelatedPeopleBased extends accessPackageSuggestionReason {
|
|
156
|
+
relatedPeople: identity[];
|
|
157
|
+
relatedPeopleAssignmentCount: int32;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
@complex model accessPackageSuggestionSelfAssignmentHistoryBased extends accessPackageSuggestionReason {
|
|
161
|
+
@computed lastAssignmentDateTime: offsetDateTime;
|
|
162
|
+
pastAssignmentCount: int32;
|
|
163
|
+
}
|
|
164
|
+
|
|
150
165
|
@complex model accessPackageUserDirectoryAttributeStore extends accessPackageResourceAttributeDestination {
|
|
151
166
|
}
|
|
152
167
|
|
|
@@ -398,6 +413,9 @@ namespace reference.`microsoft.graph` {
|
|
|
398
413
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
399
414
|
}
|
|
400
415
|
|
|
416
|
+
@complex model allDomains extends validatingDomains {
|
|
417
|
+
}
|
|
418
|
+
|
|
401
419
|
/**
|
|
402
420
|
* Represents an assignment to all licensed users in the tenant.
|
|
403
421
|
*/
|
|
@@ -3470,6 +3488,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3470
3488
|
users: string[] | null;
|
|
3471
3489
|
}
|
|
3472
3490
|
|
|
3491
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
3492
|
+
domainNames: string[];
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3473
3495
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
3474
3496
|
scopes: string[];
|
|
3475
3497
|
}
|
|
@@ -4355,6 +4377,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4355
4377
|
passcode: string | null;
|
|
4356
4378
|
}
|
|
4357
4379
|
|
|
4380
|
+
/**
|
|
4381
|
+
* Standard way to represent a Json blob on Graph.
|
|
4382
|
+
*/
|
|
4358
4383
|
@complex model Json {
|
|
4359
4384
|
}
|
|
4360
4385
|
|
|
@@ -5092,6 +5117,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5092
5117
|
oneNoteWebUrl: externalLink | null;
|
|
5093
5118
|
}
|
|
5094
5119
|
|
|
5120
|
+
@complex model notificationRecipients {
|
|
5121
|
+
customRecipients: emailIdentity[];
|
|
5122
|
+
role: notificationRecipientsType;
|
|
5123
|
+
}
|
|
5124
|
+
|
|
5095
5125
|
@complex model noTrainingNotificationSetting extends endUserNotificationSetting {
|
|
5096
5126
|
simulationNotification: simulationNotification | null;
|
|
5097
5127
|
}
|
|
@@ -5572,6 +5602,21 @@ namespace reference.`microsoft.graph` {
|
|
|
5572
5602
|
type: string | null;
|
|
5573
5603
|
}
|
|
5574
5604
|
|
|
5605
|
+
@complex model packageAccessEntity {
|
|
5606
|
+
resourceId: string;
|
|
5607
|
+
resourceType: accessEntityType;
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
@complex model packageElement {
|
|
5611
|
+
definition: Json | null;
|
|
5612
|
+
id: string | null;
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5615
|
+
@complex model packageElementDetail {
|
|
5616
|
+
elements: packageElement[];
|
|
5617
|
+
elementType: string | null;
|
|
5618
|
+
}
|
|
5619
|
+
|
|
5575
5620
|
@complex model pageLinks {
|
|
5576
5621
|
oneNoteClientUrl: externalLink | null;
|
|
5577
5622
|
oneNoteWebUrl: externalLink | null;
|
|
@@ -8116,6 +8161,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8116
8161
|
workLocationType: workLocationType;
|
|
8117
8162
|
}
|
|
8118
8163
|
|
|
8164
|
+
@abstract
|
|
8165
|
+
@complex model validatingDomains {
|
|
8166
|
+
rootDomains: rootDomains;
|
|
8167
|
+
}
|
|
8168
|
+
|
|
8119
8169
|
@complex model verifiedDomain {
|
|
8120
8170
|
capabilities: string | null;
|
|
8121
8171
|
isDefault: boolean | null;
|
|
@@ -9273,6 +9323,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9273
9323
|
displayName: string | null;
|
|
9274
9324
|
originId: string | null;
|
|
9275
9325
|
originSystem: string | null;
|
|
9326
|
+
type: roleType | null;
|
|
9276
9327
|
@contains resource: accessPackageResource | null;
|
|
9277
9328
|
}
|
|
9278
9329
|
|
|
@@ -9302,6 +9353,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9302
9353
|
@references connectedOrganization: connectedOrganization | null;
|
|
9303
9354
|
}
|
|
9304
9355
|
|
|
9356
|
+
@entity model accessPackageSuggestion extends entity {
|
|
9357
|
+
reasons: accessPackageSuggestionReason[];
|
|
9358
|
+
@references accessPackage: availableAccessPackage | null;
|
|
9359
|
+
}
|
|
9360
|
+
|
|
9305
9361
|
@entity model accessPackageTextInputQuestion extends accessPackageQuestion {
|
|
9306
9362
|
isSingleLineQuestion: boolean | null;
|
|
9307
9363
|
regexPattern: string | null;
|
|
@@ -10715,6 +10771,12 @@ namespace reference.`microsoft.graph` {
|
|
|
10715
10771
|
guestUserRoleId: guid | null;
|
|
10716
10772
|
}
|
|
10717
10773
|
|
|
10774
|
+
@entity model availableAccessPackage extends entity {
|
|
10775
|
+
description: string | null;
|
|
10776
|
+
displayName: string | null;
|
|
10777
|
+
@references resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
10778
|
+
}
|
|
10779
|
+
|
|
10718
10780
|
@entity model azureCommunicationServicesUserConversationMember extends conversationMember {
|
|
10719
10781
|
azureCommunicationServicesId: string | null;
|
|
10720
10782
|
}
|
|
@@ -10735,6 +10797,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10735
10797
|
@contains driveInclusionRules: driveProtectionRule[];
|
|
10736
10798
|
@contains driveProtectionUnits: driveProtectionUnit[];
|
|
10737
10799
|
@contains driveProtectionUnitsBulkAdditionJobs: driveProtectionUnitsBulkAdditionJob[];
|
|
10800
|
+
@contains emailNotificationsSetting: emailNotificationsSetting | null;
|
|
10738
10801
|
@contains exchangeProtectionPolicies: exchangeProtectionPolicy[];
|
|
10739
10802
|
@contains exchangeRestoreSessions: exchangeRestoreSession[];
|
|
10740
10803
|
@contains mailboxInclusionRules: mailboxProtectionRule[];
|
|
@@ -11937,6 +12000,15 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11937
12000
|
displayName: string | null;
|
|
11938
12001
|
}
|
|
11939
12002
|
|
|
12003
|
+
@abstract
|
|
12004
|
+
@entity model controlConfiguration extends entity {
|
|
12005
|
+
createdBy: string | null;
|
|
12006
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12007
|
+
isEnabled: boolean;
|
|
12008
|
+
modifiedBy: string | null;
|
|
12009
|
+
modifiedDateTime: offsetDateTime | null;
|
|
12010
|
+
}
|
|
12011
|
+
|
|
11940
12012
|
@entity model conversation extends entity {
|
|
11941
12013
|
hasAttachments: boolean;
|
|
11942
12014
|
@computed lastDeliveredDateTime: offsetDateTime;
|
|
@@ -11966,9 +12038,14 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11966
12038
|
}
|
|
11967
12039
|
|
|
11968
12040
|
@entity model copilotAdmin extends entity {
|
|
12041
|
+
@contains catalog: copilotAdminCatalog | null;
|
|
11969
12042
|
@contains settings: copilotAdminSetting | null;
|
|
11970
12043
|
}
|
|
11971
12044
|
|
|
12045
|
+
@entity model copilotAdminCatalog extends entity {
|
|
12046
|
+
@contains packages: copilotPackageDetail[];
|
|
12047
|
+
}
|
|
12048
|
+
|
|
11972
12049
|
@entity model copilotAdminLimitedMode extends entity {
|
|
11973
12050
|
groupId: string | null;
|
|
11974
12051
|
isEnabledForGroup: boolean | null;
|
|
@@ -11978,6 +12055,36 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11978
12055
|
@contains limitedMode: copilotAdminLimitedMode | null;
|
|
11979
12056
|
}
|
|
11980
12057
|
|
|
12058
|
+
@entity model copilotPackage extends entity {
|
|
12059
|
+
appId: string | null;
|
|
12060
|
+
assetId: string | null;
|
|
12061
|
+
availableTo: packageStatus;
|
|
12062
|
+
deployedTo: packageStatus;
|
|
12063
|
+
displayName: string | null;
|
|
12064
|
+
elementTypes: string[];
|
|
12065
|
+
isBlocked: boolean;
|
|
12066
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12067
|
+
manifestId: string | null;
|
|
12068
|
+
manifestVersion: string | null;
|
|
12069
|
+
ownerId: string | null;
|
|
12070
|
+
platform: string | null;
|
|
12071
|
+
publisher: string | null;
|
|
12072
|
+
shortDescription: string | null;
|
|
12073
|
+
supportedHosts: string[];
|
|
12074
|
+
type: packageType;
|
|
12075
|
+
version: string | null;
|
|
12076
|
+
zipFile: stream | null;
|
|
12077
|
+
}
|
|
12078
|
+
|
|
12079
|
+
@entity model copilotPackageDetail extends copilotPackage {
|
|
12080
|
+
acquireUsersAndGroups: packageAccessEntity[];
|
|
12081
|
+
allowedUsersAndGroups: packageAccessEntity[];
|
|
12082
|
+
categories: string[];
|
|
12083
|
+
elementDetails: packageElementDetail[];
|
|
12084
|
+
longDescription: string | null;
|
|
12085
|
+
sensitivity: string | null;
|
|
12086
|
+
}
|
|
12087
|
+
|
|
11981
12088
|
@entity model copilotReportRoot extends entity {
|
|
11982
12089
|
}
|
|
11983
12090
|
|
|
@@ -14184,6 +14291,12 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
14184
14291
|
recipientEmail: string;
|
|
14185
14292
|
}
|
|
14186
14293
|
|
|
14294
|
+
@entity model emailNotificationsSetting extends entity {
|
|
14295
|
+
additionalEvents: notificationEventsType;
|
|
14296
|
+
isEnabled: boolean;
|
|
14297
|
+
recipients: notificationRecipients;
|
|
14298
|
+
}
|
|
14299
|
+
|
|
14187
14300
|
@entity model emergencyCallEvent extends callEvent {
|
|
14188
14301
|
callerInfo: emergencyCallerInfo | null;
|
|
14189
14302
|
emergencyNumberDialed: string | null;
|
|
@@ -14250,6 +14363,11 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
14250
14363
|
subject: string;
|
|
14251
14364
|
}
|
|
14252
14365
|
|
|
14366
|
+
@entity model endUserSettings extends controlConfiguration {
|
|
14367
|
+
relatedPeopleInsightLevel: accessPackageSuggestionRelatedPeopleInsightLevel | null;
|
|
14368
|
+
showApproverDetailsToMembers: boolean;
|
|
14369
|
+
}
|
|
14370
|
+
|
|
14253
14371
|
/**
|
|
14254
14372
|
* Represents the status of a Viva Engage async operation that is an operation that transcends the
|
|
14255
14373
|
lifetime of a single API request. These operations are long-running or too expensive to complete
|
|
@@ -14493,11 +14611,14 @@ within the time frame of their original request.
|
|
|
14493
14611
|
@entity model entitlementManagement extends entity {
|
|
14494
14612
|
@contains accessPackageAssignmentApprovals: approval[];
|
|
14495
14613
|
@contains accessPackages: accessPackage[];
|
|
14614
|
+
@contains accessPackageSuggestions: accessPackageSuggestion[];
|
|
14496
14615
|
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
14497
14616
|
@contains assignmentRequests: accessPackageAssignmentRequest[];
|
|
14498
14617
|
@contains assignments: accessPackageAssignment[];
|
|
14618
|
+
@contains availableAccessPackages: availableAccessPackage[];
|
|
14499
14619
|
@contains catalogs: accessPackageCatalog[];
|
|
14500
14620
|
@contains connectedOrganizations: connectedOrganization[];
|
|
14621
|
+
@contains controlConfigurations: controlConfiguration[];
|
|
14501
14622
|
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
14502
14623
|
@contains resourceRequests: accessPackageResourceRequest[];
|
|
14503
14624
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
@@ -14689,6 +14810,10 @@ within the time frame of their original request.
|
|
|
14689
14810
|
subject: string;
|
|
14690
14811
|
}
|
|
14691
14812
|
|
|
14813
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
14814
|
+
validatingDomains: validatingDomains;
|
|
14815
|
+
}
|
|
14816
|
+
|
|
14692
14817
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
14693
14818
|
aaGuid: string | null;
|
|
14694
14819
|
attestationCertificates: string[] | null;
|
|
@@ -14843,6 +14968,7 @@ within the time frame of their original request.
|
|
|
14843
14968
|
*/
|
|
14844
14969
|
@open
|
|
14845
14970
|
@entity model group extends directoryObject {
|
|
14971
|
+
accessType: groupAccessType | null;
|
|
14846
14972
|
allowExternalSenders: boolean | null;
|
|
14847
14973
|
assignedLabels: assignedLabel[] | null;
|
|
14848
14974
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -14859,6 +14985,7 @@ within the time frame of their original request.
|
|
|
14859
14985
|
infoCatalogs: string[];
|
|
14860
14986
|
isArchived: boolean | null;
|
|
14861
14987
|
isAssignableToRole: boolean | null;
|
|
14988
|
+
isFavorite: boolean | null;
|
|
14862
14989
|
isManagementRestricted: boolean | null;
|
|
14863
14990
|
isSubscribedByMail: boolean | null;
|
|
14864
14991
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -14868,6 +14995,7 @@ within the time frame of their original request.
|
|
|
14868
14995
|
membershipRule: string | null;
|
|
14869
14996
|
membershipRuleProcessingState: string | null;
|
|
14870
14997
|
onPremisesDomainName: string | null;
|
|
14998
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
14871
14999
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
14872
15000
|
onPremisesNetBiosName: string | null;
|
|
14873
15001
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -14885,7 +15013,9 @@ within the time frame of their original request.
|
|
|
14885
15013
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
14886
15014
|
theme: string | null;
|
|
14887
15015
|
uniqueName: string | null;
|
|
15016
|
+
unseenConversationsCount: int32 | null;
|
|
14888
15017
|
unseenCount: int32 | null;
|
|
15018
|
+
unseenMessagesCount: int32 | null;
|
|
14889
15019
|
visibility: string | null;
|
|
14890
15020
|
welcomeMessageEnabled: boolean | null;
|
|
14891
15021
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -18862,6 +18992,7 @@ within the time frame of their original request.
|
|
|
18862
18992
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
18863
18993
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
18864
18994
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
18995
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
18865
18996
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
18866
18997
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
18867
18998
|
@contains ownerlessGroupPolicy: ownerlessGroupPolicy | null;
|
|
@@ -19148,6 +19279,7 @@ within the time frame of their original request.
|
|
|
19148
19279
|
@entity model profileCardProperty extends entity {
|
|
19149
19280
|
annotations: profileCardAnnotation[] | null;
|
|
19150
19281
|
directoryPropertyName: string | null;
|
|
19282
|
+
isVisible: boolean;
|
|
19151
19283
|
}
|
|
19152
19284
|
|
|
19153
19285
|
@entity model profilePhoto extends entity {
|
|
@@ -19784,6 +19916,7 @@ within the time frame of their original request.
|
|
|
19784
19916
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
19785
19917
|
@contains attackSimulation: attackSimulationRoot | null;
|
|
19786
19918
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
19919
|
+
@contains collaboration: reference.`microsoft.graph.security`.collaborationRoot | null;
|
|
19787
19920
|
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
19788
19921
|
@contains identities: reference.`microsoft.graph.security`.identityContainer | null;
|
|
19789
19922
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
@@ -25649,6 +25782,12 @@ within the time frame of their original request.
|
|
|
25649
25782
|
allowedPolicyOIDs: string[];
|
|
25650
25783
|
}
|
|
25651
25784
|
|
|
25785
|
+
enum accessEntityType {
|
|
25786
|
+
user: 0,
|
|
25787
|
+
group: 1,
|
|
25788
|
+
unknownFutureValue: 2,
|
|
25789
|
+
}
|
|
25790
|
+
|
|
25652
25791
|
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
25653
25792
|
target: 1,
|
|
25654
25793
|
createdBy: 2,
|
|
@@ -25755,6 +25894,21 @@ within the time frame of their original request.
|
|
|
25755
25894
|
unknownFutureValue: 3,
|
|
25756
25895
|
}
|
|
25757
25896
|
|
|
25897
|
+
@graphFlags
|
|
25898
|
+
enum accessPackageSuggestionFilterByCurrentUserOptions {
|
|
25899
|
+
none: 0,
|
|
25900
|
+
relatedPeopleAssignments: 1,
|
|
25901
|
+
assignmentHistory: 2,
|
|
25902
|
+
unknownFutureValue: 4,
|
|
25903
|
+
}
|
|
25904
|
+
|
|
25905
|
+
enum accessPackageSuggestionRelatedPeopleInsightLevel {
|
|
25906
|
+
disabled: 0,
|
|
25907
|
+
count: 1,
|
|
25908
|
+
countAndNames: 2,
|
|
25909
|
+
unknownFutureValue: 3,
|
|
25910
|
+
}
|
|
25911
|
+
|
|
25758
25912
|
enum accessReviewExpirationBehavior {
|
|
25759
25913
|
keepAccess: 0,
|
|
25760
25914
|
removeAccess: 1,
|
|
@@ -26252,6 +26406,13 @@ within the time frame of their original request.
|
|
|
26252
26406
|
unknownFutureValue: 3,
|
|
26253
26407
|
}
|
|
26254
26408
|
|
|
26409
|
+
enum approverInformationVisibility {
|
|
26410
|
+
default: 0,
|
|
26411
|
+
notVisible: 1,
|
|
26412
|
+
visible: 2,
|
|
26413
|
+
unknownFutureValue: 3,
|
|
26414
|
+
}
|
|
26415
|
+
|
|
26255
26416
|
enum appsUpdateChannelType {
|
|
26256
26417
|
current: 0,
|
|
26257
26418
|
monthlyEnterprise: 1,
|
|
@@ -29334,6 +29495,14 @@ within the time frame of their original request.
|
|
|
29334
29495
|
unknownFutureValue: 2,
|
|
29335
29496
|
}
|
|
29336
29497
|
|
|
29498
|
+
enum groupAccessType {
|
|
29499
|
+
none: 0,
|
|
29500
|
+
private: 1,
|
|
29501
|
+
secret: 2,
|
|
29502
|
+
public: 3,
|
|
29503
|
+
unknownFutureValue: 4,
|
|
29504
|
+
}
|
|
29505
|
+
|
|
29337
29506
|
enum groupType {
|
|
29338
29507
|
unifiedGroups: 0,
|
|
29339
29508
|
azureAD: 1,
|
|
@@ -30476,6 +30645,23 @@ within the time frame of their original request.
|
|
|
30476
30645
|
unknownFutureValue: 3,
|
|
30477
30646
|
}
|
|
30478
30647
|
|
|
30648
|
+
@graphFlags
|
|
30649
|
+
enum notificationEventsType {
|
|
30650
|
+
none: 1,
|
|
30651
|
+
restoreAndPolicyUpdates: 2,
|
|
30652
|
+
unknownFutureValue: 4,
|
|
30653
|
+
}
|
|
30654
|
+
|
|
30655
|
+
@graphFlags
|
|
30656
|
+
enum notificationRecipientsType {
|
|
30657
|
+
none: 0,
|
|
30658
|
+
globalAdmins: 1,
|
|
30659
|
+
backupAdmins: 2,
|
|
30660
|
+
custom: 4,
|
|
30661
|
+
allAdmins: 8,
|
|
30662
|
+
unknownFutureValue: 16,
|
|
30663
|
+
}
|
|
30664
|
+
|
|
30479
30665
|
/**
|
|
30480
30666
|
* Branding Options for the Message Template. Branding is defined in the Intune Admin Console.
|
|
30481
30667
|
*/
|
|
@@ -30711,6 +30897,21 @@ within the time frame of their original request.
|
|
|
30711
30897
|
unknownFutureValue: 1,
|
|
30712
30898
|
}
|
|
30713
30899
|
|
|
30900
|
+
enum packageStatus {
|
|
30901
|
+
none: 0,
|
|
30902
|
+
some: 1,
|
|
30903
|
+
all: 2,
|
|
30904
|
+
unknownFutureValue: 3,
|
|
30905
|
+
}
|
|
30906
|
+
|
|
30907
|
+
enum packageType {
|
|
30908
|
+
microsoft: 0,
|
|
30909
|
+
external: 1,
|
|
30910
|
+
shared: 2,
|
|
30911
|
+
custom: 3,
|
|
30912
|
+
unknownFutureValue: 4,
|
|
30913
|
+
}
|
|
30914
|
+
|
|
30714
30915
|
enum pageLayoutType {
|
|
30715
30916
|
microsoftReserved: 0,
|
|
30716
30917
|
article: 1,
|
|
@@ -33212,6 +33413,24 @@ within the time frame of their original request.
|
|
|
33212
33413
|
unknownFutureValue: 4,
|
|
33213
33414
|
}
|
|
33214
33415
|
|
|
33416
|
+
enum roleType {
|
|
33417
|
+
active: 0,
|
|
33418
|
+
eligible: 1,
|
|
33419
|
+
application: 2,
|
|
33420
|
+
delegated: 3,
|
|
33421
|
+
unknownFutureValue: 99,
|
|
33422
|
+
}
|
|
33423
|
+
|
|
33424
|
+
enum rootDomains {
|
|
33425
|
+
none: 0,
|
|
33426
|
+
all: 1,
|
|
33427
|
+
allFederated: 2,
|
|
33428
|
+
allManaged: 3,
|
|
33429
|
+
enumerated: 4,
|
|
33430
|
+
allManagedAndEnumeratedFederated: 5,
|
|
33431
|
+
unknownFutureValue: 6,
|
|
33432
|
+
}
|
|
33433
|
+
|
|
33215
33434
|
enum routingMode {
|
|
33216
33435
|
oneToOne: 0,
|
|
33217
33436
|
multicast: 1,
|
|
@@ -36804,6 +37023,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
36804
37023
|
personLanguages: 54,
|
|
36805
37024
|
personPublications: 55,
|
|
36806
37025
|
personPatents: 56,
|
|
37026
|
+
personWorkPositions: 57,
|
|
36807
37027
|
}
|
|
36808
37028
|
|
|
36809
37029
|
enum propertyType {
|
|
@@ -37380,6 +37600,7 @@ namespace reference.`microsoft.graph.search` {
|
|
|
37380
37600
|
|
|
37381
37601
|
}
|
|
37382
37602
|
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
37603
|
+
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
37383
37604
|
@publicNamespace("microsoft.graph.security")
|
|
37384
37605
|
namespace reference.`microsoft.graph.security` {
|
|
37385
37606
|
@complex model account {
|
|
@@ -37423,6 +37644,67 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37423
37644
|
resourceType: string | null;
|
|
37424
37645
|
}
|
|
37425
37646
|
|
|
37647
|
+
@complex model analyzedEmailAttachment {
|
|
37648
|
+
detonationDetails: detonationDetails | null;
|
|
37649
|
+
fileExtension: string | null;
|
|
37650
|
+
fileName: string | null;
|
|
37651
|
+
fileSize: int32 | null;
|
|
37652
|
+
fileType: string | null;
|
|
37653
|
+
malwareFamily: string | null;
|
|
37654
|
+
sha256: string | null;
|
|
37655
|
+
tenantAllowBlockListDetailInfo: string | null;
|
|
37656
|
+
threatType: threatType | null;
|
|
37657
|
+
}
|
|
37658
|
+
|
|
37659
|
+
@complex model analyzedEmailAuthenticationDetail {
|
|
37660
|
+
compositeAuthentication: string | null;
|
|
37661
|
+
dkim: string | null;
|
|
37662
|
+
dmarc: string | null;
|
|
37663
|
+
senderPolicyFramework: string | null;
|
|
37664
|
+
}
|
|
37665
|
+
|
|
37666
|
+
@complex model analyzedEmailDeliveryDetail {
|
|
37667
|
+
action: deliveryAction | null;
|
|
37668
|
+
latestThreats: string | null;
|
|
37669
|
+
location: deliveryLocation | null;
|
|
37670
|
+
originalThreats: string | null;
|
|
37671
|
+
}
|
|
37672
|
+
|
|
37673
|
+
@complex model analyzedEmailDlpRuleInfo {
|
|
37674
|
+
name: string | null;
|
|
37675
|
+
ruleId: string | null;
|
|
37676
|
+
}
|
|
37677
|
+
|
|
37678
|
+
@complex model analyzedEmailExchangeTransportRuleInfo {
|
|
37679
|
+
name: string | null;
|
|
37680
|
+
ruleId: string | null;
|
|
37681
|
+
}
|
|
37682
|
+
|
|
37683
|
+
@complex model analyzedEmailRecipientDetail {
|
|
37684
|
+
ccRecipients: string[] | null;
|
|
37685
|
+
domainName: string | null;
|
|
37686
|
+
}
|
|
37687
|
+
|
|
37688
|
+
@complex model analyzedEmailSenderDetail {
|
|
37689
|
+
displayName: string | null;
|
|
37690
|
+
domainCreationDateTime: offsetDateTime | null;
|
|
37691
|
+
domainName: string | null;
|
|
37692
|
+
domainOwner: string | null;
|
|
37693
|
+
fromAddress: string | null;
|
|
37694
|
+
ipv4: string | null;
|
|
37695
|
+
location: string | null;
|
|
37696
|
+
mailFromAddress: string | null;
|
|
37697
|
+
mailFromDomainName: string | null;
|
|
37698
|
+
}
|
|
37699
|
+
|
|
37700
|
+
@complex model analyzedEmailUrl {
|
|
37701
|
+
detectionMethod: string | null;
|
|
37702
|
+
detonationDetails: detonationDetails | null;
|
|
37703
|
+
tenantAllowBlockListDetailInfo: string | null;
|
|
37704
|
+
threatType: threatType | null;
|
|
37705
|
+
url: string | null;
|
|
37706
|
+
}
|
|
37707
|
+
|
|
37426
37708
|
@complex model analyzedMessageEvidence extends alertEvidence {
|
|
37427
37709
|
antiSpamDirection: string | null;
|
|
37428
37710
|
attachmentsCount: int64 | null;
|
|
@@ -37496,6 +37778,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37496
37778
|
userAgent: string | null;
|
|
37497
37779
|
}
|
|
37498
37780
|
|
|
37781
|
+
@complex model compromiseIndicator {
|
|
37782
|
+
value: string | null;
|
|
37783
|
+
verdict: verdictCategory | null;
|
|
37784
|
+
}
|
|
37785
|
+
|
|
37499
37786
|
@complex model containerEvidence extends alertEvidence {
|
|
37500
37787
|
args: string[] | null;
|
|
37501
37788
|
command: string[] | null;
|
|
@@ -37526,6 +37813,46 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37526
37813
|
deploymentAccessKey: string;
|
|
37527
37814
|
}
|
|
37528
37815
|
|
|
37816
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
37817
|
+
@complex model detonationBehaviourDetails {
|
|
37818
|
+
actionStatus: string | null;
|
|
37819
|
+
behaviourCapability: string | null;
|
|
37820
|
+
behaviourGroup: string | null;
|
|
37821
|
+
details: string | null;
|
|
37822
|
+
eventDateTime: offsetDateTime | null;
|
|
37823
|
+
operation: string | null;
|
|
37824
|
+
processId: string | null;
|
|
37825
|
+
processName: string | null;
|
|
37826
|
+
target: string | null;
|
|
37827
|
+
}
|
|
37828
|
+
|
|
37829
|
+
@complex model detonationChain {
|
|
37830
|
+
childNodes: detonationChain[] | null;
|
|
37831
|
+
value: string | null;
|
|
37832
|
+
}
|
|
37833
|
+
|
|
37834
|
+
@complex model detonationDetails {
|
|
37835
|
+
analysisDateTime: offsetDateTime | null;
|
|
37836
|
+
compromiseIndicators: compromiseIndicator[] | null;
|
|
37837
|
+
detonationBehaviourDetails: detonationBehaviourDetails | null;
|
|
37838
|
+
detonationBehaviourDetailsV2: string | null;
|
|
37839
|
+
detonationChain: detonationChain | null;
|
|
37840
|
+
detonationObservables: detonationObservables | null;
|
|
37841
|
+
detonationScreenshotUri: string | null;
|
|
37842
|
+
detonationVerdict: string | null;
|
|
37843
|
+
detonationVerdictReason: string | null;
|
|
37844
|
+
entityMetadata: string | null;
|
|
37845
|
+
mitreTechniques: string | null;
|
|
37846
|
+
staticAnalysis: string | null;
|
|
37847
|
+
submissionSource: string | null;
|
|
37848
|
+
}
|
|
37849
|
+
|
|
37850
|
+
@complex model detonationObservables {
|
|
37851
|
+
contactedIps: string[] | null;
|
|
37852
|
+
contactedUrls: string[] | null;
|
|
37853
|
+
droppedfiles: string[] | null;
|
|
37854
|
+
}
|
|
37855
|
+
|
|
37529
37856
|
@complex model deviceEvidence extends alertEvidence {
|
|
37530
37857
|
azureAdDeviceId: string | null;
|
|
37531
37858
|
defenderAvStatus: defenderAvStatus | null;
|
|
@@ -38092,6 +38419,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38092
38419
|
urls: urlEvidence[] | null;
|
|
38093
38420
|
}
|
|
38094
38421
|
|
|
38422
|
+
@complex model threatDetectionDetail {
|
|
38423
|
+
confidenceLevel: string | null;
|
|
38424
|
+
priorityAccountProtection: string | null;
|
|
38425
|
+
threats: string | null;
|
|
38426
|
+
}
|
|
38427
|
+
|
|
38428
|
+
@complex model timelineEvent {
|
|
38429
|
+
eventDateTime: offsetDateTime | null;
|
|
38430
|
+
eventDetails: string | null;
|
|
38431
|
+
eventResult: string | null;
|
|
38432
|
+
eventSource: eventSource | null;
|
|
38433
|
+
eventThreats: string[] | null;
|
|
38434
|
+
eventType: timelineEventType | null;
|
|
38435
|
+
}
|
|
38436
|
+
|
|
38095
38437
|
@complex model topicModelingSettings {
|
|
38096
38438
|
dynamicallyAdjustTopicCount: boolean | null;
|
|
38097
38439
|
ignoreNumbers: boolean | null;
|
|
@@ -38182,6 +38524,46 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38182
38524
|
title: string | null;
|
|
38183
38525
|
}
|
|
38184
38526
|
|
|
38527
|
+
@entity model analyzedEmail extends reference.`microsoft.graph`.entity {
|
|
38528
|
+
alertIds: string[] | null;
|
|
38529
|
+
attachments: analyzedEmailAttachment[] | null;
|
|
38530
|
+
authenticationDetails: analyzedEmailAuthenticationDetail | null;
|
|
38531
|
+
bulkComplaintLevel: string | null;
|
|
38532
|
+
clientType: string | null;
|
|
38533
|
+
contexts: string[] | null;
|
|
38534
|
+
detectionMethods: string[] | null;
|
|
38535
|
+
directionality: antispamDirectionality | null;
|
|
38536
|
+
distributionList: string | null;
|
|
38537
|
+
dlpRules: analyzedEmailDlpRuleInfo[] | null;
|
|
38538
|
+
emailClusterId: string | null;
|
|
38539
|
+
exchangeTransportRules: analyzedEmailExchangeTransportRuleInfo[] | null;
|
|
38540
|
+
forwardingDetail: string | null;
|
|
38541
|
+
inboundConnectorFormattedName: string | null;
|
|
38542
|
+
internetMessageId: string | null;
|
|
38543
|
+
language: string | null;
|
|
38544
|
+
latestDelivery: analyzedEmailDeliveryDetail | null;
|
|
38545
|
+
loggedDateTime: offsetDateTime | null;
|
|
38546
|
+
networkMessageId: string | null;
|
|
38547
|
+
originalDelivery: analyzedEmailDeliveryDetail | null;
|
|
38548
|
+
overrideSources: string[] | null;
|
|
38549
|
+
phishConfidenceLevel: string | null;
|
|
38550
|
+
policy: string | null;
|
|
38551
|
+
policyAction: string | null;
|
|
38552
|
+
policyType: string | null;
|
|
38553
|
+
primaryOverrideSource: string | null;
|
|
38554
|
+
recipientDetail: analyzedEmailRecipientDetail | null;
|
|
38555
|
+
recipientEmailAddress: string | null;
|
|
38556
|
+
returnPath: string | null;
|
|
38557
|
+
senderDetail: analyzedEmailSenderDetail | null;
|
|
38558
|
+
sizeInBytes: int32 | null;
|
|
38559
|
+
spamConfidenceLevel: string | null;
|
|
38560
|
+
subject: string | null;
|
|
38561
|
+
threatDetectionDetails: threatDetectionDetail[] | null;
|
|
38562
|
+
threatTypes: threatType[] | null;
|
|
38563
|
+
timelineEvents: timelineEvent[] | null;
|
|
38564
|
+
urls: analyzedEmailUrl[] | null;
|
|
38565
|
+
}
|
|
38566
|
+
|
|
38185
38567
|
@entity model article extends reference.`microsoft.graph`.entity {
|
|
38186
38568
|
body: formattedContent;
|
|
38187
38569
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -38241,6 +38623,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38241
38623
|
citationUrl: string | null;
|
|
38242
38624
|
}
|
|
38243
38625
|
|
|
38626
|
+
@abstract
|
|
38627
|
+
@entity model collaborationRoot extends reference.`microsoft.graph`.entity {
|
|
38628
|
+
@contains analyzedEmails: analyzedEmail[];
|
|
38629
|
+
}
|
|
38630
|
+
|
|
38244
38631
|
@abstract
|
|
38245
38632
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
38246
38633
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -38870,6 +39257,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38870
39257
|
messageConversationExpansion: 64,
|
|
38871
39258
|
locationsWithoutHits: 256,
|
|
38872
39259
|
allItemsInFolder: 512,
|
|
39260
|
+
cloudNativeHtmlConversion: 1024,
|
|
38873
39261
|
}
|
|
38874
39262
|
|
|
38875
39263
|
@graphFlags
|
|
@@ -38943,6 +39331,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38943
39331
|
unknownFutureValue: 31,
|
|
38944
39332
|
}
|
|
38945
39333
|
|
|
39334
|
+
enum antispamDirectionality {
|
|
39335
|
+
`unknown`: 0,
|
|
39336
|
+
inbound: 1,
|
|
39337
|
+
outbound: 2,
|
|
39338
|
+
intraOrg: 3,
|
|
39339
|
+
unknownFutureValue: 127,
|
|
39340
|
+
}
|
|
39341
|
+
|
|
38946
39342
|
enum antispamTeamsDirection {
|
|
38947
39343
|
`unknown`: 0,
|
|
38948
39344
|
inbound: 1,
|
|
@@ -39091,6 +39487,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39091
39487
|
unknownFutureValue: 1023,
|
|
39092
39488
|
}
|
|
39093
39489
|
|
|
39490
|
+
enum deliveryAction {
|
|
39491
|
+
`unknown`: 0,
|
|
39492
|
+
deliveredToJunk: 1,
|
|
39493
|
+
delivered: 2,
|
|
39494
|
+
blocked: 3,
|
|
39495
|
+
replaced: 4,
|
|
39496
|
+
unknownFutureValue: 127,
|
|
39497
|
+
}
|
|
39498
|
+
|
|
39499
|
+
enum deliveryLocation {
|
|
39500
|
+
`unknown`: 0,
|
|
39501
|
+
inbox_folder: 1,
|
|
39502
|
+
junkFolder: 2,
|
|
39503
|
+
deletedFolder: 3,
|
|
39504
|
+
quarantine: 4,
|
|
39505
|
+
onprem_external: 5,
|
|
39506
|
+
failed: 6,
|
|
39507
|
+
dropped: 7,
|
|
39508
|
+
others: 10,
|
|
39509
|
+
unknownFutureValue: 127,
|
|
39510
|
+
}
|
|
39511
|
+
|
|
39094
39512
|
enum deploymentStatus {
|
|
39095
39513
|
upToDate: 1,
|
|
39096
39514
|
outdated: 2,
|
|
@@ -39188,6 +39606,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39188
39606
|
unknownFutureValue: 4,
|
|
39189
39607
|
}
|
|
39190
39608
|
|
|
39609
|
+
enum eventSource {
|
|
39610
|
+
system: 0,
|
|
39611
|
+
admin: 1,
|
|
39612
|
+
user: 2,
|
|
39613
|
+
unknownFutureValue: 127,
|
|
39614
|
+
}
|
|
39615
|
+
|
|
39191
39616
|
enum eventStatusType {
|
|
39192
39617
|
pending: 0,
|
|
39193
39618
|
error: 1,
|
|
@@ -39479,6 +39904,23 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39479
39904
|
unknownFutureValue: 4,
|
|
39480
39905
|
}
|
|
39481
39906
|
|
|
39907
|
+
enum remediationAction {
|
|
39908
|
+
moveToJunk: 1,
|
|
39909
|
+
moveToInbox: 2,
|
|
39910
|
+
hardDelete: 5,
|
|
39911
|
+
softDelete: 6,
|
|
39912
|
+
moveToDeletedItems: 7,
|
|
39913
|
+
unknownFutureValue: 14,
|
|
39914
|
+
moveToQuarantine: 15,
|
|
39915
|
+
}
|
|
39916
|
+
|
|
39917
|
+
enum remediationSeverity {
|
|
39918
|
+
low: 1,
|
|
39919
|
+
medium: 2,
|
|
39920
|
+
high: 3,
|
|
39921
|
+
unknownFutureValue: 127,
|
|
39922
|
+
}
|
|
39923
|
+
|
|
39482
39924
|
enum retentionTrigger {
|
|
39483
39925
|
dateLabeled: 0,
|
|
39484
39926
|
dateCreated: 1,
|
|
@@ -39540,6 +39982,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39540
39982
|
microsoftSentinel: 512,
|
|
39541
39983
|
microsoftInsiderRiskManagement: 1024,
|
|
39542
39984
|
microsoftThreatIntelligence: 2048,
|
|
39985
|
+
microsoftSecurityForAI: 4096,
|
|
39543
39986
|
}
|
|
39544
39987
|
|
|
39545
39988
|
enum serviceStatus {
|
|
@@ -39586,6 +40029,41 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39586
40029
|
unknownFutureValue: 31,
|
|
39587
40030
|
}
|
|
39588
40031
|
|
|
40032
|
+
enum threatType {
|
|
40033
|
+
`unknown`: 0,
|
|
40034
|
+
spam: 1,
|
|
40035
|
+
malware: 2,
|
|
40036
|
+
phish: 3,
|
|
40037
|
+
none: 4,
|
|
40038
|
+
unknownFutureValue: 127,
|
|
40039
|
+
}
|
|
40040
|
+
|
|
40041
|
+
enum timelineEventType {
|
|
40042
|
+
originalDelivery: 0,
|
|
40043
|
+
systemTimeTravel: 1,
|
|
40044
|
+
dynamicDelivery: 2,
|
|
40045
|
+
userUrlClick: 3,
|
|
40046
|
+
reprocessed: 4,
|
|
40047
|
+
zap: 5,
|
|
40048
|
+
quarantineRelease: 6,
|
|
40049
|
+
air: 7,
|
|
40050
|
+
`unknown`: 8,
|
|
40051
|
+
unknownFutureValue: 127,
|
|
40052
|
+
}
|
|
40053
|
+
|
|
40054
|
+
enum verdictCategory {
|
|
40055
|
+
none: 0,
|
|
40056
|
+
malware: 1,
|
|
40057
|
+
phish: 2,
|
|
40058
|
+
siteUnavailable: 3,
|
|
40059
|
+
spam: 4,
|
|
40060
|
+
decryptionFailed: 5,
|
|
40061
|
+
unsupportedUriScheme: 6,
|
|
40062
|
+
unsupportedFileType: 7,
|
|
40063
|
+
undefined: 8,
|
|
40064
|
+
unknownFutureValue: 127,
|
|
40065
|
+
}
|
|
40066
|
+
|
|
39589
40067
|
enum vmCloudProvider {
|
|
39590
40068
|
`unknown`: 0,
|
|
39591
40069
|
azure: 1,
|