@microsoft/msgraph-sdk 1.0.0-preview.71 → 1.0.0-preview.73
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/models/identityGovernance/index.d.ts +1 -1
- package/models/index.d.ts +1433 -231
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1366 -83
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +30 -2
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +40 -0
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.d.ts
CHANGED
|
@@ -653,6 +653,8 @@ export interface AccessPackageCollectionResponse extends BaseCollectionPaginatio
|
|
|
653
653
|
value?: AccessPackage[] | null;
|
|
654
654
|
}
|
|
655
655
|
export type AccessPackageCustomExtensionStage = (typeof AccessPackageCustomExtensionStageObject)[keyof typeof AccessPackageCustomExtensionStageObject];
|
|
656
|
+
export interface AccessPackageDynamicApprovalStage extends AccessPackageApprovalStage, Parsable {
|
|
657
|
+
}
|
|
656
658
|
export type AccessPackageExternalUserLifecycleAction = (typeof AccessPackageExternalUserLifecycleActionObject)[keyof typeof AccessPackageExternalUserLifecycleActionObject];
|
|
657
659
|
export interface AccessPackageLocalizedText extends AdditionalDataHolder, BackedModel, Parsable {
|
|
658
660
|
/**
|
|
@@ -724,6 +726,8 @@ export interface AccessPackageQuestionCollectionResponse extends BaseCollectionP
|
|
|
724
726
|
*/
|
|
725
727
|
value?: AccessPackageQuestion[] | null;
|
|
726
728
|
}
|
|
729
|
+
export interface AccessPackageRequestApprovalStageCallbackConfiguration extends CustomExtensionCallbackConfiguration, Parsable {
|
|
730
|
+
}
|
|
727
731
|
export type AccessPackageRequestState = (typeof AccessPackageRequestStateObject)[keyof typeof AccessPackageRequestStateObject];
|
|
728
732
|
export type AccessPackageRequestType = (typeof AccessPackageRequestTypeObject)[keyof typeof AccessPackageRequestTypeObject];
|
|
729
733
|
export interface AccessPackageResource extends Entity, Parsable {
|
|
@@ -2692,7 +2696,7 @@ export interface AndroidCompliancePolicy extends DeviceCompliancePolicy, Parsabl
|
|
|
2692
2696
|
*/
|
|
2693
2697
|
passwordRequiredType?: AndroidRequiredPasswordType | null;
|
|
2694
2698
|
/**
|
|
2695
|
-
*
|
|
2699
|
+
* Indicates the device should not be rooted. When TRUE, if the device is detected as rooted it will be reported non-compliant. When FALSE, the device is not reported as non-compliant regardless of device rooted state. Default is FALSE.
|
|
2696
2700
|
*/
|
|
2697
2701
|
securityBlockJailbrokenDevices?: boolean | null;
|
|
2698
2702
|
/**
|
|
@@ -3121,7 +3125,7 @@ export interface AndroidStoreApp extends MobileApp, Parsable {
|
|
|
3121
3125
|
*/
|
|
3122
3126
|
minimumSupportedOperatingSystem?: AndroidMinimumOperatingSystem | null;
|
|
3123
3127
|
/**
|
|
3124
|
-
* The package identifier.
|
|
3128
|
+
* The package identifier. This property is read-only.
|
|
3125
3129
|
*/
|
|
3126
3130
|
packageId?: string | null;
|
|
3127
3131
|
}
|
|
@@ -3180,7 +3184,7 @@ export interface AndroidWorkProfileCompliancePolicy extends DeviceCompliancePoli
|
|
|
3180
3184
|
*/
|
|
3181
3185
|
passwordRequiredType?: AndroidRequiredPasswordType | null;
|
|
3182
3186
|
/**
|
|
3183
|
-
*
|
|
3187
|
+
* Indicates the device should not be rooted. When TRUE, if the device is detected as rooted it will be reported non-compliant. When FALSE, the device is not reported as non-compliant regardless of device rooted state. Default is FALSE.
|
|
3184
3188
|
*/
|
|
3185
3189
|
securityBlockJailbrokenDevices?: boolean | null;
|
|
3186
3190
|
/**
|
|
@@ -3200,11 +3204,11 @@ export interface AndroidWorkProfileCompliancePolicy extends DeviceCompliancePoli
|
|
|
3200
3204
|
*/
|
|
3201
3205
|
securityRequireGooglePlayServices?: boolean | null;
|
|
3202
3206
|
/**
|
|
3203
|
-
* Require the device to pass the
|
|
3207
|
+
* Require the device to pass the Play Integrity basic integrity check.
|
|
3204
3208
|
*/
|
|
3205
3209
|
securityRequireSafetyNetAttestationBasicIntegrity?: boolean | null;
|
|
3206
3210
|
/**
|
|
3207
|
-
* Require the device to pass the
|
|
3211
|
+
* Require the device to pass the Play Integrity device integrity check.
|
|
3208
3212
|
*/
|
|
3209
3213
|
securityRequireSafetyNetAttestationCertifiedDevice?: boolean | null;
|
|
3210
3214
|
/**
|
|
@@ -3561,7 +3565,7 @@ export interface ApplePushNotificationCertificate extends Entity, Parsable {
|
|
|
3561
3565
|
*/
|
|
3562
3566
|
appleIdentifier?: string | null;
|
|
3563
3567
|
/**
|
|
3564
|
-
*
|
|
3568
|
+
* The certificate property
|
|
3565
3569
|
*/
|
|
3566
3570
|
certificate?: string | null;
|
|
3567
3571
|
/**
|
|
@@ -4388,6 +4392,12 @@ export interface AssignmentOrder extends AdditionalDataHolder, BackedModel, Pars
|
|
|
4388
4392
|
*/
|
|
4389
4393
|
order?: string[] | null;
|
|
4390
4394
|
}
|
|
4395
|
+
export interface AssignmentRequestApprovalStageCallbackData extends AccessPackageAssignmentRequestCallbackData, Parsable {
|
|
4396
|
+
/**
|
|
4397
|
+
* The stage in the approval decision.
|
|
4398
|
+
*/
|
|
4399
|
+
approvalStage?: AccessPackageApprovalStage | null;
|
|
4400
|
+
}
|
|
4391
4401
|
export type AssignmentType = (typeof AssignmentTypeObject)[keyof typeof AssignmentTypeObject];
|
|
4392
4402
|
export interface AssociatedTeamInfo extends Parsable, TeamInfo {
|
|
4393
4403
|
}
|
|
@@ -7974,11 +7984,11 @@ export interface CallEvent extends Entity, Parsable {
|
|
|
7974
7984
|
*/
|
|
7975
7985
|
callEventType?: CallEventType | null;
|
|
7976
7986
|
/**
|
|
7977
|
-
* The
|
|
7987
|
+
* The date and time when the event occurred. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
7978
7988
|
*/
|
|
7979
7989
|
eventDateTime?: Date | null;
|
|
7980
7990
|
/**
|
|
7981
|
-
*
|
|
7991
|
+
* Participants collection for the call event.
|
|
7982
7992
|
*/
|
|
7983
7993
|
participants?: Participant[] | null;
|
|
7984
7994
|
}
|
|
@@ -9312,6 +9322,9 @@ export interface CloudClipboardRoot extends Entity, Parsable {
|
|
|
9312
9322
|
*/
|
|
9313
9323
|
items?: CloudClipboardItem[] | null;
|
|
9314
9324
|
}
|
|
9325
|
+
/**
|
|
9326
|
+
* Represents a container that exposes navigation properties for cloud communications resources.
|
|
9327
|
+
*/
|
|
9315
9328
|
export interface CloudCommunications extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9316
9329
|
/**
|
|
9317
9330
|
* Stores model information.
|
|
@@ -9329,6 +9342,10 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
|
|
|
9329
9342
|
* The OdataType property
|
|
9330
9343
|
*/
|
|
9331
9344
|
odataType?: string | null;
|
|
9345
|
+
/**
|
|
9346
|
+
* A collection of structured question-and-answer (Q&A) threads in Teams directly associated with online meetings.
|
|
9347
|
+
*/
|
|
9348
|
+
onlineMeetingConversations?: OnlineMeetingEngagementConversation[] | null;
|
|
9332
9349
|
/**
|
|
9333
9350
|
* The onlineMeetings property
|
|
9334
9351
|
*/
|
|
@@ -12002,6 +12019,12 @@ export declare function createAccessPackageCatalogFromDiscriminatorValue(parseNo
|
|
|
12002
12019
|
* @returns {AccessPackageCollectionResponse}
|
|
12003
12020
|
*/
|
|
12004
12021
|
export declare function createAccessPackageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12022
|
+
/**
|
|
12023
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12024
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12025
|
+
* @returns {AccessPackageDynamicApprovalStage}
|
|
12026
|
+
*/
|
|
12027
|
+
export declare function createAccessPackageDynamicApprovalStageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12005
12028
|
/**
|
|
12006
12029
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12007
12030
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12038,6 +12061,12 @@ export declare function createAccessPackageQuestionCollectionResponseFromDiscrim
|
|
|
12038
12061
|
* @returns {AccessPackageQuestion}
|
|
12039
12062
|
*/
|
|
12040
12063
|
export declare function createAccessPackageQuestionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12064
|
+
/**
|
|
12065
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12066
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12067
|
+
* @returns {AccessPackageRequestApprovalStageCallbackConfiguration}
|
|
12068
|
+
*/
|
|
12069
|
+
export declare function createAccessPackageRequestApprovalStageCallbackConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12041
12070
|
/**
|
|
12042
12071
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12043
12072
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13040,6 +13069,12 @@ export declare function createAssignedTrainingInfoFromDiscriminatorValue(parseNo
|
|
|
13040
13069
|
* @returns {AssignmentOrder}
|
|
13041
13070
|
*/
|
|
13042
13071
|
export declare function createAssignmentOrderFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13072
|
+
/**
|
|
13073
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13074
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13075
|
+
* @returns {AssignmentRequestApprovalStageCallbackData}
|
|
13076
|
+
*/
|
|
13077
|
+
export declare function createAssignmentRequestApprovalStageCallbackDataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13043
13078
|
/**
|
|
13044
13079
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13045
13080
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16514,6 +16549,36 @@ export declare function createEdgeSearchEngineFromDiscriminatorValue(parseNode:
|
|
|
16514
16549
|
* @returns {EditionUpgradeConfiguration}
|
|
16515
16550
|
*/
|
|
16516
16551
|
export declare function createEditionUpgradeConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16552
|
+
/**
|
|
16553
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16554
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16555
|
+
* @returns {EducationAiFeedbackAudienceEngagementSettings}
|
|
16556
|
+
*/
|
|
16557
|
+
export declare function createEducationAiFeedbackAudienceEngagementSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16558
|
+
/**
|
|
16559
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16560
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16561
|
+
* @returns {EducationAiFeedbackContentSettings}
|
|
16562
|
+
*/
|
|
16563
|
+
export declare function createEducationAiFeedbackContentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16564
|
+
/**
|
|
16565
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16566
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16567
|
+
* @returns {EducationAiFeedbackCriteria}
|
|
16568
|
+
*/
|
|
16569
|
+
export declare function createEducationAiFeedbackCriteriaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16570
|
+
/**
|
|
16571
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16572
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16573
|
+
* @returns {EducationAiFeedbackDeliverySettings}
|
|
16574
|
+
*/
|
|
16575
|
+
export declare function createEducationAiFeedbackDeliverySettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16576
|
+
/**
|
|
16577
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16578
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16579
|
+
* @returns {EducationAiFeedbackSettings}
|
|
16580
|
+
*/
|
|
16581
|
+
export declare function createEducationAiFeedbackSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16517
16582
|
/**
|
|
16518
16583
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16519
16584
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16808,6 +16873,36 @@ export declare function createEducationSchoolCollectionResponseFromDiscriminator
|
|
|
16808
16873
|
* @returns {EducationSchool}
|
|
16809
16874
|
*/
|
|
16810
16875
|
export declare function createEducationSchoolFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16876
|
+
/**
|
|
16877
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16878
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16879
|
+
* @returns {EducationSpeakerCoachAudienceEngagementSettings}
|
|
16880
|
+
*/
|
|
16881
|
+
export declare function createEducationSpeakerCoachAudienceEngagementSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16882
|
+
/**
|
|
16883
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16884
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16885
|
+
* @returns {EducationSpeakerCoachContentSettings}
|
|
16886
|
+
*/
|
|
16887
|
+
export declare function createEducationSpeakerCoachContentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16888
|
+
/**
|
|
16889
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16890
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16891
|
+
* @returns {EducationSpeakerCoachDeliverySettings}
|
|
16892
|
+
*/
|
|
16893
|
+
export declare function createEducationSpeakerCoachDeliverySettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16894
|
+
/**
|
|
16895
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16896
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16897
|
+
* @returns {EducationSpeakerCoachSettings}
|
|
16898
|
+
*/
|
|
16899
|
+
export declare function createEducationSpeakerCoachSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16900
|
+
/**
|
|
16901
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16902
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16903
|
+
* @returns {EducationSpeakerProgressResource}
|
|
16904
|
+
*/
|
|
16905
|
+
export declare function createEducationSpeakerProgressResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16811
16906
|
/**
|
|
16812
16907
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16813
16908
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17018,6 +17113,60 @@ export declare function createEngagementAsyncOperationCollectionResponseFromDisc
|
|
|
17018
17113
|
* @returns {EngagementAsyncOperation}
|
|
17019
17114
|
*/
|
|
17020
17115
|
export declare function createEngagementAsyncOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17116
|
+
/**
|
|
17117
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17118
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17119
|
+
* @returns {EngagementConversationDiscussionMessage}
|
|
17120
|
+
*/
|
|
17121
|
+
export declare function createEngagementConversationDiscussionMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17122
|
+
/**
|
|
17123
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17124
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17125
|
+
* @returns {EngagementConversation}
|
|
17126
|
+
*/
|
|
17127
|
+
export declare function createEngagementConversationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17128
|
+
/**
|
|
17129
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17130
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17131
|
+
* @returns {EngagementConversationMessageCollectionResponse}
|
|
17132
|
+
*/
|
|
17133
|
+
export declare function createEngagementConversationMessageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17134
|
+
/**
|
|
17135
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17136
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17137
|
+
* @returns {EngagementConversationMessage}
|
|
17138
|
+
*/
|
|
17139
|
+
export declare function createEngagementConversationMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17140
|
+
/**
|
|
17141
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17142
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17143
|
+
* @returns {EngagementConversationMessageReactionCollectionResponse}
|
|
17144
|
+
*/
|
|
17145
|
+
export declare function createEngagementConversationMessageReactionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17146
|
+
/**
|
|
17147
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17148
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17149
|
+
* @returns {EngagementConversationMessageReaction}
|
|
17150
|
+
*/
|
|
17151
|
+
export declare function createEngagementConversationMessageReactionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17152
|
+
/**
|
|
17153
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17154
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17155
|
+
* @returns {EngagementConversationQuestionMessage}
|
|
17156
|
+
*/
|
|
17157
|
+
export declare function createEngagementConversationQuestionMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17158
|
+
/**
|
|
17159
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17160
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17161
|
+
* @returns {EngagementConversationSystemMessage}
|
|
17162
|
+
*/
|
|
17163
|
+
export declare function createEngagementConversationSystemMessageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17164
|
+
/**
|
|
17165
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17166
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17167
|
+
* @returns {EngagementIdentitySet}
|
|
17168
|
+
*/
|
|
17169
|
+
export declare function createEngagementIdentitySetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17021
17170
|
/**
|
|
17022
17171
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17023
17172
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20006,6 +20155,18 @@ export declare function createOnlineMeetingBaseFromDiscriminatorValue(parseNode:
|
|
|
20006
20155
|
* @returns {OnlineMeetingCollectionResponse}
|
|
20007
20156
|
*/
|
|
20008
20157
|
export declare function createOnlineMeetingCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20158
|
+
/**
|
|
20159
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20160
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20161
|
+
* @returns {OnlineMeetingEngagementConversationCollectionResponse}
|
|
20162
|
+
*/
|
|
20163
|
+
export declare function createOnlineMeetingEngagementConversationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20164
|
+
/**
|
|
20165
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20166
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20167
|
+
* @returns {OnlineMeetingEngagementConversation}
|
|
20168
|
+
*/
|
|
20169
|
+
export declare function createOnlineMeetingEngagementConversationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20009
20170
|
/**
|
|
20010
20171
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20011
20172
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20090,6 +20251,12 @@ export declare function createOnPremisesExtensionAttributesFromDiscriminatorValu
|
|
|
20090
20251
|
* @returns {OnPremisesProvisioningError}
|
|
20091
20252
|
*/
|
|
20092
20253
|
export declare function createOnPremisesProvisioningErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20254
|
+
/**
|
|
20255
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20256
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20257
|
+
* @returns {OnPremisesSyncBehavior}
|
|
20258
|
+
*/
|
|
20259
|
+
export declare function createOnPremisesSyncBehaviorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20093
20260
|
/**
|
|
20094
20261
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20095
20262
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21518,6 +21685,18 @@ export declare function createReadingAssignmentSubmissionCollectionResponseFromD
|
|
|
21518
21685
|
* @returns {ReadingAssignmentSubmission}
|
|
21519
21686
|
*/
|
|
21520
21687
|
export declare function createReadingAssignmentSubmissionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21688
|
+
/**
|
|
21689
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21690
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21691
|
+
* @returns {ReadingCoachPassageCollectionResponse}
|
|
21692
|
+
*/
|
|
21693
|
+
export declare function createReadingCoachPassageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21694
|
+
/**
|
|
21695
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21696
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21697
|
+
* @returns {ReadingCoachPassage}
|
|
21698
|
+
*/
|
|
21699
|
+
export declare function createReadingCoachPassageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21521
21700
|
/**
|
|
21522
21701
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21523
21702
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23090,6 +23269,18 @@ export declare function createSortPropertyFromDiscriminatorValue(parseNode: Pars
|
|
|
23090
23269
|
* @returns {SpaApplication}
|
|
23091
23270
|
*/
|
|
23092
23271
|
export declare function createSpaApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23272
|
+
/**
|
|
23273
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23274
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23275
|
+
* @returns {SpeakerAssignmentSubmissionCollectionResponse}
|
|
23276
|
+
*/
|
|
23277
|
+
export declare function createSpeakerAssignmentSubmissionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23278
|
+
/**
|
|
23279
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23280
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23281
|
+
* @returns {SpeakerAssignmentSubmission}
|
|
23282
|
+
*/
|
|
23283
|
+
export declare function createSpeakerAssignmentSubmissionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23093
23284
|
/**
|
|
23094
23285
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23095
23286
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23804,18 +23995,6 @@ export declare function createTeamworkTagMemberFromDiscriminatorValue(parseNode:
|
|
|
23804
23995
|
* @returns {TeamworkUserIdentity}
|
|
23805
23996
|
*/
|
|
23806
23997
|
export declare function createTeamworkUserIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23807
|
-
/**
|
|
23808
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
23809
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23810
|
-
* @returns {TelecomExpenseManagementPartnerCollectionResponse}
|
|
23811
|
-
*/
|
|
23812
|
-
export declare function createTelecomExpenseManagementPartnerCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23813
|
-
/**
|
|
23814
|
-
* Creates a new instance of the appropriate class based on discriminator value
|
|
23815
|
-
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23816
|
-
* @returns {TelecomExpenseManagementPartner}
|
|
23817
|
-
*/
|
|
23818
|
-
export declare function createTelecomExpenseManagementPartnerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23819
23998
|
/**
|
|
23820
23999
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23821
24000
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -27669,6 +27848,12 @@ export declare function deserializeIntoAccessPackageCatalogCollectionResponse(ac
|
|
|
27669
27848
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27670
27849
|
*/
|
|
27671
27850
|
export declare function deserializeIntoAccessPackageCollectionResponse(accessPackageCollectionResponse?: Partial<AccessPackageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27851
|
+
/**
|
|
27852
|
+
* The deserialization information for the current model
|
|
27853
|
+
* @param AccessPackageDynamicApprovalStage The instance to deserialize into.
|
|
27854
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27855
|
+
*/
|
|
27856
|
+
export declare function deserializeIntoAccessPackageDynamicApprovalStage(accessPackageDynamicApprovalStage?: Partial<AccessPackageDynamicApprovalStage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27672
27857
|
/**
|
|
27673
27858
|
* The deserialization information for the current model
|
|
27674
27859
|
* @param AccessPackageLocalizedText The instance to deserialize into.
|
|
@@ -27699,6 +27884,12 @@ export declare function deserializeIntoAccessPackageQuestion(accessPackageQuesti
|
|
|
27699
27884
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27700
27885
|
*/
|
|
27701
27886
|
export declare function deserializeIntoAccessPackageQuestionCollectionResponse(accessPackageQuestionCollectionResponse?: Partial<AccessPackageQuestionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27887
|
+
/**
|
|
27888
|
+
* The deserialization information for the current model
|
|
27889
|
+
* @param AccessPackageRequestApprovalStageCallbackConfiguration The instance to deserialize into.
|
|
27890
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27891
|
+
*/
|
|
27892
|
+
export declare function deserializeIntoAccessPackageRequestApprovalStageCallbackConfiguration(accessPackageRequestApprovalStageCallbackConfiguration?: Partial<AccessPackageRequestApprovalStageCallbackConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27702
27893
|
/**
|
|
27703
27894
|
* The deserialization information for the current model
|
|
27704
27895
|
* @param AccessPackageResource The instance to deserialize into.
|
|
@@ -28701,6 +28892,12 @@ export declare function deserializeIntoAssignedTrainingInfo(assignedTrainingInfo
|
|
|
28701
28892
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28702
28893
|
*/
|
|
28703
28894
|
export declare function deserializeIntoAssignmentOrder(assignmentOrder?: Partial<AssignmentOrder> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28895
|
+
/**
|
|
28896
|
+
* The deserialization information for the current model
|
|
28897
|
+
* @param AssignmentRequestApprovalStageCallbackData The instance to deserialize into.
|
|
28898
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28899
|
+
*/
|
|
28900
|
+
export declare function deserializeIntoAssignmentRequestApprovalStageCallbackData(assignmentRequestApprovalStageCallbackData?: Partial<AssignmentRequestApprovalStageCallbackData> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28704
28901
|
/**
|
|
28705
28902
|
* The deserialization information for the current model
|
|
28706
28903
|
* @param AssociatedTeamInfo The instance to deserialize into.
|
|
@@ -32175,6 +32372,36 @@ export declare function deserializeIntoEdgeSearchEngineCustom(edgeSearchEngineCu
|
|
|
32175
32372
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32176
32373
|
*/
|
|
32177
32374
|
export declare function deserializeIntoEditionUpgradeConfiguration(editionUpgradeConfiguration?: Partial<EditionUpgradeConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32375
|
+
/**
|
|
32376
|
+
* The deserialization information for the current model
|
|
32377
|
+
* @param EducationAiFeedbackAudienceEngagementSettings The instance to deserialize into.
|
|
32378
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32379
|
+
*/
|
|
32380
|
+
export declare function deserializeIntoEducationAiFeedbackAudienceEngagementSettings(educationAiFeedbackAudienceEngagementSettings?: Partial<EducationAiFeedbackAudienceEngagementSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32381
|
+
/**
|
|
32382
|
+
* The deserialization information for the current model
|
|
32383
|
+
* @param EducationAiFeedbackContentSettings The instance to deserialize into.
|
|
32384
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32385
|
+
*/
|
|
32386
|
+
export declare function deserializeIntoEducationAiFeedbackContentSettings(educationAiFeedbackContentSettings?: Partial<EducationAiFeedbackContentSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32387
|
+
/**
|
|
32388
|
+
* The deserialization information for the current model
|
|
32389
|
+
* @param EducationAiFeedbackCriteria The instance to deserialize into.
|
|
32390
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32391
|
+
*/
|
|
32392
|
+
export declare function deserializeIntoEducationAiFeedbackCriteria(educationAiFeedbackCriteria?: Partial<EducationAiFeedbackCriteria> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32393
|
+
/**
|
|
32394
|
+
* The deserialization information for the current model
|
|
32395
|
+
* @param EducationAiFeedbackDeliverySettings The instance to deserialize into.
|
|
32396
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32397
|
+
*/
|
|
32398
|
+
export declare function deserializeIntoEducationAiFeedbackDeliverySettings(educationAiFeedbackDeliverySettings?: Partial<EducationAiFeedbackDeliverySettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32399
|
+
/**
|
|
32400
|
+
* The deserialization information for the current model
|
|
32401
|
+
* @param EducationAiFeedbackSettings The instance to deserialize into.
|
|
32402
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32403
|
+
*/
|
|
32404
|
+
export declare function deserializeIntoEducationAiFeedbackSettings(educationAiFeedbackSettings?: Partial<EducationAiFeedbackSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32178
32405
|
/**
|
|
32179
32406
|
* The deserialization information for the current model
|
|
32180
32407
|
* @param EducationAssignment The instance to deserialize into.
|
|
@@ -32469,6 +32696,36 @@ export declare function deserializeIntoEducationSchool(educationSchool?: Partial
|
|
|
32469
32696
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32470
32697
|
*/
|
|
32471
32698
|
export declare function deserializeIntoEducationSchoolCollectionResponse(educationSchoolCollectionResponse?: Partial<EducationSchoolCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32699
|
+
/**
|
|
32700
|
+
* The deserialization information for the current model
|
|
32701
|
+
* @param EducationSpeakerCoachAudienceEngagementSettings The instance to deserialize into.
|
|
32702
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32703
|
+
*/
|
|
32704
|
+
export declare function deserializeIntoEducationSpeakerCoachAudienceEngagementSettings(educationSpeakerCoachAudienceEngagementSettings?: Partial<EducationSpeakerCoachAudienceEngagementSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32705
|
+
/**
|
|
32706
|
+
* The deserialization information for the current model
|
|
32707
|
+
* @param EducationSpeakerCoachContentSettings The instance to deserialize into.
|
|
32708
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32709
|
+
*/
|
|
32710
|
+
export declare function deserializeIntoEducationSpeakerCoachContentSettings(educationSpeakerCoachContentSettings?: Partial<EducationSpeakerCoachContentSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32711
|
+
/**
|
|
32712
|
+
* The deserialization information for the current model
|
|
32713
|
+
* @param EducationSpeakerCoachDeliverySettings The instance to deserialize into.
|
|
32714
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32715
|
+
*/
|
|
32716
|
+
export declare function deserializeIntoEducationSpeakerCoachDeliverySettings(educationSpeakerCoachDeliverySettings?: Partial<EducationSpeakerCoachDeliverySettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32717
|
+
/**
|
|
32718
|
+
* The deserialization information for the current model
|
|
32719
|
+
* @param EducationSpeakerCoachSettings The instance to deserialize into.
|
|
32720
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32721
|
+
*/
|
|
32722
|
+
export declare function deserializeIntoEducationSpeakerCoachSettings(educationSpeakerCoachSettings?: Partial<EducationSpeakerCoachSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32723
|
+
/**
|
|
32724
|
+
* The deserialization information for the current model
|
|
32725
|
+
* @param EducationSpeakerProgressResource The instance to deserialize into.
|
|
32726
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32727
|
+
*/
|
|
32728
|
+
export declare function deserializeIntoEducationSpeakerProgressResource(educationSpeakerProgressResource?: Partial<EducationSpeakerProgressResource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32472
32729
|
/**
|
|
32473
32730
|
* The deserialization information for the current model
|
|
32474
32731
|
* @param EducationStudent The instance to deserialize into.
|
|
@@ -32679,6 +32936,60 @@ export declare function deserializeIntoEngagementAsyncOperation(engagementAsyncO
|
|
|
32679
32936
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32680
32937
|
*/
|
|
32681
32938
|
export declare function deserializeIntoEngagementAsyncOperationCollectionResponse(engagementAsyncOperationCollectionResponse?: Partial<EngagementAsyncOperationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32939
|
+
/**
|
|
32940
|
+
* The deserialization information for the current model
|
|
32941
|
+
* @param EngagementConversation The instance to deserialize into.
|
|
32942
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32943
|
+
*/
|
|
32944
|
+
export declare function deserializeIntoEngagementConversation(engagementConversation?: Partial<EngagementConversation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32945
|
+
/**
|
|
32946
|
+
* The deserialization information for the current model
|
|
32947
|
+
* @param EngagementConversationDiscussionMessage The instance to deserialize into.
|
|
32948
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32949
|
+
*/
|
|
32950
|
+
export declare function deserializeIntoEngagementConversationDiscussionMessage(engagementConversationDiscussionMessage?: Partial<EngagementConversationDiscussionMessage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32951
|
+
/**
|
|
32952
|
+
* The deserialization information for the current model
|
|
32953
|
+
* @param EngagementConversationMessage The instance to deserialize into.
|
|
32954
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32955
|
+
*/
|
|
32956
|
+
export declare function deserializeIntoEngagementConversationMessage(engagementConversationMessage?: Partial<EngagementConversationMessage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32957
|
+
/**
|
|
32958
|
+
* The deserialization information for the current model
|
|
32959
|
+
* @param EngagementConversationMessageCollectionResponse The instance to deserialize into.
|
|
32960
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32961
|
+
*/
|
|
32962
|
+
export declare function deserializeIntoEngagementConversationMessageCollectionResponse(engagementConversationMessageCollectionResponse?: Partial<EngagementConversationMessageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32963
|
+
/**
|
|
32964
|
+
* The deserialization information for the current model
|
|
32965
|
+
* @param EngagementConversationMessageReaction The instance to deserialize into.
|
|
32966
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32967
|
+
*/
|
|
32968
|
+
export declare function deserializeIntoEngagementConversationMessageReaction(engagementConversationMessageReaction?: Partial<EngagementConversationMessageReaction> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32969
|
+
/**
|
|
32970
|
+
* The deserialization information for the current model
|
|
32971
|
+
* @param EngagementConversationMessageReactionCollectionResponse The instance to deserialize into.
|
|
32972
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32973
|
+
*/
|
|
32974
|
+
export declare function deserializeIntoEngagementConversationMessageReactionCollectionResponse(engagementConversationMessageReactionCollectionResponse?: Partial<EngagementConversationMessageReactionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32975
|
+
/**
|
|
32976
|
+
* The deserialization information for the current model
|
|
32977
|
+
* @param EngagementConversationQuestionMessage The instance to deserialize into.
|
|
32978
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32979
|
+
*/
|
|
32980
|
+
export declare function deserializeIntoEngagementConversationQuestionMessage(engagementConversationQuestionMessage?: Partial<EngagementConversationQuestionMessage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32981
|
+
/**
|
|
32982
|
+
* The deserialization information for the current model
|
|
32983
|
+
* @param EngagementConversationSystemMessage The instance to deserialize into.
|
|
32984
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32985
|
+
*/
|
|
32986
|
+
export declare function deserializeIntoEngagementConversationSystemMessage(engagementConversationSystemMessage?: Partial<EngagementConversationSystemMessage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32987
|
+
/**
|
|
32988
|
+
* The deserialization information for the current model
|
|
32989
|
+
* @param EngagementIdentitySet The instance to deserialize into.
|
|
32990
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32991
|
+
*/
|
|
32992
|
+
export declare function deserializeIntoEngagementIdentitySet(engagementIdentitySet?: Partial<EngagementIdentitySet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32682
32993
|
/**
|
|
32683
32994
|
* The deserialization information for the current model
|
|
32684
32995
|
* @param EnrollmentConfigurationAssignment The instance to deserialize into.
|
|
@@ -35673,6 +35984,18 @@ export declare function deserializeIntoOnlineMeetingBase(onlineMeetingBase?: Par
|
|
|
35673
35984
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35674
35985
|
*/
|
|
35675
35986
|
export declare function deserializeIntoOnlineMeetingCollectionResponse(onlineMeetingCollectionResponse?: Partial<OnlineMeetingCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35987
|
+
/**
|
|
35988
|
+
* The deserialization information for the current model
|
|
35989
|
+
* @param OnlineMeetingEngagementConversation The instance to deserialize into.
|
|
35990
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35991
|
+
*/
|
|
35992
|
+
export declare function deserializeIntoOnlineMeetingEngagementConversation(onlineMeetingEngagementConversation?: Partial<OnlineMeetingEngagementConversation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35993
|
+
/**
|
|
35994
|
+
* The deserialization information for the current model
|
|
35995
|
+
* @param OnlineMeetingEngagementConversationCollectionResponse The instance to deserialize into.
|
|
35996
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35997
|
+
*/
|
|
35998
|
+
export declare function deserializeIntoOnlineMeetingEngagementConversationCollectionResponse(onlineMeetingEngagementConversationCollectionResponse?: Partial<OnlineMeetingEngagementConversationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35676
35999
|
/**
|
|
35677
36000
|
* The deserialization information for the current model
|
|
35678
36001
|
* @param OnlineMeetingInfo The instance to deserialize into.
|
|
@@ -35751,6 +36074,12 @@ export declare function deserializeIntoOnPremisesExtensionAttributes(onPremisesE
|
|
|
35751
36074
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35752
36075
|
*/
|
|
35753
36076
|
export declare function deserializeIntoOnPremisesProvisioningError(onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36077
|
+
/**
|
|
36078
|
+
* The deserialization information for the current model
|
|
36079
|
+
* @param OnPremisesSyncBehavior The instance to deserialize into.
|
|
36080
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36081
|
+
*/
|
|
36082
|
+
export declare function deserializeIntoOnPremisesSyncBehavior(onPremisesSyncBehavior?: Partial<OnPremisesSyncBehavior> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35754
36083
|
/**
|
|
35755
36084
|
* The deserialization information for the current model
|
|
35756
36085
|
* @param OnTokenIssuanceStartCustomExtension The instance to deserialize into.
|
|
@@ -37179,6 +37508,18 @@ export declare function deserializeIntoReadingAssignmentSubmission(readingAssign
|
|
|
37179
37508
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37180
37509
|
*/
|
|
37181
37510
|
export declare function deserializeIntoReadingAssignmentSubmissionCollectionResponse(readingAssignmentSubmissionCollectionResponse?: Partial<ReadingAssignmentSubmissionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37511
|
+
/**
|
|
37512
|
+
* The deserialization information for the current model
|
|
37513
|
+
* @param ReadingCoachPassage The instance to deserialize into.
|
|
37514
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37515
|
+
*/
|
|
37516
|
+
export declare function deserializeIntoReadingCoachPassage(readingCoachPassage?: Partial<ReadingCoachPassage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37517
|
+
/**
|
|
37518
|
+
* The deserialization information for the current model
|
|
37519
|
+
* @param ReadingCoachPassageCollectionResponse The instance to deserialize into.
|
|
37520
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37521
|
+
*/
|
|
37522
|
+
export declare function deserializeIntoReadingCoachPassageCollectionResponse(readingCoachPassageCollectionResponse?: Partial<ReadingCoachPassageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37182
37523
|
/**
|
|
37183
37524
|
* The deserialization information for the current model
|
|
37184
37525
|
* @param RecentNotebook The instance to deserialize into.
|
|
@@ -38751,6 +39092,18 @@ export declare function deserializeIntoSortProperty(sortProperty?: Partial<SortP
|
|
|
38751
39092
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38752
39093
|
*/
|
|
38753
39094
|
export declare function deserializeIntoSpaApplication(spaApplication?: Partial<SpaApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39095
|
+
/**
|
|
39096
|
+
* The deserialization information for the current model
|
|
39097
|
+
* @param SpeakerAssignmentSubmission The instance to deserialize into.
|
|
39098
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39099
|
+
*/
|
|
39100
|
+
export declare function deserializeIntoSpeakerAssignmentSubmission(speakerAssignmentSubmission?: Partial<SpeakerAssignmentSubmission> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39101
|
+
/**
|
|
39102
|
+
* The deserialization information for the current model
|
|
39103
|
+
* @param SpeakerAssignmentSubmissionCollectionResponse The instance to deserialize into.
|
|
39104
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39105
|
+
*/
|
|
39106
|
+
export declare function deserializeIntoSpeakerAssignmentSubmissionCollectionResponse(speakerAssignmentSubmissionCollectionResponse?: Partial<SpeakerAssignmentSubmissionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38754
39107
|
/**
|
|
38755
39108
|
* The deserialization information for the current model
|
|
38756
39109
|
* @param SpecialFolder The instance to deserialize into.
|
|
@@ -39465,18 +39818,6 @@ export declare function deserializeIntoTeamworkTagMemberCollectionResponse(teamw
|
|
|
39465
39818
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39466
39819
|
*/
|
|
39467
39820
|
export declare function deserializeIntoTeamworkUserIdentity(teamworkUserIdentity?: Partial<TeamworkUserIdentity> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39468
|
-
/**
|
|
39469
|
-
* The deserialization information for the current model
|
|
39470
|
-
* @param TelecomExpenseManagementPartner The instance to deserialize into.
|
|
39471
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39472
|
-
*/
|
|
39473
|
-
export declare function deserializeIntoTelecomExpenseManagementPartner(telecomExpenseManagementPartner?: Partial<TelecomExpenseManagementPartner> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39474
|
-
/**
|
|
39475
|
-
* The deserialization information for the current model
|
|
39476
|
-
* @param TelecomExpenseManagementPartnerCollectionResponse The instance to deserialize into.
|
|
39477
|
-
* @returns {Record<string, (node: ParseNode) => void>}
|
|
39478
|
-
*/
|
|
39479
|
-
export declare function deserializeIntoTelecomExpenseManagementPartnerCollectionResponse(telecomExpenseManagementPartnerCollectionResponse?: Partial<TelecomExpenseManagementPartnerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
39480
39821
|
/**
|
|
39481
39822
|
* The deserialization information for the current model
|
|
39482
39823
|
* @param TeleconferenceDeviceAudioQuality The instance to deserialize into.
|
|
@@ -42295,7 +42636,7 @@ export interface DeviceAndAppManagementData extends AdditionalDataHolder, Backed
|
|
|
42295
42636
|
*/
|
|
42296
42637
|
backingStoreEnabled?: boolean | null;
|
|
42297
42638
|
/**
|
|
42298
|
-
*
|
|
42639
|
+
* The content property
|
|
42299
42640
|
*/
|
|
42300
42641
|
content?: ArrayBuffer | null;
|
|
42301
42642
|
/**
|
|
@@ -42308,7 +42649,7 @@ export interface DeviceAndAppManagementData extends AdditionalDataHolder, Backed
|
|
|
42308
42649
|
*/
|
|
42309
42650
|
export interface DeviceAndAppManagementRoleAssignment extends Parsable, RoleAssignment {
|
|
42310
42651
|
/**
|
|
42311
|
-
*
|
|
42652
|
+
* Indicates the list of role member security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}.
|
|
42312
42653
|
*/
|
|
42313
42654
|
members?: string[] | null;
|
|
42314
42655
|
}
|
|
@@ -42709,7 +43050,7 @@ export interface DeviceCompliancePolicySettingStateSummary extends Entity, Parsa
|
|
|
42709
43050
|
*/
|
|
42710
43051
|
conflictDeviceCount?: number | null;
|
|
42711
43052
|
/**
|
|
42712
|
-
*
|
|
43053
|
+
* The deviceComplianceSettingStates property
|
|
42713
43054
|
*/
|
|
42714
43055
|
deviceComplianceSettingStates?: DeviceComplianceSettingState[] | null;
|
|
42715
43056
|
/**
|
|
@@ -43362,23 +43703,23 @@ export interface DeviceEnrollmentPlatformRestriction extends AdditionalDataHolde
|
|
|
43362
43703
|
*/
|
|
43363
43704
|
export interface DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnrollmentConfiguration, Parsable {
|
|
43364
43705
|
/**
|
|
43365
|
-
*
|
|
43706
|
+
* Indicates restrictions for Android platform.
|
|
43366
43707
|
*/
|
|
43367
43708
|
androidRestriction?: DeviceEnrollmentPlatformRestriction | null;
|
|
43368
43709
|
/**
|
|
43369
|
-
*
|
|
43710
|
+
* Indicates restrictions for IOS platform.
|
|
43370
43711
|
*/
|
|
43371
43712
|
iosRestriction?: DeviceEnrollmentPlatformRestriction | null;
|
|
43372
43713
|
/**
|
|
43373
|
-
*
|
|
43714
|
+
* Indicates restrictions for MacOS platform.
|
|
43374
43715
|
*/
|
|
43375
43716
|
macOSRestriction?: DeviceEnrollmentPlatformRestriction | null;
|
|
43376
43717
|
/**
|
|
43377
|
-
*
|
|
43718
|
+
* Indicates restrictions for Windows Mobile platform.
|
|
43378
43719
|
*/
|
|
43379
43720
|
windowsMobileRestriction?: DeviceEnrollmentPlatformRestriction | null;
|
|
43380
43721
|
/**
|
|
43381
|
-
*
|
|
43722
|
+
* Indicates restrictions for Windows platform.
|
|
43382
43723
|
*/
|
|
43383
43724
|
windowsRestriction?: DeviceEnrollmentPlatformRestriction | null;
|
|
43384
43725
|
}
|
|
@@ -43644,7 +43985,7 @@ export interface DeviceHealthAttestationState extends AdditionalDataHolder, Back
|
|
|
43644
43985
|
*/
|
|
43645
43986
|
tpmVersion?: string | null;
|
|
43646
43987
|
/**
|
|
43647
|
-
* VSM is a container that protects high value assets from a compromised kernel
|
|
43988
|
+
* Indicates whether the device has Virtual Secure Mode (VSM) enabled. Virtual Secure Mode (VSM) is a container that protects high value assets from a compromised kernel. This property will be deprecated in beta from August 2023. Support for this property will end in August 2025 for v1.0 API. A new property virtualizationBasedSecurity is added and used instead. The value used for virtualSecureMode will be passed by virtualizationBasedSecurity during the deprecation process. Possible values are 'enabled', 'disabled' and 'notApplicable'. 'enabled' indicates Virtual Secure Mode (VSM) is enabled. 'disabled' indicates Virtual Secure Mode (VSM) is disabled. 'notApplicable' indicates the device is not a Windows 11 device. Default value is 'notApplicable'.
|
|
43648
43989
|
*/
|
|
43649
43990
|
virtualSecureMode?: string | null;
|
|
43650
43991
|
/**
|
|
@@ -44008,7 +44349,7 @@ export interface DeviceManagement extends Entity, Parsable {
|
|
|
44008
44349
|
*/
|
|
44009
44350
|
remoteAssistancePartners?: RemoteAssistancePartner[] | null;
|
|
44010
44351
|
/**
|
|
44011
|
-
*
|
|
44352
|
+
* The reports property
|
|
44012
44353
|
*/
|
|
44013
44354
|
reports?: DeviceManagementReports | null;
|
|
44014
44355
|
/**
|
|
@@ -44035,10 +44376,6 @@ export interface DeviceManagement extends Entity, Parsable {
|
|
|
44035
44376
|
* Tenant mobile device management subscription state.
|
|
44036
44377
|
*/
|
|
44037
44378
|
subscriptionState?: DeviceManagementSubscriptionState | null;
|
|
44038
|
-
/**
|
|
44039
|
-
* The telecom expense management partners.
|
|
44040
|
-
*/
|
|
44041
|
-
telecomExpenseManagementPartners?: TelecomExpenseManagementPartner[] | null;
|
|
44042
44379
|
/**
|
|
44043
44380
|
* The terms and conditions associated with device management of the company.
|
|
44044
44381
|
*/
|
|
@@ -44144,7 +44481,7 @@ export interface DeviceManagement extends Entity, Parsable {
|
|
|
44144
44481
|
*/
|
|
44145
44482
|
userExperienceAnalyticsWorkFromAnywhereModelPerformance?: UserExperienceAnalyticsWorkFromAnywhereModelPerformance[] | null;
|
|
44146
44483
|
/**
|
|
44147
|
-
*
|
|
44484
|
+
* The virtualEndpoint property
|
|
44148
44485
|
*/
|
|
44149
44486
|
virtualEndpoint?: VirtualEndpoint | null;
|
|
44150
44487
|
/**
|
|
@@ -44230,11 +44567,11 @@ export type DeviceManagementExchangeConnectorType = (typeof DeviceManagementExch
|
|
|
44230
44567
|
*/
|
|
44231
44568
|
export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
44232
44569
|
/**
|
|
44233
|
-
* Time that the exported report expires
|
|
44570
|
+
* Time that the exported report expires.
|
|
44234
44571
|
*/
|
|
44235
44572
|
expirationDateTime?: Date | null;
|
|
44236
44573
|
/**
|
|
44237
|
-
* Filters applied on the report
|
|
44574
|
+
* Filters applied on the report. The maximum length allowed for this property is 2000 characters.
|
|
44238
44575
|
*/
|
|
44239
44576
|
filter?: string | null;
|
|
44240
44577
|
/**
|
|
@@ -44246,19 +44583,19 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
|
44246
44583
|
*/
|
|
44247
44584
|
localizationType?: DeviceManagementExportJobLocalizationType | null;
|
|
44248
44585
|
/**
|
|
44249
|
-
* Name of the report
|
|
44586
|
+
* Name of the report. The maximum length allowed for this property is 2000 characters.
|
|
44250
44587
|
*/
|
|
44251
44588
|
reportName?: string | null;
|
|
44252
44589
|
/**
|
|
44253
|
-
* Time that the exported report was requested
|
|
44590
|
+
* Time that the exported report was requested.
|
|
44254
44591
|
*/
|
|
44255
44592
|
requestDateTime?: Date | null;
|
|
44256
44593
|
/**
|
|
44257
|
-
* Columns selected from the report
|
|
44594
|
+
* Columns selected from the report. The maximum number of allowed columns names is 256. The maximum length allowed for each column name in this property is 1000 characters.
|
|
44258
44595
|
*/
|
|
44259
44596
|
select?: string[] | null;
|
|
44260
44597
|
/**
|
|
44261
|
-
* A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id.
|
|
44598
|
+
* A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id. The maximum length allowed for this property is 128 characters.
|
|
44262
44599
|
*/
|
|
44263
44600
|
snapshotId?: string | null;
|
|
44264
44601
|
/**
|
|
@@ -44266,7 +44603,7 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
|
44266
44603
|
*/
|
|
44267
44604
|
status?: DeviceManagementReportStatus | null;
|
|
44268
44605
|
/**
|
|
44269
|
-
* Temporary location of the exported report
|
|
44606
|
+
* Temporary location of the exported report.
|
|
44270
44607
|
*/
|
|
44271
44608
|
url?: string | null;
|
|
44272
44609
|
}
|
|
@@ -44346,7 +44683,7 @@ export type DeviceManagementPartnerTenantState = (typeof DeviceManagementPartner
|
|
|
44346
44683
|
export type DeviceManagementReportFileFormat = (typeof DeviceManagementReportFileFormatObject)[keyof typeof DeviceManagementReportFileFormatObject];
|
|
44347
44684
|
export interface DeviceManagementReports extends Entity, Parsable {
|
|
44348
44685
|
/**
|
|
44349
|
-
* Entity representing a job to export a report
|
|
44686
|
+
* Entity representing a job to export a report.
|
|
44350
44687
|
*/
|
|
44351
44688
|
exportJobs?: DeviceManagementExportJob[] | null;
|
|
44352
44689
|
}
|
|
@@ -44951,7 +45288,7 @@ export interface DocumentSetVersionItem extends AdditionalDataHolder, BackedMode
|
|
|
44951
45288
|
}
|
|
44952
45289
|
export interface Domain extends Entity, Parsable {
|
|
44953
45290
|
/**
|
|
44954
|
-
* Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable. To update this property in delegated scenarios, the calling app must be assigned the
|
|
45291
|
+
* Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable. To update this property in delegated scenarios, the calling app must be assigned the Domain-InternalFederation.ReadWrite.All permission.
|
|
44955
45292
|
*/
|
|
44956
45293
|
authenticationType?: string | null;
|
|
44957
45294
|
/**
|
|
@@ -45602,6 +45939,112 @@ export interface EditionUpgradeConfiguration extends DeviceConfiguration, Parsab
|
|
|
45602
45939
|
export type EditionUpgradeLicenseType = (typeof EditionUpgradeLicenseTypeObject)[keyof typeof EditionUpgradeLicenseTypeObject];
|
|
45603
45940
|
export type EducationAddedStudentAction = (typeof EducationAddedStudentActionObject)[keyof typeof EducationAddedStudentActionObject];
|
|
45604
45941
|
export type EducationAddToCalendarOptions = (typeof EducationAddToCalendarOptionsObject)[keyof typeof EducationAddToCalendarOptionsObject];
|
|
45942
|
+
export interface EducationAiFeedbackAudienceEngagementSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
45943
|
+
/**
|
|
45944
|
+
* Indicates whether the student should receive feedback on their engagement strategies from the AI feedback.
|
|
45945
|
+
*/
|
|
45946
|
+
areEngagementStrategiesEnabled?: boolean | null;
|
|
45947
|
+
/**
|
|
45948
|
+
* Stores model information.
|
|
45949
|
+
*/
|
|
45950
|
+
backingStoreEnabled?: boolean | null;
|
|
45951
|
+
/**
|
|
45952
|
+
* Indicates whether the student should receive feedback on their call to action from the AI feedback.
|
|
45953
|
+
*/
|
|
45954
|
+
isCallToActionEnabled?: boolean | null;
|
|
45955
|
+
/**
|
|
45956
|
+
* Indicates whether the student should receive feedback on their emotional and intellectual appeal from the AI feedback.
|
|
45957
|
+
*/
|
|
45958
|
+
isEmotionalAndIntellectualAppealEnabled?: boolean | null;
|
|
45959
|
+
/**
|
|
45960
|
+
* The OdataType property
|
|
45961
|
+
*/
|
|
45962
|
+
odataType?: string | null;
|
|
45963
|
+
}
|
|
45964
|
+
export interface EducationAiFeedbackContentSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
45965
|
+
/**
|
|
45966
|
+
* Stores model information.
|
|
45967
|
+
*/
|
|
45968
|
+
backingStoreEnabled?: boolean | null;
|
|
45969
|
+
/**
|
|
45970
|
+
* Indicates whether the student should receive feedback on their message clarity from the AI feedback.
|
|
45971
|
+
*/
|
|
45972
|
+
isMessageClarityEnabled?: boolean | null;
|
|
45973
|
+
/**
|
|
45974
|
+
* Indicates whether the student should receive feedback on their quality of information from the AI feedback.
|
|
45975
|
+
*/
|
|
45976
|
+
isQualityOfInformationEnabled?: boolean | null;
|
|
45977
|
+
/**
|
|
45978
|
+
* Indicates whether the student should receive feedback on their speech organization from the AI feedback.
|
|
45979
|
+
*/
|
|
45980
|
+
isSpeechOrganizationEnabled?: boolean | null;
|
|
45981
|
+
/**
|
|
45982
|
+
* The OdataType property
|
|
45983
|
+
*/
|
|
45984
|
+
odataType?: string | null;
|
|
45985
|
+
}
|
|
45986
|
+
export interface EducationAiFeedbackCriteria extends AdditionalDataHolder, BackedModel, Parsable {
|
|
45987
|
+
/**
|
|
45988
|
+
* The aiFeedbackSettings property
|
|
45989
|
+
*/
|
|
45990
|
+
aiFeedbackSettings?: EducationAiFeedbackSettings | null;
|
|
45991
|
+
/**
|
|
45992
|
+
* Stores model information.
|
|
45993
|
+
*/
|
|
45994
|
+
backingStoreEnabled?: boolean | null;
|
|
45995
|
+
/**
|
|
45996
|
+
* The OdataType property
|
|
45997
|
+
*/
|
|
45998
|
+
odataType?: string | null;
|
|
45999
|
+
/**
|
|
46000
|
+
* The speechType property
|
|
46001
|
+
*/
|
|
46002
|
+
speechType?: EducationSpeechType | null;
|
|
46003
|
+
}
|
|
46004
|
+
export interface EducationAiFeedbackDeliverySettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46005
|
+
/**
|
|
46006
|
+
* Indicates whether the student should receive feedback on their rhetorical techniques from the AI feedback.
|
|
46007
|
+
*/
|
|
46008
|
+
areRhetoricalTechniquesEnabled?: boolean | null;
|
|
46009
|
+
/**
|
|
46010
|
+
* Stores model information.
|
|
46011
|
+
*/
|
|
46012
|
+
backingStoreEnabled?: boolean | null;
|
|
46013
|
+
/**
|
|
46014
|
+
* Indicates whether the student should receive feedback on their language use from the AI feedback.
|
|
46015
|
+
*/
|
|
46016
|
+
isLanguageUseEnabled?: boolean | null;
|
|
46017
|
+
/**
|
|
46018
|
+
* Indicates whether the student should receive feedback on their style from the AI feedback.
|
|
46019
|
+
*/
|
|
46020
|
+
isStyleEnabled?: boolean | null;
|
|
46021
|
+
/**
|
|
46022
|
+
* The OdataType property
|
|
46023
|
+
*/
|
|
46024
|
+
odataType?: string | null;
|
|
46025
|
+
}
|
|
46026
|
+
export interface EducationAiFeedbackSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46027
|
+
/**
|
|
46028
|
+
* The audience engagement related feedback types that students should receive from the AI feedback.
|
|
46029
|
+
*/
|
|
46030
|
+
audienceEngagementSettings?: EducationAiFeedbackAudienceEngagementSettings | null;
|
|
46031
|
+
/**
|
|
46032
|
+
* Stores model information.
|
|
46033
|
+
*/
|
|
46034
|
+
backingStoreEnabled?: boolean | null;
|
|
46035
|
+
/**
|
|
46036
|
+
* The content related feedback types that students should receive from the AI feedback.
|
|
46037
|
+
*/
|
|
46038
|
+
contentSettings?: EducationAiFeedbackContentSettings | null;
|
|
46039
|
+
/**
|
|
46040
|
+
* The delivery related feedback types that students should receive from the AI feedback.
|
|
46041
|
+
*/
|
|
46042
|
+
deliverySettings?: EducationAiFeedbackDeliverySettings | null;
|
|
46043
|
+
/**
|
|
46044
|
+
* The OdataType property
|
|
46045
|
+
*/
|
|
46046
|
+
odataType?: string | null;
|
|
46047
|
+
}
|
|
45605
46048
|
export interface EducationAssignment extends Entity, Parsable {
|
|
45606
46049
|
/**
|
|
45607
46050
|
* Optional field to control the assignment behavior for students who are added after the assignment is published. If not specified, defaults to none. Supported values are: none, assignIfOpen. For example, a teacher can use assignIfOpen to indicate that an assignment should be assigned to any new student who joins the class while the assignment is still open, and none to indicate that an assignment shouldn't be assigned to new students.
|
|
@@ -45801,6 +46244,10 @@ export interface EducationAssignmentRecipient extends AdditionalDataHolder, Back
|
|
|
45801
46244
|
odataType?: string | null;
|
|
45802
46245
|
}
|
|
45803
46246
|
export interface EducationAssignmentResource extends Entity, Parsable {
|
|
46247
|
+
/**
|
|
46248
|
+
* A collection of assignment resources that depend on the parent educationAssignmentResource.
|
|
46249
|
+
*/
|
|
46250
|
+
dependentResources?: EducationAssignmentResource[] | null;
|
|
45804
46251
|
/**
|
|
45805
46252
|
* Indicates whether this resource should be copied to each student submission for modification and submission. Required
|
|
45806
46253
|
*/
|
|
@@ -46393,6 +46840,125 @@ export interface EducationSchoolCollectionResponse extends BaseCollectionPaginat
|
|
|
46393
46840
|
*/
|
|
46394
46841
|
value?: EducationSchool[] | null;
|
|
46395
46842
|
}
|
|
46843
|
+
export interface EducationSpeakerCoachAudienceEngagementSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46844
|
+
/**
|
|
46845
|
+
* Stores model information.
|
|
46846
|
+
*/
|
|
46847
|
+
backingStoreEnabled?: boolean | null;
|
|
46848
|
+
/**
|
|
46849
|
+
* Indicates whether the student should receive feedback on their body language from the Speaker Coach.
|
|
46850
|
+
*/
|
|
46851
|
+
isBodyLanguageEnabled?: boolean | null;
|
|
46852
|
+
/**
|
|
46853
|
+
* The OdataType property
|
|
46854
|
+
*/
|
|
46855
|
+
odataType?: string | null;
|
|
46856
|
+
}
|
|
46857
|
+
export interface EducationSpeakerCoachContentSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46858
|
+
/**
|
|
46859
|
+
* Stores model information.
|
|
46860
|
+
*/
|
|
46861
|
+
backingStoreEnabled?: boolean | null;
|
|
46862
|
+
/**
|
|
46863
|
+
* Indicates whether the student should receive feedback on their inclusiveness from the Speaker Coach.
|
|
46864
|
+
*/
|
|
46865
|
+
isInclusivenessEnabled?: boolean | null;
|
|
46866
|
+
/**
|
|
46867
|
+
* Indicates whether the student should receive feedback on their repetitive language from the Speaker Coach.
|
|
46868
|
+
*/
|
|
46869
|
+
isRepetitiveLanguageEnabled?: boolean | null;
|
|
46870
|
+
/**
|
|
46871
|
+
* The OdataType property
|
|
46872
|
+
*/
|
|
46873
|
+
odataType?: string | null;
|
|
46874
|
+
}
|
|
46875
|
+
export interface EducationSpeakerCoachDeliverySettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46876
|
+
/**
|
|
46877
|
+
* Indicates whether the student should receive feedback on their filler words from the Speaker Coach.
|
|
46878
|
+
*/
|
|
46879
|
+
areFillerWordsEnabled?: boolean | null;
|
|
46880
|
+
/**
|
|
46881
|
+
* Stores model information.
|
|
46882
|
+
*/
|
|
46883
|
+
backingStoreEnabled?: boolean | null;
|
|
46884
|
+
/**
|
|
46885
|
+
* Indicates whether the student should receive feedback on their pace from the Speaker Coach.
|
|
46886
|
+
*/
|
|
46887
|
+
isPaceEnabled?: boolean | null;
|
|
46888
|
+
/**
|
|
46889
|
+
* Indicates whether the student should receive feedback on their pitch from the Speaker Coach.
|
|
46890
|
+
*/
|
|
46891
|
+
isPitchEnabled?: boolean | null;
|
|
46892
|
+
/**
|
|
46893
|
+
* Indicates whether the student should receive feedback on their pronunciation from the Speaker Coach. This is automatically enabled if isAiFeedbackEnabled is set to true on the educationSpeakerProgressResource, or if spokenLanguageLocale is set to a value besides en-US on the educationSpeakerProgressResource.
|
|
46894
|
+
*/
|
|
46895
|
+
isPronunciationEnabled?: boolean | null;
|
|
46896
|
+
/**
|
|
46897
|
+
* The OdataType property
|
|
46898
|
+
*/
|
|
46899
|
+
odataType?: string | null;
|
|
46900
|
+
}
|
|
46901
|
+
export interface EducationSpeakerCoachSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46902
|
+
/**
|
|
46903
|
+
* The audience engagement related feedback types that students should receive from the Speaker Coach.
|
|
46904
|
+
*/
|
|
46905
|
+
audienceEngagementSettings?: EducationSpeakerCoachAudienceEngagementSettings | null;
|
|
46906
|
+
/**
|
|
46907
|
+
* Stores model information.
|
|
46908
|
+
*/
|
|
46909
|
+
backingStoreEnabled?: boolean | null;
|
|
46910
|
+
/**
|
|
46911
|
+
* The content related feedback types that students should receive from the Speaker Coach.
|
|
46912
|
+
*/
|
|
46913
|
+
contentSettings?: EducationSpeakerCoachContentSettings | null;
|
|
46914
|
+
/**
|
|
46915
|
+
* The delivery related feedback types that students should receive from the Speaker Coach.
|
|
46916
|
+
*/
|
|
46917
|
+
deliverySettings?: EducationSpeakerCoachDeliverySettings | null;
|
|
46918
|
+
/**
|
|
46919
|
+
* The OdataType property
|
|
46920
|
+
*/
|
|
46921
|
+
odataType?: string | null;
|
|
46922
|
+
}
|
|
46923
|
+
export interface EducationSpeakerProgressResource extends EducationResource, Parsable {
|
|
46924
|
+
/**
|
|
46925
|
+
* The feedback types that students should receive from AI feedback. This property should only be provided if isAiFeedbackEnabled is true.
|
|
46926
|
+
*/
|
|
46927
|
+
aiFeedbackCriteria?: EducationAiFeedbackCriteria | null;
|
|
46928
|
+
/**
|
|
46929
|
+
* Indicates whether AI feedback is enabled for the student submissions.
|
|
46930
|
+
*/
|
|
46931
|
+
isAiFeedbackEnabled?: boolean | null;
|
|
46932
|
+
/**
|
|
46933
|
+
* Indicates whether video is required for the student recording.
|
|
46934
|
+
*/
|
|
46935
|
+
isVideoRequired?: boolean | null;
|
|
46936
|
+
/**
|
|
46937
|
+
* The maximum number of recording attempts available to the student. Specify 0 to set unlimited recording attempts.
|
|
46938
|
+
*/
|
|
46939
|
+
maxRecordingAttempts?: number | null;
|
|
46940
|
+
/**
|
|
46941
|
+
* The title of the speaker progress resource visible to students.
|
|
46942
|
+
*/
|
|
46943
|
+
presentationTitle?: string | null;
|
|
46944
|
+
/**
|
|
46945
|
+
* The time limit is in minutes for the student recording.
|
|
46946
|
+
*/
|
|
46947
|
+
recordingTimeLimitInMinutes?: number | null;
|
|
46948
|
+
/**
|
|
46949
|
+
* Allows students to view their rehearsal report before the assignment is graded.
|
|
46950
|
+
*/
|
|
46951
|
+
showRehearsalReportToStudentBeforeMediaUpload?: boolean | null;
|
|
46952
|
+
/**
|
|
46953
|
+
* The feedback types that students should receive from the Speaker Coach.
|
|
46954
|
+
*/
|
|
46955
|
+
speakerCoachSettings?: EducationSpeakerCoachSettings | null;
|
|
46956
|
+
/**
|
|
46957
|
+
* The spoken language for the student recording. For example, en-US.
|
|
46958
|
+
*/
|
|
46959
|
+
spokenLanguageLocale?: string | null;
|
|
46960
|
+
}
|
|
46961
|
+
export type EducationSpeechType = (typeof EducationSpeechTypeObject)[keyof typeof EducationSpeechTypeObject];
|
|
46396
46962
|
export interface EducationStudent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
46397
46963
|
/**
|
|
46398
46964
|
* Stores model information.
|
|
@@ -46533,9 +47099,13 @@ export interface EducationSubmissionRecipient extends AdditionalDataHolder, Back
|
|
|
46533
47099
|
}
|
|
46534
47100
|
export interface EducationSubmissionResource extends Entity, Parsable {
|
|
46535
47101
|
/**
|
|
46536
|
-
* Pointer to the assignment from which the resource was copied
|
|
47102
|
+
* Pointer to the assignment from which the resource was copied. If the value is null, the student uploaded the resource.
|
|
46537
47103
|
*/
|
|
46538
47104
|
assignmentResourceUrl?: string | null;
|
|
47105
|
+
/**
|
|
47106
|
+
* A collection of submission resources that depend on the parent educationSubmissionResource.
|
|
47107
|
+
*/
|
|
47108
|
+
dependentResources?: EducationSubmissionResource[] | null;
|
|
46539
47109
|
/**
|
|
46540
47110
|
* Resource object.
|
|
46541
47111
|
*/
|
|
@@ -46881,11 +47451,11 @@ export interface EmergencyCallerInfo extends AdditionalDataHolder, BackedModel,
|
|
|
46881
47451
|
*/
|
|
46882
47452
|
backingStoreEnabled?: boolean | null;
|
|
46883
47453
|
/**
|
|
46884
|
-
* The
|
|
47454
|
+
* The display name of the emergency caller.
|
|
46885
47455
|
*/
|
|
46886
47456
|
displayName?: string | null;
|
|
46887
47457
|
/**
|
|
46888
|
-
* The location
|
|
47458
|
+
* The location of the emergency caller.
|
|
46889
47459
|
*/
|
|
46890
47460
|
location?: Location | null;
|
|
46891
47461
|
/**
|
|
@@ -46893,29 +47463,29 @@ export interface EmergencyCallerInfo extends AdditionalDataHolder, BackedModel,
|
|
|
46893
47463
|
*/
|
|
46894
47464
|
odataType?: string | null;
|
|
46895
47465
|
/**
|
|
46896
|
-
* The
|
|
47466
|
+
* The phone number of the emergency caller.
|
|
46897
47467
|
*/
|
|
46898
47468
|
phoneNumber?: string | null;
|
|
46899
47469
|
/**
|
|
46900
|
-
* The
|
|
47470
|
+
* The tenant ID of the emergency caller.
|
|
46901
47471
|
*/
|
|
46902
47472
|
tenantId?: string | null;
|
|
46903
47473
|
/**
|
|
46904
|
-
* The
|
|
47474
|
+
* The user principal name of the emergency caller.
|
|
46905
47475
|
*/
|
|
46906
47476
|
upn?: string | null;
|
|
46907
47477
|
}
|
|
46908
47478
|
export interface EmergencyCallEvent extends CallEvent, Parsable {
|
|
46909
47479
|
/**
|
|
46910
|
-
* The
|
|
47480
|
+
* The information of the emergency caller.
|
|
46911
47481
|
*/
|
|
46912
47482
|
callerInfo?: EmergencyCallerInfo | null;
|
|
46913
47483
|
/**
|
|
46914
|
-
* The
|
|
47484
|
+
* The emergency number dialed.
|
|
46915
47485
|
*/
|
|
46916
47486
|
emergencyNumberDialed?: string | null;
|
|
46917
47487
|
/**
|
|
46918
|
-
* The
|
|
47488
|
+
* The policy name for the emergency call event.
|
|
46919
47489
|
*/
|
|
46920
47490
|
policyName?: string | null;
|
|
46921
47491
|
}
|
|
@@ -47131,6 +47701,136 @@ export interface EngagementAsyncOperationCollectionResponse extends BaseCollecti
|
|
|
47131
47701
|
value?: EngagementAsyncOperation[] | null;
|
|
47132
47702
|
}
|
|
47133
47703
|
export type EngagementAsyncOperationType = (typeof EngagementAsyncOperationTypeObject)[keyof typeof EngagementAsyncOperationTypeObject];
|
|
47704
|
+
/**
|
|
47705
|
+
* Represents a conversation in Viva Engage.
|
|
47706
|
+
*/
|
|
47707
|
+
export interface EngagementConversation extends Entity, Parsable {
|
|
47708
|
+
/**
|
|
47709
|
+
* Indicates that the resource is in migration state and is currently being used for migration purposes.
|
|
47710
|
+
*/
|
|
47711
|
+
creationMode?: EngagementCreationMode | null;
|
|
47712
|
+
/**
|
|
47713
|
+
* The messages in a Viva Engage conversation.
|
|
47714
|
+
*/
|
|
47715
|
+
messages?: EngagementConversationMessage[] | null;
|
|
47716
|
+
/**
|
|
47717
|
+
* The starter property
|
|
47718
|
+
*/
|
|
47719
|
+
starter?: EngagementConversationMessage | null;
|
|
47720
|
+
/**
|
|
47721
|
+
* The unique ID of the first message in a Viva Engage conversation.
|
|
47722
|
+
*/
|
|
47723
|
+
starterId?: string | null;
|
|
47724
|
+
}
|
|
47725
|
+
/**
|
|
47726
|
+
* A Viva Engage conversation discussion message.
|
|
47727
|
+
*/
|
|
47728
|
+
export interface EngagementConversationDiscussionMessage extends EngagementConversationMessage, Parsable {
|
|
47729
|
+
}
|
|
47730
|
+
/**
|
|
47731
|
+
* A Viva Engage conversation message.
|
|
47732
|
+
*/
|
|
47733
|
+
export interface EngagementConversationMessage extends Entity, Parsable {
|
|
47734
|
+
/**
|
|
47735
|
+
* The body property
|
|
47736
|
+
*/
|
|
47737
|
+
body?: ItemBody | null;
|
|
47738
|
+
/**
|
|
47739
|
+
* The conversation property
|
|
47740
|
+
*/
|
|
47741
|
+
conversation?: EngagementConversation | null;
|
|
47742
|
+
/**
|
|
47743
|
+
* The date and time when the message was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
47744
|
+
*/
|
|
47745
|
+
createdDateTime?: Date | null;
|
|
47746
|
+
/**
|
|
47747
|
+
* Indicates that the resource is in migration state and is currently being used for migration purposes.
|
|
47748
|
+
*/
|
|
47749
|
+
creationMode?: EngagementCreationMode | null;
|
|
47750
|
+
/**
|
|
47751
|
+
* Identity of the sender of the message.
|
|
47752
|
+
*/
|
|
47753
|
+
from?: EngagementIdentitySet | null;
|
|
47754
|
+
/**
|
|
47755
|
+
* The date and time when message was last modified. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
47756
|
+
*/
|
|
47757
|
+
lastModifiedDateTime?: Date | null;
|
|
47758
|
+
/**
|
|
47759
|
+
* A collection of reactions (such as like and smile) that users have applied to this message.
|
|
47760
|
+
*/
|
|
47761
|
+
reactions?: EngagementConversationMessageReaction[] | null;
|
|
47762
|
+
/**
|
|
47763
|
+
* A collection of messages that are replies to this message and form a threaded discussion.
|
|
47764
|
+
*/
|
|
47765
|
+
replies?: EngagementConversationMessage[] | null;
|
|
47766
|
+
/**
|
|
47767
|
+
* The parent message to which this message is a reply, if it is part of a reply chain.
|
|
47768
|
+
*/
|
|
47769
|
+
replyTo?: EngagementConversationMessage | null;
|
|
47770
|
+
/**
|
|
47771
|
+
* The ID of the parent message to which this message is a reply, if applicable.
|
|
47772
|
+
*/
|
|
47773
|
+
replyToId?: string | null;
|
|
47774
|
+
}
|
|
47775
|
+
export interface EngagementConversationMessageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
47776
|
+
/**
|
|
47777
|
+
* The value property
|
|
47778
|
+
*/
|
|
47779
|
+
value?: EngagementConversationMessage[] | null;
|
|
47780
|
+
}
|
|
47781
|
+
/**
|
|
47782
|
+
* A reaction to a conversation message.
|
|
47783
|
+
*/
|
|
47784
|
+
export interface EngagementConversationMessageReaction extends Entity, Parsable {
|
|
47785
|
+
/**
|
|
47786
|
+
* Date and time when the reaction was added. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
47787
|
+
*/
|
|
47788
|
+
createdDateTime?: Date | null;
|
|
47789
|
+
/**
|
|
47790
|
+
* The reactionBy property
|
|
47791
|
+
*/
|
|
47792
|
+
reactionBy?: EngagementIdentitySet | null;
|
|
47793
|
+
/**
|
|
47794
|
+
* Types of reactions to conversation messages.
|
|
47795
|
+
*/
|
|
47796
|
+
reactionType?: EngagementConversationMessageReactionType | null;
|
|
47797
|
+
}
|
|
47798
|
+
export interface EngagementConversationMessageReactionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
47799
|
+
/**
|
|
47800
|
+
* The value property
|
|
47801
|
+
*/
|
|
47802
|
+
value?: EngagementConversationMessageReaction[] | null;
|
|
47803
|
+
}
|
|
47804
|
+
export type EngagementConversationMessageReactionType = (typeof EngagementConversationMessageReactionTypeObject)[keyof typeof EngagementConversationMessageReactionTypeObject];
|
|
47805
|
+
export type EngagementConversationModerationState = (typeof EngagementConversationModerationStateObject)[keyof typeof EngagementConversationModerationStateObject];
|
|
47806
|
+
/**
|
|
47807
|
+
* A Viva Engage conversation question message.
|
|
47808
|
+
*/
|
|
47809
|
+
export interface EngagementConversationQuestionMessage extends EngagementConversationMessage, Parsable {
|
|
47810
|
+
/**
|
|
47811
|
+
* The title of the question post message on Viva Engage. Inherited from engagementConversationMessage.
|
|
47812
|
+
*/
|
|
47813
|
+
title?: string | null;
|
|
47814
|
+
}
|
|
47815
|
+
/**
|
|
47816
|
+
* A Viva Engage conversation system message.
|
|
47817
|
+
*/
|
|
47818
|
+
export interface EngagementConversationSystemMessage extends EngagementConversationMessage, Parsable {
|
|
47819
|
+
}
|
|
47820
|
+
export type EngagementCreationMode = (typeof EngagementCreationModeObject)[keyof typeof EngagementCreationModeObject];
|
|
47821
|
+
/**
|
|
47822
|
+
* The Viva Engage identities.
|
|
47823
|
+
*/
|
|
47824
|
+
export interface EngagementIdentitySet extends IdentitySet, Parsable {
|
|
47825
|
+
/**
|
|
47826
|
+
* Optional. The audience associated with this action.
|
|
47827
|
+
*/
|
|
47828
|
+
audience?: Identity | null;
|
|
47829
|
+
/**
|
|
47830
|
+
* Optional. The group associated with this action.
|
|
47831
|
+
*/
|
|
47832
|
+
group?: Identity | null;
|
|
47833
|
+
}
|
|
47134
47834
|
/**
|
|
47135
47835
|
* Enrollment Configuration Assignment
|
|
47136
47836
|
*/
|
|
@@ -48713,6 +49413,10 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
48713
49413
|
* Contains the on-premises security identifier (SID) for the group synchronized from on-premises to the cloud. Read-only. Returned by default. Supports $filter (eq including on null values).
|
|
48714
49414
|
*/
|
|
48715
49415
|
onPremisesSecurityIdentifier?: string | null;
|
|
49416
|
+
/**
|
|
49417
|
+
* The onPremisesSyncBehavior property
|
|
49418
|
+
*/
|
|
49419
|
+
onPremisesSyncBehavior?: OnPremisesSyncBehavior | null;
|
|
48716
49420
|
/**
|
|
48717
49421
|
* true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values).
|
|
48718
49422
|
*/
|
|
@@ -50080,7 +50784,7 @@ export interface IosCompliancePolicy extends DeviceCompliancePolicy, Parsable {
|
|
|
50080
50784
|
*/
|
|
50081
50785
|
passcodeRequiredType?: RequiredPasswordType | null;
|
|
50082
50786
|
/**
|
|
50083
|
-
*
|
|
50787
|
+
* Indicates the device should not be jailbroken. When TRUE, if the device is detected as jailbroken it will be reported non-compliant. When FALSE, the device is not reported as non-compliant regardless of device jailbroken state. Default is FALSE.
|
|
50084
50788
|
*/
|
|
50085
50789
|
securityBlockJailbrokenDevices?: boolean | null;
|
|
50086
50790
|
}
|
|
@@ -50909,35 +51613,35 @@ export interface IosMinimumOperatingSystem extends AdditionalDataHolder, BackedM
|
|
|
50909
51613
|
*/
|
|
50910
51614
|
odataType?: string | null;
|
|
50911
51615
|
/**
|
|
50912
|
-
* When
|
|
51616
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 10.0 or later is required to install the app. If 'False', iOS Version 10.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50913
51617
|
*/
|
|
50914
51618
|
v100?: boolean | null;
|
|
50915
51619
|
/**
|
|
50916
|
-
* When
|
|
51620
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 11.0 or later is required to install the app. If 'False', iOS Version 11.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50917
51621
|
*/
|
|
50918
51622
|
v110?: boolean | null;
|
|
50919
51623
|
/**
|
|
50920
|
-
* When
|
|
51624
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 12.0 or later is required to install the app. If 'False', iOS Version 12.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50921
51625
|
*/
|
|
50922
51626
|
v120?: boolean | null;
|
|
50923
51627
|
/**
|
|
50924
|
-
* When
|
|
51628
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 13.0 or later is required to install the app. If 'False', iOS Version 13.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50925
51629
|
*/
|
|
50926
51630
|
v130?: boolean | null;
|
|
50927
51631
|
/**
|
|
50928
|
-
* When
|
|
51632
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 14.0 or later is required to install the app. If 'False', iOS Version 14.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50929
51633
|
*/
|
|
50930
51634
|
v140?: boolean | null;
|
|
50931
51635
|
/**
|
|
50932
|
-
* When
|
|
51636
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 15.0 or later is required to install the app. If 'False', iOS Version 15.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50933
51637
|
*/
|
|
50934
51638
|
v150?: boolean | null;
|
|
50935
51639
|
/**
|
|
50936
|
-
* When
|
|
51640
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 8.0 or later is required to install the app. If 'False', iOS Version 8.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50937
51641
|
*/
|
|
50938
51642
|
v80?: boolean | null;
|
|
50939
51643
|
/**
|
|
50940
|
-
* When
|
|
51644
|
+
* Indicates the minimum iOS version support required for the managed device. When 'True', iOS with OS Version 9.0 or later is required to install the app. If 'False', iOS Version 9.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
50941
51645
|
*/
|
|
50942
51646
|
v90?: boolean | null;
|
|
50943
51647
|
}
|
|
@@ -52772,11 +53476,11 @@ export interface MacOSLobApp extends MobileLobApp, Parsable {
|
|
|
52772
53476
|
*/
|
|
52773
53477
|
childApps?: MacOSLobChildApp[] | null;
|
|
52774
53478
|
/**
|
|
52775
|
-
* When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature.
|
|
53479
|
+
* When TRUE, indicates that the app's version will NOT be used to detect if the app is installed on a device. When FALSE, indicates that the app's version will be used to detect if the app is installed on a device. Set this to true for apps that use a self update feature. The default value is FALSE.
|
|
52776
53480
|
*/
|
|
52777
53481
|
ignoreVersionDetection?: boolean | null;
|
|
52778
53482
|
/**
|
|
52779
|
-
* When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged.
|
|
53483
|
+
* When TRUE, indicates that the app will be installed as managed (requires macOS 11.0 and other managed package restrictions). When FALSE, indicates that the app will be installed as unmanaged. The default value is FALSE.
|
|
52780
53484
|
*/
|
|
52781
53485
|
installAsManaged?: boolean | null;
|
|
52782
53486
|
/**
|
|
@@ -52863,51 +53567,51 @@ export interface MacOSMinimumOperatingSystem extends AdditionalDataHolder, Backe
|
|
|
52863
53567
|
*/
|
|
52864
53568
|
odataType?: string | null;
|
|
52865
53569
|
/**
|
|
52866
|
-
* When
|
|
53570
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.10 or later is required to install the app. If 'False', OS X Version 10.10 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52867
53571
|
*/
|
|
52868
53572
|
v1010?: boolean | null;
|
|
52869
53573
|
/**
|
|
52870
|
-
* When
|
|
53574
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.11 or later is required to install the app. If 'False', OS X Version 10.11 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52871
53575
|
*/
|
|
52872
53576
|
v1011?: boolean | null;
|
|
52873
53577
|
/**
|
|
52874
|
-
* When
|
|
53578
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.12 or later is required to install the app. If 'False', OS X Version 10.12 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52875
53579
|
*/
|
|
52876
53580
|
v1012?: boolean | null;
|
|
52877
53581
|
/**
|
|
52878
|
-
* When
|
|
53582
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.13 or later is required to install the app. If 'False', OS X Version 10.13 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52879
53583
|
*/
|
|
52880
53584
|
v1013?: boolean | null;
|
|
52881
53585
|
/**
|
|
52882
|
-
* When
|
|
53586
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.14 or later is required to install the app. If 'False', OS X Version 10.14 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52883
53587
|
*/
|
|
52884
53588
|
v1014?: boolean | null;
|
|
52885
53589
|
/**
|
|
52886
|
-
* When
|
|
53590
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.15 or later is required to install the app. If 'False', OS X Version 10.15 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52887
53591
|
*/
|
|
52888
53592
|
v1015?: boolean | null;
|
|
52889
53593
|
/**
|
|
52890
|
-
* When
|
|
53594
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.7 or later is required to install the app. If 'False', OS X Version 10.7 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52891
53595
|
*/
|
|
52892
53596
|
v107?: boolean | null;
|
|
52893
53597
|
/**
|
|
52894
|
-
* When
|
|
53598
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.8 or later is required to install the app. If 'False', OS X Version 10.8 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52895
53599
|
*/
|
|
52896
53600
|
v108?: boolean | null;
|
|
52897
53601
|
/**
|
|
52898
|
-
* When
|
|
53602
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 10.9 or later is required to install the app. If 'False', OS X Version 10.9 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52899
53603
|
*/
|
|
52900
53604
|
v109?: boolean | null;
|
|
52901
53605
|
/**
|
|
52902
|
-
* When
|
|
53606
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 11.0 or later is required to install the app. If 'False', OS X Version 11.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52903
53607
|
*/
|
|
52904
53608
|
v110?: boolean | null;
|
|
52905
53609
|
/**
|
|
52906
|
-
* When
|
|
53610
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 12.0 or later is required to install the app. If 'False', OS X Version 12.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52907
53611
|
*/
|
|
52908
53612
|
v120?: boolean | null;
|
|
52909
53613
|
/**
|
|
52910
|
-
* When
|
|
53614
|
+
* Indicates the minimum OS X version support required for the managed device. When 'True', macOS with OS X 13.0 or later is required to install the app. If 'False', OS X Version 13.0 is not the minimum version. Default value is False. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
52911
53615
|
*/
|
|
52912
53616
|
v130?: boolean | null;
|
|
52913
53617
|
}
|
|
@@ -53448,19 +54152,19 @@ export interface ManagedAppPolicyCollectionResponse extends BaseCollectionPagina
|
|
|
53448
54152
|
*/
|
|
53449
54153
|
export interface ManagedAppPolicyDeploymentSummary extends Entity, Parsable {
|
|
53450
54154
|
/**
|
|
53451
|
-
*
|
|
54155
|
+
* The configurationDeployedUserCount property
|
|
53452
54156
|
*/
|
|
53453
54157
|
configurationDeployedUserCount?: number | null;
|
|
53454
54158
|
/**
|
|
53455
|
-
*
|
|
54159
|
+
* The configurationDeploymentSummaryPerApp property
|
|
53456
54160
|
*/
|
|
53457
54161
|
configurationDeploymentSummaryPerApp?: ManagedAppPolicyDeploymentSummaryPerApp[] | null;
|
|
53458
54162
|
/**
|
|
53459
|
-
*
|
|
54163
|
+
* The displayName property
|
|
53460
54164
|
*/
|
|
53461
54165
|
displayName?: string | null;
|
|
53462
54166
|
/**
|
|
53463
|
-
*
|
|
54167
|
+
* The lastRefreshTime property
|
|
53464
54168
|
*/
|
|
53465
54169
|
lastRefreshTime?: Date | null;
|
|
53466
54170
|
/**
|
|
@@ -53538,7 +54242,7 @@ export interface ManagedAppProtection extends ManagedAppPolicy, Parsable {
|
|
|
53538
54242
|
*/
|
|
53539
54243
|
managedBrowserToOpenLinksRequired?: boolean | null;
|
|
53540
54244
|
/**
|
|
53541
|
-
* Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped.
|
|
54245
|
+
* Maximum number of incorrect pin retry attempts before the managed app is either blocked or wiped. Valid values 1 to 65535
|
|
53542
54246
|
*/
|
|
53543
54247
|
maximumPinRetries?: number | null;
|
|
53544
54248
|
/**
|
|
@@ -53858,6 +54562,10 @@ export interface ManagedDevice extends Entity, Parsable {
|
|
|
53858
54562
|
* Reports device management certificate expiration date. This property is read-only.
|
|
53859
54563
|
*/
|
|
53860
54564
|
managementCertificateExpirationDate?: Date | null;
|
|
54565
|
+
/**
|
|
54566
|
+
* Management state of device in Microsoft Intune.
|
|
54567
|
+
*/
|
|
54568
|
+
managementState?: ManagementState | null;
|
|
53861
54569
|
/**
|
|
53862
54570
|
* Manufacturer of the device. This property is read-only.
|
|
53863
54571
|
*/
|
|
@@ -54352,7 +55060,7 @@ export interface ManagedMobileLobApp extends ManagedApp, Parsable {
|
|
|
54352
55060
|
*/
|
|
54353
55061
|
committedContentVersion?: string | null;
|
|
54354
55062
|
/**
|
|
54355
|
-
* The list of content versions for this app.
|
|
55063
|
+
* The list of content versions for this app. This property is read-only.
|
|
54356
55064
|
*/
|
|
54357
55065
|
contentVersions?: MobileAppContent[] | null;
|
|
54358
55066
|
/**
|
|
@@ -54360,7 +55068,7 @@ export interface ManagedMobileLobApp extends ManagedApp, Parsable {
|
|
|
54360
55068
|
*/
|
|
54361
55069
|
fileName?: string | null;
|
|
54362
55070
|
/**
|
|
54363
|
-
* The total size, including all uploaded files.
|
|
55071
|
+
* The total size, including all uploaded files. This property is read-only.
|
|
54364
55072
|
*/
|
|
54365
55073
|
size?: number | null;
|
|
54366
55074
|
}
|
|
@@ -54371,6 +55079,7 @@ export interface ManagedMobileLobAppCollectionResponse extends BaseCollectionPag
|
|
|
54371
55079
|
value?: ManagedMobileLobApp[] | null;
|
|
54372
55080
|
}
|
|
54373
55081
|
export type ManagementAgentType = (typeof ManagementAgentTypeObject)[keyof typeof ManagementAgentTypeObject];
|
|
55082
|
+
export type ManagementState = (typeof ManagementStateObject)[keyof typeof ManagementStateObject];
|
|
54374
55083
|
export type MdmAppConfigKeyType = (typeof MdmAppConfigKeyTypeObject)[keyof typeof MdmAppConfigKeyTypeObject];
|
|
54375
55084
|
export type MdmAuthority = (typeof MdmAuthorityObject)[keyof typeof MdmAuthorityObject];
|
|
54376
55085
|
/**
|
|
@@ -55496,7 +56205,7 @@ export interface MobileApp extends Entity, Parsable {
|
|
|
55496
56205
|
*/
|
|
55497
56206
|
categories?: MobileAppCategory[] | null;
|
|
55498
56207
|
/**
|
|
55499
|
-
* The date and time the app was created.
|
|
56208
|
+
* The date and time the app was created. This property is read-only.
|
|
55500
56209
|
*/
|
|
55501
56210
|
createdDateTime?: Date | null;
|
|
55502
56211
|
/**
|
|
@@ -55524,7 +56233,7 @@ export interface MobileApp extends Entity, Parsable {
|
|
|
55524
56233
|
*/
|
|
55525
56234
|
largeIcon?: MimeContent | null;
|
|
55526
56235
|
/**
|
|
55527
|
-
* The date and time the app was last modified.
|
|
56236
|
+
* The date and time the app was last modified. This property is read-only.
|
|
55528
56237
|
*/
|
|
55529
56238
|
lastModifiedDateTime?: Date | null;
|
|
55530
56239
|
/**
|
|
@@ -55593,7 +56302,7 @@ export interface MobileAppCategory extends Entity, Parsable {
|
|
|
55593
56302
|
*/
|
|
55594
56303
|
displayName?: string | null;
|
|
55595
56304
|
/**
|
|
55596
|
-
* The date and time the mobileAppCategory was last modified.
|
|
56305
|
+
* The date and time the mobileAppCategory was last modified. This property is read-only.
|
|
55597
56306
|
*/
|
|
55598
56307
|
lastModifiedDateTime?: Date | null;
|
|
55599
56308
|
}
|
|
@@ -55633,19 +56342,19 @@ export interface MobileAppContentCollectionResponse extends BaseCollectionPagina
|
|
|
55633
56342
|
*/
|
|
55634
56343
|
export interface MobileAppContentFile extends Entity, Parsable {
|
|
55635
56344
|
/**
|
|
55636
|
-
*
|
|
56345
|
+
* Indicates the Azure Storage URI that the file is uploaded to. Created by the service upon receiving a valid mobileAppContentFile. Read-only. This property is read-only.
|
|
55637
56346
|
*/
|
|
55638
56347
|
azureStorageUri?: string | null;
|
|
55639
56348
|
/**
|
|
55640
|
-
*
|
|
56349
|
+
* Indicates the date and time when the Azure storage URI expires, in ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. This property is read-only.
|
|
55641
56350
|
*/
|
|
55642
56351
|
azureStorageUriExpirationDateTime?: Date | null;
|
|
55643
56352
|
/**
|
|
55644
|
-
*
|
|
56353
|
+
* Indicates created date and time associated with app content file, in ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. This property is read-only.
|
|
55645
56354
|
*/
|
|
55646
56355
|
createdDateTime?: Date | null;
|
|
55647
56356
|
/**
|
|
55648
|
-
* A value indicating whether the file is committed.
|
|
56357
|
+
* A value indicating whether the file is committed. A committed app content file has been fully uploaded and validated by the Intune service. TRUE means that app content file is committed, FALSE means that app content file is not committed. Defaults to FALSE. Read-only. This property is read-only.
|
|
55649
56358
|
*/
|
|
55650
56359
|
isCommitted?: boolean | null;
|
|
55651
56360
|
/**
|
|
@@ -55653,19 +56362,19 @@ export interface MobileAppContentFile extends Entity, Parsable {
|
|
|
55653
56362
|
*/
|
|
55654
56363
|
isDependency?: boolean | null;
|
|
55655
56364
|
/**
|
|
55656
|
-
*
|
|
56365
|
+
* Indicates the manifest information, containing file metadata.
|
|
55657
56366
|
*/
|
|
55658
56367
|
manifest?: ArrayBuffer | null;
|
|
55659
56368
|
/**
|
|
55660
|
-
* the file
|
|
56369
|
+
* Indicates the name of the file.
|
|
55661
56370
|
*/
|
|
55662
56371
|
name?: string | null;
|
|
55663
56372
|
/**
|
|
55664
|
-
*
|
|
56373
|
+
* Indicates the original size of the file, in bytes.
|
|
55665
56374
|
*/
|
|
55666
56375
|
size?: number | null;
|
|
55667
56376
|
/**
|
|
55668
|
-
*
|
|
56377
|
+
* Indicates the size of the file after encryption, in bytes.
|
|
55669
56378
|
*/
|
|
55670
56379
|
sizeEncrypted?: number | null;
|
|
55671
56380
|
/**
|
|
@@ -55794,7 +56503,7 @@ export interface MobileLobApp extends MobileApp, Parsable {
|
|
|
55794
56503
|
*/
|
|
55795
56504
|
committedContentVersion?: string | null;
|
|
55796
56505
|
/**
|
|
55797
|
-
* The list of content versions for this app.
|
|
56506
|
+
* The list of content versions for this app. This property is read-only.
|
|
55798
56507
|
*/
|
|
55799
56508
|
contentVersions?: MobileAppContent[] | null;
|
|
55800
56509
|
/**
|
|
@@ -55802,7 +56511,7 @@ export interface MobileLobApp extends MobileApp, Parsable {
|
|
|
55802
56511
|
*/
|
|
55803
56512
|
fileName?: string | null;
|
|
55804
56513
|
/**
|
|
55805
|
-
* The total size, including all uploaded files.
|
|
56514
|
+
* The total size, including all uploaded files. This property is read-only.
|
|
55806
56515
|
*/
|
|
55807
56516
|
size?: number | null;
|
|
55808
56517
|
}
|
|
@@ -55811,19 +56520,19 @@ export interface MobileLobApp extends MobileApp, Parsable {
|
|
|
55811
56520
|
*/
|
|
55812
56521
|
export interface MobileThreatDefenseConnector extends Entity, Parsable {
|
|
55813
56522
|
/**
|
|
55814
|
-
* When TRUE, indicates the Mobile Threat Defense partner may collect metadata about installed applications from Intune for
|
|
56523
|
+
* When TRUE, indicates the Mobile Threat Defense partner may collect metadata about installed applications from Intune for iOS devices. When FALSE, indicates the Mobile Threat Defense partner may not collect metadata about installed applications from Intune for iOS devices. Default value is FALSE.
|
|
55815
56524
|
*/
|
|
55816
56525
|
allowPartnerToCollectIOSApplicationMetadata?: boolean | null;
|
|
55817
56526
|
/**
|
|
55818
|
-
* When TRUE, indicates the Mobile Threat Defense partner may collect metadata about personally installed applications from Intune for
|
|
56527
|
+
* When TRUE, indicates the Mobile Threat Defense partner may collect metadata about personally installed applications from Intune for iOS devices. When FALSE, indicates the Mobile Threat Defense partner may not collect metadata about personally installed applications from Intune for iOS devices. Default value is FALSE.
|
|
55819
56528
|
*/
|
|
55820
56529
|
allowPartnerToCollectIOSPersonalApplicationMetadata?: boolean | null;
|
|
55821
56530
|
/**
|
|
55822
|
-
*
|
|
56531
|
+
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking an Android device compliant. When FALSE, indicates that Intune may mark an Android device compliant before receiving data from the Mobile Threat Defense partner.
|
|
55823
56532
|
*/
|
|
55824
56533
|
androidDeviceBlockedOnMissingPartnerData?: boolean | null;
|
|
55825
56534
|
/**
|
|
55826
|
-
*
|
|
56535
|
+
* When TRUE, indicates that data from the Mobile Threat Defense partner will be used during compliance evaluations for Android devices. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for Android devices. Default value is FALSE.
|
|
55827
56536
|
*/
|
|
55828
56537
|
androidEnabled?: boolean | null;
|
|
55829
56538
|
/**
|
|
@@ -55831,15 +56540,15 @@ export interface MobileThreatDefenseConnector extends Entity, Parsable {
|
|
|
55831
56540
|
*/
|
|
55832
56541
|
androidMobileApplicationManagementEnabled?: boolean | null;
|
|
55833
56542
|
/**
|
|
55834
|
-
*
|
|
56543
|
+
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant. When FALSE, indicates that Intune may not recieve data from Mobile Threat Defense partner prior to making device compliant. Default value is FALSE.
|
|
55835
56544
|
*/
|
|
55836
56545
|
iosDeviceBlockedOnMissingPartnerData?: boolean | null;
|
|
55837
56546
|
/**
|
|
55838
|
-
*
|
|
56547
|
+
* When TRUE, indicates that data from the Mobile Threat Defense partner will be used during compliance evaluations for iOS devices. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for iOS devices. Default value is FALSE.
|
|
55839
56548
|
*/
|
|
55840
56549
|
iosEnabled?: boolean | null;
|
|
55841
56550
|
/**
|
|
55842
|
-
* When TRUE, inidicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for
|
|
56551
|
+
* When TRUE, inidicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for iOS devices. When FALSE, inidicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for iOS devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
|
|
55843
56552
|
*/
|
|
55844
56553
|
iosMobileApplicationManagementEnabled?: boolean | null;
|
|
55845
56554
|
/**
|
|
@@ -55855,19 +56564,19 @@ export interface MobileThreatDefenseConnector extends Entity, Parsable {
|
|
|
55855
56564
|
*/
|
|
55856
56565
|
partnerState?: MobileThreatPartnerTenantState | null;
|
|
55857
56566
|
/**
|
|
55858
|
-
*
|
|
56567
|
+
* Indicates the number of days without receiving a heartbeat from a Mobile Threat Defense partner before the partner is marked as unresponsive. Intune will the ignore the data from this Mobile Threat Defense Partner for next compliance calculation.
|
|
55859
56568
|
*/
|
|
55860
56569
|
partnerUnresponsivenessThresholdInDays?: number | null;
|
|
55861
56570
|
/**
|
|
55862
|
-
*
|
|
56571
|
+
* When TRUE, indicates that Intune will mark devices noncompliant on enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner. When FALSE, indicates that Intune will not mark devices noncompliant on enabled platforms that do not meet the minimum version requirements of the Mobile Threat Defense partner. Default value is FALSE.
|
|
55863
56572
|
*/
|
|
55864
56573
|
partnerUnsupportedOsVersionBlocked?: boolean | null;
|
|
55865
56574
|
/**
|
|
55866
|
-
* When TRUE,
|
|
56575
|
+
* When TRUE, indicates that Intune must receive data from the data sync partner prior to marking a device compliant for Windows. When FALSE, indicates that Intune may mark a device compliant without receiving data from the data sync partner for Windows. Default value is FALSE.
|
|
55867
56576
|
*/
|
|
55868
56577
|
windowsDeviceBlockedOnMissingPartnerData?: boolean | null;
|
|
55869
56578
|
/**
|
|
55870
|
-
* When TRUE,
|
|
56579
|
+
* When TRUE, indicates that data from the Mobile Threat Defense partner will be used during compliance evaluations for Windows. When FALSE, indicates that data from the Mobile Threat Defense partner will not be used during compliance evaluations for Windows. Default value is FALSE.
|
|
55871
56580
|
*/
|
|
55872
56581
|
windowsEnabled?: boolean | null;
|
|
55873
56582
|
}
|
|
@@ -57072,6 +57781,9 @@ export interface OnInteractiveAuthFlowStartListener extends AuthenticationEventL
|
|
|
57072
57781
|
*/
|
|
57073
57782
|
handler?: OnInteractiveAuthFlowStartHandler | null;
|
|
57074
57783
|
}
|
|
57784
|
+
/**
|
|
57785
|
+
* Represents a Microsoft online meeting.
|
|
57786
|
+
*/
|
|
57075
57787
|
export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
57076
57788
|
/**
|
|
57077
57789
|
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
|
|
@@ -57243,6 +57955,37 @@ export interface OnlineMeetingCollectionResponse extends BaseCollectionPaginatio
|
|
|
57243
57955
|
value?: OnlineMeeting[] | null;
|
|
57244
57956
|
}
|
|
57245
57957
|
export type OnlineMeetingContentSharingDisabledReason = (typeof OnlineMeetingContentSharingDisabledReasonObject)[keyof typeof OnlineMeetingContentSharingDisabledReasonObject];
|
|
57958
|
+
/**
|
|
57959
|
+
* A conversation for Teams QA online meeting.
|
|
57960
|
+
*/
|
|
57961
|
+
export interface OnlineMeetingEngagementConversation extends EngagementConversation, Parsable {
|
|
57962
|
+
/**
|
|
57963
|
+
* Represents the moderation state of an Engage conversation message.
|
|
57964
|
+
*/
|
|
57965
|
+
moderationState?: EngagementConversationModerationState | null;
|
|
57966
|
+
/**
|
|
57967
|
+
* The onlineMeeting property
|
|
57968
|
+
*/
|
|
57969
|
+
onlineMeeting?: OnlineMeeting | null;
|
|
57970
|
+
/**
|
|
57971
|
+
* The unique identifier of the online meeting associated with this conversation. The online meeting ID links the conversation to a specific meeting instance.
|
|
57972
|
+
*/
|
|
57973
|
+
onlineMeetingId?: string | null;
|
|
57974
|
+
/**
|
|
57975
|
+
* The organizer property
|
|
57976
|
+
*/
|
|
57977
|
+
organizer?: EngagementIdentitySet | null;
|
|
57978
|
+
/**
|
|
57979
|
+
* The number of upvotes the conversation received.
|
|
57980
|
+
*/
|
|
57981
|
+
upvoteCount?: number | null;
|
|
57982
|
+
}
|
|
57983
|
+
export interface OnlineMeetingEngagementConversationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
57984
|
+
/**
|
|
57985
|
+
* The value property
|
|
57986
|
+
*/
|
|
57987
|
+
value?: OnlineMeetingEngagementConversation[] | null;
|
|
57988
|
+
}
|
|
57246
57989
|
export interface OnlineMeetingInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
57247
57990
|
/**
|
|
57248
57991
|
* Stores model information.
|
|
@@ -57573,6 +58316,12 @@ export interface OnPremisesProvisioningError extends AdditionalDataHolder, Backe
|
|
|
57573
58316
|
*/
|
|
57574
58317
|
value?: string | null;
|
|
57575
58318
|
}
|
|
58319
|
+
export interface OnPremisesSyncBehavior extends Entity, Parsable {
|
|
58320
|
+
/**
|
|
58321
|
+
* The isCloudManaged property
|
|
58322
|
+
*/
|
|
58323
|
+
isCloudManaged?: boolean | null;
|
|
58324
|
+
}
|
|
57576
58325
|
export interface OnTokenIssuanceStartCustomExtension extends CustomAuthenticationExtension, Parsable {
|
|
57577
58326
|
/**
|
|
57578
58327
|
* Collection of claims to be returned by the API called by this custom authentication extension. Used to populate claims mapping experience in Microsoft Entra admin center. Optional.
|
|
@@ -58105,6 +58854,10 @@ export interface OrgContact extends DirectoryObject, Parsable {
|
|
|
58105
58854
|
* List of any synchronization provisioning errors for this organizational contact. Supports $filter (eq, not for category and propertyCausingError), /$count eq 0, /$count ne 0.
|
|
58106
58855
|
*/
|
|
58107
58856
|
onPremisesProvisioningErrors?: OnPremisesProvisioningError[] | null;
|
|
58857
|
+
/**
|
|
58858
|
+
* The onPremisesSyncBehavior property
|
|
58859
|
+
*/
|
|
58860
|
+
onPremisesSyncBehavior?: OnPremisesSyncBehavior | null;
|
|
58108
58861
|
/**
|
|
58109
58862
|
* true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; null if this object has never been synced from an on-premises directory (default). Supports $filter (eq, ne, not, in, and eq for null values).
|
|
58110
58863
|
*/
|
|
@@ -60062,19 +60815,19 @@ export interface PreAuthorizedApplication extends AdditionalDataHolder, BackedMo
|
|
|
60062
60815
|
export type PrereleaseFeatures = (typeof PrereleaseFeaturesObject)[keyof typeof PrereleaseFeaturesObject];
|
|
60063
60816
|
export interface Presence extends Entity, Parsable {
|
|
60064
60817
|
/**
|
|
60065
|
-
* The supplemental information to a user's availability. Possible values are
|
|
60818
|
+
* The supplemental information to a user's availability. Possible values are available, away, beRightBack, busy, doNotDisturb, offline, outOfOffice, presenceUnknown.
|
|
60066
60819
|
*/
|
|
60067
60820
|
activity?: string | null;
|
|
60068
60821
|
/**
|
|
60069
|
-
* The base presence information for a user. Possible values are
|
|
60822
|
+
* The base presence information for a user. Possible values are available, away, beRightBack, busy, doNotDisturb, focusing, inACall, inAMeeting, offline, presenting, presenceUnknown.
|
|
60070
60823
|
*/
|
|
60071
60824
|
availability?: string | null;
|
|
60072
60825
|
/**
|
|
60073
|
-
* The
|
|
60826
|
+
* The out of office settings for a user.
|
|
60074
60827
|
*/
|
|
60075
60828
|
outOfOfficeSettings?: OutOfOfficeSettings | null;
|
|
60076
60829
|
/**
|
|
60077
|
-
* The lexicographically sortable
|
|
60830
|
+
* The lexicographically sortable String stamp that represents the version of a presence object.
|
|
60078
60831
|
*/
|
|
60079
60832
|
sequenceNumber?: string | null;
|
|
60080
60833
|
/**
|
|
@@ -61853,7 +62606,7 @@ export interface ProtectionRuleBase extends Entity, Parsable {
|
|
|
61853
62606
|
*/
|
|
61854
62607
|
errorEscaped?: PublicError | null;
|
|
61855
62608
|
/**
|
|
61856
|
-
*
|
|
62609
|
+
* true indicates that the protection rule is dynamic; false that it's static.
|
|
61857
62610
|
*/
|
|
61858
62611
|
isAutoApplyEnabled?: boolean | null;
|
|
61859
62612
|
/**
|
|
@@ -61865,19 +62618,20 @@ export interface ProtectionRuleBase extends Entity, Parsable {
|
|
|
61865
62618
|
*/
|
|
61866
62619
|
lastModifiedDateTime?: Date | null;
|
|
61867
62620
|
/**
|
|
61868
|
-
* The status of the protection rule. The possible values are: draft, active, completed, completedWithErrors, unknownFutureValue. The draft member is currently unsupported.
|
|
62621
|
+
* The status of the protection rule. The possible values are: draft, active, completed, completedWithErrors, unknownFutureValue, updateRequested, deleteRequested. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: updateRequested , deleteRequested. The draft member is currently unsupported.
|
|
61869
62622
|
*/
|
|
61870
62623
|
status?: ProtectionRuleStatus | null;
|
|
61871
62624
|
}
|
|
61872
62625
|
export type ProtectionRuleStatus = (typeof ProtectionRuleStatusObject)[keyof typeof ProtectionRuleStatusObject];
|
|
61873
62626
|
export type ProtectionScopeState = (typeof ProtectionScopeStateObject)[keyof typeof ProtectionScopeStateObject];
|
|
62627
|
+
export type ProtectionSource = (typeof ProtectionSourceObject)[keyof typeof ProtectionSourceObject];
|
|
61874
62628
|
export interface ProtectionUnitBase extends Entity, Parsable {
|
|
61875
62629
|
/**
|
|
61876
|
-
* The identity of person who created the protection unit.
|
|
62630
|
+
* The identity of the person who created the protection unit.
|
|
61877
62631
|
*/
|
|
61878
62632
|
createdBy?: IdentitySet | null;
|
|
61879
62633
|
/**
|
|
61880
|
-
* The time of creation of the protection unit.
|
|
62634
|
+
* The time of creation of the protection unit. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
61881
62635
|
*/
|
|
61882
62636
|
createdDateTime?: Date | null;
|
|
61883
62637
|
/**
|
|
@@ -61889,15 +62643,23 @@ export interface ProtectionUnitBase extends Entity, Parsable {
|
|
|
61889
62643
|
*/
|
|
61890
62644
|
lastModifiedBy?: IdentitySet | null;
|
|
61891
62645
|
/**
|
|
61892
|
-
* Timestamp of the last modification of this protection unit.
|
|
62646
|
+
* Timestamp of the last modification of this protection unit. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
61893
62647
|
*/
|
|
61894
62648
|
lastModifiedDateTime?: Date | null;
|
|
62649
|
+
/**
|
|
62650
|
+
* The date and time when protection unit offboard was requested. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
62651
|
+
*/
|
|
62652
|
+
offboardRequestedDateTime?: Date | null;
|
|
61895
62653
|
/**
|
|
61896
62654
|
* The unique identifier of the protection policy based on which protection unit was created.
|
|
61897
62655
|
*/
|
|
61898
62656
|
policyId?: string | null;
|
|
61899
62657
|
/**
|
|
61900
|
-
* The
|
|
62658
|
+
* The protectionSources property
|
|
62659
|
+
*/
|
|
62660
|
+
protectionSources?: ProtectionSource[] | null;
|
|
62661
|
+
/**
|
|
62662
|
+
* The status of the protection unit. The possible values are: protectRequested, protected, unprotectRequested, unprotected, removeRequested, unknownFutureValue, offboardRequested, offboarded, cancelOffboardRequested. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: offboardRequested, offboarded, cancelOffboardRequested.
|
|
61901
62663
|
*/
|
|
61902
62664
|
status?: ProtectionUnitStatus | null;
|
|
61903
62665
|
}
|
|
@@ -62494,6 +63256,51 @@ export interface ReadingAssignmentSubmissionCollectionResponse extends BaseColle
|
|
|
62494
63256
|
*/
|
|
62495
63257
|
value?: ReadingAssignmentSubmission[] | null;
|
|
62496
63258
|
}
|
|
63259
|
+
export interface ReadingCoachPassage extends Entity, Parsable {
|
|
63260
|
+
/**
|
|
63261
|
+
* Indicates if the reading passage was completed.
|
|
63262
|
+
*/
|
|
63263
|
+
isReadingCompleted?: boolean | null;
|
|
63264
|
+
/**
|
|
63265
|
+
* The language of the reading passage.
|
|
63266
|
+
*/
|
|
63267
|
+
languageTag?: string | null;
|
|
63268
|
+
/**
|
|
63269
|
+
* The date and time when the Reading Coach passage was practiced. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
63270
|
+
*/
|
|
63271
|
+
practicedAtDateTime?: Date | null;
|
|
63272
|
+
/**
|
|
63273
|
+
* The list of challenging words for the student that they can practice further.
|
|
63274
|
+
*/
|
|
63275
|
+
practiceWords?: string[] | null;
|
|
63276
|
+
/**
|
|
63277
|
+
* The storyType property
|
|
63278
|
+
*/
|
|
63279
|
+
storyType?: ReadingCoachStoryType | null;
|
|
63280
|
+
/**
|
|
63281
|
+
* ID of the student that practiced the reading passage.
|
|
63282
|
+
*/
|
|
63283
|
+
studentId?: string | null;
|
|
63284
|
+
/**
|
|
63285
|
+
* The time the student spent reading in seconds.
|
|
63286
|
+
*/
|
|
63287
|
+
timeSpentReadingInSeconds?: number | null;
|
|
63288
|
+
/**
|
|
63289
|
+
* The percentage of words that the student read correctly.
|
|
63290
|
+
*/
|
|
63291
|
+
wordsAccuracyPercentage?: number | null;
|
|
63292
|
+
/**
|
|
63293
|
+
* The rate the student read at in words per minute.
|
|
63294
|
+
*/
|
|
63295
|
+
wordsPerMinute?: number | null;
|
|
63296
|
+
}
|
|
63297
|
+
export interface ReadingCoachPassageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
63298
|
+
/**
|
|
63299
|
+
* The value property
|
|
63300
|
+
*/
|
|
63301
|
+
value?: ReadingCoachPassage[] | null;
|
|
63302
|
+
}
|
|
63303
|
+
export type ReadingCoachStoryType = (typeof ReadingCoachStoryTypeObject)[keyof typeof ReadingCoachStoryTypeObject];
|
|
62497
63304
|
export interface RecentNotebook extends AdditionalDataHolder, BackedModel, Parsable {
|
|
62498
63305
|
/**
|
|
62499
63306
|
* Stores model information.
|
|
@@ -63173,7 +63980,7 @@ export interface Report extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
63173
63980
|
*/
|
|
63174
63981
|
backingStoreEnabled?: boolean | null;
|
|
63175
63982
|
/**
|
|
63176
|
-
*
|
|
63983
|
+
* The http content that has the data
|
|
63177
63984
|
*/
|
|
63178
63985
|
content?: ArrayBuffer | null;
|
|
63179
63986
|
/**
|
|
@@ -63221,13 +64028,21 @@ export interface ReportRoot extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
63221
64028
|
}
|
|
63222
64029
|
export interface ReportsRoot extends Entity, Parsable {
|
|
63223
64030
|
/**
|
|
63224
|
-
*
|
|
64031
|
+
* Details of submitted reading assignments.
|
|
63225
64032
|
*/
|
|
63226
64033
|
readingAssignmentSubmissions?: ReadingAssignmentSubmission[] | null;
|
|
63227
64034
|
/**
|
|
63228
|
-
*
|
|
64035
|
+
* Details of practiced Reading Coach passages.
|
|
64036
|
+
*/
|
|
64037
|
+
readingCoachPassages?: ReadingCoachPassage[] | null;
|
|
64038
|
+
/**
|
|
64039
|
+
* Details of check-in responses.
|
|
63229
64040
|
*/
|
|
63230
64041
|
reflectCheckInResponses?: ReflectCheckInResponse[] | null;
|
|
64042
|
+
/**
|
|
64043
|
+
* Details of submitted speaker assignments.
|
|
64044
|
+
*/
|
|
64045
|
+
speakerAssignmentSubmissions?: SpeakerAssignmentSubmission[] | null;
|
|
63231
64046
|
}
|
|
63232
64047
|
export interface Request extends Entity, Parsable {
|
|
63233
64048
|
/**
|
|
@@ -64173,19 +64988,19 @@ export interface RiskyUserHistoryItemCollectionResponse extends BaseCollectionPa
|
|
|
64173
64988
|
*/
|
|
64174
64989
|
export interface RoleAssignment extends Entity, Parsable {
|
|
64175
64990
|
/**
|
|
64176
|
-
*
|
|
64991
|
+
* Indicates the description of the role assignment. For example: 'All administrators, employees and scope tags associated with the Houston office.' Max length is 1024 characters.
|
|
64177
64992
|
*/
|
|
64178
64993
|
description?: string | null;
|
|
64179
64994
|
/**
|
|
64180
|
-
*
|
|
64995
|
+
* Indicates the display name of the role assignment. For example: 'Houston administrators and users'. Max length is 128 characters.
|
|
64181
64996
|
*/
|
|
64182
64997
|
displayName?: string | null;
|
|
64183
64998
|
/**
|
|
64184
|
-
*
|
|
64999
|
+
* Indicates the list of resource scope security group Entra IDs. For example: {dec942f4-6777-4998-96b4-522e383b08e2}.
|
|
64185
65000
|
*/
|
|
64186
65001
|
resourceScopes?: string[] | null;
|
|
64187
65002
|
/**
|
|
64188
|
-
*
|
|
65003
|
+
* Indicates the role definition for this role assignment.
|
|
64189
65004
|
*/
|
|
64190
65005
|
roleDefinition?: RoleDefinition | null;
|
|
64191
65006
|
}
|
|
@@ -65788,6 +66603,13 @@ export declare function serializeAccessPackageCatalogCollectionResponse(writer:
|
|
|
65788
66603
|
* @param writer Serialization writer to use to serialize this model
|
|
65789
66604
|
*/
|
|
65790
66605
|
export declare function serializeAccessPackageCollectionResponse(writer: SerializationWriter, accessPackageCollectionResponse?: Partial<AccessPackageCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
66606
|
+
/**
|
|
66607
|
+
* Serializes information the current object
|
|
66608
|
+
* @param AccessPackageDynamicApprovalStage The instance to serialize from.
|
|
66609
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
66610
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66611
|
+
*/
|
|
66612
|
+
export declare function serializeAccessPackageDynamicApprovalStage(writer: SerializationWriter, accessPackageDynamicApprovalStage?: Partial<AccessPackageDynamicApprovalStage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
65791
66613
|
/**
|
|
65792
66614
|
* Serializes information the current object
|
|
65793
66615
|
* @param AccessPackageLocalizedText The instance to serialize from.
|
|
@@ -65823,6 +66645,13 @@ export declare function serializeAccessPackageQuestion(writer: SerializationWrit
|
|
|
65823
66645
|
* @param writer Serialization writer to use to serialize this model
|
|
65824
66646
|
*/
|
|
65825
66647
|
export declare function serializeAccessPackageQuestionCollectionResponse(writer: SerializationWriter, accessPackageQuestionCollectionResponse?: Partial<AccessPackageQuestionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
66648
|
+
/**
|
|
66649
|
+
* Serializes information the current object
|
|
66650
|
+
* @param AccessPackageRequestApprovalStageCallbackConfiguration The instance to serialize from.
|
|
66651
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
66652
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66653
|
+
*/
|
|
66654
|
+
export declare function serializeAccessPackageRequestApprovalStageCallbackConfiguration(writer: SerializationWriter, accessPackageRequestApprovalStageCallbackConfiguration?: Partial<AccessPackageRequestApprovalStageCallbackConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
65826
66655
|
/**
|
|
65827
66656
|
* Serializes information the current object
|
|
65828
66657
|
* @param AccessPackageResource The instance to serialize from.
|
|
@@ -66992,6 +67821,13 @@ export declare function serializeAssignedTrainingInfo(writer: SerializationWrite
|
|
|
66992
67821
|
* @param writer Serialization writer to use to serialize this model
|
|
66993
67822
|
*/
|
|
66994
67823
|
export declare function serializeAssignmentOrder(writer: SerializationWriter, assignmentOrder?: Partial<AssignmentOrder> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
67824
|
+
/**
|
|
67825
|
+
* Serializes information the current object
|
|
67826
|
+
* @param AssignmentRequestApprovalStageCallbackData The instance to serialize from.
|
|
67827
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
67828
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67829
|
+
*/
|
|
67830
|
+
export declare function serializeAssignmentRequestApprovalStageCallbackData(writer: SerializationWriter, assignmentRequestApprovalStageCallbackData?: Partial<AssignmentRequestApprovalStageCallbackData> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
66995
67831
|
/**
|
|
66996
67832
|
* Serializes information the current object
|
|
66997
67833
|
* @param AssociatedTeamInfo The instance to serialize from.
|
|
@@ -71045,6 +71881,41 @@ export declare function serializeEdgeSearchEngineCustom(writer: SerializationWri
|
|
|
71045
71881
|
* @param writer Serialization writer to use to serialize this model
|
|
71046
71882
|
*/
|
|
71047
71883
|
export declare function serializeEditionUpgradeConfiguration(writer: SerializationWriter, editionUpgradeConfiguration?: Partial<EditionUpgradeConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71884
|
+
/**
|
|
71885
|
+
* Serializes information the current object
|
|
71886
|
+
* @param EducationAiFeedbackAudienceEngagementSettings The instance to serialize from.
|
|
71887
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71888
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71889
|
+
*/
|
|
71890
|
+
export declare function serializeEducationAiFeedbackAudienceEngagementSettings(writer: SerializationWriter, educationAiFeedbackAudienceEngagementSettings?: Partial<EducationAiFeedbackAudienceEngagementSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71891
|
+
/**
|
|
71892
|
+
* Serializes information the current object
|
|
71893
|
+
* @param EducationAiFeedbackContentSettings The instance to serialize from.
|
|
71894
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71895
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71896
|
+
*/
|
|
71897
|
+
export declare function serializeEducationAiFeedbackContentSettings(writer: SerializationWriter, educationAiFeedbackContentSettings?: Partial<EducationAiFeedbackContentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71898
|
+
/**
|
|
71899
|
+
* Serializes information the current object
|
|
71900
|
+
* @param EducationAiFeedbackCriteria The instance to serialize from.
|
|
71901
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71902
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71903
|
+
*/
|
|
71904
|
+
export declare function serializeEducationAiFeedbackCriteria(writer: SerializationWriter, educationAiFeedbackCriteria?: Partial<EducationAiFeedbackCriteria> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71905
|
+
/**
|
|
71906
|
+
* Serializes information the current object
|
|
71907
|
+
* @param EducationAiFeedbackDeliverySettings The instance to serialize from.
|
|
71908
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71909
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71910
|
+
*/
|
|
71911
|
+
export declare function serializeEducationAiFeedbackDeliverySettings(writer: SerializationWriter, educationAiFeedbackDeliverySettings?: Partial<EducationAiFeedbackDeliverySettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71912
|
+
/**
|
|
71913
|
+
* Serializes information the current object
|
|
71914
|
+
* @param EducationAiFeedbackSettings The instance to serialize from.
|
|
71915
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71916
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71917
|
+
*/
|
|
71918
|
+
export declare function serializeEducationAiFeedbackSettings(writer: SerializationWriter, educationAiFeedbackSettings?: Partial<EducationAiFeedbackSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71048
71919
|
/**
|
|
71049
71920
|
* Serializes information the current object
|
|
71050
71921
|
* @param EducationAssignment The instance to serialize from.
|
|
@@ -71388,6 +72259,41 @@ export declare function serializeEducationSchool(writer: SerializationWriter, ed
|
|
|
71388
72259
|
* @param writer Serialization writer to use to serialize this model
|
|
71389
72260
|
*/
|
|
71390
72261
|
export declare function serializeEducationSchoolCollectionResponse(writer: SerializationWriter, educationSchoolCollectionResponse?: Partial<EducationSchoolCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72262
|
+
/**
|
|
72263
|
+
* Serializes information the current object
|
|
72264
|
+
* @param EducationSpeakerCoachAudienceEngagementSettings The instance to serialize from.
|
|
72265
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72266
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72267
|
+
*/
|
|
72268
|
+
export declare function serializeEducationSpeakerCoachAudienceEngagementSettings(writer: SerializationWriter, educationSpeakerCoachAudienceEngagementSettings?: Partial<EducationSpeakerCoachAudienceEngagementSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72269
|
+
/**
|
|
72270
|
+
* Serializes information the current object
|
|
72271
|
+
* @param EducationSpeakerCoachContentSettings The instance to serialize from.
|
|
72272
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72273
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72274
|
+
*/
|
|
72275
|
+
export declare function serializeEducationSpeakerCoachContentSettings(writer: SerializationWriter, educationSpeakerCoachContentSettings?: Partial<EducationSpeakerCoachContentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72276
|
+
/**
|
|
72277
|
+
* Serializes information the current object
|
|
72278
|
+
* @param EducationSpeakerCoachDeliverySettings The instance to serialize from.
|
|
72279
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72280
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72281
|
+
*/
|
|
72282
|
+
export declare function serializeEducationSpeakerCoachDeliverySettings(writer: SerializationWriter, educationSpeakerCoachDeliverySettings?: Partial<EducationSpeakerCoachDeliverySettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72283
|
+
/**
|
|
72284
|
+
* Serializes information the current object
|
|
72285
|
+
* @param EducationSpeakerCoachSettings The instance to serialize from.
|
|
72286
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72287
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72288
|
+
*/
|
|
72289
|
+
export declare function serializeEducationSpeakerCoachSettings(writer: SerializationWriter, educationSpeakerCoachSettings?: Partial<EducationSpeakerCoachSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72290
|
+
/**
|
|
72291
|
+
* Serializes information the current object
|
|
72292
|
+
* @param EducationSpeakerProgressResource The instance to serialize from.
|
|
72293
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72294
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72295
|
+
*/
|
|
72296
|
+
export declare function serializeEducationSpeakerProgressResource(writer: SerializationWriter, educationSpeakerProgressResource?: Partial<EducationSpeakerProgressResource> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71391
72297
|
/**
|
|
71392
72298
|
* Serializes information the current object
|
|
71393
72299
|
* @param EducationStudent The instance to serialize from.
|
|
@@ -71633,6 +72539,69 @@ export declare function serializeEngagementAsyncOperation(writer: SerializationW
|
|
|
71633
72539
|
* @param writer Serialization writer to use to serialize this model
|
|
71634
72540
|
*/
|
|
71635
72541
|
export declare function serializeEngagementAsyncOperationCollectionResponse(writer: SerializationWriter, engagementAsyncOperationCollectionResponse?: Partial<EngagementAsyncOperationCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72542
|
+
/**
|
|
72543
|
+
* Serializes information the current object
|
|
72544
|
+
* @param EngagementConversation The instance to serialize from.
|
|
72545
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72546
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72547
|
+
*/
|
|
72548
|
+
export declare function serializeEngagementConversation(writer: SerializationWriter, engagementConversation?: Partial<EngagementConversation> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72549
|
+
/**
|
|
72550
|
+
* Serializes information the current object
|
|
72551
|
+
* @param EngagementConversationDiscussionMessage The instance to serialize from.
|
|
72552
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72553
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72554
|
+
*/
|
|
72555
|
+
export declare function serializeEngagementConversationDiscussionMessage(writer: SerializationWriter, engagementConversationDiscussionMessage?: Partial<EngagementConversationDiscussionMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72556
|
+
/**
|
|
72557
|
+
* Serializes information the current object
|
|
72558
|
+
* @param EngagementConversationMessage The instance to serialize from.
|
|
72559
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72560
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72561
|
+
*/
|
|
72562
|
+
export declare function serializeEngagementConversationMessage(writer: SerializationWriter, engagementConversationMessage?: Partial<EngagementConversationMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72563
|
+
/**
|
|
72564
|
+
* Serializes information the current object
|
|
72565
|
+
* @param EngagementConversationMessageCollectionResponse The instance to serialize from.
|
|
72566
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72567
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72568
|
+
*/
|
|
72569
|
+
export declare function serializeEngagementConversationMessageCollectionResponse(writer: SerializationWriter, engagementConversationMessageCollectionResponse?: Partial<EngagementConversationMessageCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72570
|
+
/**
|
|
72571
|
+
* Serializes information the current object
|
|
72572
|
+
* @param EngagementConversationMessageReaction The instance to serialize from.
|
|
72573
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72574
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72575
|
+
*/
|
|
72576
|
+
export declare function serializeEngagementConversationMessageReaction(writer: SerializationWriter, engagementConversationMessageReaction?: Partial<EngagementConversationMessageReaction> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72577
|
+
/**
|
|
72578
|
+
* Serializes information the current object
|
|
72579
|
+
* @param EngagementConversationMessageReactionCollectionResponse The instance to serialize from.
|
|
72580
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72581
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72582
|
+
*/
|
|
72583
|
+
export declare function serializeEngagementConversationMessageReactionCollectionResponse(writer: SerializationWriter, engagementConversationMessageReactionCollectionResponse?: Partial<EngagementConversationMessageReactionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72584
|
+
/**
|
|
72585
|
+
* Serializes information the current object
|
|
72586
|
+
* @param EngagementConversationQuestionMessage The instance to serialize from.
|
|
72587
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72588
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72589
|
+
*/
|
|
72590
|
+
export declare function serializeEngagementConversationQuestionMessage(writer: SerializationWriter, engagementConversationQuestionMessage?: Partial<EngagementConversationQuestionMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72591
|
+
/**
|
|
72592
|
+
* Serializes information the current object
|
|
72593
|
+
* @param EngagementConversationSystemMessage The instance to serialize from.
|
|
72594
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72595
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72596
|
+
*/
|
|
72597
|
+
export declare function serializeEngagementConversationSystemMessage(writer: SerializationWriter, engagementConversationSystemMessage?: Partial<EngagementConversationSystemMessage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72598
|
+
/**
|
|
72599
|
+
* Serializes information the current object
|
|
72600
|
+
* @param EngagementIdentitySet The instance to serialize from.
|
|
72601
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72602
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72603
|
+
*/
|
|
72604
|
+
export declare function serializeEngagementIdentitySet(writer: SerializationWriter, engagementIdentitySet?: Partial<EngagementIdentitySet> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71636
72605
|
/**
|
|
71637
72606
|
* Serializes information the current object
|
|
71638
72607
|
* @param EnrollmentConfigurationAssignment The instance to serialize from.
|
|
@@ -75126,6 +76095,20 @@ export declare function serializeOnlineMeetingBase(writer: SerializationWriter,
|
|
|
75126
76095
|
* @param writer Serialization writer to use to serialize this model
|
|
75127
76096
|
*/
|
|
75128
76097
|
export declare function serializeOnlineMeetingCollectionResponse(writer: SerializationWriter, onlineMeetingCollectionResponse?: Partial<OnlineMeetingCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76098
|
+
/**
|
|
76099
|
+
* Serializes information the current object
|
|
76100
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76101
|
+
* @param OnlineMeetingEngagementConversation The instance to serialize from.
|
|
76102
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76103
|
+
*/
|
|
76104
|
+
export declare function serializeOnlineMeetingEngagementConversation(writer: SerializationWriter, onlineMeetingEngagementConversation?: Partial<OnlineMeetingEngagementConversation> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76105
|
+
/**
|
|
76106
|
+
* Serializes information the current object
|
|
76107
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76108
|
+
* @param OnlineMeetingEngagementConversationCollectionResponse The instance to serialize from.
|
|
76109
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76110
|
+
*/
|
|
76111
|
+
export declare function serializeOnlineMeetingEngagementConversationCollectionResponse(writer: SerializationWriter, onlineMeetingEngagementConversationCollectionResponse?: Partial<OnlineMeetingEngagementConversationCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75129
76112
|
/**
|
|
75130
76113
|
* Serializes information the current object
|
|
75131
76114
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -75217,6 +76200,13 @@ export declare function serializeOnPremisesExtensionAttributes(writer: Serializa
|
|
|
75217
76200
|
* @param writer Serialization writer to use to serialize this model
|
|
75218
76201
|
*/
|
|
75219
76202
|
export declare function serializeOnPremisesProvisioningError(writer: SerializationWriter, onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76203
|
+
/**
|
|
76204
|
+
* Serializes information the current object
|
|
76205
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
76206
|
+
* @param OnPremisesSyncBehavior The instance to serialize from.
|
|
76207
|
+
* @param writer Serialization writer to use to serialize this model
|
|
76208
|
+
*/
|
|
76209
|
+
export declare function serializeOnPremisesSyncBehavior(writer: SerializationWriter, onPremisesSyncBehavior?: Partial<OnPremisesSyncBehavior> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75220
76210
|
/**
|
|
75221
76211
|
* Serializes information the current object
|
|
75222
76212
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -76883,6 +77873,20 @@ export declare function serializeReadingAssignmentSubmission(writer: Serializati
|
|
|
76883
77873
|
* @param writer Serialization writer to use to serialize this model
|
|
76884
77874
|
*/
|
|
76885
77875
|
export declare function serializeReadingAssignmentSubmissionCollectionResponse(writer: SerializationWriter, readingAssignmentSubmissionCollectionResponse?: Partial<ReadingAssignmentSubmissionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
77876
|
+
/**
|
|
77877
|
+
* Serializes information the current object
|
|
77878
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
77879
|
+
* @param ReadingCoachPassage The instance to serialize from.
|
|
77880
|
+
* @param writer Serialization writer to use to serialize this model
|
|
77881
|
+
*/
|
|
77882
|
+
export declare function serializeReadingCoachPassage(writer: SerializationWriter, readingCoachPassage?: Partial<ReadingCoachPassage> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
77883
|
+
/**
|
|
77884
|
+
* Serializes information the current object
|
|
77885
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
77886
|
+
* @param ReadingCoachPassageCollectionResponse The instance to serialize from.
|
|
77887
|
+
* @param writer Serialization writer to use to serialize this model
|
|
77888
|
+
*/
|
|
77889
|
+
export declare function serializeReadingCoachPassageCollectionResponse(writer: SerializationWriter, readingCoachPassageCollectionResponse?: Partial<ReadingCoachPassageCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
76886
77890
|
/**
|
|
76887
77891
|
* Serializes information the current object
|
|
76888
77892
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -78717,6 +79721,20 @@ export declare function serializeSortProperty(writer: SerializationWriter, sortP
|
|
|
78717
79721
|
* @param writer Serialization writer to use to serialize this model
|
|
78718
79722
|
*/
|
|
78719
79723
|
export declare function serializeSpaApplication(writer: SerializationWriter, spaApplication?: Partial<SpaApplication> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79724
|
+
/**
|
|
79725
|
+
* Serializes information the current object
|
|
79726
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
79727
|
+
* @param SpeakerAssignmentSubmission The instance to serialize from.
|
|
79728
|
+
* @param writer Serialization writer to use to serialize this model
|
|
79729
|
+
*/
|
|
79730
|
+
export declare function serializeSpeakerAssignmentSubmission(writer: SerializationWriter, speakerAssignmentSubmission?: Partial<SpeakerAssignmentSubmission> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79731
|
+
/**
|
|
79732
|
+
* Serializes information the current object
|
|
79733
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
79734
|
+
* @param SpeakerAssignmentSubmissionCollectionResponse The instance to serialize from.
|
|
79735
|
+
* @param writer Serialization writer to use to serialize this model
|
|
79736
|
+
*/
|
|
79737
|
+
export declare function serializeSpeakerAssignmentSubmissionCollectionResponse(writer: SerializationWriter, speakerAssignmentSubmissionCollectionResponse?: Partial<SpeakerAssignmentSubmissionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
78720
79738
|
/**
|
|
78721
79739
|
* Serializes information the current object
|
|
78722
79740
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -79550,20 +80568,6 @@ export declare function serializeTeamworkTagMemberCollectionResponse(writer: Ser
|
|
|
79550
80568
|
* @param writer Serialization writer to use to serialize this model
|
|
79551
80569
|
*/
|
|
79552
80570
|
export declare function serializeTeamworkUserIdentity(writer: SerializationWriter, teamworkUserIdentity?: Partial<TeamworkUserIdentity> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79553
|
-
/**
|
|
79554
|
-
* Serializes information the current object
|
|
79555
|
-
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
79556
|
-
* @param TelecomExpenseManagementPartner The instance to serialize from.
|
|
79557
|
-
* @param writer Serialization writer to use to serialize this model
|
|
79558
|
-
*/
|
|
79559
|
-
export declare function serializeTelecomExpenseManagementPartner(writer: SerializationWriter, telecomExpenseManagementPartner?: Partial<TelecomExpenseManagementPartner> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79560
|
-
/**
|
|
79561
|
-
* Serializes information the current object
|
|
79562
|
-
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
79563
|
-
* @param TelecomExpenseManagementPartnerCollectionResponse The instance to serialize from.
|
|
79564
|
-
* @param writer Serialization writer to use to serialize this model
|
|
79565
|
-
*/
|
|
79566
|
-
export declare function serializeTelecomExpenseManagementPartnerCollectionResponse(writer: SerializationWriter, telecomExpenseManagementPartnerCollectionResponse?: Partial<TelecomExpenseManagementPartnerCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
79567
80571
|
/**
|
|
79568
80572
|
* Serializes information the current object
|
|
79569
80573
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -83319,11 +84323,11 @@ export interface SettingSource extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
83319
84323
|
*/
|
|
83320
84324
|
backingStoreEnabled?: boolean | null;
|
|
83321
84325
|
/**
|
|
83322
|
-
*
|
|
84326
|
+
* The displayName property
|
|
83323
84327
|
*/
|
|
83324
84328
|
displayName?: string | null;
|
|
83325
84329
|
/**
|
|
83326
|
-
*
|
|
84330
|
+
* The id property
|
|
83327
84331
|
*/
|
|
83328
84332
|
id?: string | null;
|
|
83329
84333
|
/**
|
|
@@ -85108,6 +86112,90 @@ export interface SpaApplication extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
85108
86112
|
*/
|
|
85109
86113
|
redirectUris?: string[] | null;
|
|
85110
86114
|
}
|
|
86115
|
+
export interface SpeakerAssignmentSubmission extends Entity, Parsable {
|
|
86116
|
+
/**
|
|
86117
|
+
* ID of the assignment with which this submission is associated.
|
|
86118
|
+
*/
|
|
86119
|
+
assignmentId?: string | null;
|
|
86120
|
+
/**
|
|
86121
|
+
* The average speaking pace of the student, measured in words per minute.
|
|
86122
|
+
*/
|
|
86123
|
+
averageWordsPerMinutePace?: number | null;
|
|
86124
|
+
/**
|
|
86125
|
+
* ID of the class this speaker progress is associated with.
|
|
86126
|
+
*/
|
|
86127
|
+
classId?: string | null;
|
|
86128
|
+
/**
|
|
86129
|
+
* The number of times the student was flagged by Speaker Coach for using a filler word.
|
|
86130
|
+
*/
|
|
86131
|
+
fillerWordsOccurrencesCount?: number | null;
|
|
86132
|
+
/**
|
|
86133
|
+
* The number of times the student was flagged by Speaker Coach for being either too close or too far away from the camera.
|
|
86134
|
+
*/
|
|
86135
|
+
incorrectCameraDistanceOccurrencesCount?: number | null;
|
|
86136
|
+
/**
|
|
86137
|
+
* The length of the student submission in seconds.
|
|
86138
|
+
*/
|
|
86139
|
+
lengthOfSubmissionInSeconds?: number | null;
|
|
86140
|
+
/**
|
|
86141
|
+
* The number of times the student was flagged by Speaker Coach for losing eye contact with the camera.
|
|
86142
|
+
*/
|
|
86143
|
+
lostEyeContactOccurrencesCount?: number | null;
|
|
86144
|
+
/**
|
|
86145
|
+
* The number of times the student was flagged by Speaker Coach for speaking in monotone.
|
|
86146
|
+
*/
|
|
86147
|
+
monotoneOccurrencesCount?: number | null;
|
|
86148
|
+
/**
|
|
86149
|
+
* The number of times the student was flagged by Speaker Coach for using non-inclusive or sensitive language.
|
|
86150
|
+
*/
|
|
86151
|
+
nonInclusiveLanguageOccurrencesCount?: number | null;
|
|
86152
|
+
/**
|
|
86153
|
+
* The number of times the student was flagged by Speaker Coach for obstructing the view of their face.
|
|
86154
|
+
*/
|
|
86155
|
+
obstructedViewOccurrencesCount?: number | null;
|
|
86156
|
+
/**
|
|
86157
|
+
* The number of times the student was flagged by Speaker Coach for using repetitive language.
|
|
86158
|
+
*/
|
|
86159
|
+
repetitiveLanguageOccurrencesCount?: number | null;
|
|
86160
|
+
/**
|
|
86161
|
+
* ID of the user this speaker progress is associated with.
|
|
86162
|
+
*/
|
|
86163
|
+
studentId?: string | null;
|
|
86164
|
+
/**
|
|
86165
|
+
* Date and time of the submission this speaker progress is associated with. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
86166
|
+
*/
|
|
86167
|
+
submissionDateTime?: Date | null;
|
|
86168
|
+
/**
|
|
86169
|
+
* ID of the submission this speaker progress is associated with.
|
|
86170
|
+
*/
|
|
86171
|
+
submissionId?: string | null;
|
|
86172
|
+
/**
|
|
86173
|
+
* The filler words used most by the student.
|
|
86174
|
+
*/
|
|
86175
|
+
topFillerWords?: string[] | null;
|
|
86176
|
+
/**
|
|
86177
|
+
* The words mispronounced most by the student.
|
|
86178
|
+
*/
|
|
86179
|
+
topMispronouncedWords?: string[] | null;
|
|
86180
|
+
/**
|
|
86181
|
+
* The non-inclusive or sensitive words and phrases most used by the student.
|
|
86182
|
+
*/
|
|
86183
|
+
topNonInclusiveWordsAndPhrases?: string[] | null;
|
|
86184
|
+
/**
|
|
86185
|
+
* The words and phrases most repeated by the student.
|
|
86186
|
+
*/
|
|
86187
|
+
topRepetitiveWordsAndPhrases?: string[] | null;
|
|
86188
|
+
/**
|
|
86189
|
+
* Total number of words spoken by the student in the submission.
|
|
86190
|
+
*/
|
|
86191
|
+
wordsSpokenCount?: number | null;
|
|
86192
|
+
}
|
|
86193
|
+
export interface SpeakerAssignmentSubmissionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
86194
|
+
/**
|
|
86195
|
+
* The value property
|
|
86196
|
+
*/
|
|
86197
|
+
value?: SpeakerAssignmentSubmission[] | null;
|
|
86198
|
+
}
|
|
85111
86199
|
export interface SpecialFolder extends AdditionalDataHolder, BackedModel, Parsable {
|
|
85112
86200
|
/**
|
|
85113
86201
|
* Stores model information.
|
|
@@ -87188,37 +88276,6 @@ export interface TeamworkUserIdentity extends Identity, Parsable {
|
|
|
87188
88276
|
userIdentityType?: TeamworkUserIdentityType | null;
|
|
87189
88277
|
}
|
|
87190
88278
|
export type TeamworkUserIdentityType = (typeof TeamworkUserIdentityTypeObject)[keyof typeof TeamworkUserIdentityTypeObject];
|
|
87191
|
-
/**
|
|
87192
|
-
* telecomExpenseManagementPartner resources represent the metadata and status of a given TEM service. Once your organization has onboarded with a partner, the partner can be enabled or disabled to switch TEM functionality on or off.
|
|
87193
|
-
*/
|
|
87194
|
-
export interface TelecomExpenseManagementPartner extends Entity, Parsable {
|
|
87195
|
-
/**
|
|
87196
|
-
* Whether the partner's AAD app has been authorized to access Intune.
|
|
87197
|
-
*/
|
|
87198
|
-
appAuthorized?: boolean | null;
|
|
87199
|
-
/**
|
|
87200
|
-
* Display name of the TEM partner.
|
|
87201
|
-
*/
|
|
87202
|
-
displayName?: string | null;
|
|
87203
|
-
/**
|
|
87204
|
-
* Whether Intune's connection to the TEM service is currently enabled or disabled.
|
|
87205
|
-
*/
|
|
87206
|
-
enabled?: boolean | null;
|
|
87207
|
-
/**
|
|
87208
|
-
* Timestamp of the last request sent to Intune by the TEM partner.
|
|
87209
|
-
*/
|
|
87210
|
-
lastConnectionDateTime?: Date | null;
|
|
87211
|
-
/**
|
|
87212
|
-
* URL of the TEM partner's administrative control panel, where an administrator can configure their TEM service.
|
|
87213
|
-
*/
|
|
87214
|
-
url?: string | null;
|
|
87215
|
-
}
|
|
87216
|
-
export interface TelecomExpenseManagementPartnerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
87217
|
-
/**
|
|
87218
|
-
* The value property
|
|
87219
|
-
*/
|
|
87220
|
-
value?: TelecomExpenseManagementPartner[] | null;
|
|
87221
|
-
}
|
|
87222
88279
|
export interface TeleconferenceDeviceAudioQuality extends Parsable, TeleconferenceDeviceMediaQuality {
|
|
87223
88280
|
}
|
|
87224
88281
|
export interface TeleconferenceDeviceMediaQuality extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -89346,19 +90403,19 @@ export interface UpdateWindowsDeviceAccountActionParameter extends AdditionalDat
|
|
|
89346
90403
|
*/
|
|
89347
90404
|
backingStoreEnabled?: boolean | null;
|
|
89348
90405
|
/**
|
|
89349
|
-
*
|
|
90406
|
+
* The calendarSyncEnabled property
|
|
89350
90407
|
*/
|
|
89351
90408
|
calendarSyncEnabled?: boolean | null;
|
|
89352
90409
|
/**
|
|
89353
|
-
*
|
|
90410
|
+
* The deviceAccount property
|
|
89354
90411
|
*/
|
|
89355
90412
|
deviceAccount?: WindowsDeviceAccount | null;
|
|
89356
90413
|
/**
|
|
89357
|
-
*
|
|
90414
|
+
* The deviceAccountEmail property
|
|
89358
90415
|
*/
|
|
89359
90416
|
deviceAccountEmail?: string | null;
|
|
89360
90417
|
/**
|
|
89361
|
-
*
|
|
90418
|
+
* The exchangeServer property
|
|
89362
90419
|
*/
|
|
89363
90420
|
exchangeServer?: string | null;
|
|
89364
90421
|
/**
|
|
@@ -89366,11 +90423,11 @@ export interface UpdateWindowsDeviceAccountActionParameter extends AdditionalDat
|
|
|
89366
90423
|
*/
|
|
89367
90424
|
odataType?: string | null;
|
|
89368
90425
|
/**
|
|
89369
|
-
*
|
|
90426
|
+
* The passwordRotationEnabled property
|
|
89370
90427
|
*/
|
|
89371
90428
|
passwordRotationEnabled?: boolean | null;
|
|
89372
90429
|
/**
|
|
89373
|
-
*
|
|
90430
|
+
* The sessionInitiationProtocalAddress property
|
|
89374
90431
|
*/
|
|
89375
90432
|
sessionInitiationProtocalAddress?: string | null;
|
|
89376
90433
|
}
|
|
@@ -92628,7 +93685,7 @@ export interface VppLicensingType extends AdditionalDataHolder, BackedModel, Par
|
|
|
92628
93685
|
*/
|
|
92629
93686
|
export interface VppToken extends Entity, Parsable {
|
|
92630
93687
|
/**
|
|
92631
|
-
* The
|
|
93688
|
+
* The apple Id associated with the given Apple Volume Purchase Program Token.
|
|
92632
93689
|
*/
|
|
92633
93690
|
appleId?: string | null;
|
|
92634
93691
|
/**
|
|
@@ -92636,7 +93693,7 @@ export interface VppToken extends Entity, Parsable {
|
|
|
92636
93693
|
*/
|
|
92637
93694
|
automaticallyUpdateApps?: boolean | null;
|
|
92638
93695
|
/**
|
|
92639
|
-
*
|
|
93696
|
+
* Whether or not apps for the VPP token will be automatically updated.
|
|
92640
93697
|
*/
|
|
92641
93698
|
countryOrRegion?: string | null;
|
|
92642
93699
|
/**
|
|
@@ -92873,7 +93930,7 @@ export interface WhatIfAnalysisResult extends ConditionalAccessPolicy, Parsable
|
|
|
92873
93930
|
*/
|
|
92874
93931
|
export interface Win32LobApp extends MobileLobApp, Parsable {
|
|
92875
93932
|
/**
|
|
92876
|
-
* Indicates the Windows architecture(s) this app should be installed on. The app will be treated as not applicable for devices with architectures not matching the selected value. When a non-null value is provided for the
|
|
93933
|
+
* Indicates the Windows architecture(s) this app should be installed on. The app will be treated as not applicable for devices with architectures not matching the selected value. When a non-null value is provided for the allowedArchitectures property, the value of the applicableArchitectures property is set to none. Possible values are: null, x86, x64, arm64. Possible values are: none, x86, x64, arm, neutral.
|
|
92877
93934
|
*/
|
|
92878
93935
|
allowedArchitectures?: WindowsArchitecture[] | null;
|
|
92879
93936
|
/**
|
|
@@ -92881,51 +93938,51 @@ export interface Win32LobApp extends MobileLobApp, Parsable {
|
|
|
92881
93938
|
*/
|
|
92882
93939
|
applicableArchitectures?: WindowsArchitecture[] | null;
|
|
92883
93940
|
/**
|
|
92884
|
-
*
|
|
93941
|
+
* Indicates the command line to install this app. Used to install the Win32 app. Example: msiexec /i 'Orca.Msi' /qn.
|
|
92885
93942
|
*/
|
|
92886
93943
|
installCommandLine?: string | null;
|
|
92887
93944
|
/**
|
|
92888
|
-
*
|
|
93945
|
+
* Indicates the install experience for this app.
|
|
92889
93946
|
*/
|
|
92890
93947
|
installExperience?: Win32LobAppInstallExperience | null;
|
|
92891
93948
|
/**
|
|
92892
|
-
*
|
|
93949
|
+
* Indicates the value for the minimum CPU speed which is required to install this app. Allowed range from 0 to clock speed from WMI helper.
|
|
92893
93950
|
*/
|
|
92894
93951
|
minimumCpuSpeedInMHz?: number | null;
|
|
92895
93952
|
/**
|
|
92896
|
-
*
|
|
93953
|
+
* Indicates the value for the minimum free disk space which is required to install this app. Allowed range from 0 to driver's maximum available free space.
|
|
92897
93954
|
*/
|
|
92898
93955
|
minimumFreeDiskSpaceInMB?: number | null;
|
|
92899
93956
|
/**
|
|
92900
|
-
*
|
|
93957
|
+
* Indicates the value for the minimum physical memory which is required to install this app. Allowed range from 0 to total physical memory from WMI helper.
|
|
92901
93958
|
*/
|
|
92902
93959
|
minimumMemoryInMB?: number | null;
|
|
92903
93960
|
/**
|
|
92904
|
-
*
|
|
93961
|
+
* Indicates the value for the minimum number of processors which is required to install this app. Minimum value is 0.
|
|
92905
93962
|
*/
|
|
92906
93963
|
minimumNumberOfProcessors?: number | null;
|
|
92907
93964
|
/**
|
|
92908
|
-
*
|
|
93965
|
+
* Indicates the value for the minimum supported windows release. Example: Windows11_23H2.
|
|
92909
93966
|
*/
|
|
92910
93967
|
minimumSupportedWindowsRelease?: string | null;
|
|
92911
93968
|
/**
|
|
92912
|
-
*
|
|
93969
|
+
* Indicates the MSI details if this Win32 app is an MSI app.
|
|
92913
93970
|
*/
|
|
92914
93971
|
msiInformation?: Win32LobAppMsiInformation | null;
|
|
92915
93972
|
/**
|
|
92916
|
-
*
|
|
93973
|
+
* Indicates the return codes for post installation behavior.
|
|
92917
93974
|
*/
|
|
92918
93975
|
returnCodes?: Win32LobAppReturnCode[] | null;
|
|
92919
93976
|
/**
|
|
92920
|
-
*
|
|
93977
|
+
* Indicates the detection and requirement rules for this app. Possible values are: Win32LobAppFileSystemRule, Win32LobAppPowerShellScriptRule, Win32LobAppProductCodeRule, Win32LobAppRegistryRule.
|
|
92921
93978
|
*/
|
|
92922
93979
|
rules?: Win32LobAppRule[] | null;
|
|
92923
93980
|
/**
|
|
92924
|
-
*
|
|
93981
|
+
* Indicates the relative path of the setup file in the encrypted Win32LobApp package. Example: Intel-SA-00075 Detection and Mitigation Tool.msi.
|
|
92925
93982
|
*/
|
|
92926
93983
|
setupFilePath?: string | null;
|
|
92927
93984
|
/**
|
|
92928
|
-
*
|
|
93985
|
+
* Indicates the command line to uninstall this app. Used to uninstall the app. Example: msiexec /x '{85F4CBCB-9BBC-4B50-A7D8-E1106771498D}' /qn.
|
|
92929
93986
|
*/
|
|
92930
93987
|
uninstallCommandLine?: string | null;
|
|
92931
93988
|
}
|
|
@@ -94903,23 +95960,23 @@ export interface WindowsDeviceAccount extends AdditionalDataHolder, BackedModel,
|
|
|
94903
95960
|
*/
|
|
94904
95961
|
odataType?: string | null;
|
|
94905
95962
|
/**
|
|
94906
|
-
*
|
|
95963
|
+
* The password property
|
|
94907
95964
|
*/
|
|
94908
95965
|
password?: string | null;
|
|
94909
95966
|
}
|
|
94910
95967
|
export interface WindowsDeviceADAccount extends Parsable, WindowsDeviceAccount {
|
|
94911
95968
|
/**
|
|
94912
|
-
*
|
|
95969
|
+
* The domainName property
|
|
94913
95970
|
*/
|
|
94914
95971
|
domainName?: string | null;
|
|
94915
95972
|
/**
|
|
94916
|
-
*
|
|
95973
|
+
* The userName property
|
|
94917
95974
|
*/
|
|
94918
95975
|
userName?: string | null;
|
|
94919
95976
|
}
|
|
94920
95977
|
export interface WindowsDeviceAzureADAccount extends Parsable, WindowsDeviceAccount {
|
|
94921
95978
|
/**
|
|
94922
|
-
*
|
|
95979
|
+
* The userPrincipalName property
|
|
94923
95980
|
*/
|
|
94924
95981
|
userPrincipalName?: string | null;
|
|
94925
95982
|
}
|
|
@@ -95344,7 +96401,7 @@ export type WindowsInformationProtectionPinCharacterRequirements = (typeof Windo
|
|
|
95344
96401
|
*/
|
|
95345
96402
|
export interface WindowsInformationProtectionPolicy extends Parsable, WindowsInformationProtection {
|
|
95346
96403
|
/**
|
|
95347
|
-
* Offline interval before app data is wiped (days)
|
|
96404
|
+
* Offline interval before app data is wiped (days) . Valid values 0 to 999
|
|
95348
96405
|
*/
|
|
95349
96406
|
daysWithoutContactBeforeUnenroll?: number | null;
|
|
95350
96407
|
/**
|
|
@@ -95352,19 +96409,19 @@ export interface WindowsInformationProtectionPolicy extends Parsable, WindowsInf
|
|
|
95352
96409
|
*/
|
|
95353
96410
|
mdmEnrollmentUrl?: string | null;
|
|
95354
96411
|
/**
|
|
95355
|
-
* Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Range is an integer X where 0 <= X <= 999.
|
|
96412
|
+
* Specifies the maximum amount of time (in minutes) allowed after the device is idle that will cause the device to become PIN or password locked. Range is an integer X where 0 <= X <= 999. Valid values 0 to 999
|
|
95356
96413
|
*/
|
|
95357
96414
|
minutesOfInactivityBeforeDeviceLock?: number | null;
|
|
95358
96415
|
/**
|
|
95359
|
-
* Integer value that specifies the number of past PINs that can be associated to a user account that can't be reused. The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required. This node was added in Windows 10, version 1511. Default is 0.
|
|
96416
|
+
* Integer value that specifies the number of past PINs that can be associated to a user account that can't be reused. The largest number you can configure for this policy setting is 50. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then storage of previous PINs is not required. This node was added in Windows 10, version 1511. Default is 0. Valid values 0 to 50
|
|
95360
96417
|
*/
|
|
95361
96418
|
numberOfPastPinsRemembered?: number | null;
|
|
95362
96419
|
/**
|
|
95363
|
-
* The number of authentication failures allowed before the device will be wiped. A value of 0 disables device wipe functionality. Range is an integer X where 4 <= X <= 16 for desktop and 0 <= X <= 999 for mobile devices.
|
|
96420
|
+
* The number of authentication failures allowed before the device will be wiped. A value of 0 disables device wipe functionality. Range is an integer X where 4 <= X <= 16 for desktop and 0 <= X <= 999 for mobile devices. Valid values 0 to 999
|
|
95364
96421
|
*/
|
|
95365
96422
|
passwordMaximumAttemptCount?: number | null;
|
|
95366
96423
|
/**
|
|
95367
|
-
* Integer value specifies the period of time (in days) that a PIN can be used before the system requires the user to change it. The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user's PIN will never expire. This node was added in Windows 10, version 1511. Default is 0.
|
|
96424
|
+
* Integer value specifies the period of time (in days) that a PIN can be used before the system requires the user to change it. The largest number you can configure for this policy setting is 730. The lowest number you can configure for this policy setting is 0. If this policy is set to 0, then the user's PIN will never expire. This node was added in Windows 10, version 1511. Default is 0. Valid values 0 to 730
|
|
95368
96425
|
*/
|
|
95369
96426
|
pinExpirationDays?: number | null;
|
|
95370
96427
|
/**
|
|
@@ -95372,7 +96429,7 @@ export interface WindowsInformationProtectionPolicy extends Parsable, WindowsInf
|
|
|
95372
96429
|
*/
|
|
95373
96430
|
pinLowercaseLetters?: WindowsInformationProtectionPinCharacterRequirements | null;
|
|
95374
96431
|
/**
|
|
95375
|
-
* Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest.
|
|
96432
|
+
* Integer value that sets the minimum number of characters required for the PIN. Default value is 4. The lowest number you can configure for this policy setting is 4. The largest number you can configure must be less than the number configured in the Maximum PIN length policy setting or the number 127, whichever is the lowest. Valid values 0 to 127
|
|
95376
96433
|
*/
|
|
95377
96434
|
pinMinimumLength?: number | null;
|
|
95378
96435
|
/**
|
|
@@ -96081,27 +97138,27 @@ export interface WindowsUniversalAppX extends MobileLobApp, Parsable {
|
|
|
96081
97138
|
*/
|
|
96082
97139
|
applicableDeviceTypes?: WindowsDeviceType[] | null;
|
|
96083
97140
|
/**
|
|
96084
|
-
* The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app.
|
|
97141
|
+
* The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app. This property is read-only.
|
|
96085
97142
|
*/
|
|
96086
97143
|
committedContainedApps?: MobileContainedApp[] | null;
|
|
96087
97144
|
/**
|
|
96088
|
-
* The Identity Name.
|
|
97145
|
+
* The Identity Name of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: 'Contoso.DemoApp'.
|
|
96089
97146
|
*/
|
|
96090
97147
|
identityName?: string | null;
|
|
96091
97148
|
/**
|
|
96092
|
-
* The Identity Publisher Hash.
|
|
97149
|
+
* The Identity Publisher Hash of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: 'AB82CD0XYZ'.
|
|
96093
97150
|
*/
|
|
96094
97151
|
identityPublisherHash?: string | null;
|
|
96095
97152
|
/**
|
|
96096
|
-
* The Identity Resource Identifier.
|
|
97153
|
+
* The Identity Resource Identifier of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: 'TestResourceId'.
|
|
96097
97154
|
*/
|
|
96098
97155
|
identityResourceIdentifier?: string | null;
|
|
96099
97156
|
/**
|
|
96100
|
-
* The
|
|
97157
|
+
* The Identity Version of the app, parsed from the appx file when it is uploaded through the Intune MEM console. For example: '1.0.0.0'.
|
|
96101
97158
|
*/
|
|
96102
97159
|
identityVersion?: string | null;
|
|
96103
97160
|
/**
|
|
96104
|
-
* Whether or not the app is a bundle.
|
|
97161
|
+
* Whether or not the app is a bundle. If TRUE, app is a bundle; if FALSE, app is not a bundle.
|
|
96105
97162
|
*/
|
|
96106
97163
|
isBundle?: boolean | null;
|
|
96107
97164
|
/**
|
|
@@ -97381,47 +98438,47 @@ export interface WorkbookWorksheetProtection extends Entity, Parsable {
|
|
|
97381
98438
|
}
|
|
97382
98439
|
export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder, BackedModel, Parsable {
|
|
97383
98440
|
/**
|
|
97384
|
-
*
|
|
98441
|
+
* Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
|
|
97385
98442
|
*/
|
|
97386
98443
|
allowAutoFilter?: boolean | null;
|
|
97387
98444
|
/**
|
|
97388
|
-
*
|
|
98445
|
+
* Indicates whether the worksheet protection option to allow deleting columns is enabled.
|
|
97389
98446
|
*/
|
|
97390
98447
|
allowDeleteColumns?: boolean | null;
|
|
97391
98448
|
/**
|
|
97392
|
-
*
|
|
98449
|
+
* Indicates whether the worksheet protection option to allow deleting rows is enabled.
|
|
97393
98450
|
*/
|
|
97394
98451
|
allowDeleteRows?: boolean | null;
|
|
97395
98452
|
/**
|
|
97396
|
-
*
|
|
98453
|
+
* Indicates whether the worksheet protection option to allow formatting cells is enabled.
|
|
97397
98454
|
*/
|
|
97398
98455
|
allowFormatCells?: boolean | null;
|
|
97399
98456
|
/**
|
|
97400
|
-
*
|
|
98457
|
+
* Indicates whether the worksheet protection option to allow formatting columns is enabled.
|
|
97401
98458
|
*/
|
|
97402
98459
|
allowFormatColumns?: boolean | null;
|
|
97403
98460
|
/**
|
|
97404
|
-
*
|
|
98461
|
+
* Indicates whether the worksheet protection option to allow formatting rows is enabled.
|
|
97405
98462
|
*/
|
|
97406
98463
|
allowFormatRows?: boolean | null;
|
|
97407
98464
|
/**
|
|
97408
|
-
*
|
|
98465
|
+
* Indicates whether the worksheet protection option to allow inserting columns is enabled.
|
|
97409
98466
|
*/
|
|
97410
98467
|
allowInsertColumns?: boolean | null;
|
|
97411
98468
|
/**
|
|
97412
|
-
*
|
|
98469
|
+
* Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
|
|
97413
98470
|
*/
|
|
97414
98471
|
allowInsertHyperlinks?: boolean | null;
|
|
97415
98472
|
/**
|
|
97416
|
-
*
|
|
98473
|
+
* Indicates whether the worksheet protection option to allow inserting rows is enabled.
|
|
97417
98474
|
*/
|
|
97418
98475
|
allowInsertRows?: boolean | null;
|
|
97419
98476
|
/**
|
|
97420
|
-
*
|
|
98477
|
+
* Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
|
|
97421
98478
|
*/
|
|
97422
98479
|
allowPivotTables?: boolean | null;
|
|
97423
98480
|
/**
|
|
97424
|
-
*
|
|
98481
|
+
* Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
|
|
97425
98482
|
*/
|
|
97426
98483
|
allowSort?: boolean | null;
|
|
97427
98484
|
/**
|
|
@@ -99659,6 +100716,12 @@ export declare const EducationModuleStatusObject: {
|
|
|
99659
100716
|
readonly Published: "published";
|
|
99660
100717
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
99661
100718
|
};
|
|
100719
|
+
export declare const EducationSpeechTypeObject: {
|
|
100720
|
+
readonly Informative: "informative";
|
|
100721
|
+
readonly Personal: "personal";
|
|
100722
|
+
readonly Persuasive: "persuasive";
|
|
100723
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
100724
|
+
};
|
|
99662
100725
|
export declare const EducationSubmissionStatusObject: {
|
|
99663
100726
|
readonly Working: "working";
|
|
99664
100727
|
readonly Submitted: "submitted";
|
|
@@ -99735,6 +100798,97 @@ export declare const EngagementAsyncOperationTypeObject: {
|
|
|
99735
100798
|
/** A marker value for members added after the release of this API. */
|
|
99736
100799
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
99737
100800
|
};
|
|
100801
|
+
/**
|
|
100802
|
+
* Types of reactions to conversation messages.
|
|
100803
|
+
*/
|
|
100804
|
+
export declare const EngagementConversationMessageReactionTypeObject: {
|
|
100805
|
+
/** Like reaction, represented as a thumbs-up hand. A positive sentiment. */
|
|
100806
|
+
readonly Like: "like";
|
|
100807
|
+
/** Love reaction, represented as a solid heart shape. A very positive sentiment. */
|
|
100808
|
+
readonly Love: "love";
|
|
100809
|
+
/** Celebrate reaction, represented as a party hat. A positive sentiment. */
|
|
100810
|
+
readonly Celebrate: "celebrate";
|
|
100811
|
+
/** Thank reaction, represented as applauding hands. A positive sentiment. */
|
|
100812
|
+
readonly Thank: "thank";
|
|
100813
|
+
/** Laugh reaction, represented as a grinning face. A positive sentiment. */
|
|
100814
|
+
readonly Laugh: "laugh";
|
|
100815
|
+
/** Sad reaction, represented as a frowning face. A sympathetic sentiment. */
|
|
100816
|
+
readonly Sad: "sad";
|
|
100817
|
+
/** Happy reaction, represented as an open mouth smile face. A very positive sentiment. */
|
|
100818
|
+
readonly Happy: "happy";
|
|
100819
|
+
/** Excited reaction, represented as a face with closed eyes and a big smile. A very positive sentiment. */
|
|
100820
|
+
readonly Excited: "excited";
|
|
100821
|
+
/** Smiling reaction, represented as a face with a small smile. A positive sentiment. */
|
|
100822
|
+
readonly Smile: "smile";
|
|
100823
|
+
/** Silly reaction, represented as an upside down smiling face. A positive sentiment. */
|
|
100824
|
+
readonly Silly: "silly";
|
|
100825
|
+
/** Intense laughter reaction, represented as a crying laughing face. A very positive sentiment. */
|
|
100826
|
+
readonly IntenseLaugh: "intenseLaugh";
|
|
100827
|
+
/** Star struck reaction, represented as a face with stars for eyes. A very positive sentiment. */
|
|
100828
|
+
readonly StarStruck: "starStruck";
|
|
100829
|
+
/** Goofy reaction, represented as a face with tongue sticking out of mouth. A positive sentiment. */
|
|
100830
|
+
readonly Goofy: "goofy";
|
|
100831
|
+
/** Thinking reaction, represented as a face with a hand on the chin. A neutral sentiment. */
|
|
100832
|
+
readonly Thinking: "thinking";
|
|
100833
|
+
/** Surprised reaction, represented as a face with its mouth open. A neutral sentiment. */
|
|
100834
|
+
readonly Surprised: "surprised";
|
|
100835
|
+
/** Mind blown reaction, represented as a face with its head covered in an exploding cloud. A positive sentiment. */
|
|
100836
|
+
readonly MindBlown: "mindBlown";
|
|
100837
|
+
/** Scared reaction, represented as a face with fearful look. A negative sentiment. */
|
|
100838
|
+
readonly Scared: "scared";
|
|
100839
|
+
/** Crying reaction, represented as a face with tears streaming down. A negative sentiment. */
|
|
100840
|
+
readonly Crying: "crying";
|
|
100841
|
+
/** Shocked reaction, represented as a face with two hands against cheeks and mouth open. A negative sentiment. */
|
|
100842
|
+
readonly Shocked: "shocked";
|
|
100843
|
+
/** Angry reaction, represented as a face with furrowed eyebrows and sad mouth. A very negative sentiment. */
|
|
100844
|
+
readonly Angry: "angry";
|
|
100845
|
+
/** Agree reaction, represented as a hand pointing upward. A positive sentiment. */
|
|
100846
|
+
readonly Agree: "agree";
|
|
100847
|
+
/** Praise reaction, represented as two hands facing outward. A positive sentiment. */
|
|
100848
|
+
readonly Praise: "praise";
|
|
100849
|
+
/** Taking notes reaction, represented as a hand holding a pen. A neutral sentiment. */
|
|
100850
|
+
readonly TakingNotes: "takingNotes";
|
|
100851
|
+
/** Heart broken reaction, represented as a broken heart. A negative sentiment. */
|
|
100852
|
+
readonly HeartBroken: "heartBroken";
|
|
100853
|
+
/** Support reaction, represented as red numbers showing 100. A positive sentiment. */
|
|
100854
|
+
readonly Support: "support";
|
|
100855
|
+
/** Confirmed reaction, represented as a green check mark. A neutral sentiment. */
|
|
100856
|
+
readonly Confirmed: "confirmed";
|
|
100857
|
+
/** Watching reaction, represented as two eyeballs. A neutral sentiment. */
|
|
100858
|
+
readonly Watching: "watching";
|
|
100859
|
+
/** Brain reaction, represented as a brain. A neutral sentiment. */
|
|
100860
|
+
readonly Brain: "brain";
|
|
100861
|
+
/** Medal reaction, represented as a medal hanging from a sash. A positive sentiment. */
|
|
100862
|
+
readonly Medal: "medal";
|
|
100863
|
+
/** Bullseye reaction, represented as a target with an arrow in the middle. A positive sentiment. */
|
|
100864
|
+
readonly Bullseye: "bullseye";
|
|
100865
|
+
/** A marker value for members added after the release of this API. */
|
|
100866
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
100867
|
+
};
|
|
100868
|
+
/**
|
|
100869
|
+
* Represents the moderation state of an Engage conversation message.
|
|
100870
|
+
*/
|
|
100871
|
+
export declare const EngagementConversationModerationStateObject: {
|
|
100872
|
+
/** The content is published. */
|
|
100873
|
+
readonly Published: "published";
|
|
100874
|
+
/** The content is pending review by a moderator. */
|
|
100875
|
+
readonly PendingReview: "pendingReview";
|
|
100876
|
+
/** he content has been rejected by a moderator. */
|
|
100877
|
+
readonly Dismissed: "dismissed";
|
|
100878
|
+
/** A marker value for members added after the release of this API. */
|
|
100879
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
100880
|
+
};
|
|
100881
|
+
/**
|
|
100882
|
+
* Indicates that the resource is in migration state and is currently being used for migration purposes.
|
|
100883
|
+
*/
|
|
100884
|
+
export declare const EngagementCreationModeObject: {
|
|
100885
|
+
/** Unspecified creation mode. */
|
|
100886
|
+
readonly None: "none";
|
|
100887
|
+
/** Creation is a migration. */
|
|
100888
|
+
readonly Migration: "migration";
|
|
100889
|
+
/** A marker value for members added after the release of this API. */
|
|
100890
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
100891
|
+
};
|
|
99738
100892
|
export declare const EnrollmentStateObject: {
|
|
99739
100893
|
/** Device enrollment state is unknown */
|
|
99740
100894
|
readonly Unknown: "unknown";
|
|
@@ -100314,6 +101468,37 @@ export declare const ManagementAgentTypeObject: {
|
|
|
100314
101468
|
readonly Microsoft365ManagedMdm: "microsoft365ManagedMdm";
|
|
100315
101469
|
readonly MsSense: "msSense";
|
|
100316
101470
|
};
|
|
101471
|
+
/**
|
|
101472
|
+
* Management state of device in Microsoft Intune.
|
|
101473
|
+
*/
|
|
101474
|
+
export declare const ManagementStateObject: {
|
|
101475
|
+
/** The device is under management */
|
|
101476
|
+
readonly Managed: "managed";
|
|
101477
|
+
/** A retire command is occuring on the device and in the process of unenrolling from management */
|
|
101478
|
+
readonly RetirePending: "retirePending";
|
|
101479
|
+
/** Retire command failed on the device */
|
|
101480
|
+
readonly RetireFailed: "retireFailed";
|
|
101481
|
+
/** A wipe command is occuring on the device and in the process of unenrolling from management */
|
|
101482
|
+
readonly WipePending: "wipePending";
|
|
101483
|
+
/** Wipe command failed on the device */
|
|
101484
|
+
readonly WipeFailed: "wipeFailed";
|
|
101485
|
+
/** The device is unhealthy. */
|
|
101486
|
+
readonly Unhealthy: "unhealthy";
|
|
101487
|
+
/** A delete command is occuring on the device */
|
|
101488
|
+
readonly DeletePending: "deletePending";
|
|
101489
|
+
/** A retire command was issued for the device */
|
|
101490
|
+
readonly RetireIssued: "retireIssued";
|
|
101491
|
+
/** A wipe command was issued for the device */
|
|
101492
|
+
readonly WipeIssued: "wipeIssued";
|
|
101493
|
+
/** A wipe command for this device has been canceled */
|
|
101494
|
+
readonly WipeCanceled: "wipeCanceled";
|
|
101495
|
+
/** A retire command for this device has been canceled */
|
|
101496
|
+
readonly RetireCanceled: "retireCanceled";
|
|
101497
|
+
/** The device is discovered but not fully enrolled. */
|
|
101498
|
+
readonly Discovered: "discovered";
|
|
101499
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
101500
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
101501
|
+
};
|
|
100317
101502
|
/**
|
|
100318
101503
|
* App configuration key types.
|
|
100319
101504
|
*/
|
|
@@ -101980,12 +103165,20 @@ export declare const ProtectionRuleStatusObject: {
|
|
|
101980
103165
|
readonly Completed: "completed";
|
|
101981
103166
|
readonly CompletedWithErrors: "completedWithErrors";
|
|
101982
103167
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
103168
|
+
readonly UpdateRequested: "updateRequested";
|
|
103169
|
+
readonly DeleteRequested: "deleteRequested";
|
|
101983
103170
|
};
|
|
101984
103171
|
export declare const ProtectionScopeStateObject: {
|
|
101985
103172
|
readonly NotModified: "notModified";
|
|
101986
103173
|
readonly Modified: "modified";
|
|
101987
103174
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
101988
103175
|
};
|
|
103176
|
+
export declare const ProtectionSourceObject: {
|
|
103177
|
+
readonly None: "none";
|
|
103178
|
+
readonly Manual: "manual";
|
|
103179
|
+
readonly DynamicRule: "dynamicRule";
|
|
103180
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
103181
|
+
};
|
|
101989
103182
|
export declare const ProtectionUnitsBulkJobStatusObject: {
|
|
101990
103183
|
readonly Unknown: "unknown";
|
|
101991
103184
|
readonly Active: "active";
|
|
@@ -102000,6 +103193,9 @@ export declare const ProtectionUnitStatusObject: {
|
|
|
102000
103193
|
readonly Unprotected: "unprotected";
|
|
102001
103194
|
readonly RemoveRequested: "removeRequested";
|
|
102002
103195
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
103196
|
+
readonly OffboardRequested: "offboardRequested";
|
|
103197
|
+
readonly Offboarded: "offboarded";
|
|
103198
|
+
readonly CancelOffboardRequested: "cancelOffboardRequested";
|
|
102003
103199
|
};
|
|
102004
103200
|
export declare const ProvisioningActionObject: {
|
|
102005
103201
|
readonly Other: "other";
|
|
@@ -102397,6 +103593,12 @@ export declare const RatingUnitedStatesTelevisionTypeObject: {
|
|
|
102397
103593
|
/** TV-MA, adults only */
|
|
102398
103594
|
readonly Adults: "adults";
|
|
102399
103595
|
};
|
|
103596
|
+
export declare const ReadingCoachStoryTypeObject: {
|
|
103597
|
+
readonly AiGenerated: "aiGenerated";
|
|
103598
|
+
readonly ReadWorks: "readWorks";
|
|
103599
|
+
readonly UserProvided: "userProvided";
|
|
103600
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
103601
|
+
};
|
|
102400
103602
|
export declare const RecipientScopeTypeObject: {
|
|
102401
103603
|
readonly None: "none";
|
|
102402
103604
|
readonly Internal: "internal";
|