@microsoft/msgraph-sdk 1.0.0-preview.27 → 1.0.0-preview.28
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/callRecords/index.d.ts +2 -2
- package/models/callRecords/index.d.ts.map +1 -1
- package/models/callRecords/index.js +6 -6
- package/models/callRecords/index.js.map +1 -1
- package/models/externalConnectors/index.js +2 -2
- package/models/externalConnectors/index.js.map +1 -1
- package/models/identityGovernance/index.js +3 -3
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +140 -96
- package/models/index.d.ts.map +1 -1
- package/models/index.js +377 -317
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.js +1 -1
- package/models/partners/billing/index.js.map +1 -1
- package/models/search/index.js +1 -1
- package/models/search/index.js.map +1 -1
- package/models/security/index.js +15 -15
- package/models/security/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -2073,7 +2073,7 @@ export interface AgreementFileData extends AdditionalDataHolder, BackedModel, Pa
|
|
|
2073
2073
|
/**
|
|
2074
2074
|
* Data that represents the terms of use PDF document. Read-only.
|
|
2075
2075
|
*/
|
|
2076
|
-
data?:
|
|
2076
|
+
data?: String | null;
|
|
2077
2077
|
/**
|
|
2078
2078
|
* The OdataType property
|
|
2079
2079
|
*/
|
|
@@ -2502,7 +2502,7 @@ export interface AlternativeSecurityId extends AdditionalDataHolder, BackedModel
|
|
|
2502
2502
|
/**
|
|
2503
2503
|
* For internal use only.
|
|
2504
2504
|
*/
|
|
2505
|
-
key?:
|
|
2505
|
+
key?: String | null;
|
|
2506
2506
|
/**
|
|
2507
2507
|
* The OdataType property
|
|
2508
2508
|
*/
|
|
@@ -2909,67 +2909,67 @@ export interface AndroidMinimumOperatingSystem extends AdditionalDataHolder, Bac
|
|
|
2909
2909
|
/**
|
|
2910
2910
|
* When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2911
2911
|
*/
|
|
2912
|
-
|
|
2912
|
+
v100?: boolean | null;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2915
2915
|
*/
|
|
2916
|
-
|
|
2916
|
+
v110?: boolean | null;
|
|
2917
2917
|
/**
|
|
2918
2918
|
* When TRUE, only Version 4.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2919
2919
|
*/
|
|
2920
|
-
|
|
2920
|
+
v40?: boolean | null;
|
|
2921
2921
|
/**
|
|
2922
2922
|
* When TRUE, only Version 4.0.3 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2923
2923
|
*/
|
|
2924
|
-
|
|
2924
|
+
v403?: boolean | null;
|
|
2925
2925
|
/**
|
|
2926
2926
|
* When TRUE, only Version 4.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2927
2927
|
*/
|
|
2928
|
-
|
|
2928
|
+
v41?: boolean | null;
|
|
2929
2929
|
/**
|
|
2930
2930
|
* When TRUE, only Version 4.2 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2931
2931
|
*/
|
|
2932
|
-
|
|
2932
|
+
v42?: boolean | null;
|
|
2933
2933
|
/**
|
|
2934
2934
|
* When TRUE, only Version 4.3 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2935
2935
|
*/
|
|
2936
|
-
|
|
2936
|
+
v43?: boolean | null;
|
|
2937
2937
|
/**
|
|
2938
2938
|
* When TRUE, only Version 4.4 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2939
2939
|
*/
|
|
2940
|
-
|
|
2940
|
+
v44?: boolean | null;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* When TRUE, only Version 5.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2943
2943
|
*/
|
|
2944
|
-
|
|
2944
|
+
v50?: boolean | null;
|
|
2945
2945
|
/**
|
|
2946
2946
|
* When TRUE, only Version 5.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2947
2947
|
*/
|
|
2948
|
-
|
|
2948
|
+
v51?: boolean | null;
|
|
2949
2949
|
/**
|
|
2950
2950
|
* When TRUE, only Version 6.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2951
2951
|
*/
|
|
2952
|
-
|
|
2952
|
+
v60?: boolean | null;
|
|
2953
2953
|
/**
|
|
2954
2954
|
* When TRUE, only Version 7.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2955
2955
|
*/
|
|
2956
|
-
|
|
2956
|
+
v70?: boolean | null;
|
|
2957
2957
|
/**
|
|
2958
2958
|
* When TRUE, only Version 7.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2959
2959
|
*/
|
|
2960
|
-
|
|
2960
|
+
v71?: boolean | null;
|
|
2961
2961
|
/**
|
|
2962
2962
|
* When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2963
2963
|
*/
|
|
2964
|
-
|
|
2964
|
+
v80?: boolean | null;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* When TRUE, only Version 8.1 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2967
2967
|
*/
|
|
2968
|
-
|
|
2968
|
+
v81?: boolean | null;
|
|
2969
2969
|
/**
|
|
2970
2970
|
* When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
2971
2971
|
*/
|
|
2972
|
-
|
|
2972
|
+
v90?: boolean | null;
|
|
2973
2973
|
}
|
|
2974
2974
|
/**
|
|
2975
2975
|
* The identifier for an Android app.
|
|
@@ -3574,7 +3574,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3574
3574
|
/**
|
|
3575
3575
|
* The main logo for the application. Not nullable.
|
|
3576
3576
|
*/
|
|
3577
|
-
logo?:
|
|
3577
|
+
logo?: String | null;
|
|
3578
3578
|
/**
|
|
3579
3579
|
* Specifies whether the Native Authentication APIs are enabled for the application. The possible values are: none and all. Default is none. For more information, see Native Authentication.
|
|
3580
3580
|
*/
|
|
@@ -4467,7 +4467,7 @@ export interface AttachmentSession extends Entity, Parsable {
|
|
|
4467
4467
|
/**
|
|
4468
4468
|
* The content streams that are uploaded.
|
|
4469
4469
|
*/
|
|
4470
|
-
content?:
|
|
4470
|
+
content?: String | null;
|
|
4471
4471
|
/**
|
|
4472
4472
|
* The date and time in UTC when the upload session will expire. The complete file must be uploaded before this expiration time is reached.
|
|
4473
4473
|
*/
|
|
@@ -8152,7 +8152,7 @@ export interface CallRecording extends Entity, Parsable {
|
|
|
8152
8152
|
/**
|
|
8153
8153
|
* The content of the recording. Read-only.
|
|
8154
8154
|
*/
|
|
8155
|
-
content?:
|
|
8155
|
+
content?: String | null;
|
|
8156
8156
|
/**
|
|
8157
8157
|
* The unique identifier that links the transcript with its corresponding recording. Read-only.
|
|
8158
8158
|
*/
|
|
@@ -8264,7 +8264,7 @@ export interface CallTranscript extends Entity, Parsable {
|
|
|
8264
8264
|
/**
|
|
8265
8265
|
* The content of the transcript. Read-only.
|
|
8266
8266
|
*/
|
|
8267
|
-
content?:
|
|
8267
|
+
content?: String | null;
|
|
8268
8268
|
/**
|
|
8269
8269
|
* The unique identifier that links the transcript with its corresponding recording. Read-only.
|
|
8270
8270
|
*/
|
|
@@ -8288,7 +8288,7 @@ export interface CallTranscript extends Entity, Parsable {
|
|
|
8288
8288
|
/**
|
|
8289
8289
|
* The time-aligned metadata of the utterances in the transcript. Read-only.
|
|
8290
8290
|
*/
|
|
8291
|
-
metadataContent?:
|
|
8291
|
+
metadataContent?: String | null;
|
|
8292
8292
|
/**
|
|
8293
8293
|
* The URL that can be used to access the content of the transcript. Read-only.
|
|
8294
8294
|
*/
|
|
@@ -8362,7 +8362,7 @@ export interface CertificateAuthority extends AdditionalDataHolder, BackedModel,
|
|
|
8362
8362
|
/**
|
|
8363
8363
|
* Required. The base64 encoded string representing the public certificate.
|
|
8364
8364
|
*/
|
|
8365
|
-
certificate?:
|
|
8365
|
+
certificate?: String | null;
|
|
8366
8366
|
/**
|
|
8367
8367
|
* The URL of the certificate revocation list.
|
|
8368
8368
|
*/
|
|
@@ -24290,6 +24290,12 @@ export declare function createUserSimulationDetailsFromDiscriminatorValue(parseN
|
|
|
24290
24290
|
* @returns {UserSimulationEventInfo}
|
|
24291
24291
|
*/
|
|
24292
24292
|
export declare function createUserSimulationEventInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24293
|
+
/**
|
|
24294
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
24295
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
24296
|
+
* @returns {UserSolutionRoot}
|
|
24297
|
+
*/
|
|
24298
|
+
export declare function createUserSolutionRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24293
24299
|
/**
|
|
24294
24300
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
24295
24301
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -25502,6 +25508,12 @@ export declare function createWorkforceIntegrationFromDiscriminatorValue(parseNo
|
|
|
25502
25508
|
* @returns {WorkingHours}
|
|
25503
25509
|
*/
|
|
25504
25510
|
export declare function createWorkingHoursFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25511
|
+
/**
|
|
25512
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25513
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25514
|
+
* @returns {WorkingTimeSchedule}
|
|
25515
|
+
*/
|
|
25516
|
+
export declare function createWorkingTimeScheduleFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25505
25517
|
/**
|
|
25506
25518
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
25507
25519
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -37048,6 +37060,11 @@ export declare function deserializeIntoUserSimulationDetails(userSimulationDetai
|
|
|
37048
37060
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37049
37061
|
*/
|
|
37050
37062
|
export declare function deserializeIntoUserSimulationEventInfo(userSimulationEventInfo?: Partial<UserSimulationEventInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37063
|
+
/**
|
|
37064
|
+
* The deserialization information for the current model
|
|
37065
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37066
|
+
*/
|
|
37067
|
+
export declare function deserializeIntoUserSolutionRoot(userSolutionRoot?: Partial<UserSolutionRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37051
37068
|
/**
|
|
37052
37069
|
* The deserialization information for the current model
|
|
37053
37070
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -38058,6 +38075,11 @@ export declare function deserializeIntoWorkforceIntegrationEncryption(workforceI
|
|
|
38058
38075
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38059
38076
|
*/
|
|
38060
38077
|
export declare function deserializeIntoWorkingHours(workingHours?: Partial<WorkingHours> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38078
|
+
/**
|
|
38079
|
+
* The deserialization information for the current model
|
|
38080
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38081
|
+
*/
|
|
38082
|
+
export declare function deserializeIntoWorkingTimeSchedule(workingTimeSchedule?: Partial<WorkingTimeSchedule> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38061
38083
|
/**
|
|
38062
38084
|
* The deserialization information for the current model
|
|
38063
38085
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -38341,7 +38363,7 @@ export interface DeviceAndAppManagementData extends AdditionalDataHolder, Backed
|
|
|
38341
38363
|
/**
|
|
38342
38364
|
* Not yet documented
|
|
38343
38365
|
*/
|
|
38344
|
-
content?:
|
|
38366
|
+
content?: String | null;
|
|
38345
38367
|
/**
|
|
38346
38368
|
* The OdataType property
|
|
38347
38369
|
*/
|
|
@@ -41163,7 +41185,7 @@ export interface DriveItem extends BaseItem, Parsable {
|
|
|
41163
41185
|
/**
|
|
41164
41186
|
* The content stream, if the item represents a file.
|
|
41165
41187
|
*/
|
|
41166
|
-
content?:
|
|
41188
|
+
content?: String | null;
|
|
41167
41189
|
/**
|
|
41168
41190
|
* An eTag for the content of the item. This eTag isn't changed if only the metadata is changed. Note This property isn't returned if the item is a folder. Read-only.
|
|
41169
41191
|
*/
|
|
@@ -41348,7 +41370,7 @@ export interface DriveItemVersion extends BaseItemVersion, Parsable {
|
|
|
41348
41370
|
/**
|
|
41349
41371
|
* The content stream for this version of the item.
|
|
41350
41372
|
*/
|
|
41351
|
-
content?:
|
|
41373
|
+
content?: String | null;
|
|
41352
41374
|
/**
|
|
41353
41375
|
* Indicates the size of the content stream for this version of the item.
|
|
41354
41376
|
*/
|
|
@@ -43125,7 +43147,7 @@ export interface EnterpriseCodeSigningCertificate extends Entity, Parsable {
|
|
|
43125
43147
|
/**
|
|
43126
43148
|
* The Windows Enterprise Code-Signing Certificate in the raw data format. Set to null once certificate has been uploaded and other properties have been populated.
|
|
43127
43149
|
*/
|
|
43128
|
-
content?:
|
|
43150
|
+
content?: String | null;
|
|
43129
43151
|
/**
|
|
43130
43152
|
* The cert expiration date and time (using ISO 8601 format, in UTC time). Uploading a valid cert file through the Intune admin console will automatically populate this value in the HTTP response. Supports: $filter, $select, $top, $OrderBy, $skip. $Search is not supported.
|
|
43131
43153
|
*/
|
|
@@ -43999,7 +44021,7 @@ export interface FileAttachment extends Attachment, Parsable {
|
|
|
43999
44021
|
/**
|
|
44000
44022
|
* The base64-encoded contents of the file.
|
|
44001
44023
|
*/
|
|
44002
|
-
contentBytes?:
|
|
44024
|
+
contentBytes?: String | null;
|
|
44003
44025
|
/**
|
|
44004
44026
|
* The ID of the attachment in the Exchange store.
|
|
44005
44027
|
*/
|
|
@@ -44024,11 +44046,11 @@ export interface FileEncryptionInfo extends AdditionalDataHolder, BackedModel, P
|
|
|
44024
44046
|
/**
|
|
44025
44047
|
* The key used to encrypt the file content.
|
|
44026
44048
|
*/
|
|
44027
|
-
encryptionKey?:
|
|
44049
|
+
encryptionKey?: String | null;
|
|
44028
44050
|
/**
|
|
44029
44051
|
* The file digest prior to encryption. ProfileVersion1 requires a non-null FileDigest.
|
|
44030
44052
|
*/
|
|
44031
|
-
fileDigest?:
|
|
44053
|
+
fileDigest?: String | null;
|
|
44032
44054
|
/**
|
|
44033
44055
|
* The file digest algorithm. ProfileVersion1 currently only supports SHA256 for the FileDigestAlgorithm.
|
|
44034
44056
|
*/
|
|
@@ -44036,15 +44058,15 @@ export interface FileEncryptionInfo extends AdditionalDataHolder, BackedModel, P
|
|
|
44036
44058
|
/**
|
|
44037
44059
|
* The initialization vector (IV) used for the encryption algorithm. Must be 16 bytes.
|
|
44038
44060
|
*/
|
|
44039
|
-
initializationVector?:
|
|
44061
|
+
initializationVector?: String | null;
|
|
44040
44062
|
/**
|
|
44041
44063
|
* The hash of the concatenation of the IV and encrypted file content. Must be 32 bytes.
|
|
44042
44064
|
*/
|
|
44043
|
-
mac?:
|
|
44065
|
+
mac?: String | null;
|
|
44044
44066
|
/**
|
|
44045
44067
|
* The key used to compute the message authentication code of the concatenation of the IV and encrypted file content. Must be 32 bytes.
|
|
44046
44068
|
*/
|
|
44047
|
-
macKey?:
|
|
44069
|
+
macKey?: String | null;
|
|
44048
44070
|
/**
|
|
44049
44071
|
* The OdataType property
|
|
44050
44072
|
*/
|
|
@@ -44527,7 +44549,7 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
44527
44549
|
*/
|
|
44528
44550
|
appRoleAssignments?: AppRoleAssignment[] | null;
|
|
44529
44551
|
/**
|
|
44530
|
-
* The list of sensitivity label pairs (label ID, label name) associated with a Microsoft 365 group. Returned only on $select.
|
|
44552
|
+
* The list of sensitivity label pairs (label ID, label name) associated with a Microsoft 365 group. Returned only on $select. This property can be updated only in delegated scenarios where the caller requires both the Microsoft Graph permission and a supported administrator role.
|
|
44531
44553
|
*/
|
|
44532
44554
|
assignedLabels?: AssignedLabel[] | null;
|
|
44533
44555
|
/**
|
|
@@ -45454,7 +45476,7 @@ export interface ImportedWindowsAutopilotDeviceIdentity extends Entity, Parsable
|
|
|
45454
45476
|
/**
|
|
45455
45477
|
* Hardware Blob of the Windows autopilot device.
|
|
45456
45478
|
*/
|
|
45457
|
-
hardwareIdentifier?:
|
|
45479
|
+
hardwareIdentifier?: String | null;
|
|
45458
45480
|
/**
|
|
45459
45481
|
* The Import Id of the Windows autopilot device.
|
|
45460
45482
|
*/
|
|
@@ -46146,7 +46168,7 @@ export interface IosCustomConfiguration extends DeviceConfiguration, Parsable {
|
|
|
46146
46168
|
/**
|
|
46147
46169
|
* Payload. (UTF8 encoded byte array)
|
|
46148
46170
|
*/
|
|
46149
|
-
payload?:
|
|
46171
|
+
payload?: String | null;
|
|
46150
46172
|
/**
|
|
46151
46173
|
* Payload file name (.mobileconfig
|
|
46152
46174
|
*/
|
|
@@ -46961,35 +46983,35 @@ export interface IosMinimumOperatingSystem extends AdditionalDataHolder, BackedM
|
|
|
46961
46983
|
/**
|
|
46962
46984
|
* When TRUE, only Version 10.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46963
46985
|
*/
|
|
46964
|
-
|
|
46986
|
+
v100?: boolean | null;
|
|
46965
46987
|
/**
|
|
46966
46988
|
* When TRUE, only Version 11.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46967
46989
|
*/
|
|
46968
|
-
|
|
46990
|
+
v110?: boolean | null;
|
|
46969
46991
|
/**
|
|
46970
46992
|
* When TRUE, only Version 12.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46971
46993
|
*/
|
|
46972
|
-
|
|
46994
|
+
v120?: boolean | null;
|
|
46973
46995
|
/**
|
|
46974
46996
|
* When TRUE, only Version 13.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46975
46997
|
*/
|
|
46976
|
-
|
|
46998
|
+
v130?: boolean | null;
|
|
46977
46999
|
/**
|
|
46978
47000
|
* When TRUE, only Version 14.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46979
47001
|
*/
|
|
46980
|
-
|
|
47002
|
+
v140?: boolean | null;
|
|
46981
47003
|
/**
|
|
46982
47004
|
* When TRUE, only Version 15.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46983
47005
|
*/
|
|
46984
|
-
|
|
47006
|
+
v150?: boolean | null;
|
|
46985
47007
|
/**
|
|
46986
47008
|
* When TRUE, only Version 8.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46987
47009
|
*/
|
|
46988
|
-
|
|
47010
|
+
v80?: boolean | null;
|
|
46989
47011
|
/**
|
|
46990
47012
|
* When TRUE, only Version 9.0 or later is supported. Default value is FALSE. Exactly one of the minimum operating system boolean values will be TRUE.
|
|
46991
47013
|
*/
|
|
46992
|
-
|
|
47014
|
+
v90?: boolean | null;
|
|
46993
47015
|
}
|
|
46994
47016
|
/**
|
|
46995
47017
|
* Contains properties, inherited properties and actions for iOS mobile app configurations.
|
|
@@ -46998,7 +47020,7 @@ export interface IosMobileAppConfiguration extends ManagedDeviceMobileAppConfigu
|
|
|
46998
47020
|
/**
|
|
46999
47021
|
* mdm app configuration Base64 binary.
|
|
47000
47022
|
*/
|
|
47001
|
-
encodedSettingXml?:
|
|
47023
|
+
encodedSettingXml?: String | null;
|
|
47002
47024
|
/**
|
|
47003
47025
|
* app configuration setting items.
|
|
47004
47026
|
*/
|
|
@@ -47662,7 +47684,7 @@ export interface KeyCredential extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
47662
47684
|
/**
|
|
47663
47685
|
* A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate.
|
|
47664
47686
|
*/
|
|
47665
|
-
customKeyIdentifier?:
|
|
47687
|
+
customKeyIdentifier?: String | null;
|
|
47666
47688
|
/**
|
|
47667
47689
|
* Friendly name for the key. Optional.
|
|
47668
47690
|
*/
|
|
@@ -47674,7 +47696,7 @@ export interface KeyCredential extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
47674
47696
|
/**
|
|
47675
47697
|
* The certificate's raw data in byte array converted to Base64 string. Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it is always null. From a .cer certificate, you can read the key using the Convert.ToBase64String() method. For more information, see Get the certificate key.
|
|
47676
47698
|
*/
|
|
47677
|
-
key?:
|
|
47699
|
+
key?: String | null;
|
|
47678
47700
|
/**
|
|
47679
47701
|
* The unique identifier (GUID) for the key.
|
|
47680
47702
|
*/
|
|
@@ -48755,7 +48777,7 @@ export interface MacOSCustomConfiguration extends DeviceConfiguration, Parsable
|
|
|
48755
48777
|
/**
|
|
48756
48778
|
* Payload. (UTF8 encoded byte array)
|
|
48757
48779
|
*/
|
|
48758
|
-
payload?:
|
|
48780
|
+
payload?: String | null;
|
|
48759
48781
|
/**
|
|
48760
48782
|
* Payload file name (.mobileconfig
|
|
48761
48783
|
*/
|
|
@@ -48997,51 +49019,51 @@ export interface MacOSMinimumOperatingSystem extends AdditionalDataHolder, Backe
|
|
|
48997
49019
|
/**
|
|
48998
49020
|
* When TRUE, indicates OS X 10.10 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
48999
49021
|
*/
|
|
49000
|
-
|
|
49022
|
+
v1010?: boolean | null;
|
|
49001
49023
|
/**
|
|
49002
49024
|
* When TRUE, indicates OS X 10.11 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49003
49025
|
*/
|
|
49004
|
-
|
|
49026
|
+
v1011?: boolean | null;
|
|
49005
49027
|
/**
|
|
49006
49028
|
* When TRUE, indicates macOS 10.12 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49007
49029
|
*/
|
|
49008
|
-
|
|
49030
|
+
v1012?: boolean | null;
|
|
49009
49031
|
/**
|
|
49010
49032
|
* When TRUE, indicates macOS 10.13 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49011
49033
|
*/
|
|
49012
|
-
|
|
49034
|
+
v1013?: boolean | null;
|
|
49013
49035
|
/**
|
|
49014
49036
|
* When TRUE, indicates macOS 10.14 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49015
49037
|
*/
|
|
49016
|
-
|
|
49038
|
+
v1014?: boolean | null;
|
|
49017
49039
|
/**
|
|
49018
49040
|
* When TRUE, indicates macOS 10.15 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49019
49041
|
*/
|
|
49020
|
-
|
|
49042
|
+
v1015?: boolean | null;
|
|
49021
49043
|
/**
|
|
49022
49044
|
* When TRUE, indicates Mac OS X 10.7 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49023
49045
|
*/
|
|
49024
|
-
|
|
49046
|
+
v107?: boolean | null;
|
|
49025
49047
|
/**
|
|
49026
49048
|
* When TRUE, indicates OS X 10.8 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49027
49049
|
*/
|
|
49028
|
-
|
|
49050
|
+
v108?: boolean | null;
|
|
49029
49051
|
/**
|
|
49030
49052
|
* When TRUE, indicates OS X 10.9 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49031
49053
|
*/
|
|
49032
|
-
|
|
49054
|
+
v109?: boolean | null;
|
|
49033
49055
|
/**
|
|
49034
49056
|
* When TRUE, indicates macOS 11.0 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49035
49057
|
*/
|
|
49036
|
-
|
|
49058
|
+
v110?: boolean | null;
|
|
49037
49059
|
/**
|
|
49038
49060
|
* When TRUE, indicates macOS 12.0 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49039
49061
|
*/
|
|
49040
|
-
|
|
49062
|
+
v120?: boolean | null;
|
|
49041
49063
|
/**
|
|
49042
49064
|
* When TRUE, indicates macOS 13.0 or later is required to install the app. When FALSE, indicates some other OS version is the minimum OS to install the app. Default value is FALSE.
|
|
49043
49065
|
*/
|
|
49044
|
-
|
|
49066
|
+
v130?: boolean | null;
|
|
49045
49067
|
}
|
|
49046
49068
|
/**
|
|
49047
49069
|
* Contains properties and inherited properties for the MacOS Office Suite App.
|
|
@@ -51074,7 +51096,7 @@ export interface Message extends OutlookItem, Parsable {
|
|
|
51074
51096
|
/**
|
|
51075
51097
|
* Indicates the position of the message within the conversation.
|
|
51076
51098
|
*/
|
|
51077
|
-
conversationIndex?:
|
|
51099
|
+
conversationIndex?: String | null;
|
|
51078
51100
|
/**
|
|
51079
51101
|
* The collection of open extensions defined for the message. Nullable.
|
|
51080
51102
|
*/
|
|
@@ -51699,7 +51721,7 @@ export interface MimeContent extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
51699
51721
|
/**
|
|
51700
51722
|
* The byte array that contains the actual content.
|
|
51701
51723
|
*/
|
|
51702
|
-
value?:
|
|
51724
|
+
value?: String | null;
|
|
51703
51725
|
}
|
|
51704
51726
|
export type MiracastChannel = (typeof MiracastChannelObject)[keyof typeof MiracastChannelObject];
|
|
51705
51727
|
/**
|
|
@@ -51878,7 +51900,7 @@ export interface MobileAppContentFile extends Entity, Parsable {
|
|
|
51878
51900
|
/**
|
|
51879
51901
|
* The manifest information.
|
|
51880
51902
|
*/
|
|
51881
|
-
manifest?:
|
|
51903
|
+
manifest?: String | null;
|
|
51882
51904
|
/**
|
|
51883
51905
|
* the file name.
|
|
51884
51906
|
*/
|
|
@@ -52882,7 +52904,7 @@ export interface OmaSettingStringXml extends OmaSetting, Parsable {
|
|
|
52882
52904
|
/**
|
|
52883
52905
|
* Value. (UTF8 encoded byte array)
|
|
52884
52906
|
*/
|
|
52885
|
-
value?:
|
|
52907
|
+
value?: String | null;
|
|
52886
52908
|
}
|
|
52887
52909
|
export interface OnAttributeCollectionExternalUsersSelfServiceSignUp extends OnAttributeCollectionHandler, Parsable {
|
|
52888
52910
|
/**
|
|
@@ -53074,7 +53096,7 @@ export interface OnenotePage extends OnenoteEntitySchemaObjectModel, Parsable {
|
|
|
53074
53096
|
/**
|
|
53075
53097
|
* The page's HTML content.
|
|
53076
53098
|
*/
|
|
53077
|
-
content?:
|
|
53099
|
+
content?: String | null;
|
|
53078
53100
|
/**
|
|
53079
53101
|
* The URL for the page's HTML content. Read-only.
|
|
53080
53102
|
*/
|
|
@@ -53198,7 +53220,7 @@ export interface OnenoteResource extends OnenoteEntityBaseModel, Parsable {
|
|
|
53198
53220
|
/**
|
|
53199
53221
|
* The content stream
|
|
53200
53222
|
*/
|
|
53201
|
-
content?:
|
|
53223
|
+
content?: String | null;
|
|
53202
53224
|
/**
|
|
53203
53225
|
* The URL for downloading the content
|
|
53204
53226
|
*/
|
|
@@ -53274,7 +53296,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
|
53274
53296
|
/**
|
|
53275
53297
|
* The content stream of the attendee report of a Microsoft Teams live event. Read-only.
|
|
53276
53298
|
*/
|
|
53277
|
-
attendeeReport?:
|
|
53299
|
+
attendeeReport?: String | null;
|
|
53278
53300
|
/**
|
|
53279
53301
|
* Settings related to a live event.
|
|
53280
53302
|
*/
|
|
@@ -54084,7 +54106,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
54084
54106
|
/**
|
|
54085
54107
|
* Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image reduces bandwidth requirements and make the page load faster.
|
|
54086
54108
|
*/
|
|
54087
|
-
backgroundImage?:
|
|
54109
|
+
backgroundImage?: String | null;
|
|
54088
54110
|
/**
|
|
54089
54111
|
* A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
|
|
54090
54112
|
*/
|
|
@@ -54092,7 +54114,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
54092
54114
|
/**
|
|
54093
54115
|
* A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
54094
54116
|
*/
|
|
54095
|
-
bannerLogo?:
|
|
54117
|
+
bannerLogo?: String | null;
|
|
54096
54118
|
/**
|
|
54097
54119
|
* A relative URL for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only.
|
|
54098
54120
|
*/
|
|
@@ -54120,7 +54142,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
54120
54142
|
/**
|
|
54121
54143
|
* CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB.
|
|
54122
54144
|
*/
|
|
54123
|
-
customCSS?:
|
|
54145
|
+
customCSS?: String | null;
|
|
54124
54146
|
/**
|
|
54125
54147
|
* A relative URL for the customCSS property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
|
|
54126
54148
|
*/
|
|
@@ -54152,7 +54174,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
54152
54174
|
/**
|
|
54153
54175
|
* A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant.
|
|
54154
54176
|
*/
|
|
54155
|
-
favicon?:
|
|
54177
|
+
favicon?: String | null;
|
|
54156
54178
|
/**
|
|
54157
54179
|
* A relative url for the favicon above that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
|
|
54158
54180
|
*/
|
|
@@ -54164,7 +54186,7 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
54164
54186
|
/**
|
|
54165
54187
|
* A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo.
|
|
54166
54188
|
*/
|
|
54167
|
-
headerLogo?:
|
|
54189
|
+
headerLogo?: String | null;
|
|
54168
54190
|
/**
|
|
54169
54191
|
* A relative URL for the headerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only.
|
|
54170
54192
|
*/
|
|
@@ -54184,11 +54206,11 @@ export interface OrganizationalBrandingProperties extends Entity, Parsable {
|
|
|
54184
54206
|
/**
|
|
54185
54207
|
* A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo.
|
|
54186
54208
|
*/
|
|
54187
|
-
squareLogo?:
|
|
54209
|
+
squareLogo?: String | null;
|
|
54188
54210
|
/**
|
|
54189
54211
|
* A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo.
|
|
54190
54212
|
*/
|
|
54191
|
-
squareLogoDark?:
|
|
54213
|
+
squareLogoDark?: String | null;
|
|
54192
54214
|
/**
|
|
54193
54215
|
* A relative URL for the squareLogoDark property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only.
|
|
54194
54216
|
*/
|
|
@@ -54677,7 +54699,7 @@ export interface PasswordCredential extends AdditionalDataHolder, BackedModel, P
|
|
|
54677
54699
|
/**
|
|
54678
54700
|
* Do not use.
|
|
54679
54701
|
*/
|
|
54680
|
-
customKeyIdentifier?:
|
|
54702
|
+
customKeyIdentifier?: String | null;
|
|
54681
54703
|
/**
|
|
54682
54704
|
* Friendly name for the password. Optional.
|
|
54683
54705
|
*/
|
|
@@ -59088,7 +59110,7 @@ export interface Report extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
59088
59110
|
/**
|
|
59089
59111
|
* Not yet documented
|
|
59090
59112
|
*/
|
|
59091
|
-
content?:
|
|
59113
|
+
content?: String | null;
|
|
59092
59114
|
/**
|
|
59093
59115
|
* The OdataType property
|
|
59094
59116
|
*/
|
|
@@ -61295,7 +61317,7 @@ export interface Security extends Entity, Parsable {
|
|
|
61295
61317
|
/**
|
|
61296
61318
|
* A collection of alerts in Microsoft 365 Defender.
|
|
61297
61319
|
*/
|
|
61298
|
-
|
|
61320
|
+
alertsV2?: Alert[] | null;
|
|
61299
61321
|
/**
|
|
61300
61322
|
* The attackSimulation property
|
|
61301
61323
|
*/
|
|
@@ -61428,7 +61450,7 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel
|
|
|
61428
61450
|
/**
|
|
61429
61451
|
* Custom key identifier.
|
|
61430
61452
|
*/
|
|
61431
|
-
customKeyIdentifier?:
|
|
61453
|
+
customKeyIdentifier?: String | null;
|
|
61432
61454
|
/**
|
|
61433
61455
|
* The friendly name for the key.
|
|
61434
61456
|
*/
|
|
@@ -61440,7 +61462,7 @@ export interface SelfSignedCertificate extends AdditionalDataHolder, BackedModel
|
|
|
61440
61462
|
/**
|
|
61441
61463
|
* The value for the key credential. Should be a Base-64 encoded value.
|
|
61442
61464
|
*/
|
|
61443
|
-
key?:
|
|
61465
|
+
key?: String | null;
|
|
61444
61466
|
/**
|
|
61445
61467
|
* The unique identifier (GUID) for the key.
|
|
61446
61468
|
*/
|
|
@@ -71836,6 +71858,11 @@ export declare function serializeUserSimulationDetails(writer: SerializationWrit
|
|
|
71836
71858
|
* @param writer Serialization writer to use to serialize this model
|
|
71837
71859
|
*/
|
|
71838
71860
|
export declare function serializeUserSimulationEventInfo(writer: SerializationWriter, userSimulationEventInfo?: Partial<UserSimulationEventInfo> | undefined | null): void;
|
|
71861
|
+
/**
|
|
71862
|
+
* Serializes information the current object
|
|
71863
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71864
|
+
*/
|
|
71865
|
+
export declare function serializeUserSolutionRoot(writer: SerializationWriter, userSolutionRoot?: Partial<UserSolutionRoot> | undefined | null): void;
|
|
71839
71866
|
/**
|
|
71840
71867
|
* Serializes information the current object
|
|
71841
71868
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -72846,6 +72873,11 @@ export declare function serializeWorkforceIntegrationEncryption(writer: Serializ
|
|
|
72846
72873
|
* @param writer Serialization writer to use to serialize this model
|
|
72847
72874
|
*/
|
|
72848
72875
|
export declare function serializeWorkingHours(writer: SerializationWriter, workingHours?: Partial<WorkingHours> | undefined | null): void;
|
|
72876
|
+
/**
|
|
72877
|
+
* Serializes information the current object
|
|
72878
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72879
|
+
*/
|
|
72880
|
+
export declare function serializeWorkingTimeSchedule(writer: SerializationWriter, workingTimeSchedule?: Partial<WorkingTimeSchedule> | undefined | null): void;
|
|
72849
72881
|
/**
|
|
72850
72882
|
* Serializes information the current object
|
|
72851
72883
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -72919,7 +72951,7 @@ export interface ServiceAnnouncementAttachment extends Entity, Parsable {
|
|
|
72919
72951
|
/**
|
|
72920
72952
|
* The attachment content.
|
|
72921
72953
|
*/
|
|
72922
|
-
content?:
|
|
72954
|
+
content?: String | null;
|
|
72923
72955
|
/**
|
|
72924
72956
|
* The contentType property
|
|
72925
72957
|
*/
|
|
@@ -73273,7 +73305,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
73273
73305
|
*/
|
|
73274
73306
|
passwordCredentials?: PasswordCredential[] | null;
|
|
73275
73307
|
/**
|
|
73276
|
-
* Specifies the single sign-on mode configured for this application. Microsoft Entra ID uses the preferred single sign-on mode to launch the application from Microsoft 365 or the My Apps portal. The supported values are password, saml, notSupported, and oidc.
|
|
73308
|
+
* Specifies the single sign-on mode configured for this application. Microsoft Entra ID uses the preferred single sign-on mode to launch the application from Microsoft 365 or the My Apps portal. The supported values are password, saml, notSupported, and oidc. Note: This field might be null for older SAML apps and for OIDC applications where it isn't set automatically.
|
|
73277
73309
|
*/
|
|
73278
73310
|
preferredSingleSignOnMode?: string | null;
|
|
73279
73311
|
/**
|
|
@@ -73572,7 +73604,7 @@ export interface ServiceUpdateMessage extends Parsable, ServiceAnnouncementBase
|
|
|
73572
73604
|
/**
|
|
73573
73605
|
* The zip file that contains all attachments for a message.
|
|
73574
73606
|
*/
|
|
73575
|
-
attachmentsArchive?:
|
|
73607
|
+
attachmentsArchive?: String | null;
|
|
73576
73608
|
/**
|
|
73577
73609
|
* The body property
|
|
73578
73610
|
*/
|
|
@@ -74479,7 +74511,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
74479
74511
|
/**
|
|
74480
74512
|
* The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq, startsWith).
|
|
74481
74513
|
*/
|
|
74482
|
-
|
|
74514
|
+
riskEventTypesV2?: string[] | null;
|
|
74483
74515
|
/**
|
|
74484
74516
|
* Aggregated risk level. The possible values are: none, low, medium, high, hidden, and unknownFutureValue. The value hidden means the user or sign-in wasn't enabled for Microsoft Entra ID Protection. Supports $filter (eq). Note: Details for this property are only available for Microsoft Entra ID P2 customers. All other customers are returned hidden.
|
|
74485
74517
|
*/
|
|
@@ -76785,7 +76817,7 @@ export interface TaskFileAttachment extends AttachmentBase, Parsable {
|
|
|
76785
76817
|
/**
|
|
76786
76818
|
* The base64-encoded contents of the file.
|
|
76787
76819
|
*/
|
|
76788
|
-
contentBytes?:
|
|
76820
|
+
contentBytes?: String | null;
|
|
76789
76821
|
}
|
|
76790
76822
|
export type TaskStatus = (typeof TaskStatusObject)[keyof typeof TaskStatusObject];
|
|
76791
76823
|
export interface Team extends Entity, Parsable {
|
|
@@ -77555,7 +77587,7 @@ export interface TeamworkHostedContent extends Entity, Parsable {
|
|
|
77555
77587
|
/**
|
|
77556
77588
|
* Write only. Bytes for the hosted content (such as images).
|
|
77557
77589
|
*/
|
|
77558
|
-
contentBytes?:
|
|
77590
|
+
contentBytes?: String | null;
|
|
77559
77591
|
/**
|
|
77560
77592
|
* Write only. Content type. such as image/png, image/jpg.
|
|
77561
77593
|
*/
|
|
@@ -78279,7 +78311,7 @@ export interface Thumbnail extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
78279
78311
|
/**
|
|
78280
78312
|
* The content stream for the thumbnail.
|
|
78281
78313
|
*/
|
|
78282
|
-
content?:
|
|
78314
|
+
content?: String | null;
|
|
78283
78315
|
/**
|
|
78284
78316
|
* The height of the thumbnail, in pixels.
|
|
78285
78317
|
*/
|
|
@@ -80389,6 +80421,10 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
80389
80421
|
* A list for the user to enumerate their skills. Returned only on $select.
|
|
80390
80422
|
*/
|
|
80391
80423
|
skills?: string[] | null;
|
|
80424
|
+
/**
|
|
80425
|
+
* The solutions property
|
|
80426
|
+
*/
|
|
80427
|
+
solutions?: UserSolutionRoot | null;
|
|
80392
80428
|
/**
|
|
80393
80429
|
* The users and groups responsible for this guest's privileges in the tenant and keeping the guest's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand.
|
|
80394
80430
|
*/
|
|
@@ -82357,6 +82393,12 @@ export interface UserSimulationEventInfo extends AdditionalDataHolder, BackedMod
|
|
|
82357
82393
|
*/
|
|
82358
82394
|
osPlatformDeviceDetails?: string | null;
|
|
82359
82395
|
}
|
|
82396
|
+
export interface UserSolutionRoot extends Entity, Parsable {
|
|
82397
|
+
/**
|
|
82398
|
+
* The workingTimeSchedule property
|
|
82399
|
+
*/
|
|
82400
|
+
workingTimeSchedule?: WorkingTimeSchedule | null;
|
|
82401
|
+
}
|
|
82360
82402
|
export interface UserStorage extends Entity, Parsable {
|
|
82361
82403
|
/**
|
|
82362
82404
|
* The quota property
|
|
@@ -82736,7 +82778,7 @@ export interface VirtualEventPresenterDetails extends AdditionalDataHolder, Back
|
|
|
82736
82778
|
/**
|
|
82737
82779
|
* The content stream of the presenter's photo.
|
|
82738
82780
|
*/
|
|
82739
|
-
photo?:
|
|
82781
|
+
photo?: String | null;
|
|
82740
82782
|
/**
|
|
82741
82783
|
* The presenter's Twitter profile URL.
|
|
82742
82784
|
*/
|
|
@@ -83835,7 +83877,7 @@ export interface Windows10EndpointProtectionConfiguration extends DeviceConfigur
|
|
|
83835
83877
|
/**
|
|
83836
83878
|
* Xml content containing information regarding exploit protection details.
|
|
83837
83879
|
*/
|
|
83838
|
-
defenderExploitProtectionXml?:
|
|
83880
|
+
defenderExploitProtectionXml?: String | null;
|
|
83839
83881
|
/**
|
|
83840
83882
|
* Name of the file from which DefenderExploitProtectionXml was obtained.
|
|
83841
83883
|
*/
|
|
@@ -84582,11 +84624,11 @@ export interface Windows10GeneralConfiguration extends DeviceConfiguration, Pars
|
|
|
84582
84624
|
/**
|
|
84583
84625
|
* This policy setting allows you to import Edge assets to be used with startMenuLayoutXml policy. Start layout can contain secondary tile from Edge app which looks for Edge local asset file. Edge local asset would not exist and cause Edge secondary tile to appear empty in this case. This policy only gets applied when startMenuLayoutXml policy is modified. The value should be a UTF-8 Base64 encoded byte array.
|
|
84584
84626
|
*/
|
|
84585
|
-
startMenuLayoutEdgeAssetsXml?:
|
|
84627
|
+
startMenuLayoutEdgeAssetsXml?: String | null;
|
|
84586
84628
|
/**
|
|
84587
84629
|
* Allows admins to override the default Start menu layout and prevents the user from changing it. The layout is modified by specifying an XML file based on a layout modification schema. XML needs to be in a UTF8 encoded byte array format.
|
|
84588
84630
|
*/
|
|
84589
|
-
startMenuLayoutXml?:
|
|
84631
|
+
startMenuLayoutXml?: String | null;
|
|
84590
84632
|
/**
|
|
84591
84633
|
* Type of display modes for the start menu.
|
|
84592
84634
|
*/
|
|
@@ -85695,7 +85737,7 @@ export interface WindowsInformationProtectionAppLockerFile extends Entity, Parsa
|
|
|
85695
85737
|
/**
|
|
85696
85738
|
* File as a byte array
|
|
85697
85739
|
*/
|
|
85698
|
-
file?:
|
|
85740
|
+
file?: String | null;
|
|
85699
85741
|
/**
|
|
85700
85742
|
* SHA256 hash of the file
|
|
85701
85743
|
*/
|
|
@@ -85726,7 +85768,7 @@ export interface WindowsInformationProtectionDataRecoveryCertificate extends Add
|
|
|
85726
85768
|
/**
|
|
85727
85769
|
* Data recovery Certificate
|
|
85728
85770
|
*/
|
|
85729
|
-
certificate?:
|
|
85771
|
+
certificate?: String | null;
|
|
85730
85772
|
/**
|
|
85731
85773
|
* Data recovery Certificate description
|
|
85732
85774
|
*/
|
|
@@ -86215,15 +86257,15 @@ export interface WindowsMinimumOperatingSystem extends AdditionalDataHolder, Bac
|
|
|
86215
86257
|
/**
|
|
86216
86258
|
* Windows version 10.0 or later.
|
|
86217
86259
|
*/
|
|
86218
|
-
|
|
86260
|
+
v100?: boolean | null;
|
|
86219
86261
|
/**
|
|
86220
86262
|
* Windows version 8.0 or later.
|
|
86221
86263
|
*/
|
|
86222
|
-
|
|
86264
|
+
v80?: boolean | null;
|
|
86223
86265
|
/**
|
|
86224
86266
|
* Windows version 8.1 or later.
|
|
86225
86267
|
*/
|
|
86226
|
-
|
|
86268
|
+
v81?: boolean | null;
|
|
86227
86269
|
}
|
|
86228
86270
|
/**
|
|
86229
86271
|
* Contains properties and inherited properties for Windows Mobile MSI Line Of Business apps.
|
|
@@ -88051,6 +88093,8 @@ export interface WorkingHours extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
88051
88093
|
*/
|
|
88052
88094
|
timeZone?: TimeZoneBase | null;
|
|
88053
88095
|
}
|
|
88096
|
+
export interface WorkingTimeSchedule extends Entity, Parsable {
|
|
88097
|
+
}
|
|
88054
88098
|
export type X509CertificateAffinityLevel = (typeof X509CertificateAffinityLevelObject)[keyof typeof X509CertificateAffinityLevelObject];
|
|
88055
88099
|
export interface X509CertificateAuthenticationMethodConfiguration extends AuthenticationMethodConfiguration, Parsable {
|
|
88056
88100
|
/**
|