@microsoft/msgraph-sdk 1.0.0-preview.67 → 1.0.0-preview.69
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/index.d.ts +390 -68
- package/models/index.d.ts.map +1 -1
- package/models/index.js +420 -18
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +98 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +90 -2
- 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
|
@@ -2080,31 +2080,31 @@ export interface AgreementFileVersionCollectionResponse extends BaseCollectionPa
|
|
|
2080
2080
|
}
|
|
2081
2081
|
export interface AiInteraction extends Entity, Parsable {
|
|
2082
2082
|
/**
|
|
2083
|
-
* The
|
|
2083
|
+
* The appClass property
|
|
2084
2084
|
*/
|
|
2085
2085
|
appClass?: string | null;
|
|
2086
2086
|
/**
|
|
2087
|
-
* The
|
|
2087
|
+
* The attachments property
|
|
2088
2088
|
*/
|
|
2089
2089
|
attachments?: AiInteractionAttachment[] | null;
|
|
2090
2090
|
/**
|
|
2091
|
-
* The body
|
|
2091
|
+
* The body property
|
|
2092
2092
|
*/
|
|
2093
2093
|
body?: ItemBody | null;
|
|
2094
2094
|
/**
|
|
2095
|
-
* The
|
|
2095
|
+
* The contexts property
|
|
2096
2096
|
*/
|
|
2097
2097
|
contexts?: AiInteractionContext[] | null;
|
|
2098
2098
|
/**
|
|
2099
|
-
* The
|
|
2099
|
+
* The conversationType property
|
|
2100
2100
|
*/
|
|
2101
2101
|
conversationType?: string | null;
|
|
2102
2102
|
/**
|
|
2103
|
-
* The
|
|
2103
|
+
* The createdDateTime property
|
|
2104
2104
|
*/
|
|
2105
2105
|
createdDateTime?: Date | null;
|
|
2106
2106
|
/**
|
|
2107
|
-
* The
|
|
2107
|
+
* The etag property
|
|
2108
2108
|
*/
|
|
2109
2109
|
etag?: string | null;
|
|
2110
2110
|
/**
|
|
@@ -2116,91 +2116,123 @@ export interface AiInteraction extends Entity, Parsable {
|
|
|
2116
2116
|
*/
|
|
2117
2117
|
interactionType?: AiInteractionType | null;
|
|
2118
2118
|
/**
|
|
2119
|
-
* The
|
|
2119
|
+
* The links property
|
|
2120
2120
|
*/
|
|
2121
2121
|
links?: AiInteractionLink[] | null;
|
|
2122
2122
|
/**
|
|
2123
|
-
* The locale
|
|
2123
|
+
* The locale property
|
|
2124
2124
|
*/
|
|
2125
2125
|
locale?: string | null;
|
|
2126
2126
|
/**
|
|
2127
|
-
* The
|
|
2127
|
+
* The mentions property
|
|
2128
2128
|
*/
|
|
2129
2129
|
mentions?: AiInteractionMention[] | null;
|
|
2130
2130
|
/**
|
|
2131
|
-
* The
|
|
2131
|
+
* The requestId property
|
|
2132
2132
|
*/
|
|
2133
2133
|
requestId?: string | null;
|
|
2134
2134
|
/**
|
|
2135
|
-
* The
|
|
2135
|
+
* The sessionId property
|
|
2136
2136
|
*/
|
|
2137
2137
|
sessionId?: string | null;
|
|
2138
2138
|
}
|
|
2139
|
-
export interface AiInteractionAttachment extends
|
|
2139
|
+
export interface AiInteractionAttachment extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2140
2140
|
/**
|
|
2141
|
-
* The
|
|
2141
|
+
* The attachmentId property
|
|
2142
2142
|
*/
|
|
2143
2143
|
attachmentId?: string | null;
|
|
2144
2144
|
/**
|
|
2145
|
-
*
|
|
2145
|
+
* Stores model information.
|
|
2146
|
+
*/
|
|
2147
|
+
backingStoreEnabled?: boolean | null;
|
|
2148
|
+
/**
|
|
2149
|
+
* The content property
|
|
2146
2150
|
*/
|
|
2147
2151
|
content?: string | null;
|
|
2148
2152
|
/**
|
|
2149
|
-
* The
|
|
2153
|
+
* The contentType property
|
|
2150
2154
|
*/
|
|
2151
2155
|
contentType?: string | null;
|
|
2152
2156
|
/**
|
|
2153
|
-
* The
|
|
2157
|
+
* The contentUrl property
|
|
2154
2158
|
*/
|
|
2155
2159
|
contentUrl?: string | null;
|
|
2156
2160
|
/**
|
|
2157
|
-
* The name
|
|
2161
|
+
* The name property
|
|
2158
2162
|
*/
|
|
2159
2163
|
name?: string | null;
|
|
2164
|
+
/**
|
|
2165
|
+
* The OdataType property
|
|
2166
|
+
*/
|
|
2167
|
+
odataType?: string | null;
|
|
2160
2168
|
}
|
|
2161
|
-
export interface AiInteractionContext extends
|
|
2169
|
+
export interface AiInteractionContext extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2162
2170
|
/**
|
|
2163
|
-
*
|
|
2171
|
+
* Stores model information.
|
|
2172
|
+
*/
|
|
2173
|
+
backingStoreEnabled?: boolean | null;
|
|
2174
|
+
/**
|
|
2175
|
+
* The contextReference property
|
|
2164
2176
|
*/
|
|
2165
2177
|
contextReference?: string | null;
|
|
2166
2178
|
/**
|
|
2167
|
-
* The
|
|
2179
|
+
* The contextType property
|
|
2168
2180
|
*/
|
|
2169
2181
|
contextType?: string | null;
|
|
2170
2182
|
/**
|
|
2171
|
-
* The
|
|
2183
|
+
* The displayName property
|
|
2172
2184
|
*/
|
|
2173
2185
|
displayName?: string | null;
|
|
2186
|
+
/**
|
|
2187
|
+
* The OdataType property
|
|
2188
|
+
*/
|
|
2189
|
+
odataType?: string | null;
|
|
2174
2190
|
}
|
|
2175
2191
|
export interface AiInteractionHistory extends Entity, Parsable {
|
|
2176
2192
|
}
|
|
2177
|
-
export interface AiInteractionLink extends
|
|
2193
|
+
export interface AiInteractionLink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2178
2194
|
/**
|
|
2179
|
-
*
|
|
2195
|
+
* Stores model information.
|
|
2196
|
+
*/
|
|
2197
|
+
backingStoreEnabled?: boolean | null;
|
|
2198
|
+
/**
|
|
2199
|
+
* The displayName property
|
|
2180
2200
|
*/
|
|
2181
2201
|
displayName?: string | null;
|
|
2182
2202
|
/**
|
|
2183
|
-
*
|
|
2203
|
+
* The linkType property
|
|
2184
2204
|
*/
|
|
2185
2205
|
linkType?: string | null;
|
|
2186
2206
|
/**
|
|
2187
|
-
* The
|
|
2207
|
+
* The linkUrl property
|
|
2188
2208
|
*/
|
|
2189
2209
|
linkUrl?: string | null;
|
|
2210
|
+
/**
|
|
2211
|
+
* The OdataType property
|
|
2212
|
+
*/
|
|
2213
|
+
odataType?: string | null;
|
|
2190
2214
|
}
|
|
2191
|
-
export interface AiInteractionMention extends
|
|
2215
|
+
export interface AiInteractionMention extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2216
|
+
/**
|
|
2217
|
+
* Stores model information.
|
|
2218
|
+
*/
|
|
2219
|
+
backingStoreEnabled?: boolean | null;
|
|
2192
2220
|
/**
|
|
2193
|
-
* The
|
|
2221
|
+
* The mentioned property
|
|
2194
2222
|
*/
|
|
2195
2223
|
mentioned?: AiInteractionMentionedIdentitySet | null;
|
|
2196
2224
|
/**
|
|
2197
|
-
* The
|
|
2225
|
+
* The mentionId property
|
|
2198
2226
|
*/
|
|
2199
2227
|
mentionId?: number | null;
|
|
2200
2228
|
/**
|
|
2201
|
-
* The
|
|
2229
|
+
* The mentionText property
|
|
2202
2230
|
*/
|
|
2203
2231
|
mentionText?: string | null;
|
|
2232
|
+
/**
|
|
2233
|
+
* The OdataType property
|
|
2234
|
+
*/
|
|
2235
|
+
odataType?: string | null;
|
|
2204
2236
|
}
|
|
2205
2237
|
export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable {
|
|
2206
2238
|
/**
|
|
@@ -2208,7 +2240,7 @@ export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable
|
|
|
2208
2240
|
*/
|
|
2209
2241
|
conversation?: TeamworkConversationIdentity | null;
|
|
2210
2242
|
/**
|
|
2211
|
-
* The tag
|
|
2243
|
+
* The tag property
|
|
2212
2244
|
*/
|
|
2213
2245
|
tag?: TeamworkTagIdentity | null;
|
|
2214
2246
|
}
|
|
@@ -2251,7 +2283,7 @@ export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Par
|
|
|
2251
2283
|
}
|
|
2252
2284
|
export interface AiUser extends Entity, Parsable {
|
|
2253
2285
|
/**
|
|
2254
|
-
* The
|
|
2286
|
+
* The interactionHistory property
|
|
2255
2287
|
*/
|
|
2256
2288
|
interactionHistory?: AiInteractionHistory | null;
|
|
2257
2289
|
}
|
|
@@ -11710,23 +11742,23 @@ export interface ConvertIdResult extends AdditionalDataHolder, BackedModel, Pars
|
|
|
11710
11742
|
}
|
|
11711
11743
|
export interface CopilotAdmin extends Entity, Parsable {
|
|
11712
11744
|
/**
|
|
11713
|
-
*
|
|
11745
|
+
* The settings property
|
|
11714
11746
|
*/
|
|
11715
11747
|
settings?: CopilotAdminSetting | null;
|
|
11716
11748
|
}
|
|
11717
11749
|
export interface CopilotAdminLimitedMode extends Entity, Parsable {
|
|
11718
11750
|
/**
|
|
11719
|
-
* The
|
|
11751
|
+
* The groupId property
|
|
11720
11752
|
*/
|
|
11721
11753
|
groupId?: string | null;
|
|
11722
11754
|
/**
|
|
11723
|
-
*
|
|
11755
|
+
* The isEnabledForGroup property
|
|
11724
11756
|
*/
|
|
11725
11757
|
isEnabledForGroup?: boolean | null;
|
|
11726
11758
|
}
|
|
11727
11759
|
export interface CopilotAdminSetting extends Entity, Parsable {
|
|
11728
11760
|
/**
|
|
11729
|
-
*
|
|
11761
|
+
* The limitedMode property
|
|
11730
11762
|
*/
|
|
11731
11763
|
limitedMode?: CopilotAdminLimitedMode | null;
|
|
11732
11764
|
}
|
|
@@ -15284,6 +15316,12 @@ export declare function createCustomCalloutExtensionFromDiscriminatorValue(parse
|
|
|
15284
15316
|
* @returns {CustomExtensionAuthenticationConfiguration}
|
|
15285
15317
|
*/
|
|
15286
15318
|
export declare function createCustomExtensionAuthenticationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15319
|
+
/**
|
|
15320
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15321
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15322
|
+
* @returns {CustomExtensionBehaviorOnError}
|
|
15323
|
+
*/
|
|
15324
|
+
export declare function createCustomExtensionBehaviorOnErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15287
15325
|
/**
|
|
15288
15326
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15289
15327
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17186,6 +17224,12 @@ export declare function createExternalUsersSelfServiceSignUpEventsFlowFromDiscri
|
|
|
17186
17224
|
* @returns {ExtractSensitivityLabelsResult}
|
|
17187
17225
|
*/
|
|
17188
17226
|
export declare function createExtractSensitivityLabelsResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17227
|
+
/**
|
|
17228
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17229
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17230
|
+
* @returns {FallbackToMicrosoftProviderOnError}
|
|
17231
|
+
*/
|
|
17232
|
+
export declare function createFallbackToMicrosoftProviderOnErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17189
17233
|
/**
|
|
17190
17234
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17191
17235
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17936,6 +17980,12 @@ export declare function createIosCompliancePolicyFromDiscriminatorValue(parseNod
|
|
|
17936
17980
|
* @returns {IosCustomConfiguration}
|
|
17937
17981
|
*/
|
|
17938
17982
|
export declare function createIosCustomConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17983
|
+
/**
|
|
17984
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17985
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17986
|
+
* @returns {IosDdmLobAppAssignmentSettings}
|
|
17987
|
+
*/
|
|
17988
|
+
export declare function createIosDdmLobAppAssignmentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17939
17989
|
/**
|
|
17940
17990
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17941
17991
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19406,6 +19456,18 @@ export declare function createMobileAppIdentifierFromDiscriminatorValue(parseNod
|
|
|
19406
19456
|
* @returns {MobileAppInstallTimeSettings}
|
|
19407
19457
|
*/
|
|
19408
19458
|
export declare function createMobileAppInstallTimeSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19459
|
+
/**
|
|
19460
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19461
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19462
|
+
* @returns {MobileAppRelationshipCollectionResponse}
|
|
19463
|
+
*/
|
|
19464
|
+
export declare function createMobileAppRelationshipCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19465
|
+
/**
|
|
19466
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19467
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19468
|
+
* @returns {MobileAppRelationship}
|
|
19469
|
+
*/
|
|
19470
|
+
export declare function createMobileAppRelationshipFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19409
19471
|
/**
|
|
19410
19472
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19411
19473
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19808,6 +19870,12 @@ export declare function createOneDriveForBusinessRestoreSessionCollectionRespons
|
|
|
19808
19870
|
* @returns {OneDriveForBusinessRestoreSession}
|
|
19809
19871
|
*/
|
|
19810
19872
|
export declare function createOneDriveForBusinessRestoreSessionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19873
|
+
/**
|
|
19874
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19875
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19876
|
+
* @returns {OnEmailOtpSendListener}
|
|
19877
|
+
*/
|
|
19878
|
+
export declare function createOnEmailOtpSendListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19811
19879
|
/**
|
|
19812
19880
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19813
19881
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19952,6 +20020,24 @@ export declare function createOnlineMeetingInfoFromDiscriminatorValue(parseNode:
|
|
|
19952
20020
|
* @returns {OnlineMeetingRestricted}
|
|
19953
20021
|
*/
|
|
19954
20022
|
export declare function createOnlineMeetingRestrictedFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20023
|
+
/**
|
|
20024
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20025
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20026
|
+
* @returns {OnOtpSendCustomExtension}
|
|
20027
|
+
*/
|
|
20028
|
+
export declare function createOnOtpSendCustomExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20029
|
+
/**
|
|
20030
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20031
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20032
|
+
* @returns {OnOtpSendCustomExtensionHandler}
|
|
20033
|
+
*/
|
|
20034
|
+
export declare function createOnOtpSendCustomExtensionHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20035
|
+
/**
|
|
20036
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20037
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20038
|
+
* @returns {OnOtpSendHandler}
|
|
20039
|
+
*/
|
|
20040
|
+
export declare function createOnOtpSendHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19955
20041
|
/**
|
|
19956
20042
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19957
20043
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -26567,6 +26653,10 @@ export interface CurrencyColumn extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
26567
26653
|
export interface CustomAppManagementConfiguration extends AppManagementConfiguration, Parsable {
|
|
26568
26654
|
}
|
|
26569
26655
|
export interface CustomAuthenticationExtension extends CustomCalloutExtension, Parsable {
|
|
26656
|
+
/**
|
|
26657
|
+
* The behaviour on error for the custom authentication extension.
|
|
26658
|
+
*/
|
|
26659
|
+
behaviorOnError?: CustomExtensionBehaviorOnError | null;
|
|
26570
26660
|
}
|
|
26571
26661
|
export interface CustomAuthenticationExtensionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
26572
26662
|
/**
|
|
@@ -26612,6 +26702,16 @@ export interface CustomExtensionAuthenticationConfiguration extends AdditionalDa
|
|
|
26612
26702
|
*/
|
|
26613
26703
|
odataType?: string | null;
|
|
26614
26704
|
}
|
|
26705
|
+
export interface CustomExtensionBehaviorOnError extends AdditionalDataHolder, BackedModel, Parsable {
|
|
26706
|
+
/**
|
|
26707
|
+
* Stores model information.
|
|
26708
|
+
*/
|
|
26709
|
+
backingStoreEnabled?: boolean | null;
|
|
26710
|
+
/**
|
|
26711
|
+
* The OdataType property
|
|
26712
|
+
*/
|
|
26713
|
+
odataType?: string | null;
|
|
26714
|
+
}
|
|
26615
26715
|
export interface CustomExtensionCallbackConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
26616
26716
|
/**
|
|
26617
26717
|
* Stores model information.
|
|
@@ -26700,6 +26800,10 @@ export interface CustomExtensionOverwriteConfiguration extends AdditionalDataHol
|
|
|
26700
26800
|
* Stores model information.
|
|
26701
26801
|
*/
|
|
26702
26802
|
backingStoreEnabled?: boolean | null;
|
|
26803
|
+
/**
|
|
26804
|
+
* The behaviorOnError property
|
|
26805
|
+
*/
|
|
26806
|
+
behaviorOnError?: CustomExtensionBehaviorOnError | null;
|
|
26703
26807
|
/**
|
|
26704
26808
|
* Configuration regarding properties of the custom extension which can be overwritten per event listener. If no values are provided, the properties on the custom extension are used.
|
|
26705
26809
|
*/
|
|
@@ -30873,6 +30977,12 @@ export declare function deserializeIntoCustomCalloutExtensionCollectionResponse(
|
|
|
30873
30977
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30874
30978
|
*/
|
|
30875
30979
|
export declare function deserializeIntoCustomExtensionAuthenticationConfiguration(customExtensionAuthenticationConfiguration?: Partial<CustomExtensionAuthenticationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30980
|
+
/**
|
|
30981
|
+
* The deserialization information for the current model
|
|
30982
|
+
* @param CustomExtensionBehaviorOnError The instance to deserialize into.
|
|
30983
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30984
|
+
*/
|
|
30985
|
+
export declare function deserializeIntoCustomExtensionBehaviorOnError(customExtensionBehaviorOnError?: Partial<CustomExtensionBehaviorOnError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30876
30986
|
/**
|
|
30877
30987
|
* The deserialization information for the current model
|
|
30878
30988
|
* @param CustomExtensionCallbackConfiguration The instance to deserialize into.
|
|
@@ -32775,6 +32885,12 @@ export declare function deserializeIntoExternalUsersSelfServiceSignUpEventsFlowC
|
|
|
32775
32885
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32776
32886
|
*/
|
|
32777
32887
|
export declare function deserializeIntoExtractSensitivityLabelsResult(extractSensitivityLabelsResult?: Partial<ExtractSensitivityLabelsResult> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32888
|
+
/**
|
|
32889
|
+
* The deserialization information for the current model
|
|
32890
|
+
* @param FallbackToMicrosoftProviderOnError The instance to deserialize into.
|
|
32891
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32892
|
+
*/
|
|
32893
|
+
export declare function deserializeIntoFallbackToMicrosoftProviderOnError(fallbackToMicrosoftProviderOnError?: Partial<FallbackToMicrosoftProviderOnError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32778
32894
|
/**
|
|
32779
32895
|
* The deserialization information for the current model
|
|
32780
32896
|
* @param FeatureRolloutPolicy The instance to deserialize into.
|
|
@@ -33525,6 +33641,12 @@ export declare function deserializeIntoIosCompliancePolicy(iosCompliancePolicy?:
|
|
|
33525
33641
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33526
33642
|
*/
|
|
33527
33643
|
export declare function deserializeIntoIosCustomConfiguration(iosCustomConfiguration?: Partial<IosCustomConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33644
|
+
/**
|
|
33645
|
+
* The deserialization information for the current model
|
|
33646
|
+
* @param IosDdmLobAppAssignmentSettings The instance to deserialize into.
|
|
33647
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33648
|
+
*/
|
|
33649
|
+
export declare function deserializeIntoIosDdmLobAppAssignmentSettings(iosDdmLobAppAssignmentSettings?: Partial<IosDdmLobAppAssignmentSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33528
33650
|
/**
|
|
33529
33651
|
* The deserialization information for the current model
|
|
33530
33652
|
* @param IosDeviceFeaturesConfiguration The instance to deserialize into.
|
|
@@ -34995,6 +35117,18 @@ export declare function deserializeIntoMobileAppIdentifier(mobileAppIdentifier?:
|
|
|
34995
35117
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34996
35118
|
*/
|
|
34997
35119
|
export declare function deserializeIntoMobileAppInstallTimeSettings(mobileAppInstallTimeSettings?: Partial<MobileAppInstallTimeSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35120
|
+
/**
|
|
35121
|
+
* The deserialization information for the current model
|
|
35122
|
+
* @param MobileAppRelationship The instance to deserialize into.
|
|
35123
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35124
|
+
*/
|
|
35125
|
+
export declare function deserializeIntoMobileAppRelationship(mobileAppRelationship?: Partial<MobileAppRelationship> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35126
|
+
/**
|
|
35127
|
+
* The deserialization information for the current model
|
|
35128
|
+
* @param MobileAppRelationshipCollectionResponse The instance to deserialize into.
|
|
35129
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35130
|
+
*/
|
|
35131
|
+
export declare function deserializeIntoMobileAppRelationshipCollectionResponse(mobileAppRelationshipCollectionResponse?: Partial<MobileAppRelationshipCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34998
35132
|
/**
|
|
34999
35133
|
* The deserialization information for the current model
|
|
35000
35134
|
* @param MobileAppTroubleshootingEvent The instance to deserialize into.
|
|
@@ -35397,6 +35531,12 @@ export declare function deserializeIntoOneDriveForBusinessRestoreSession(oneDriv
|
|
|
35397
35531
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35398
35532
|
*/
|
|
35399
35533
|
export declare function deserializeIntoOneDriveForBusinessRestoreSessionCollectionResponse(oneDriveForBusinessRestoreSessionCollectionResponse?: Partial<OneDriveForBusinessRestoreSessionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35534
|
+
/**
|
|
35535
|
+
* The deserialization information for the current model
|
|
35536
|
+
* @param OnEmailOtpSendListener The instance to deserialize into.
|
|
35537
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35538
|
+
*/
|
|
35539
|
+
export declare function deserializeIntoOnEmailOtpSendListener(onEmailOtpSendListener?: Partial<OnEmailOtpSendListener> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35400
35540
|
/**
|
|
35401
35541
|
* The deserialization information for the current model
|
|
35402
35542
|
* @param Onenote The instance to deserialize into.
|
|
@@ -35541,6 +35681,24 @@ export declare function deserializeIntoOnlineMeetingInfo(onlineMeetingInfo?: Par
|
|
|
35541
35681
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35542
35682
|
*/
|
|
35543
35683
|
export declare function deserializeIntoOnlineMeetingRestricted(onlineMeetingRestricted?: Partial<OnlineMeetingRestricted> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35684
|
+
/**
|
|
35685
|
+
* The deserialization information for the current model
|
|
35686
|
+
* @param OnOtpSendCustomExtension The instance to deserialize into.
|
|
35687
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35688
|
+
*/
|
|
35689
|
+
export declare function deserializeIntoOnOtpSendCustomExtension(onOtpSendCustomExtension?: Partial<OnOtpSendCustomExtension> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35690
|
+
/**
|
|
35691
|
+
* The deserialization information for the current model
|
|
35692
|
+
* @param OnOtpSendCustomExtensionHandler The instance to deserialize into.
|
|
35693
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35694
|
+
*/
|
|
35695
|
+
export declare function deserializeIntoOnOtpSendCustomExtensionHandler(onOtpSendCustomExtensionHandler?: Partial<OnOtpSendCustomExtensionHandler> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35696
|
+
/**
|
|
35697
|
+
* The deserialization information for the current model
|
|
35698
|
+
* @param OnOtpSendHandler The instance to deserialize into.
|
|
35699
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35700
|
+
*/
|
|
35701
|
+
export declare function deserializeIntoOnOtpSendHandler(onOtpSendHandler?: Partial<OnOtpSendHandler> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35544
35702
|
/**
|
|
35545
35703
|
* The deserialization information for the current model
|
|
35546
35704
|
* @param OnPremisesAccidentalDeletionPrevention The instance to deserialize into.
|
|
@@ -42221,6 +42379,10 @@ export interface DeviceAppManagement extends Entity, Parsable {
|
|
|
42221
42379
|
* The Managed Device Mobile Application Configurations.
|
|
42222
42380
|
*/
|
|
42223
42381
|
mobileAppConfigurations?: ManagedDeviceMobileAppConfiguration[] | null;
|
|
42382
|
+
/**
|
|
42383
|
+
* The mobile app relationship represents the dependency or supersedence relationship between two Intune mobile LOB applications.
|
|
42384
|
+
*/
|
|
42385
|
+
mobileAppRelationships?: MobileAppRelationship[] | null;
|
|
42224
42386
|
/**
|
|
42225
42387
|
* The mobile apps.
|
|
42226
42388
|
*/
|
|
@@ -44178,9 +44340,6 @@ export interface DeviceManagementPartnerCollectionResponse extends BaseCollectio
|
|
|
44178
44340
|
}
|
|
44179
44341
|
export type DeviceManagementPartnerTenantState = (typeof DeviceManagementPartnerTenantStateObject)[keyof typeof DeviceManagementPartnerTenantStateObject];
|
|
44180
44342
|
export type DeviceManagementReportFileFormat = (typeof DeviceManagementReportFileFormatObject)[keyof typeof DeviceManagementReportFileFormatObject];
|
|
44181
|
-
/**
|
|
44182
|
-
* Singleton entity that acts as a container for all reports functionality.
|
|
44183
|
-
*/
|
|
44184
44343
|
export interface DeviceManagementReports extends Entity, Parsable {
|
|
44185
44344
|
/**
|
|
44186
44345
|
* Entity representing a job to export a report
|
|
@@ -47679,6 +47838,8 @@ export interface ExtractSensitivityLabelsResult extends AdditionalDataHolder, Ba
|
|
|
47679
47838
|
*/
|
|
47680
47839
|
odataType?: string | null;
|
|
47681
47840
|
}
|
|
47841
|
+
export interface FallbackToMicrosoftProviderOnError extends CustomExtensionBehaviorOnError, Parsable {
|
|
47842
|
+
}
|
|
47682
47843
|
export interface FeatureRolloutPolicy extends Entity, Parsable {
|
|
47683
47844
|
/**
|
|
47684
47845
|
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
@@ -47887,7 +48048,7 @@ export interface FileAttachment extends Attachment, Parsable {
|
|
|
47887
48048
|
contentLocation?: string | null;
|
|
47888
48049
|
}
|
|
47889
48050
|
/**
|
|
47890
|
-
* Contains properties for file encryption information for the content version of a line
|
|
48051
|
+
* Contains properties for file encryption information for the content version of a line-of-business app.
|
|
47891
48052
|
*/
|
|
47892
48053
|
export interface FileEncryptionInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
47893
48054
|
/**
|
|
@@ -49936,6 +50097,31 @@ export interface IosCustomConfiguration extends DeviceConfiguration, Parsable {
|
|
|
49936
50097
|
*/
|
|
49937
50098
|
payloadName?: string | null;
|
|
49938
50099
|
}
|
|
50100
|
+
/**
|
|
50101
|
+
* Contains properties used to assign an iOS iOS Declarative Device Management (DDM) Line Of Business (LOB) mobile app to a group.
|
|
50102
|
+
*/
|
|
50103
|
+
export interface IosDdmLobAppAssignmentSettings extends MobileAppAssignmentSettings, Parsable {
|
|
50104
|
+
/**
|
|
50105
|
+
* Domain names to associate with the app
|
|
50106
|
+
*/
|
|
50107
|
+
associatedDomains?: string[] | null;
|
|
50108
|
+
/**
|
|
50109
|
+
* When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
|
|
50110
|
+
*/
|
|
50111
|
+
associatedDomainsDirectDownloadAllowed?: boolean | null;
|
|
50112
|
+
/**
|
|
50113
|
+
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
50114
|
+
*/
|
|
50115
|
+
preventManagedAppBackup?: boolean | null;
|
|
50116
|
+
/**
|
|
50117
|
+
* When true, the device locks its screen after every transaction that requires a customer’s card PIN. When false, the user can choose the behavior. Default value is false.
|
|
50118
|
+
*/
|
|
50119
|
+
tapToPayScreenLockEnabled?: boolean | null;
|
|
50120
|
+
/**
|
|
50121
|
+
* The unique identifier of the relay to associate with the app.
|
|
50122
|
+
*/
|
|
50123
|
+
vpnConfigurationId?: string | null;
|
|
50124
|
+
}
|
|
49939
50125
|
/**
|
|
49940
50126
|
* iOS Device Features Configuration Profile.
|
|
49941
50127
|
*/
|
|
@@ -53513,7 +53699,7 @@ export interface ManagedAppStatusRaw extends ManagedAppStatus, Parsable {
|
|
|
53513
53699
|
}
|
|
53514
53700
|
export type ManagedBrowserType = (typeof ManagedBrowserTypeObject)[keyof typeof ManagedBrowserTypeObject];
|
|
53515
53701
|
/**
|
|
53516
|
-
* Devices that are managed or pre-enrolled through Intune
|
|
53702
|
+
* Devices that are managed or pre-enrolled through Intune. Limited support for $filter: Only properties whose descriptions mention support for $filter may be used, and combinations of those filtered properties must use 'and', not 'or'.
|
|
53517
53703
|
*/
|
|
53518
53704
|
export interface ManagedDevice extends Entity, Parsable {
|
|
53519
53705
|
/**
|
|
@@ -54154,7 +54340,7 @@ export interface ManagedMobileAppCollectionResponse extends BaseCollectionPagina
|
|
|
54154
54340
|
value?: ManagedMobileApp[] | null;
|
|
54155
54341
|
}
|
|
54156
54342
|
/**
|
|
54157
|
-
* An abstract base class containing properties for all managed mobile line
|
|
54343
|
+
* An abstract base class containing properties for all managed mobile line-of-business apps.
|
|
54158
54344
|
*/
|
|
54159
54345
|
export interface ManagedMobileLobApp extends ManagedApp, Parsable {
|
|
54160
54346
|
/**
|
|
@@ -55529,6 +55715,49 @@ export interface MobileAppInstallTimeSettings extends AdditionalDataHolder, Back
|
|
|
55529
55715
|
useLocalTime?: boolean | null;
|
|
55530
55716
|
}
|
|
55531
55717
|
export type MobileAppPublishingState = (typeof MobileAppPublishingStateObject)[keyof typeof MobileAppPublishingStateObject];
|
|
55718
|
+
/**
|
|
55719
|
+
* The MobileAppRelationship describes the relationship between two mobile applications by providing information that tells if an application is dependent on or superseded by another application.
|
|
55720
|
+
*/
|
|
55721
|
+
export interface MobileAppRelationship extends Entity, Parsable {
|
|
55722
|
+
/**
|
|
55723
|
+
* The display name of the app that is the source of the mobile app relationship entity. For example: Orca. Maximum length is 500 characters. Read-Only. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55724
|
+
*/
|
|
55725
|
+
sourceDisplayName?: string | null;
|
|
55726
|
+
/**
|
|
55727
|
+
* The display version of the app that is the source of the mobile app relationship entity. For example 1.0.12 or 1.2203.156 or 3. Read-Only. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55728
|
+
*/
|
|
55729
|
+
sourceDisplayVersion?: string | null;
|
|
55730
|
+
/**
|
|
55731
|
+
* The unique app identifier of the source of the mobile app relationship entity. For example: 2dbc75b9-e993-4e4d-a071-91ac5a218672. If null during relationship creation, then it will be populated with parent Id. Read-Only. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55732
|
+
*/
|
|
55733
|
+
sourceId?: string | null;
|
|
55734
|
+
/**
|
|
55735
|
+
* The publisher display name of the app that is the source of the mobile app relationship entity. For example: Fabrikam. Maximum length is 500 characters. Read-Only. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55736
|
+
*/
|
|
55737
|
+
sourcePublisherDisplayName?: string | null;
|
|
55738
|
+
/**
|
|
55739
|
+
* The display name of the app that is the target of the mobile app relationship entity. For example: Firefox Setup 52.0.2 32bit.intunewin. Maximum length is 500 characters. Read-Only. Returned by default. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55740
|
+
*/
|
|
55741
|
+
targetDisplayName?: string | null;
|
|
55742
|
+
/**
|
|
55743
|
+
* The display version of the app that is the target of the mobile app relationship entity. For example 1.0 or 1.2203.156. Read-Only. Returned by default. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55744
|
+
*/
|
|
55745
|
+
targetDisplayVersion?: string | null;
|
|
55746
|
+
/**
|
|
55747
|
+
* The unique app identifier of the target of the mobile app relationship entity. For example: 2dbc75b9-e993-4e4d-a071-91ac5a218672. Read-Only. Returned by default. Supports: $select. Does not support $search, $filter, $orderBy.
|
|
55748
|
+
*/
|
|
55749
|
+
targetId?: string | null;
|
|
55750
|
+
/**
|
|
55751
|
+
* The publisher display name of the app that is the target of the mobile app relationship entity. For example: Fabrikam. Maximum length is 500 characters. Read-Only. Supports: $select. Does not support $search, $filter, $orderBy. This property is read-only.
|
|
55752
|
+
*/
|
|
55753
|
+
targetPublisherDisplayName?: string | null;
|
|
55754
|
+
}
|
|
55755
|
+
export interface MobileAppRelationshipCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
55756
|
+
/**
|
|
55757
|
+
* The value property
|
|
55758
|
+
*/
|
|
55759
|
+
value?: MobileAppRelationship[] | null;
|
|
55760
|
+
}
|
|
55532
55761
|
export interface MobileAppTroubleshootingEvent extends Entity, Parsable {
|
|
55533
55762
|
/**
|
|
55534
55763
|
* Indicates collection of App Log Upload Request.
|
|
@@ -55553,7 +55782,7 @@ export interface MobileContainedAppCollectionResponse extends BaseCollectionPagi
|
|
|
55553
55782
|
value?: MobileContainedApp[] | null;
|
|
55554
55783
|
}
|
|
55555
55784
|
/**
|
|
55556
|
-
* An abstract base class containing properties for all mobile line
|
|
55785
|
+
* An abstract base class containing properties for all mobile line-of-business apps.
|
|
55557
55786
|
*/
|
|
55558
55787
|
export interface MobileLobApp extends MobileApp, Parsable {
|
|
55559
55788
|
/**
|
|
@@ -56551,6 +56780,12 @@ export interface OneDriveForBusinessRestoreSessionCollectionResponse extends Bas
|
|
|
56551
56780
|
*/
|
|
56552
56781
|
value?: OneDriveForBusinessRestoreSession[] | null;
|
|
56553
56782
|
}
|
|
56783
|
+
export interface OnEmailOtpSendListener extends AuthenticationEventListener, Parsable {
|
|
56784
|
+
/**
|
|
56785
|
+
* Used to configure what to invoke if the onEmailOTPSend event resolves to this listener. This base class serves as a generic OTP event handler used for both email and SMS OTP messages.
|
|
56786
|
+
*/
|
|
56787
|
+
handler?: OnOtpSendHandler | null;
|
|
56788
|
+
}
|
|
56554
56789
|
export interface Onenote extends Entity, Parsable {
|
|
56555
56790
|
/**
|
|
56556
56791
|
* The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable.
|
|
@@ -56949,7 +57184,7 @@ export interface OnlineMeetingBase extends Entity, Parsable {
|
|
|
56949
57184
|
*/
|
|
56950
57185
|
chatRestrictions?: ChatRestrictions | null;
|
|
56951
57186
|
/**
|
|
56952
|
-
*
|
|
57187
|
+
* Indicates whether end-to-end encryption (E2EE) is enabled for the online meeting.
|
|
56953
57188
|
*/
|
|
56954
57189
|
isEndToEndEncryptionEnabled?: boolean | null;
|
|
56955
57190
|
/**
|
|
@@ -57056,6 +57291,28 @@ export interface OnlineMeetingRestricted extends AdditionalDataHolder, BackedMod
|
|
|
57056
57291
|
}
|
|
57057
57292
|
export type OnlineMeetingRole = (typeof OnlineMeetingRoleObject)[keyof typeof OnlineMeetingRoleObject];
|
|
57058
57293
|
export type OnlineMeetingVideoDisabledReason = (typeof OnlineMeetingVideoDisabledReasonObject)[keyof typeof OnlineMeetingVideoDisabledReasonObject];
|
|
57294
|
+
export interface OnOtpSendCustomExtension extends CustomAuthenticationExtension, Parsable {
|
|
57295
|
+
}
|
|
57296
|
+
export interface OnOtpSendCustomExtensionHandler extends OnOtpSendHandler, Parsable {
|
|
57297
|
+
/**
|
|
57298
|
+
* Configuration regarding properties of the custom extension that are can be overwritten for the onEmailOtpSendListener event listener.
|
|
57299
|
+
*/
|
|
57300
|
+
configuration?: CustomExtensionOverwriteConfiguration | null;
|
|
57301
|
+
/**
|
|
57302
|
+
* The customExtension property
|
|
57303
|
+
*/
|
|
57304
|
+
customExtension?: OnOtpSendCustomExtension | null;
|
|
57305
|
+
}
|
|
57306
|
+
export interface OnOtpSendHandler extends AdditionalDataHolder, BackedModel, Parsable {
|
|
57307
|
+
/**
|
|
57308
|
+
* Stores model information.
|
|
57309
|
+
*/
|
|
57310
|
+
backingStoreEnabled?: boolean | null;
|
|
57311
|
+
/**
|
|
57312
|
+
* The OdataType property
|
|
57313
|
+
*/
|
|
57314
|
+
odataType?: string | null;
|
|
57315
|
+
}
|
|
57059
57316
|
export interface OnPremisesAccidentalDeletionPrevention extends AdditionalDataHolder, BackedModel, Parsable {
|
|
57060
57317
|
/**
|
|
57061
57318
|
* Threshold value which triggers accidental deletion prevention. The threshold is either an absolute number of objects or a percentage number of objects.
|
|
@@ -58013,11 +58270,11 @@ export interface OutOfOfficeSettings extends AdditionalDataHolder, BackedModel,
|
|
|
58013
58270
|
*/
|
|
58014
58271
|
backingStoreEnabled?: boolean | null;
|
|
58015
58272
|
/**
|
|
58016
|
-
* The
|
|
58273
|
+
* If true, either of the following is met:The current time falls within the out-of-office window configured in Outlook or Teams.An event marked as 'Show as Out of Office' appears on the user's calendar.Otherwise, false.
|
|
58017
58274
|
*/
|
|
58018
58275
|
isOutOfOffice?: boolean | null;
|
|
58019
58276
|
/**
|
|
58020
|
-
* The message
|
|
58277
|
+
* The out-of-office message configured by the user in the Outlook client (Automatic replies) or the Teams client (Schedule out of office).
|
|
58021
58278
|
*/
|
|
58022
58279
|
message?: string | null;
|
|
58023
58280
|
/**
|
|
@@ -59801,15 +60058,15 @@ export interface Presence extends Entity, Parsable {
|
|
|
59801
60058
|
*/
|
|
59802
60059
|
activity?: string | null;
|
|
59803
60060
|
/**
|
|
59804
|
-
* The base presence information for a user. Possible values are Available,
|
|
60061
|
+
* The base presence information for a user. Possible values are Available, availableIdle, Away, beRightBack, Busy, busyIdle, DoNotDisturb, Offline, presenceUnknown.
|
|
59805
60062
|
*/
|
|
59806
60063
|
availability?: string | null;
|
|
59807
60064
|
/**
|
|
59808
|
-
* The
|
|
60065
|
+
* The user's out-of-office settings.
|
|
59809
60066
|
*/
|
|
59810
60067
|
outOfOfficeSettings?: OutOfOfficeSettings | null;
|
|
59811
60068
|
/**
|
|
59812
|
-
* The
|
|
60069
|
+
* The lexicographically sortable string stamp that represents the version of a presence object.
|
|
59813
60070
|
*/
|
|
59814
60071
|
sequenceNumber?: string | null;
|
|
59815
60072
|
/**
|
|
@@ -69387,6 +69644,13 @@ export declare function serializeCustomCalloutExtensionCollectionResponse(writer
|
|
|
69387
69644
|
* @param writer Serialization writer to use to serialize this model
|
|
69388
69645
|
*/
|
|
69389
69646
|
export declare function serializeCustomExtensionAuthenticationConfiguration(writer: SerializationWriter, customExtensionAuthenticationConfiguration?: Partial<CustomExtensionAuthenticationConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69647
|
+
/**
|
|
69648
|
+
* Serializes information the current object
|
|
69649
|
+
* @param CustomExtensionBehaviorOnError The instance to serialize from.
|
|
69650
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
69651
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69652
|
+
*/
|
|
69653
|
+
export declare function serializeCustomExtensionBehaviorOnError(writer: SerializationWriter, customExtensionBehaviorOnError?: Partial<CustomExtensionBehaviorOnError> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
69390
69654
|
/**
|
|
69391
69655
|
* Serializes information the current object
|
|
69392
69656
|
* @param CustomExtensionCallbackConfiguration The instance to serialize from.
|
|
@@ -71606,6 +71870,13 @@ export declare function serializeExternalUsersSelfServiceSignUpEventsFlowCollect
|
|
|
71606
71870
|
* @param writer Serialization writer to use to serialize this model
|
|
71607
71871
|
*/
|
|
71608
71872
|
export declare function serializeExtractSensitivityLabelsResult(writer: SerializationWriter, extractSensitivityLabelsResult?: Partial<ExtractSensitivityLabelsResult> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71873
|
+
/**
|
|
71874
|
+
* Serializes information the current object
|
|
71875
|
+
* @param FallbackToMicrosoftProviderOnError The instance to serialize from.
|
|
71876
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
71877
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71878
|
+
*/
|
|
71879
|
+
export declare function serializeFallbackToMicrosoftProviderOnError(writer: SerializationWriter, fallbackToMicrosoftProviderOnError?: Partial<FallbackToMicrosoftProviderOnError> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
71609
71880
|
/**
|
|
71610
71881
|
* Serializes information the current object
|
|
71611
71882
|
* @param FeatureRolloutPolicy The instance to serialize from.
|
|
@@ -72481,6 +72752,13 @@ export declare function serializeIosCompliancePolicy(writer: SerializationWriter
|
|
|
72481
72752
|
* @param writer Serialization writer to use to serialize this model
|
|
72482
72753
|
*/
|
|
72483
72754
|
export declare function serializeIosCustomConfiguration(writer: SerializationWriter, iosCustomConfiguration?: Partial<IosCustomConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72755
|
+
/**
|
|
72756
|
+
* Serializes information the current object
|
|
72757
|
+
* @param IosDdmLobAppAssignmentSettings The instance to serialize from.
|
|
72758
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
72759
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72760
|
+
*/
|
|
72761
|
+
export declare function serializeIosDdmLobAppAssignmentSettings(writer: SerializationWriter, iosDdmLobAppAssignmentSettings?: Partial<IosDdmLobAppAssignmentSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
72484
72762
|
/**
|
|
72485
72763
|
* Serializes information the current object
|
|
72486
72764
|
* @param IosDeviceFeaturesConfiguration The instance to serialize from.
|
|
@@ -74196,6 +74474,20 @@ export declare function serializeMobileAppIdentifier(writer: SerializationWriter
|
|
|
74196
74474
|
* @param writer Serialization writer to use to serialize this model
|
|
74197
74475
|
*/
|
|
74198
74476
|
export declare function serializeMobileAppInstallTimeSettings(writer: SerializationWriter, mobileAppInstallTimeSettings?: Partial<MobileAppInstallTimeSettings> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74477
|
+
/**
|
|
74478
|
+
* Serializes information the current object
|
|
74479
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74480
|
+
* @param MobileAppRelationship The instance to serialize from.
|
|
74481
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74482
|
+
*/
|
|
74483
|
+
export declare function serializeMobileAppRelationship(writer: SerializationWriter, mobileAppRelationship?: Partial<MobileAppRelationship> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74484
|
+
/**
|
|
74485
|
+
* Serializes information the current object
|
|
74486
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74487
|
+
* @param MobileAppRelationshipCollectionResponse The instance to serialize from.
|
|
74488
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74489
|
+
*/
|
|
74490
|
+
export declare function serializeMobileAppRelationshipCollectionResponse(writer: SerializationWriter, mobileAppRelationshipCollectionResponse?: Partial<MobileAppRelationshipCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74199
74491
|
/**
|
|
74200
74492
|
* Serializes information the current object
|
|
74201
74493
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -74665,6 +74957,13 @@ export declare function serializeOneDriveForBusinessRestoreSession(writer: Seria
|
|
|
74665
74957
|
* @param writer Serialization writer to use to serialize this model
|
|
74666
74958
|
*/
|
|
74667
74959
|
export declare function serializeOneDriveForBusinessRestoreSessionCollectionResponse(writer: SerializationWriter, oneDriveForBusinessRestoreSessionCollectionResponse?: Partial<OneDriveForBusinessRestoreSessionCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74960
|
+
/**
|
|
74961
|
+
* Serializes information the current object
|
|
74962
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
74963
|
+
* @param OnEmailOtpSendListener The instance to serialize from.
|
|
74964
|
+
* @param writer Serialization writer to use to serialize this model
|
|
74965
|
+
*/
|
|
74966
|
+
export declare function serializeOnEmailOtpSendListener(writer: SerializationWriter, onEmailOtpSendListener?: Partial<OnEmailOtpSendListener> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74668
74967
|
/**
|
|
74669
74968
|
* Serializes information the current object
|
|
74670
74969
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -74833,6 +75132,27 @@ export declare function serializeOnlineMeetingInfo(writer: SerializationWriter,
|
|
|
74833
75132
|
* @param writer Serialization writer to use to serialize this model
|
|
74834
75133
|
*/
|
|
74835
75134
|
export declare function serializeOnlineMeetingRestricted(writer: SerializationWriter, onlineMeetingRestricted?: Partial<OnlineMeetingRestricted> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75135
|
+
/**
|
|
75136
|
+
* Serializes information the current object
|
|
75137
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
75138
|
+
* @param OnOtpSendCustomExtension The instance to serialize from.
|
|
75139
|
+
* @param writer Serialization writer to use to serialize this model
|
|
75140
|
+
*/
|
|
75141
|
+
export declare function serializeOnOtpSendCustomExtension(writer: SerializationWriter, onOtpSendCustomExtension?: Partial<OnOtpSendCustomExtension> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75142
|
+
/**
|
|
75143
|
+
* Serializes information the current object
|
|
75144
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
75145
|
+
* @param OnOtpSendCustomExtensionHandler The instance to serialize from.
|
|
75146
|
+
* @param writer Serialization writer to use to serialize this model
|
|
75147
|
+
*/
|
|
75148
|
+
export declare function serializeOnOtpSendCustomExtensionHandler(writer: SerializationWriter, onOtpSendCustomExtensionHandler?: Partial<OnOtpSendCustomExtensionHandler> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
75149
|
+
/**
|
|
75150
|
+
* Serializes information the current object
|
|
75151
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
75152
|
+
* @param OnOtpSendHandler The instance to serialize from.
|
|
75153
|
+
* @param writer Serialization writer to use to serialize this model
|
|
75154
|
+
*/
|
|
75155
|
+
export declare function serializeOnOtpSendHandler(writer: SerializationWriter, onOtpSendHandler?: Partial<OnOtpSendHandler> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
74836
75156
|
/**
|
|
74837
75157
|
* Serializes information the current object
|
|
74838
75158
|
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
@@ -97049,47 +97369,47 @@ export interface WorkbookWorksheetProtection extends Entity, Parsable {
|
|
|
97049
97369
|
}
|
|
97050
97370
|
export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder, BackedModel, Parsable {
|
|
97051
97371
|
/**
|
|
97052
|
-
*
|
|
97372
|
+
* Represents the worksheet protection option of allowing using auto filter feature.
|
|
97053
97373
|
*/
|
|
97054
97374
|
allowAutoFilter?: boolean | null;
|
|
97055
97375
|
/**
|
|
97056
|
-
*
|
|
97376
|
+
* Represents the worksheet protection option of allowing deleting columns.
|
|
97057
97377
|
*/
|
|
97058
97378
|
allowDeleteColumns?: boolean | null;
|
|
97059
97379
|
/**
|
|
97060
|
-
*
|
|
97380
|
+
* Represents the worksheet protection option of allowing deleting rows.
|
|
97061
97381
|
*/
|
|
97062
97382
|
allowDeleteRows?: boolean | null;
|
|
97063
97383
|
/**
|
|
97064
|
-
*
|
|
97384
|
+
* Represents the worksheet protection option of allowing formatting cells.
|
|
97065
97385
|
*/
|
|
97066
97386
|
allowFormatCells?: boolean | null;
|
|
97067
97387
|
/**
|
|
97068
|
-
*
|
|
97388
|
+
* Represents the worksheet protection option of allowing formatting columns.
|
|
97069
97389
|
*/
|
|
97070
97390
|
allowFormatColumns?: boolean | null;
|
|
97071
97391
|
/**
|
|
97072
|
-
*
|
|
97392
|
+
* Represents the worksheet protection option of allowing formatting rows.
|
|
97073
97393
|
*/
|
|
97074
97394
|
allowFormatRows?: boolean | null;
|
|
97075
97395
|
/**
|
|
97076
|
-
*
|
|
97396
|
+
* Represents the worksheet protection option of allowing inserting columns.
|
|
97077
97397
|
*/
|
|
97078
97398
|
allowInsertColumns?: boolean | null;
|
|
97079
97399
|
/**
|
|
97080
|
-
*
|
|
97400
|
+
* Represents the worksheet protection option of allowing inserting hyperlinks.
|
|
97081
97401
|
*/
|
|
97082
97402
|
allowInsertHyperlinks?: boolean | null;
|
|
97083
97403
|
/**
|
|
97084
|
-
*
|
|
97404
|
+
* Represents the worksheet protection option of allowing inserting rows.
|
|
97085
97405
|
*/
|
|
97086
97406
|
allowInsertRows?: boolean | null;
|
|
97087
97407
|
/**
|
|
97088
|
-
*
|
|
97408
|
+
* Represents the worksheet protection option of allowing using pivot table feature.
|
|
97089
97409
|
*/
|
|
97090
97410
|
allowPivotTables?: boolean | null;
|
|
97091
97411
|
/**
|
|
97092
|
-
*
|
|
97412
|
+
* Represents the worksheet protection option of allowing using sort feature.
|
|
97093
97413
|
*/
|
|
97094
97414
|
allowSort?: boolean | null;
|
|
97095
97415
|
/**
|
|
@@ -97891,7 +98211,7 @@ export declare const AutoRestartNotificationDismissalMethodObject: {
|
|
|
97891
98211
|
readonly Automatic: "automatic";
|
|
97892
98212
|
/** User dismissal. Allows the user to dismiss the notification */
|
|
97893
98213
|
readonly User: "user";
|
|
97894
|
-
/** Evolvable
|
|
98214
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
97895
98215
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
97896
98216
|
};
|
|
97897
98217
|
export declare const B2bIdentityProvidersTypeObject: {
|
|
@@ -98941,6 +99261,8 @@ export declare const DeviceEnrollmentTypeObject: {
|
|
|
98941
99261
|
readonly AppleUserEnrollment: "appleUserEnrollment";
|
|
98942
99262
|
/** Indicates the device is enrolled via Apple User Enrollment with Company Portal using a device enrollment manager user. It results in an enrollment with a new partition for managed apps and data and which supports a limited set of management capabilities */
|
|
98943
99263
|
readonly AppleUserEnrollmentWithServiceAccount: "appleUserEnrollmentWithServiceAccount";
|
|
99264
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
99265
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
98944
99266
|
};
|
|
98945
99267
|
/**
|
|
98946
99268
|
* Device Exchange Access State.
|
|
@@ -99222,7 +99544,7 @@ export declare const DiskTypeObject: {
|
|
|
99222
99544
|
readonly Hdd: "hdd";
|
|
99223
99545
|
/** Enum member for SSD devices. */
|
|
99224
99546
|
readonly Ssd: "ssd";
|
|
99225
|
-
/** Evolvable enumeration sentinel value.Do not use. */
|
|
99547
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
99226
99548
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
99227
99549
|
};
|
|
99228
99550
|
export declare const DlpActionObject: {
|
|
@@ -99835,7 +100157,7 @@ export declare const MailTipsTypeObject: {
|
|
|
99835
100157
|
export declare const ManagedAppAvailabilityObject: {
|
|
99836
100158
|
/** A globally available app to all tenants. */
|
|
99837
100159
|
readonly Global: "global";
|
|
99838
|
-
/** A line
|
|
100160
|
+
/** A line-of-business apps private to an organization. */
|
|
99839
100161
|
readonly LineOfBusiness: "lineOfBusiness";
|
|
99840
100162
|
};
|
|
99841
100163
|
/**
|
|
@@ -103671,11 +103993,11 @@ export declare const WindowsDefenderProductStatusObject: {
|
|
|
103671
103993
|
readonly PendingFullScanDueToThreatAction: "pendingFullScanDueToThreatAction";
|
|
103672
103994
|
/** Pending reboot due to threat action */
|
|
103673
103995
|
readonly PendingRebootDueToThreatAction: "pendingRebootDueToThreatAction";
|
|
103674
|
-
/** Pending manual steps due to threat action
|
|
103996
|
+
/** Pending manual steps due to threat action */
|
|
103675
103997
|
readonly PendingManualStepsDueToThreatAction: "pendingManualStepsDueToThreatAction";
|
|
103676
|
-
/** AV signatures out of date */
|
|
103998
|
+
/** Antivirus (AV) signatures out of date */
|
|
103677
103999
|
readonly AvSignaturesOutOfDate: "avSignaturesOutOfDate";
|
|
103678
|
-
/** AS signatures out of date */
|
|
104000
|
+
/** Antisypware (AS) signatures out of date */
|
|
103679
104001
|
readonly AsSignaturesOutOfDate: "asSignaturesOutOfDate";
|
|
103680
104002
|
/** No quick scan has happened for a specified period */
|
|
103681
104003
|
readonly NoQuickScanHappenedForSpecifiedPeriod: "noQuickScanHappenedForSpecifiedPeriod";
|
|
@@ -104059,7 +104381,7 @@ export declare const WindowsUpdateForBusinessUpdateWeeksObject: {
|
|
|
104059
104381
|
readonly FourthWeek: "fourthWeek";
|
|
104060
104382
|
/** Scheduled the update installation on every week of the month */
|
|
104061
104383
|
readonly EveryWeek: "everyWeek";
|
|
104062
|
-
/** Evolvable
|
|
104384
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
104063
104385
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
104064
104386
|
};
|
|
104065
104387
|
/**
|
|
@@ -104074,7 +104396,7 @@ export declare const WindowsUpdateNotificationDisplayOptionObject: {
|
|
|
104074
104396
|
readonly RestartWarningsOnly: "restartWarningsOnly";
|
|
104075
104397
|
/** Turn off all notifications, including restart warnings. */
|
|
104076
104398
|
readonly DisableAllNotifications: "disableAllNotifications";
|
|
104077
|
-
/** Evolvable
|
|
104399
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
104078
104400
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
104079
104401
|
};
|
|
104080
104402
|
/**
|