@microsoft/msgraph-sdk 1.0.0-preview.30 → 1.0.0-preview.40
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 +38 -0
- package/models/callRecords/index.d.ts.map +1 -1
- package/models/callRecords/index.js +37 -3
- package/models/callRecords/index.js.map +1 -1
- package/models/externalConnectors/index.d.ts +1 -1
- package/models/externalConnectors/index.js +1 -1
- package/models/externalConnectors/index.js.map +1 -1
- package/models/index.d.ts +1044 -115
- package/models/index.d.ts.map +1 -1
- package/models/index.js +865 -69
- package/models/index.js.map +1 -1
- package/models/search/index.js +2 -2
- package/models/search/index.js.map +1 -1
- package/models/security/index.d.ts +312 -45
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +242 -6
- 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.d.ts.map +1 -1
- package/version.js +3 -1
- package/version.js.map +1 -1
package/models/index.d.ts
CHANGED
|
@@ -4,8 +4,7 @@ import { type Billing } from './partners/billing/index.js';
|
|
|
4
4
|
import { type Acronym, type Bookmark, type Qna } from './search/index.js';
|
|
5
5
|
import { BehaviorDuringRetentionPeriod, type CasesRoot, type IdentityContainer as I2b88f0c27d7fd9c000e7e4e78cc3161590db07c518949b504f8a27680ed1200f, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/index.js';
|
|
6
6
|
import { type Set, type Store, type Term } from './termStore/index.js';
|
|
7
|
-
import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly, type UntypedNode } from '@microsoft/kiota-abstractions';
|
|
8
|
-
import { type Guid } from 'guid-typescript';
|
|
7
|
+
import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Guid, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly, type UntypedNode } from '@microsoft/kiota-abstractions';
|
|
9
8
|
export interface AadUserConversationMember extends ConversationMember, Parsable {
|
|
10
9
|
/**
|
|
11
10
|
* The email address of the user.
|
|
@@ -364,7 +363,7 @@ export interface AccessPackageAssignmentRequest extends Entity, Parsable {
|
|
|
364
363
|
*/
|
|
365
364
|
requestType?: AccessPackageRequestType | null;
|
|
366
365
|
/**
|
|
367
|
-
* The range of dates that access is to be assigned to the requestor. This property can't be changed once set.
|
|
366
|
+
* The range of dates that access is to be assigned to the requestor. This property can't be changed once set, but a new schedule for an assignment can be included in another userUpdate or UserExtend or adminUpdate assignment request.
|
|
368
367
|
*/
|
|
369
368
|
schedule?: EntitlementManagementSchedule | null;
|
|
370
369
|
/**
|
|
@@ -1722,7 +1721,7 @@ export interface ActionResultPart extends AdditionalDataHolder, BackedModel, Par
|
|
|
1722
1721
|
*/
|
|
1723
1722
|
backingStoreEnabled?: boolean | null;
|
|
1724
1723
|
/**
|
|
1725
|
-
* The error that occurred, if any, during the
|
|
1724
|
+
* The error that occurred, if any, during the bulk operation.
|
|
1726
1725
|
*/
|
|
1727
1726
|
errorEscaped?: PublicError | null;
|
|
1728
1727
|
/**
|
|
@@ -1889,7 +1888,7 @@ export interface AdministrativeUnit extends DirectoryObject, Parsable {
|
|
|
1889
1888
|
*/
|
|
1890
1889
|
description?: string | null;
|
|
1891
1890
|
/**
|
|
1892
|
-
* Display name for the administrative unit. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
|
|
1891
|
+
* Display name for the administrative unit. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
|
|
1893
1892
|
*/
|
|
1894
1893
|
displayName?: string | null;
|
|
1895
1894
|
/**
|
|
@@ -1905,15 +1904,15 @@ export interface AdministrativeUnit extends DirectoryObject, Parsable {
|
|
|
1905
1904
|
*/
|
|
1906
1905
|
members?: DirectoryObject[] | null;
|
|
1907
1906
|
/**
|
|
1908
|
-
* The
|
|
1907
|
+
* The dynamic membership rule for the administrative unit. For more information about the rules you can use for dynamic administrative units and dynamic groups, see Manage rules for dynamic membership groups in Microsoft Entra ID.
|
|
1909
1908
|
*/
|
|
1910
1909
|
membershipRule?: string | null;
|
|
1911
1910
|
/**
|
|
1912
|
-
*
|
|
1911
|
+
* Controls whether the dynamic membership rule is actively processed. Set to On to activate the dynamic membership rule, or Paused to stop updating membership dynamically.
|
|
1913
1912
|
*/
|
|
1914
1913
|
membershipRuleProcessingState?: string | null;
|
|
1915
1914
|
/**
|
|
1916
|
-
* The
|
|
1915
|
+
* Indicates the membership type for the administrative unit. The possible values are: dynamic, assigned. If not set, the default value is null and the default behavior is assigned.
|
|
1917
1916
|
*/
|
|
1918
1917
|
membershipType?: string | null;
|
|
1919
1918
|
/**
|
|
@@ -1921,7 +1920,7 @@ export interface AdministrativeUnit extends DirectoryObject, Parsable {
|
|
|
1921
1920
|
*/
|
|
1922
1921
|
scopedRoleMembers?: ScopedRoleMembership[] | null;
|
|
1923
1922
|
/**
|
|
1924
|
-
* Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership. If not set
|
|
1923
|
+
* Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership. If not set, the default value is null and the default behavior is public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit.
|
|
1925
1924
|
*/
|
|
1926
1925
|
visibility?: string | null;
|
|
1927
1926
|
}
|
|
@@ -2436,6 +2435,7 @@ export interface AllDevicesAssignmentTarget extends DeviceAndAppManagementAssign
|
|
|
2436
2435
|
*/
|
|
2437
2436
|
export interface AllLicensedUsersAssignmentTarget extends DeviceAndAppManagementAssignmentTarget, Parsable {
|
|
2438
2437
|
}
|
|
2438
|
+
export type AllowedLobbyAdmitterRoles = (typeof AllowedLobbyAdmitterRolesObject)[keyof typeof AllowedLobbyAdmitterRolesObject];
|
|
2439
2439
|
export type AllowedTargetScope = (typeof AllowedTargetScopeObject)[keyof typeof AllowedTargetScopeObject];
|
|
2440
2440
|
export interface AllowedValue extends Entity, Parsable {
|
|
2441
2441
|
/**
|
|
@@ -3548,7 +3548,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3548
3548
|
*/
|
|
3549
3549
|
disabledByMicrosoftStatus?: string | null;
|
|
3550
3550
|
/**
|
|
3551
|
-
* The display name for the application. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
|
|
3551
|
+
* The display name for the application. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
|
|
3552
3552
|
*/
|
|
3553
3553
|
displayName?: string | null;
|
|
3554
3554
|
/**
|
|
@@ -3608,7 +3608,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3608
3608
|
*/
|
|
3609
3609
|
optionalClaims?: OptionalClaims | null;
|
|
3610
3610
|
/**
|
|
3611
|
-
* Directory objects that are owners of
|
|
3611
|
+
* Directory objects that are owners of this application. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand.
|
|
3612
3612
|
*/
|
|
3613
3613
|
owners?: DirectoryObject[] | null;
|
|
3614
3614
|
/**
|
|
@@ -3791,7 +3791,7 @@ export interface AppliedConditionalAccessPolicy extends AdditionalDataHolder, Ba
|
|
|
3791
3791
|
*/
|
|
3792
3792
|
odataType?: string | null;
|
|
3793
3793
|
/**
|
|
3794
|
-
* Indicates the result of the CA policy that was triggered. Possible values are: success, failure, notApplied (policy isn't applied because policy conditions weren't met), notEnabled (This is due to the policy in a disabled state), unknown, unknownFutureValue, reportOnlySuccess, reportOnlyFailure, reportOnlyNotApplied, reportOnlyInterrupted.
|
|
3794
|
+
* Indicates the result of the CA policy that was triggered. Possible values are: success, failure, notApplied (policy isn't applied because policy conditions weren't met), notEnabled (This is due to the policy in a disabled state), unknown, unknownFutureValue, reportOnlySuccess, reportOnlyFailure, reportOnlyNotApplied, reportOnlyInterrupted. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: reportOnlySuccess, reportOnlyFailure, reportOnlyNotApplied, reportOnlyInterrupted.
|
|
3795
3795
|
*/
|
|
3796
3796
|
result?: AppliedConditionalAccessPolicyResult | null;
|
|
3797
3797
|
}
|
|
@@ -3930,6 +3930,7 @@ export interface AppManagementPolicyCollectionResponse extends BaseCollectionPag
|
|
|
3930
3930
|
*/
|
|
3931
3931
|
value?: AppManagementPolicy[] | null;
|
|
3932
3932
|
}
|
|
3933
|
+
export type AppManagementRestrictionState = (typeof AppManagementRestrictionStateObject)[keyof typeof AppManagementRestrictionStateObject];
|
|
3933
3934
|
export interface AppManagementServicePrincipalConfiguration extends AppManagementConfiguration, Parsable {
|
|
3934
3935
|
}
|
|
3935
3936
|
export interface AppRole extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -3984,7 +3985,7 @@ export interface AppRoleAssignment extends DirectoryObject, Parsable {
|
|
|
3984
3985
|
*/
|
|
3985
3986
|
createdDateTime?: Date | null;
|
|
3986
3987
|
/**
|
|
3987
|
-
* The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith).
|
|
3988
|
+
* The display name of the user, group, or service principal that was granted the app role assignment. Maximum length is 256 characters. Read-only. Supports $filter (eq and startswith).
|
|
3988
3989
|
*/
|
|
3989
3990
|
principalDisplayName?: string | null;
|
|
3990
3991
|
/**
|
|
@@ -3996,7 +3997,7 @@ export interface AppRoleAssignment extends DirectoryObject, Parsable {
|
|
|
3996
3997
|
*/
|
|
3997
3998
|
principalType?: string | null;
|
|
3998
3999
|
/**
|
|
3999
|
-
* The display name of the resource app's service principal to which the assignment is made.
|
|
4000
|
+
* The display name of the resource app's service principal to which the assignment is made. Maximum length is 256 characters.
|
|
4000
4001
|
*/
|
|
4001
4002
|
resourceDisplayName?: string | null;
|
|
4002
4003
|
/**
|
|
@@ -8140,6 +8141,10 @@ export interface CallOptions extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
8140
8141
|
* Indicates whether content sharing notifications should be enabled for the call.
|
|
8141
8142
|
*/
|
|
8142
8143
|
isContentSharingNotificationEnabled?: boolean | null;
|
|
8144
|
+
/**
|
|
8145
|
+
* Indicates whether delta roster is enabled for the call.
|
|
8146
|
+
*/
|
|
8147
|
+
isDeltaRosterEnabled?: boolean | null;
|
|
8143
8148
|
/**
|
|
8144
8149
|
* The OdataType property
|
|
8145
8150
|
*/
|
|
@@ -8442,7 +8447,7 @@ export interface Certification extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
8442
8447
|
*/
|
|
8443
8448
|
isCertifiedByMicrosoft?: boolean | null;
|
|
8444
8449
|
/**
|
|
8445
|
-
* Indicates whether the application
|
|
8450
|
+
* Indicates whether the application developer or publisher completed Publisher Attestation.
|
|
8446
8451
|
*/
|
|
8447
8452
|
isPublisherAttested?: boolean | null;
|
|
8448
8453
|
/**
|
|
@@ -8477,6 +8482,10 @@ export interface CertificationControl extends AdditionalDataHolder, BackedModel,
|
|
|
8477
8482
|
url?: string | null;
|
|
8478
8483
|
}
|
|
8479
8484
|
export interface ChangeTrackedEntity extends Entity, Parsable {
|
|
8485
|
+
/**
|
|
8486
|
+
* Identity of the creator of the entity.
|
|
8487
|
+
*/
|
|
8488
|
+
createdBy?: IdentitySet | null;
|
|
8480
8489
|
/**
|
|
8481
8490
|
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
8482
8491
|
*/
|
|
@@ -8524,7 +8533,7 @@ export interface Channel extends Entity, Parsable {
|
|
|
8524
8533
|
*/
|
|
8525
8534
|
members?: ConversationMember[] | null;
|
|
8526
8535
|
/**
|
|
8527
|
-
* The type of the channel. Can be set during creation and can't be changed. The possible values are: standard, private, unknownFutureValue, shared. The default value is standard.
|
|
8536
|
+
* The type of the channel. Can be set during creation and can't be changed. The possible values are: standard, private, unknownFutureValue, shared. The default value is standard. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: shared.
|
|
8528
8537
|
*/
|
|
8529
8538
|
membershipType?: ChannelMembershipType | null;
|
|
8530
8539
|
/**
|
|
@@ -8710,6 +8719,10 @@ export interface Chat extends Entity, Parsable {
|
|
|
8710
8719
|
* A collection of all the apps in the chat. Nullable.
|
|
8711
8720
|
*/
|
|
8712
8721
|
installedApps?: TeamsAppInstallation[] | null;
|
|
8722
|
+
/**
|
|
8723
|
+
* Indicates whether the chat is hidden for all its members. Read-only.
|
|
8724
|
+
*/
|
|
8725
|
+
isHiddenForAllMembers?: boolean | null;
|
|
8713
8726
|
/**
|
|
8714
8727
|
* Preview of the last message sent in the chat. Null if no messages were sent in the chat. Currently, only the list chats operation supports this property.
|
|
8715
8728
|
*/
|
|
@@ -8855,7 +8868,7 @@ export interface ChatMessage extends Entity, Parsable {
|
|
|
8855
8868
|
*/
|
|
8856
8869
|
locale?: string | null;
|
|
8857
8870
|
/**
|
|
8858
|
-
* List of entities mentioned in the chat message. Supported entities are: user, bot, team, and
|
|
8871
|
+
* List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag.
|
|
8859
8872
|
*/
|
|
8860
8873
|
mentions?: ChatMessageMention[] | null;
|
|
8861
8874
|
/**
|
|
@@ -8910,7 +8923,7 @@ export interface ChatMessageAttachment extends AdditionalDataHolder, BackedModel
|
|
|
8910
8923
|
*/
|
|
8911
8924
|
content?: string | null;
|
|
8912
8925
|
/**
|
|
8913
|
-
* The media type of the content attachment.
|
|
8926
|
+
* The media type of the content attachment. The possible values are: reference: The attachment is a link to another file. Populate the contentURL with the link to the object.forwardedMessageReference: The attachment is a reference to a forwarded message. Populate the content with the original message context.Any contentType that is supported by the Bot Framework's Attachment object.application/vnd.microsoft.card.codesnippet: A code snippet. application/vnd.microsoft.card.announcement: An announcement header.
|
|
8914
8927
|
*/
|
|
8915
8928
|
contentType?: string | null;
|
|
8916
8929
|
/**
|
|
@@ -8918,7 +8931,7 @@ export interface ChatMessageAttachment extends AdditionalDataHolder, BackedModel
|
|
|
8918
8931
|
*/
|
|
8919
8932
|
contentUrl?: string | null;
|
|
8920
8933
|
/**
|
|
8921
|
-
* Read-only. The unique
|
|
8934
|
+
* Read-only. The unique ID of the attachment.
|
|
8922
8935
|
*/
|
|
8923
8936
|
id?: string | null;
|
|
8924
8937
|
/**
|
|
@@ -9021,7 +9034,7 @@ export interface ChatMessageMention extends AdditionalDataHolder, BackedModel, P
|
|
|
9021
9034
|
*/
|
|
9022
9035
|
id?: number | null;
|
|
9023
9036
|
/**
|
|
9024
|
-
* The entity (user, application, team, or
|
|
9037
|
+
* The entity (user, application, team, channel, or chat) that was @mentioned.
|
|
9025
9038
|
*/
|
|
9026
9039
|
mentioned?: ChatMessageMentionedIdentitySet | null;
|
|
9027
9040
|
/**
|
|
@@ -9035,7 +9048,7 @@ export interface ChatMessageMention extends AdditionalDataHolder, BackedModel, P
|
|
|
9035
9048
|
}
|
|
9036
9049
|
export interface ChatMessageMentionedIdentitySet extends IdentitySet, Parsable {
|
|
9037
9050
|
/**
|
|
9038
|
-
* If present, represents a conversation (for example, team or
|
|
9051
|
+
* If present, represents a conversation (for example, team, channel, or chat) @mentioned in a message.
|
|
9039
9052
|
*/
|
|
9040
9053
|
conversation?: TeamworkConversationIdentity | null;
|
|
9041
9054
|
}
|
|
@@ -9112,15 +9125,23 @@ export interface ChatMessageReaction extends AdditionalDataHolder, BackedModel,
|
|
|
9112
9125
|
*/
|
|
9113
9126
|
backingStoreEnabled?: boolean | null;
|
|
9114
9127
|
/**
|
|
9115
|
-
* The
|
|
9128
|
+
* The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
9116
9129
|
*/
|
|
9117
9130
|
createdDateTime?: Date | null;
|
|
9131
|
+
/**
|
|
9132
|
+
* The name of the reaction.
|
|
9133
|
+
*/
|
|
9134
|
+
displayName?: string | null;
|
|
9118
9135
|
/**
|
|
9119
9136
|
* The OdataType property
|
|
9120
9137
|
*/
|
|
9121
9138
|
odataType?: string | null;
|
|
9122
9139
|
/**
|
|
9123
|
-
*
|
|
9140
|
+
* The hosted content URL for the custom reaction type.
|
|
9141
|
+
*/
|
|
9142
|
+
reactionContentUrl?: string | null;
|
|
9143
|
+
/**
|
|
9144
|
+
* The reaction type. Supported values include Unicode characters, custom, and some backward-compatible reaction types, such as like, angry, sad, laugh, heart, and surprised.
|
|
9124
9145
|
*/
|
|
9125
9146
|
reactionType?: string | null;
|
|
9126
9147
|
/**
|
|
@@ -9145,6 +9166,24 @@ export interface ChatRenamedEventMessageDetail extends EventMessageDetail, Parsa
|
|
|
9145
9166
|
*/
|
|
9146
9167
|
initiator?: IdentitySet | null;
|
|
9147
9168
|
}
|
|
9169
|
+
export interface ChatRestrictions extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9170
|
+
/**
|
|
9171
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9172
|
+
*/
|
|
9173
|
+
additionalData?: Record<string, unknown>;
|
|
9174
|
+
/**
|
|
9175
|
+
* Indicates whether only text is allowed in the meeting chat. Optional.
|
|
9176
|
+
*/
|
|
9177
|
+
allowTextOnly?: boolean | null;
|
|
9178
|
+
/**
|
|
9179
|
+
* Stores model information.
|
|
9180
|
+
*/
|
|
9181
|
+
backingStoreEnabled?: boolean | null;
|
|
9182
|
+
/**
|
|
9183
|
+
* The OdataType property
|
|
9184
|
+
*/
|
|
9185
|
+
odataType?: string | null;
|
|
9186
|
+
}
|
|
9148
9187
|
export type ChatType = (typeof ChatTypeObject)[keyof typeof ChatTypeObject];
|
|
9149
9188
|
export interface ChatViewpoint extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9150
9189
|
/**
|
|
@@ -9580,7 +9619,7 @@ export interface CloudPcDeviceImage extends Entity, Parsable {
|
|
|
9580
9619
|
*/
|
|
9581
9620
|
displayName?: string | null;
|
|
9582
9621
|
/**
|
|
9583
|
-
* The error code of the status of the image that indicates why the upload failed, if applicable. Possible values are: internalServerError, sourceImageNotFound, osVersionNotSupported, sourceImageInvalid, sourceImageNotGeneralized, unknownFutureValue, vmAlreadyAzureAdJoined, paidSourceImageNotSupport, sourceImageNotSupportCustomizeVMName, sourceImageSizeExceedsLimitation.
|
|
9622
|
+
* The error code of the status of the image that indicates why the upload failed, if applicable. Possible values are: internalServerError, sourceImageNotFound, osVersionNotSupported, sourceImageInvalid, sourceImageNotGeneralized, unknownFutureValue, vmAlreadyAzureAdJoined, paidSourceImageNotSupport, sourceImageNotSupportCustomizeVMName, sourceImageSizeExceedsLimitation. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: vmAlreadyAzureAdJoined, paidSourceImageNotSupport, sourceImageNotSupportCustomizeVMName, sourceImageSizeExceedsLimitation. Read-only.
|
|
9584
9623
|
*/
|
|
9585
9624
|
errorCode?: CloudPcDeviceImageErrorCode | null;
|
|
9586
9625
|
/**
|
|
@@ -9647,7 +9686,7 @@ export interface CloudPcDomainJoinConfiguration extends AdditionalDataHolder, Ba
|
|
|
9647
9686
|
*/
|
|
9648
9687
|
onPremisesConnectionId?: string | null;
|
|
9649
9688
|
/**
|
|
9650
|
-
* The logical geographic group this region belongs to. Multiple regions can belong to one region group. A customer can select a regionGroup when they provision a Cloud PC, and the Cloud PC is put in one of the regions in the group based on resource status. For example, the Europe region group contains the Northern Europe and Western Europe regions. Possible values are: default, australia, canada, usCentral, usEast, usWest, france, germany, europeUnion, unitedKingdom, japan, asia, india, southAmerica, euap, usGovernment, usGovernmentDOD, unknownFutureValue, norway, switzerland, southKorea.
|
|
9689
|
+
* The logical geographic group this region belongs to. Multiple regions can belong to one region group. A customer can select a regionGroup when they provision a Cloud PC, and the Cloud PC is put in one of the regions in the group based on resource status. For example, the Europe region group contains the Northern Europe and Western Europe regions. Possible values are: default, australia, canada, usCentral, usEast, usWest, france, germany, europeUnion, unitedKingdom, japan, asia, india, southAmerica, euap, usGovernment, usGovernmentDOD, unknownFutureValue, norway, switzerland, southKorea. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: norway, switzerland, southKorea. Read-only.
|
|
9651
9690
|
*/
|
|
9652
9691
|
regionGroup?: CloudPcRegionGroup | null;
|
|
9653
9692
|
/**
|
|
@@ -9881,6 +9920,10 @@ export interface CloudPcProvisioningPolicy extends Entity, Parsable {
|
|
|
9881
9920
|
* A defined collection of provisioning policy assignments. Represents the set of Microsoft 365 groups and security groups in Microsoft Entra ID that have provisioning policy assigned. Returned only on $expand. For an example about how to get the assignments relationship, see Get cloudPcProvisioningPolicy.
|
|
9882
9921
|
*/
|
|
9883
9922
|
assignments?: CloudPcProvisioningPolicyAssignment[] | null;
|
|
9923
|
+
/**
|
|
9924
|
+
* The autopatch property
|
|
9925
|
+
*/
|
|
9926
|
+
autopatch?: CloudPcProvisioningPolicyAutopatch | null;
|
|
9884
9927
|
/**
|
|
9885
9928
|
* The display name of the Cloud PC group that the Cloud PCs reside in. Read-only.
|
|
9886
9929
|
*/
|
|
@@ -9954,6 +9997,24 @@ export interface CloudPcProvisioningPolicyAssignmentCollectionResponse extends B
|
|
|
9954
9997
|
*/
|
|
9955
9998
|
value?: CloudPcProvisioningPolicyAssignment[] | null;
|
|
9956
9999
|
}
|
|
10000
|
+
export interface CloudPcProvisioningPolicyAutopatch extends AdditionalDataHolder, BackedModel, Parsable {
|
|
10001
|
+
/**
|
|
10002
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
10003
|
+
*/
|
|
10004
|
+
additionalData?: Record<string, unknown>;
|
|
10005
|
+
/**
|
|
10006
|
+
* The autopatchGroupId property
|
|
10007
|
+
*/
|
|
10008
|
+
autopatchGroupId?: string | null;
|
|
10009
|
+
/**
|
|
10010
|
+
* Stores model information.
|
|
10011
|
+
*/
|
|
10012
|
+
backingStoreEnabled?: boolean | null;
|
|
10013
|
+
/**
|
|
10014
|
+
* The OdataType property
|
|
10015
|
+
*/
|
|
10016
|
+
odataType?: string | null;
|
|
10017
|
+
}
|
|
9957
10018
|
export interface CloudPcProvisioningPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9958
10019
|
/**
|
|
9959
10020
|
* The value property
|
|
@@ -10652,6 +10713,24 @@ export interface ConditionalAccessApplications extends AdditionalDataHolder, Bac
|
|
|
10652
10713
|
*/
|
|
10653
10714
|
odataType?: string | null;
|
|
10654
10715
|
}
|
|
10716
|
+
export interface ConditionalAccessAuthenticationFlows extends AdditionalDataHolder, BackedModel, Parsable {
|
|
10717
|
+
/**
|
|
10718
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
10719
|
+
*/
|
|
10720
|
+
additionalData?: Record<string, unknown>;
|
|
10721
|
+
/**
|
|
10722
|
+
* Stores model information.
|
|
10723
|
+
*/
|
|
10724
|
+
backingStoreEnabled?: boolean | null;
|
|
10725
|
+
/**
|
|
10726
|
+
* The OdataType property
|
|
10727
|
+
*/
|
|
10728
|
+
odataType?: string | null;
|
|
10729
|
+
/**
|
|
10730
|
+
* The transferMethods property
|
|
10731
|
+
*/
|
|
10732
|
+
transferMethods?: ConditionalAccessTransferMethods[] | null;
|
|
10733
|
+
}
|
|
10655
10734
|
export type ConditionalAccessClientApp = (typeof ConditionalAccessClientAppObject)[keyof typeof ConditionalAccessClientAppObject];
|
|
10656
10735
|
export interface ConditionalAccessClientApplications extends AdditionalDataHolder, BackedModel, Parsable {
|
|
10657
10736
|
/**
|
|
@@ -10675,7 +10754,7 @@ export interface ConditionalAccessClientApplications extends AdditionalDataHolde
|
|
|
10675
10754
|
*/
|
|
10676
10755
|
odataType?: string | null;
|
|
10677
10756
|
/**
|
|
10678
|
-
*
|
|
10757
|
+
* Filter that defines the dynamic-servicePrincipal-syntax rule to include/exclude service principals. A filter can use custom security attributes to include/exclude service principals.
|
|
10679
10758
|
*/
|
|
10680
10759
|
servicePrincipalFilter?: ConditionalAccessFilter | null;
|
|
10681
10760
|
}
|
|
@@ -10688,6 +10767,10 @@ export interface ConditionalAccessConditionSet extends AdditionalDataHolder, Bac
|
|
|
10688
10767
|
* Applications and user actions included in and excluded from the policy. Required.
|
|
10689
10768
|
*/
|
|
10690
10769
|
applications?: ConditionalAccessApplications | null;
|
|
10770
|
+
/**
|
|
10771
|
+
* Authentication flows included in the policy scope.
|
|
10772
|
+
*/
|
|
10773
|
+
authenticationFlows?: ConditionalAccessAuthenticationFlows | null;
|
|
10691
10774
|
/**
|
|
10692
10775
|
* Stores model information.
|
|
10693
10776
|
*/
|
|
@@ -10697,7 +10780,7 @@ export interface ConditionalAccessConditionSet extends AdditionalDataHolder, Bac
|
|
|
10697
10780
|
*/
|
|
10698
10781
|
clientApplications?: ConditionalAccessClientApplications | null;
|
|
10699
10782
|
/**
|
|
10700
|
-
* Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other. Required. The easUnsupported enumeration member will be deprecated in favor of exchangeActiveSync which includes EAS supported and unsupported platforms.
|
|
10783
|
+
* Client application types included in the policy. Possible values are: all, browser, mobileAppsAndDesktopClients, exchangeActiveSync, easSupported, other. Required. The easUnsupported enumeration member will be deprecated in favor of exchangeActiveSync, which includes EAS supported and unsupported platforms.
|
|
10701
10784
|
*/
|
|
10702
10785
|
clientAppTypes?: ConditionalAccessClientApp[] | null;
|
|
10703
10786
|
/**
|
|
@@ -11076,6 +11159,7 @@ export interface ConditionalAccessTemplateCollectionResponse extends BaseCollect
|
|
|
11076
11159
|
*/
|
|
11077
11160
|
value?: ConditionalAccessTemplate[] | null;
|
|
11078
11161
|
}
|
|
11162
|
+
export type ConditionalAccessTransferMethods = (typeof ConditionalAccessTransferMethodsObject)[keyof typeof ConditionalAccessTransferMethodsObject];
|
|
11079
11163
|
export interface ConditionalAccessUsers extends AdditionalDataHolder, BackedModel, Parsable {
|
|
11080
11164
|
/**
|
|
11081
11165
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -11172,6 +11256,7 @@ export interface ConfigurationManagerCollectionAssignmentTarget extends DeviceAn
|
|
|
11172
11256
|
*/
|
|
11173
11257
|
collectionId?: string | null;
|
|
11174
11258
|
}
|
|
11259
|
+
export type ConfirmedBy = (typeof ConfirmedByObject)[keyof typeof ConfirmedByObject];
|
|
11175
11260
|
export interface ConnectedOrganization extends Entity, Parsable {
|
|
11176
11261
|
/**
|
|
11177
11262
|
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
|
|
@@ -11722,7 +11807,7 @@ export interface ConversationMember extends Entity, Parsable {
|
|
|
11722
11807
|
*/
|
|
11723
11808
|
displayName?: string | null;
|
|
11724
11809
|
/**
|
|
11725
|
-
* The roles for that user. This property contains
|
|
11810
|
+
* The roles for that user. This property contains more qualifiers only when relevant - for example, if the member has owner privileges, the roles property contains owner as one of the values. Similarly, if the member is an in-tenant guest, the roles property contains guest as one of the values. A basic member shouldn't have any values specified in the roles property. An Out-of-tenant external member is assigned the owner role.
|
|
11726
11811
|
*/
|
|
11727
11812
|
roles?: string[] | null;
|
|
11728
11813
|
/**
|
|
@@ -14310,6 +14395,12 @@ export declare function createChatMessageReactionIdentitySetFromDiscriminatorVal
|
|
|
14310
14395
|
* @returns {ChatRenamedEventMessageDetail}
|
|
14311
14396
|
*/
|
|
14312
14397
|
export declare function createChatRenamedEventMessageDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14398
|
+
/**
|
|
14399
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14400
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14401
|
+
* @returns {ChatRestrictions}
|
|
14402
|
+
*/
|
|
14403
|
+
export declare function createChatRestrictionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14313
14404
|
/**
|
|
14314
14405
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14315
14406
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14514,6 +14605,12 @@ export declare function createCloudPcProvisioningPolicyAssignmentCollectionRespo
|
|
|
14514
14605
|
* @returns {CloudPcProvisioningPolicyAssignment}
|
|
14515
14606
|
*/
|
|
14516
14607
|
export declare function createCloudPcProvisioningPolicyAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14608
|
+
/**
|
|
14609
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14610
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14611
|
+
* @returns {CloudPcProvisioningPolicyAutopatch}
|
|
14612
|
+
*/
|
|
14613
|
+
export declare function createCloudPcProvisioningPolicyAutopatchFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14517
14614
|
/**
|
|
14518
14615
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14519
14616
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14736,6 +14833,12 @@ export declare function createConditionalAccessAllExternalTenantsFromDiscriminat
|
|
|
14736
14833
|
* @returns {ConditionalAccessApplications}
|
|
14737
14834
|
*/
|
|
14738
14835
|
export declare function createConditionalAccessApplicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14836
|
+
/**
|
|
14837
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14838
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14839
|
+
* @returns {ConditionalAccessAuthenticationFlows}
|
|
14840
|
+
*/
|
|
14841
|
+
export declare function createConditionalAccessAuthenticationFlowsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14739
14842
|
/**
|
|
14740
14843
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14741
14844
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15270,6 +15373,18 @@ export declare function createDateTimeTimeZoneFromDiscriminatorValue(parseNode:
|
|
|
15270
15373
|
* @returns {DaylightTimeZoneOffset}
|
|
15271
15374
|
*/
|
|
15272
15375
|
export declare function createDaylightTimeZoneOffsetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15376
|
+
/**
|
|
15377
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15378
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15379
|
+
* @returns {DayNoteCollectionResponse}
|
|
15380
|
+
*/
|
|
15381
|
+
export declare function createDayNoteCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15382
|
+
/**
|
|
15383
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15384
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15385
|
+
* @returns {DayNote}
|
|
15386
|
+
*/
|
|
15387
|
+
export declare function createDayNoteFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15273
15388
|
/**
|
|
15274
15389
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15275
15390
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17100,6 +17215,12 @@ export declare function createFileStorageContainerCustomPropertyDictionaryFromDi
|
|
|
17100
17215
|
* @returns {FileStorageContainer}
|
|
17101
17216
|
*/
|
|
17102
17217
|
export declare function createFileStorageContainerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17218
|
+
/**
|
|
17219
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17220
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17221
|
+
* @returns {FileStorageContainerSettings}
|
|
17222
|
+
*/
|
|
17223
|
+
export declare function createFileStorageContainerSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17103
17224
|
/**
|
|
17104
17225
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17105
17226
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21006,6 +21127,30 @@ export declare function createRecurrencePatternFromDiscriminatorValue(parseNode:
|
|
|
21006
21127
|
* @returns {RecurrenceRange}
|
|
21007
21128
|
*/
|
|
21008
21129
|
export declare function createRecurrenceRangeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21130
|
+
/**
|
|
21131
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21132
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21133
|
+
* @returns {RecycleBin}
|
|
21134
|
+
*/
|
|
21135
|
+
export declare function createRecycleBinFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21136
|
+
/**
|
|
21137
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21138
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21139
|
+
* @returns {RecycleBinItemCollectionResponse}
|
|
21140
|
+
*/
|
|
21141
|
+
export declare function createRecycleBinItemCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21142
|
+
/**
|
|
21143
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21144
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21145
|
+
* @returns {RecycleBinItem}
|
|
21146
|
+
*/
|
|
21147
|
+
export declare function createRecycleBinItemFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21148
|
+
/**
|
|
21149
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21150
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21151
|
+
* @returns {RecycleBinSettings}
|
|
21152
|
+
*/
|
|
21153
|
+
export declare function createRecycleBinSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21009
21154
|
/**
|
|
21010
21155
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21011
21156
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23304,6 +23449,42 @@ export declare function createThumbnailSetFromDiscriminatorValue(parseNode: Pars
|
|
|
23304
23449
|
* @returns {TicketInfo}
|
|
23305
23450
|
*/
|
|
23306
23451
|
export declare function createTicketInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23452
|
+
/**
|
|
23453
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23454
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23455
|
+
* @returns {TimeCardBreak}
|
|
23456
|
+
*/
|
|
23457
|
+
export declare function createTimeCardBreakFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23458
|
+
/**
|
|
23459
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23460
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23461
|
+
* @returns {TimeCardCollectionResponse}
|
|
23462
|
+
*/
|
|
23463
|
+
export declare function createTimeCardCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23464
|
+
/**
|
|
23465
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23466
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23467
|
+
* @returns {TimeCardEntry}
|
|
23468
|
+
*/
|
|
23469
|
+
export declare function createTimeCardEntryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23470
|
+
/**
|
|
23471
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23472
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23473
|
+
* @returns {TimeCardEvent}
|
|
23474
|
+
*/
|
|
23475
|
+
export declare function createTimeCardEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23476
|
+
/**
|
|
23477
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23478
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23479
|
+
* @returns {TimeCard}
|
|
23480
|
+
*/
|
|
23481
|
+
export declare function createTimeCardFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23482
|
+
/**
|
|
23483
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23484
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23485
|
+
* @returns {TimeClockSettings}
|
|
23486
|
+
*/
|
|
23487
|
+
export declare function createTimeClockSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23307
23488
|
/**
|
|
23308
23489
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
23309
23490
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -24384,6 +24565,18 @@ export declare function createVirtualEndpointFromDiscriminatorValue(parseNode: P
|
|
|
24384
24565
|
* @returns {VirtualEventCollectionResponse}
|
|
24385
24566
|
*/
|
|
24386
24567
|
export declare function createVirtualEventCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24568
|
+
/**
|
|
24569
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
24570
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
24571
|
+
* @returns {VirtualEventExternalInformation}
|
|
24572
|
+
*/
|
|
24573
|
+
export declare function createVirtualEventExternalInformationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24574
|
+
/**
|
|
24575
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
24576
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
24577
|
+
* @returns {VirtualEventExternalRegistrationInformation}
|
|
24578
|
+
*/
|
|
24579
|
+
export declare function createVirtualEventExternalRegistrationInformationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24387
24580
|
/**
|
|
24388
24581
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
24389
24582
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -24606,6 +24799,12 @@ export declare function createWebsiteFromDiscriminatorValue(parseNode: ParseNode
|
|
|
24606
24799
|
* @returns {Win32LobAppAssignmentSettings}
|
|
24607
24800
|
*/
|
|
24608
24801
|
export declare function createWin32LobAppAssignmentSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24802
|
+
/**
|
|
24803
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
24804
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
24805
|
+
* @returns {Win32LobAppAutoUpdateSettings}
|
|
24806
|
+
*/
|
|
24807
|
+
export declare function createWin32LobAppAutoUpdateSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
24609
24808
|
/**
|
|
24610
24809
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
24611
24810
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -25554,6 +25753,12 @@ export declare function createX509CertificateAuthenticationModeConfigurationFrom
|
|
|
25554
25753
|
* @returns {X509CertificateCombinationConfiguration}
|
|
25555
25754
|
*/
|
|
25556
25755
|
export declare function createX509CertificateCombinationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25756
|
+
/**
|
|
25757
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
25758
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
25759
|
+
* @returns {X509CertificateCRLValidationConfiguration}
|
|
25760
|
+
*/
|
|
25761
|
+
export declare function createX509CertificateCRLValidationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
25557
25762
|
/**
|
|
25558
25763
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
25559
25764
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -26259,6 +26464,26 @@ export interface DaylightTimeZoneOffset extends Parsable, StandardTimeZoneOffset
|
|
|
26259
26464
|
*/
|
|
26260
26465
|
daylightBias?: number | null;
|
|
26261
26466
|
}
|
|
26467
|
+
export interface DayNote extends ChangeTrackedEntity, Parsable {
|
|
26468
|
+
/**
|
|
26469
|
+
* The date of the day note.
|
|
26470
|
+
*/
|
|
26471
|
+
dayNoteDate?: DateOnly | null;
|
|
26472
|
+
/**
|
|
26473
|
+
* The draft version of this day note that is viewable by managers. Only contentType text is supported.
|
|
26474
|
+
*/
|
|
26475
|
+
draftDayNote?: ItemBody | null;
|
|
26476
|
+
/**
|
|
26477
|
+
* The shared version of this day note that is viewable by both employees and managers. Only contentType text is supported.
|
|
26478
|
+
*/
|
|
26479
|
+
sharedDayNote?: ItemBody | null;
|
|
26480
|
+
}
|
|
26481
|
+
export interface DayNoteCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
26482
|
+
/**
|
|
26483
|
+
* The value property
|
|
26484
|
+
*/
|
|
26485
|
+
value?: DayNote[] | null;
|
|
26486
|
+
}
|
|
26262
26487
|
export type DayOfWeek = (typeof DayOfWeekObject)[keyof typeof DayOfWeekObject];
|
|
26263
26488
|
export interface DefaultColumnValue extends AdditionalDataHolder, BackedModel, Parsable {
|
|
26264
26489
|
/**
|
|
@@ -28747,6 +28972,11 @@ export declare function deserializeIntoChatMessageReactionIdentitySet(chatMessag
|
|
|
28747
28972
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28748
28973
|
*/
|
|
28749
28974
|
export declare function deserializeIntoChatRenamedEventMessageDetail(chatRenamedEventMessageDetail?: Partial<ChatRenamedEventMessageDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28975
|
+
/**
|
|
28976
|
+
* The deserialization information for the current model
|
|
28977
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28978
|
+
*/
|
|
28979
|
+
export declare function deserializeIntoChatRestrictions(chatRestrictions?: Partial<ChatRestrictions> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28750
28980
|
/**
|
|
28751
28981
|
* The deserialization information for the current model
|
|
28752
28982
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -28922,6 +29152,11 @@ export declare function deserializeIntoCloudPcProvisioningPolicyAssignment(cloud
|
|
|
28922
29152
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28923
29153
|
*/
|
|
28924
29154
|
export declare function deserializeIntoCloudPcProvisioningPolicyAssignmentCollectionResponse(cloudPcProvisioningPolicyAssignmentCollectionResponse?: Partial<CloudPcProvisioningPolicyAssignmentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29155
|
+
/**
|
|
29156
|
+
* The deserialization information for the current model
|
|
29157
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29158
|
+
*/
|
|
29159
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyAutopatch(cloudPcProvisioningPolicyAutopatch?: Partial<CloudPcProvisioningPolicyAutopatch> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28925
29160
|
/**
|
|
28926
29161
|
* The deserialization information for the current model
|
|
28927
29162
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29102,6 +29337,11 @@ export declare function deserializeIntoConditionalAccessAllExternalTenants(condi
|
|
|
29102
29337
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29103
29338
|
*/
|
|
29104
29339
|
export declare function deserializeIntoConditionalAccessApplications(conditionalAccessApplications?: Partial<ConditionalAccessApplications> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29340
|
+
/**
|
|
29341
|
+
* The deserialization information for the current model
|
|
29342
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29343
|
+
*/
|
|
29344
|
+
export declare function deserializeIntoConditionalAccessAuthenticationFlows(conditionalAccessAuthenticationFlows?: Partial<ConditionalAccessAuthenticationFlows> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29105
29345
|
/**
|
|
29106
29346
|
* The deserialization information for the current model
|
|
29107
29347
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29547,6 +29787,16 @@ export declare function deserializeIntoDateTimeTimeZone(dateTimeTimeZone?: Parti
|
|
|
29547
29787
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29548
29788
|
*/
|
|
29549
29789
|
export declare function deserializeIntoDaylightTimeZoneOffset(daylightTimeZoneOffset?: Partial<DaylightTimeZoneOffset> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29790
|
+
/**
|
|
29791
|
+
* The deserialization information for the current model
|
|
29792
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29793
|
+
*/
|
|
29794
|
+
export declare function deserializeIntoDayNote(dayNote?: Partial<DayNote> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29795
|
+
/**
|
|
29796
|
+
* The deserialization information for the current model
|
|
29797
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29798
|
+
*/
|
|
29799
|
+
export declare function deserializeIntoDayNoteCollectionResponse(dayNoteCollectionResponse?: Partial<DayNoteCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29550
29800
|
/**
|
|
29551
29801
|
* The deserialization information for the current model
|
|
29552
29802
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31077,6 +31327,11 @@ export declare function deserializeIntoFileStorageContainerCollectionResponse(fi
|
|
|
31077
31327
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31078
31328
|
*/
|
|
31079
31329
|
export declare function deserializeIntoFileStorageContainerCustomPropertyDictionary(fileStorageContainerCustomPropertyDictionary?: Partial<FileStorageContainerCustomPropertyDictionary> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31330
|
+
/**
|
|
31331
|
+
* The deserialization information for the current model
|
|
31332
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31333
|
+
*/
|
|
31334
|
+
export declare function deserializeIntoFileStorageContainerSettings(fileStorageContainerSettings?: Partial<FileStorageContainerSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31080
31335
|
/**
|
|
31081
31336
|
* The deserialization information for the current model
|
|
31082
31337
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -34327,6 +34582,26 @@ export declare function deserializeIntoRecurrencePattern(recurrencePattern?: Par
|
|
|
34327
34582
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34328
34583
|
*/
|
|
34329
34584
|
export declare function deserializeIntoRecurrenceRange(recurrenceRange?: Partial<RecurrenceRange> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34585
|
+
/**
|
|
34586
|
+
* The deserialization information for the current model
|
|
34587
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34588
|
+
*/
|
|
34589
|
+
export declare function deserializeIntoRecycleBin(recycleBin?: Partial<RecycleBin> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34590
|
+
/**
|
|
34591
|
+
* The deserialization information for the current model
|
|
34592
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34593
|
+
*/
|
|
34594
|
+
export declare function deserializeIntoRecycleBinItem(recycleBinItem?: Partial<RecycleBinItem> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34595
|
+
/**
|
|
34596
|
+
* The deserialization information for the current model
|
|
34597
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34598
|
+
*/
|
|
34599
|
+
export declare function deserializeIntoRecycleBinItemCollectionResponse(recycleBinItemCollectionResponse?: Partial<RecycleBinItemCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34600
|
+
/**
|
|
34601
|
+
* The deserialization information for the current model
|
|
34602
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34603
|
+
*/
|
|
34604
|
+
export declare function deserializeIntoRecycleBinSettings(recycleBinSettings?: Partial<RecycleBinSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34330
34605
|
/**
|
|
34331
34606
|
* The deserialization information for the current model
|
|
34332
34607
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -36242,6 +36517,36 @@ export declare function deserializeIntoThumbnailSetCollectionResponse(thumbnailS
|
|
|
36242
36517
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36243
36518
|
*/
|
|
36244
36519
|
export declare function deserializeIntoTicketInfo(ticketInfo?: Partial<TicketInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36520
|
+
/**
|
|
36521
|
+
* The deserialization information for the current model
|
|
36522
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36523
|
+
*/
|
|
36524
|
+
export declare function deserializeIntoTimeCard(timeCard?: Partial<TimeCard> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36525
|
+
/**
|
|
36526
|
+
* The deserialization information for the current model
|
|
36527
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36528
|
+
*/
|
|
36529
|
+
export declare function deserializeIntoTimeCardBreak(timeCardBreak?: Partial<TimeCardBreak> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36530
|
+
/**
|
|
36531
|
+
* The deserialization information for the current model
|
|
36532
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36533
|
+
*/
|
|
36534
|
+
export declare function deserializeIntoTimeCardCollectionResponse(timeCardCollectionResponse?: Partial<TimeCardCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36535
|
+
/**
|
|
36536
|
+
* The deserialization information for the current model
|
|
36537
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36538
|
+
*/
|
|
36539
|
+
export declare function deserializeIntoTimeCardEntry(timeCardEntry?: Partial<TimeCardEntry> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36540
|
+
/**
|
|
36541
|
+
* The deserialization information for the current model
|
|
36542
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36543
|
+
*/
|
|
36544
|
+
export declare function deserializeIntoTimeCardEvent(timeCardEvent?: Partial<TimeCardEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36545
|
+
/**
|
|
36546
|
+
* The deserialization information for the current model
|
|
36547
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
36548
|
+
*/
|
|
36549
|
+
export declare function deserializeIntoTimeClockSettings(timeClockSettings?: Partial<TimeClockSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
36245
36550
|
/**
|
|
36246
36551
|
* The deserialization information for the current model
|
|
36247
36552
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -37147,6 +37452,16 @@ export declare function deserializeIntoVirtualEvent(virtualEvent?: Partial<Virtu
|
|
|
37147
37452
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37148
37453
|
*/
|
|
37149
37454
|
export declare function deserializeIntoVirtualEventCollectionResponse(virtualEventCollectionResponse?: Partial<VirtualEventCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37455
|
+
/**
|
|
37456
|
+
* The deserialization information for the current model
|
|
37457
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37458
|
+
*/
|
|
37459
|
+
export declare function deserializeIntoVirtualEventExternalInformation(virtualEventExternalInformation?: Partial<VirtualEventExternalInformation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37460
|
+
/**
|
|
37461
|
+
* The deserialization information for the current model
|
|
37462
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37463
|
+
*/
|
|
37464
|
+
export declare function deserializeIntoVirtualEventExternalRegistrationInformation(virtualEventExternalRegistrationInformation?: Partial<VirtualEventExternalRegistrationInformation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37150
37465
|
/**
|
|
37151
37466
|
* The deserialization information for the current model
|
|
37152
37467
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -37332,6 +37647,11 @@ export declare function deserializeIntoWin32LobApp(win32LobApp?: Partial<Win32Lo
|
|
|
37332
37647
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37333
37648
|
*/
|
|
37334
37649
|
export declare function deserializeIntoWin32LobAppAssignmentSettings(win32LobAppAssignmentSettings?: Partial<Win32LobAppAssignmentSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37650
|
+
/**
|
|
37651
|
+
* The deserialization information for the current model
|
|
37652
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
37653
|
+
*/
|
|
37654
|
+
export declare function deserializeIntoWin32LobAppAutoUpdateSettings(win32LobAppAutoUpdateSettings?: Partial<Win32LobAppAutoUpdateSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
37335
37655
|
/**
|
|
37336
37656
|
* The deserialization information for the current model
|
|
37337
37657
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -38117,6 +38437,11 @@ export declare function deserializeIntoX509CertificateAuthenticationModeConfigur
|
|
|
38117
38437
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38118
38438
|
*/
|
|
38119
38439
|
export declare function deserializeIntoX509CertificateCombinationConfiguration(x509CertificateCombinationConfiguration?: Partial<X509CertificateCombinationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38440
|
+
/**
|
|
38441
|
+
* The deserialization information for the current model
|
|
38442
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
38443
|
+
*/
|
|
38444
|
+
export declare function deserializeIntoX509CertificateCRLValidationConfiguration(x509CertificateCRLValidationConfiguration?: Partial<X509CertificateCRLValidationConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
38120
38445
|
/**
|
|
38121
38446
|
* The deserialization information for the current model
|
|
38122
38447
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -38220,7 +38545,7 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
38220
38545
|
*/
|
|
38221
38546
|
deviceVersion?: number | null;
|
|
38222
38547
|
/**
|
|
38223
|
-
* The display name for the device. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
|
|
38548
|
+
* The display name for the device. Maximum length is 256 characters. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby.
|
|
38224
38549
|
*/
|
|
38225
38550
|
displayName?: string | null;
|
|
38226
38551
|
/**
|
|
@@ -39140,6 +39465,9 @@ export interface DeviceConfigurationDeviceStateSummary extends Entity, Parsable
|
|
|
39140
39465
|
*/
|
|
39141
39466
|
unknownDeviceCount?: number | null;
|
|
39142
39467
|
}
|
|
39468
|
+
/**
|
|
39469
|
+
* Support for this Entity is being deprecated starting May 2026 & will no longer be supported.
|
|
39470
|
+
*/
|
|
39143
39471
|
export interface DeviceConfigurationDeviceStatus extends Entity, Parsable {
|
|
39144
39472
|
/**
|
|
39145
39473
|
* The DateTime when device compliance grace period expires
|
|
@@ -39242,7 +39570,7 @@ export interface DeviceConfigurationSettingState extends AdditionalDataHolder, B
|
|
|
39242
39570
|
userPrincipalName?: string | null;
|
|
39243
39571
|
}
|
|
39244
39572
|
/**
|
|
39245
|
-
*
|
|
39573
|
+
* Support for this Entity is being deprecated starting May 2026 & will no longer be supported.
|
|
39246
39574
|
*/
|
|
39247
39575
|
export interface DeviceConfigurationState extends Entity, Parsable {
|
|
39248
39576
|
/**
|
|
@@ -39459,7 +39787,7 @@ export interface DeviceEnrollmentPlatformRestriction extends AdditionalDataHolde
|
|
|
39459
39787
|
platformBlocked?: boolean | null;
|
|
39460
39788
|
}
|
|
39461
39789
|
/**
|
|
39462
|
-
* Device Enrollment Configuration that restricts the types of devices a user can enroll
|
|
39790
|
+
* Default Device Enrollment Platform Restrictions Configuration that restricts the types of devices a user can enroll
|
|
39463
39791
|
*/
|
|
39464
39792
|
export interface DeviceEnrollmentPlatformRestrictionsConfiguration extends DeviceEnrollmentConfiguration, Parsable {
|
|
39465
39793
|
/**
|
|
@@ -39893,9 +40221,6 @@ export interface DeviceLogCollectionResponseCollectionResponse extends BaseColle
|
|
|
39893
40221
|
*/
|
|
39894
40222
|
value?: DeviceLogCollectionResponse[] | null;
|
|
39895
40223
|
}
|
|
39896
|
-
/**
|
|
39897
|
-
* Singleton entity that acts as a container for all device management functionality.
|
|
39898
|
-
*/
|
|
39899
40224
|
export interface DeviceManagement extends Entity, Parsable {
|
|
39900
40225
|
/**
|
|
39901
40226
|
* Apple push notification certificate.
|
|
@@ -40228,7 +40553,7 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
|
40228
40553
|
*/
|
|
40229
40554
|
filter?: string | null;
|
|
40230
40555
|
/**
|
|
40231
|
-
* Possible values for the file format of a report.
|
|
40556
|
+
* Possible values for the file format of a report to be exported.
|
|
40232
40557
|
*/
|
|
40233
40558
|
format?: DeviceManagementReportFileFormat | null;
|
|
40234
40559
|
/**
|
|
@@ -40999,7 +41324,7 @@ export interface Domain extends Entity, Parsable {
|
|
|
40999
41324
|
*/
|
|
41000
41325
|
passwordValidityPeriodInDays?: number | null;
|
|
41001
41326
|
/**
|
|
41002
|
-
*
|
|
41327
|
+
* Root domain of a subdomain. Read-only, Nullable. Supports $expand.
|
|
41003
41328
|
*/
|
|
41004
41329
|
rootDomain?: Domain | null;
|
|
41005
41330
|
/**
|
|
@@ -41149,7 +41474,7 @@ export interface Drive extends BaseItem, Parsable {
|
|
|
41149
41474
|
*/
|
|
41150
41475
|
bundles?: DriveItem[] | null;
|
|
41151
41476
|
/**
|
|
41152
|
-
* Describes the type of drive represented by this resource. OneDrive personal drives
|
|
41477
|
+
* Describes the type of drive represented by this resource. OneDrive personal drives return personal. OneDrive for Business returns business. SharePoint document libraries return documentLibrary. Read-only.
|
|
41153
41478
|
*/
|
|
41154
41479
|
driveType?: string | null;
|
|
41155
41480
|
/**
|
|
@@ -41185,7 +41510,7 @@ export interface Drive extends BaseItem, Parsable {
|
|
|
41185
41510
|
*/
|
|
41186
41511
|
special?: DriveItem[] | null;
|
|
41187
41512
|
/**
|
|
41188
|
-
* If present, indicates that
|
|
41513
|
+
* If present, indicates that it's a system-managed drive. Read-only.
|
|
41189
41514
|
*/
|
|
41190
41515
|
system?: SystemFacet | null;
|
|
41191
41516
|
}
|
|
@@ -41592,7 +41917,7 @@ export interface EducationAssignment extends Entity, Parsable {
|
|
|
41592
41917
|
*/
|
|
41593
41918
|
addedStudentAction?: EducationAddedStudentAction | null;
|
|
41594
41919
|
/**
|
|
41595
|
-
* Optional field to control the assignment behavior for adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly.
|
|
41920
|
+
* Optional field to control the assignment behavior for adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: studentsOnly. The default value is none.
|
|
41596
41921
|
*/
|
|
41597
41922
|
addToCalendarAction?: EducationAddToCalendarOptions | null;
|
|
41598
41923
|
/**
|
|
@@ -41688,7 +42013,7 @@ export interface EducationAssignment extends Entity, Parsable {
|
|
|
41688
42013
|
*/
|
|
41689
42014
|
rubric?: EducationRubric | null;
|
|
41690
42015
|
/**
|
|
41691
|
-
* Status of the assignment. You can't PATCH this value. Possible values are: draft, scheduled, published, assigned, unknownFutureValue, inactive.
|
|
42016
|
+
* Status of the assignment. You can't PATCH this value. Possible values are: draft, scheduled, published, assigned, unknownFutureValue, inactive. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: inactive.
|
|
41692
42017
|
*/
|
|
41693
42018
|
status?: EducationAssignmentStatus | null;
|
|
41694
42019
|
/**
|
|
@@ -41714,7 +42039,7 @@ export interface EducationAssignmentDefaults extends Entity, Parsable {
|
|
|
41714
42039
|
*/
|
|
41715
42040
|
addedStudentAction?: EducationAddedStudentAction | null;
|
|
41716
42041
|
/**
|
|
41717
|
-
* Optional field to control adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly.
|
|
42042
|
+
* Optional field to control adding assignments to students' and teachers' calendars when the assignment is published. The possible values are: none, studentsAndPublisher, studentsAndTeamOwners, unknownFutureValue, and studentsOnly. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: studentsOnly. The default value is none.
|
|
41718
42043
|
*/
|
|
41719
42044
|
addToCalendarAction?: EducationAddToCalendarOptions | null;
|
|
41720
42045
|
/**
|
|
@@ -42489,7 +42814,7 @@ export interface EducationSubmission extends Entity, Parsable {
|
|
|
42489
42814
|
*/
|
|
42490
42815
|
returnedDateTime?: Date | null;
|
|
42491
42816
|
/**
|
|
42492
|
-
* Read-only. Possible values are: excused, reassigned, returned, submitted and working.
|
|
42817
|
+
* Read-only. Possible values are: excused, reassigned, returned, submitted and working. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: excused and reassigned.
|
|
42493
42818
|
*/
|
|
42494
42819
|
status?: EducationSubmissionStatus | null;
|
|
42495
42820
|
/**
|
|
@@ -42797,6 +43122,7 @@ export interface EducationWordResource extends EducationResource, Parsable {
|
|
|
42797
43122
|
*/
|
|
42798
43123
|
fileUrl?: string | null;
|
|
42799
43124
|
}
|
|
43125
|
+
export type EligibilityFilteringEnabledEntities = (typeof EligibilityFilteringEnabledEntitiesObject)[keyof typeof EligibilityFilteringEnabledEntitiesObject];
|
|
42800
43126
|
export interface EmailAddress extends AdditionalDataHolder, BackedModel, Parsable {
|
|
42801
43127
|
/**
|
|
42802
43128
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -43510,7 +43836,7 @@ export interface EventMessage extends Message, Parsable {
|
|
|
43510
43836
|
*/
|
|
43511
43837
|
endDateTime?: DateTimeTimeZone | null;
|
|
43512
43838
|
/**
|
|
43513
|
-
* The event associated with the event message. The assumption for attendees or room resources is that the Calendar Attendant is set to automatically update the calendar with an event when meeting request event messages arrive. Navigation property.
|
|
43839
|
+
* The event associated with the event message. The assumption for attendees or room resources is that the Calendar Attendant is set to automatically update the calendar with an event when meeting request event messages arrive. Navigation property. Read-only.
|
|
43514
43840
|
*/
|
|
43515
43841
|
event?: Event | null;
|
|
43516
43842
|
/**
|
|
@@ -44170,6 +44496,10 @@ export interface FileStorage extends Entity, Parsable {
|
|
|
44170
44496
|
* The containers property
|
|
44171
44497
|
*/
|
|
44172
44498
|
containers?: FileStorageContainer[] | null;
|
|
44499
|
+
/**
|
|
44500
|
+
* The deletedContainers property
|
|
44501
|
+
*/
|
|
44502
|
+
deletedContainers?: FileStorageContainer[] | null;
|
|
44173
44503
|
}
|
|
44174
44504
|
export interface FileStorageContainer extends Entity, Parsable {
|
|
44175
44505
|
/**
|
|
@@ -44196,10 +44526,22 @@ export interface FileStorageContainer extends Entity, Parsable {
|
|
|
44196
44526
|
* The drive of the resource fileStorageContainer. Read-only.
|
|
44197
44527
|
*/
|
|
44198
44528
|
drive?: Drive | null;
|
|
44529
|
+
/**
|
|
44530
|
+
* Indicates the lock state of the fileStorageContainer. The possible values are unlocked and lockedReadOnly. Read-only.
|
|
44531
|
+
*/
|
|
44532
|
+
lockState?: SiteLockState | null;
|
|
44199
44533
|
/**
|
|
44200
44534
|
* The set of permissions for users in the fileStorageContainer. Permission for each user is set by the roles property. The possible values are: reader, writer, manager, and owner. Read-write.
|
|
44201
44535
|
*/
|
|
44202
44536
|
permissions?: Permission[] | null;
|
|
44537
|
+
/**
|
|
44538
|
+
* Recycle bin of the fileStorageContainer. Read-only.
|
|
44539
|
+
*/
|
|
44540
|
+
recycleBin?: RecycleBin | null;
|
|
44541
|
+
/**
|
|
44542
|
+
* The settings property
|
|
44543
|
+
*/
|
|
44544
|
+
settings?: FileStorageContainerSettings | null;
|
|
44203
44545
|
/**
|
|
44204
44546
|
* Status of the fileStorageContainer. Containers are created as inactive and require activation. Inactive containers are subjected to automatic deletion in 24 hours. The possible values are: inactive, active. Read-only.
|
|
44205
44547
|
*/
|
|
@@ -44217,6 +44559,32 @@ export interface FileStorageContainerCollectionResponse extends BaseCollectionPa
|
|
|
44217
44559
|
}
|
|
44218
44560
|
export interface FileStorageContainerCustomPropertyDictionary extends Dictionary, Parsable {
|
|
44219
44561
|
}
|
|
44562
|
+
export interface FileStorageContainerSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
44563
|
+
/**
|
|
44564
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
44565
|
+
*/
|
|
44566
|
+
additionalData?: Record<string, unknown>;
|
|
44567
|
+
/**
|
|
44568
|
+
* Stores model information.
|
|
44569
|
+
*/
|
|
44570
|
+
backingStoreEnabled?: boolean | null;
|
|
44571
|
+
/**
|
|
44572
|
+
* Indicates whether versioning is enabled for items in the container. Optional. Read-write.
|
|
44573
|
+
*/
|
|
44574
|
+
isItemVersioningEnabled?: boolean | null;
|
|
44575
|
+
/**
|
|
44576
|
+
* Indicates whether Optical Character Recognition (OCR) is enabled for the container. The default value is false. When set to true, OCR extraction is performed for new and updated documents of supported document types, and the extracted fields in the metadata of the document enable end-user search and search-driven solutions. When set to false, existing OCR metadata is not impacted. Optional. Read-write.
|
|
44577
|
+
*/
|
|
44578
|
+
isOcrEnabled?: boolean | null;
|
|
44579
|
+
/**
|
|
44580
|
+
* The maximum major versions allowed for items in the container. Optional. Read-write.
|
|
44581
|
+
*/
|
|
44582
|
+
itemMajorVersionLimit?: number | null;
|
|
44583
|
+
/**
|
|
44584
|
+
* The OdataType property
|
|
44585
|
+
*/
|
|
44586
|
+
odataType?: string | null;
|
|
44587
|
+
}
|
|
44220
44588
|
export type FileStorageContainerStatus = (typeof FileStorageContainerStatusObject)[keyof typeof FileStorageContainerStatusObject];
|
|
44221
44589
|
export interface FileStorageContainerViewpoint extends AdditionalDataHolder, BackedModel, Parsable {
|
|
44222
44590
|
/**
|
|
@@ -45853,6 +46221,10 @@ export interface InternalDomainFederation extends Parsable, SamlOrWsFedProvider
|
|
|
45853
46221
|
* Fallback token signing certificate that can also be used to sign tokens, for example when the primary signing certificate expires. Formatted as Base64 encoded strings of the public portion of the federated IdP's token signing certificate. Needs to be compatible with the X509Certificate2 class. Much like the signingCertificate, the nextSigningCertificate property is used if a rollover is required outside of the auto-rollover update, a new federation service is being set up, or if the new token signing certificate isn't present in the federation properties after the federation service certificate has been updated.
|
|
45854
46222
|
*/
|
|
45855
46223
|
nextSigningCertificate?: string | null;
|
|
46224
|
+
/**
|
|
46225
|
+
* The passwordResetUri property
|
|
46226
|
+
*/
|
|
46227
|
+
passwordResetUri?: string | null;
|
|
45856
46228
|
/**
|
|
45857
46229
|
* Sets the preferred behavior for the sign-in prompt. The possible values are: translateToFreshPasswordAuthentication, nativeSupport, disabled, unknownFutureValue.
|
|
45858
46230
|
*/
|
|
@@ -46120,7 +46492,7 @@ export interface InvitedUserMessageInfo extends AdditionalDataHolder, BackedMode
|
|
|
46120
46492
|
*/
|
|
46121
46493
|
ccRecipients?: Recipient[] | null;
|
|
46122
46494
|
/**
|
|
46123
|
-
* Customized message body you want to send if you don't want the default message.
|
|
46495
|
+
* Customized message body you want to send if you don't want the default message. Only plain text is allowed.
|
|
46124
46496
|
*/
|
|
46125
46497
|
customizedMessageBody?: string | null;
|
|
46126
46498
|
/**
|
|
@@ -47771,7 +48143,7 @@ export interface KeyCredentialConfiguration extends AdditionalDataHolder, Backed
|
|
|
47771
48143
|
*/
|
|
47772
48144
|
backingStoreEnabled?: boolean | null;
|
|
47773
48145
|
/**
|
|
47774
|
-
*
|
|
48146
|
+
* String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to keyLifetime.
|
|
47775
48147
|
*/
|
|
47776
48148
|
maxLifetime?: Duration | null;
|
|
47777
48149
|
/**
|
|
@@ -47779,13 +48151,17 @@ export interface KeyCredentialConfiguration extends AdditionalDataHolder, Backed
|
|
|
47779
48151
|
*/
|
|
47780
48152
|
odataType?: string | null;
|
|
47781
48153
|
/**
|
|
47782
|
-
*
|
|
48154
|
+
* Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied.
|
|
47783
48155
|
*/
|
|
47784
48156
|
restrictForAppsCreatedAfterDateTime?: Date | null;
|
|
47785
48157
|
/**
|
|
47786
|
-
* The type of restriction being applied. Possible values are asymmetricKeyLifetime, unknownFutureValue. Each value of restrictionType can be used only once per policy.
|
|
48158
|
+
* The type of restriction being applied. Possible values are asymmetricKeyLifetime, and unknownFutureValue. Each value of restrictionType can be used only once per policy.
|
|
47787
48159
|
*/
|
|
47788
48160
|
restrictionType?: AppKeyCredentialRestrictionType | null;
|
|
48161
|
+
/**
|
|
48162
|
+
* The state property
|
|
48163
|
+
*/
|
|
48164
|
+
state?: AppManagementRestrictionState | null;
|
|
47789
48165
|
}
|
|
47790
48166
|
export interface KeyValue extends AdditionalDataHolder, BackedModel, Parsable {
|
|
47791
48167
|
/**
|
|
@@ -50912,6 +51288,7 @@ export interface MeetingInfo extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
50912
51288
|
*/
|
|
50913
51289
|
odataType?: string | null;
|
|
50914
51290
|
}
|
|
51291
|
+
export type MeetingLiveShareOptions = (typeof MeetingLiveShareOptionsObject)[keyof typeof MeetingLiveShareOptionsObject];
|
|
50915
51292
|
export type MeetingMessageType = (typeof MeetingMessageTypeObject)[keyof typeof MeetingMessageTypeObject];
|
|
50916
51293
|
export interface MeetingParticipantInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50917
51294
|
/**
|
|
@@ -52954,7 +53331,7 @@ export interface OmaSettingStringXml extends OmaSetting, Parsable {
|
|
|
52954
53331
|
}
|
|
52955
53332
|
export interface OnAttributeCollectionExternalUsersSelfServiceSignUp extends OnAttributeCollectionHandler, Parsable {
|
|
52956
53333
|
/**
|
|
52957
|
-
* Required. The configuration for how attributes are displayed in the sign
|
|
53334
|
+
* Required. The configuration for how attributes are displayed in the sign-up experience defined by a user flow, like the externalUsersSelfServiceSignupEventsFlow, specifically on the attribute collection page.
|
|
52958
53335
|
*/
|
|
52959
53336
|
attributeCollectionPage?: AuthenticationAttributeCollectionPage | null;
|
|
52960
53337
|
/**
|
|
@@ -53004,7 +53381,7 @@ export interface OnAuthenticationMethodLoadStartHandler extends AdditionalDataHo
|
|
|
53004
53381
|
}
|
|
53005
53382
|
export interface OnAuthenticationMethodLoadStartListener extends AuthenticationEventListener, Parsable {
|
|
53006
53383
|
/**
|
|
53007
|
-
* Required. Configuration for what to invoke if the event resolves to this listener. This lets us define potential handler configurations per-event.
|
|
53384
|
+
* Required. Configuration for what to invoke if the event resolves to this listener. This property lets us define potential handler configurations per-event.
|
|
53008
53385
|
*/
|
|
53009
53386
|
handler?: OnAuthenticationMethodLoadStartHandler | null;
|
|
53010
53387
|
}
|
|
@@ -53363,6 +53740,10 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
|
53363
53740
|
* Indicates whether this meeting is a Teams live event.
|
|
53364
53741
|
*/
|
|
53365
53742
|
isBroadcast?: boolean | null;
|
|
53743
|
+
/**
|
|
53744
|
+
* The ID of the meeting template.
|
|
53745
|
+
*/
|
|
53746
|
+
meetingTemplateId?: string | null;
|
|
53366
53747
|
/**
|
|
53367
53748
|
* The participants associated with the online meeting, including the organizer and the attendees.
|
|
53368
53749
|
*/
|
|
@@ -53389,10 +53770,22 @@ export interface OnlineMeetingBase extends Entity, Parsable {
|
|
|
53389
53770
|
* Indicates whether attendees can turn on their microphone.
|
|
53390
53771
|
*/
|
|
53391
53772
|
allowAttendeeToEnableMic?: boolean | null;
|
|
53773
|
+
/**
|
|
53774
|
+
* Indicates whether breakout rooms are enabled for the meeting.
|
|
53775
|
+
*/
|
|
53776
|
+
allowBreakoutRooms?: boolean | null;
|
|
53777
|
+
/**
|
|
53778
|
+
* Specifies the users who can admit from the lobby. Possible values are: organizerAndCoOrganizersAndPresenters, organizerAndCoOrganizers, unknownFutureValue.
|
|
53779
|
+
*/
|
|
53780
|
+
allowedLobbyAdmitters?: AllowedLobbyAdmitterRoles | null;
|
|
53392
53781
|
/**
|
|
53393
53782
|
* Specifies who can be a presenter in a meeting.
|
|
53394
53783
|
*/
|
|
53395
53784
|
allowedPresenters?: OnlineMeetingPresenters | null;
|
|
53785
|
+
/**
|
|
53786
|
+
* Indicates whether live share is enabled for the meeting. Possible values are: enabled, disabled, unknownFutureValue.
|
|
53787
|
+
*/
|
|
53788
|
+
allowLiveShare?: MeetingLiveShareOptions | null;
|
|
53396
53789
|
/**
|
|
53397
53790
|
* Specifies the mode of the meeting chat.
|
|
53398
53791
|
*/
|
|
@@ -53401,10 +53794,26 @@ export interface OnlineMeetingBase extends Entity, Parsable {
|
|
|
53401
53794
|
* Specifies if participants are allowed to rename themselves in an instance of the meeting.
|
|
53402
53795
|
*/
|
|
53403
53796
|
allowParticipantsToChangeName?: boolean | null;
|
|
53797
|
+
/**
|
|
53798
|
+
* Indicates whether PowerPoint live is enabled for the meeting.
|
|
53799
|
+
*/
|
|
53800
|
+
allowPowerPointSharing?: boolean | null;
|
|
53801
|
+
/**
|
|
53802
|
+
* Indicates whether recording is enabled for the meeting.
|
|
53803
|
+
*/
|
|
53804
|
+
allowRecording?: boolean | null;
|
|
53404
53805
|
/**
|
|
53405
53806
|
* Indicates if Teams reactions are enabled for the meeting.
|
|
53406
53807
|
*/
|
|
53407
53808
|
allowTeamworkReactions?: boolean | null;
|
|
53809
|
+
/**
|
|
53810
|
+
* Indicates whether transcription is enabled for the meeting.
|
|
53811
|
+
*/
|
|
53812
|
+
allowTranscription?: boolean | null;
|
|
53813
|
+
/**
|
|
53814
|
+
* Indicates whether whiteboard is enabled for the meeting.
|
|
53815
|
+
*/
|
|
53816
|
+
allowWhiteboard?: boolean | null;
|
|
53408
53817
|
/**
|
|
53409
53818
|
* The attendance reports of an online meeting. Read-only.
|
|
53410
53819
|
*/
|
|
@@ -53417,6 +53826,10 @@ export interface OnlineMeetingBase extends Entity, Parsable {
|
|
|
53417
53826
|
* The chat information associated with this online meeting.
|
|
53418
53827
|
*/
|
|
53419
53828
|
chatInfo?: ChatInfo | null;
|
|
53829
|
+
/**
|
|
53830
|
+
* Specifies the configuration settings for meeting chat restrictions.
|
|
53831
|
+
*/
|
|
53832
|
+
chatRestrictions?: ChatRestrictions | null;
|
|
53420
53833
|
/**
|
|
53421
53834
|
* Indicates whether to announce when callers join or leave.
|
|
53422
53835
|
*/
|
|
@@ -53883,15 +54296,19 @@ export interface OnUserCreateStartListener extends AuthenticationEventListener,
|
|
|
53883
54296
|
}
|
|
53884
54297
|
export interface OpenShift extends ChangeTrackedEntity, Parsable {
|
|
53885
54298
|
/**
|
|
53886
|
-
*
|
|
54299
|
+
* Draft changes in the openShift are only visible to managers until they're shared.
|
|
53887
54300
|
*/
|
|
53888
54301
|
draftOpenShift?: OpenShiftItem | null;
|
|
53889
54302
|
/**
|
|
53890
|
-
*
|
|
54303
|
+
* The openShift is marked for deletion, a process that is finalized when the schedule is shared.
|
|
54304
|
+
*/
|
|
54305
|
+
isStagedForDeletion?: boolean | null;
|
|
54306
|
+
/**
|
|
54307
|
+
* The ID of the schedulingGroup that contains the openShift.
|
|
53891
54308
|
*/
|
|
53892
54309
|
schedulingGroupId?: string | null;
|
|
53893
54310
|
/**
|
|
53894
|
-
*
|
|
54311
|
+
* The shared version of this openShift that is viewable by both employees and managers.
|
|
53895
54312
|
*/
|
|
53896
54313
|
sharedOpenShift?: OpenShiftItem | null;
|
|
53897
54314
|
}
|
|
@@ -54300,7 +54717,7 @@ export interface OrgContact extends DirectoryObject, Parsable {
|
|
|
54300
54717
|
*/
|
|
54301
54718
|
directReports?: DirectoryObject[] | null;
|
|
54302
54719
|
/**
|
|
54303
|
-
* Display name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values), $search, and $orderby.
|
|
54720
|
+
* Display name for this organizational contact. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values), $search, and $orderby.
|
|
54304
54721
|
*/
|
|
54305
54722
|
displayName?: string | null;
|
|
54306
54723
|
/**
|
|
@@ -54785,7 +55202,7 @@ export interface PasswordCredentialConfiguration extends AdditionalDataHolder, B
|
|
|
54785
55202
|
*/
|
|
54786
55203
|
backingStoreEnabled?: boolean | null;
|
|
54787
55204
|
/**
|
|
54788
|
-
*
|
|
55205
|
+
* String value that indicates the maximum lifetime for password expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to passwordLifetime.
|
|
54789
55206
|
*/
|
|
54790
55207
|
maxLifetime?: Duration | null;
|
|
54791
55208
|
/**
|
|
@@ -54793,13 +55210,17 @@ export interface PasswordCredentialConfiguration extends AdditionalDataHolder, B
|
|
|
54793
55210
|
*/
|
|
54794
55211
|
odataType?: string | null;
|
|
54795
55212
|
/**
|
|
54796
|
-
*
|
|
55213
|
+
* Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied.
|
|
54797
55214
|
*/
|
|
54798
55215
|
restrictForAppsCreatedAfterDateTime?: Date | null;
|
|
54799
55216
|
/**
|
|
54800
|
-
* The type of restriction being applied. The possible values are: passwordAddition, passwordLifetime, symmetricKeyAddition, symmetricKeyLifetime,customPasswordAddition, unknownFutureValue. Each value of restrictionType can be used only once per policy.
|
|
55217
|
+
* The type of restriction being applied. The possible values are: passwordAddition, passwordLifetime, symmetricKeyAddition, symmetricKeyLifetime, customPasswordAddition, and unknownFutureValue. Each value of restrictionType can be used only once per policy.
|
|
54801
55218
|
*/
|
|
54802
55219
|
restrictionType?: AppCredentialRestrictionType | null;
|
|
55220
|
+
/**
|
|
55221
|
+
* The state property
|
|
55222
|
+
*/
|
|
55223
|
+
state?: AppManagementRestrictionState | null;
|
|
54803
55224
|
}
|
|
54804
55225
|
export interface PasswordProfile extends AdditionalDataHolder, BackedModel, Parsable {
|
|
54805
55226
|
/**
|
|
@@ -54949,7 +55370,7 @@ export interface Payload extends Entity, Parsable {
|
|
|
54949
55370
|
*/
|
|
54950
55371
|
status?: SimulationContentStatus | null;
|
|
54951
55372
|
/**
|
|
54952
|
-
* The social engineering technique used in the attack simulation and training campaign. Supports $filter and $orderby. Possible values are: unknown, credentialHarvesting, attachmentMalware, driveByUrl, linkInAttachment, linkToMalwareFile, unknownFutureValue, oAuthConsentGrant.
|
|
55373
|
+
* The social engineering technique used in the attack simulation and training campaign. Supports $filter and $orderby. Possible values are: unknown, credentialHarvesting, attachmentMalware, driveByUrl, linkInAttachment, linkToMalwareFile, unknownFutureValue, oAuthConsentGrant. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: oAuthConsentGrant. For more information on the types of social engineering attack techniques, see simulations.
|
|
54953
55374
|
*/
|
|
54954
55375
|
technique?: SimulationAttackTechnique | null;
|
|
54955
55376
|
/**
|
|
@@ -55927,7 +56348,7 @@ export interface PlannerPlanContainer extends AdditionalDataHolder, BackedModel,
|
|
|
55927
56348
|
*/
|
|
55928
56349
|
odataType?: string | null;
|
|
55929
56350
|
/**
|
|
55930
|
-
* The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: group, unknownFutureValue, roster.
|
|
56351
|
+
* The type of the resource that contains the plan. For supported types, see the previous table. Possible values are: group, unknownFutureValue, roster. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: roster. Optional.
|
|
55931
56352
|
*/
|
|
55932
56353
|
type?: PlannerContainerType | null;
|
|
55933
56354
|
/**
|
|
@@ -57944,7 +58365,7 @@ export interface ProtectionRuleBase extends Entity, Parsable {
|
|
|
57944
58365
|
*/
|
|
57945
58366
|
lastModifiedDateTime?: Date | null;
|
|
57946
58367
|
/**
|
|
57947
|
-
* The status of the protection rule. The possible values are: draft, active, completed, completedWithErrors, unknownFutureValue.
|
|
58368
|
+
* The status of the protection rule. The possible values are: draft, active, completed, completedWithErrors, unknownFutureValue. The draft member is currently unsupported.
|
|
57948
58369
|
*/
|
|
57949
58370
|
status?: ProtectionRuleStatus | null;
|
|
57950
58371
|
}
|
|
@@ -58024,7 +58445,7 @@ export interface ProvisionedPlan extends AdditionalDataHolder, BackedModel, Pars
|
|
|
58024
58445
|
*/
|
|
58025
58446
|
backingStoreEnabled?: boolean | null;
|
|
58026
58447
|
/**
|
|
58027
|
-
*
|
|
58448
|
+
* Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value.
|
|
58028
58449
|
*/
|
|
58029
58450
|
capabilityStatus?: string | null;
|
|
58030
58451
|
/**
|
|
@@ -58032,11 +58453,11 @@ export interface ProvisionedPlan extends AdditionalDataHolder, BackedModel, Pars
|
|
|
58032
58453
|
*/
|
|
58033
58454
|
odataType?: string | null;
|
|
58034
58455
|
/**
|
|
58035
|
-
*
|
|
58456
|
+
* The possible values are:Success - Service is fully provisioned.Disabled - Service is disabled.Error - The service plan isn't provisioned and is in an error state.PendingInput - The service isn't provisioned and is awaiting service confirmation.PendingActivation - The service is provisioned but requires explicit activation by an administrator (for example, Intune_O365 service plan)PendingProvisioning - Microsoft has added a new service to the product SKU and it isn't activated in the tenant.
|
|
58036
58457
|
*/
|
|
58037
58458
|
provisioningStatus?: string | null;
|
|
58038
58459
|
/**
|
|
58039
|
-
* The name of the service; for example, 'AccessControlS2S'
|
|
58460
|
+
* The name of the service; for example, 'AccessControlS2S'.
|
|
58040
58461
|
*/
|
|
58041
58462
|
service?: string | null;
|
|
58042
58463
|
}
|
|
@@ -58392,7 +58813,7 @@ export interface Quota extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
58392
58813
|
*/
|
|
58393
58814
|
odataType?: string | null;
|
|
58394
58815
|
/**
|
|
58395
|
-
* Total space remaining before reaching the
|
|
58816
|
+
* Total space remaining before reaching the capacity limit, in bytes. Read-only.
|
|
58396
58817
|
*/
|
|
58397
58818
|
remaining?: number | null;
|
|
58398
58819
|
/**
|
|
@@ -58703,6 +59124,54 @@ export interface RecurrenceRange extends AdditionalDataHolder, BackedModel, Pars
|
|
|
58703
59124
|
type?: RecurrenceRangeType | null;
|
|
58704
59125
|
}
|
|
58705
59126
|
export type RecurrenceRangeType = (typeof RecurrenceRangeTypeObject)[keyof typeof RecurrenceRangeTypeObject];
|
|
59127
|
+
export interface RecycleBin extends BaseItem, Parsable {
|
|
59128
|
+
/**
|
|
59129
|
+
* List of the recycleBinItems deleted by a user.
|
|
59130
|
+
*/
|
|
59131
|
+
items?: RecycleBinItem[] | null;
|
|
59132
|
+
/**
|
|
59133
|
+
* The settings property
|
|
59134
|
+
*/
|
|
59135
|
+
settings?: RecycleBinSettings | null;
|
|
59136
|
+
}
|
|
59137
|
+
export interface RecycleBinItem extends BaseItem, Parsable {
|
|
59138
|
+
/**
|
|
59139
|
+
* Date and time when the item was deleted. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
59140
|
+
*/
|
|
59141
|
+
deletedDateTime?: Date | null;
|
|
59142
|
+
/**
|
|
59143
|
+
* Relative URL of the list or folder that originally contained the item.
|
|
59144
|
+
*/
|
|
59145
|
+
deletedFromLocation?: string | null;
|
|
59146
|
+
/**
|
|
59147
|
+
* Size of the item in bytes.
|
|
59148
|
+
*/
|
|
59149
|
+
size?: number | null;
|
|
59150
|
+
}
|
|
59151
|
+
export interface RecycleBinItemCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
59152
|
+
/**
|
|
59153
|
+
* The value property
|
|
59154
|
+
*/
|
|
59155
|
+
value?: RecycleBinItem[] | null;
|
|
59156
|
+
}
|
|
59157
|
+
export interface RecycleBinSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
59158
|
+
/**
|
|
59159
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
59160
|
+
*/
|
|
59161
|
+
additionalData?: Record<string, unknown>;
|
|
59162
|
+
/**
|
|
59163
|
+
* Stores model information.
|
|
59164
|
+
*/
|
|
59165
|
+
backingStoreEnabled?: boolean | null;
|
|
59166
|
+
/**
|
|
59167
|
+
* The OdataType property
|
|
59168
|
+
*/
|
|
59169
|
+
odataType?: string | null;
|
|
59170
|
+
/**
|
|
59171
|
+
* Recycle bin retention period override in days for deleted content. The default value is 93; the value range is 7 to 180. The setting applies to newly deleted content only. Setting this property to null reverts to its default value. Read-write.
|
|
59172
|
+
*/
|
|
59173
|
+
retentionPeriodOverrideDays?: number | null;
|
|
59174
|
+
}
|
|
58706
59175
|
export interface RedirectUriSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
58707
59176
|
/**
|
|
58708
59177
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -59684,7 +60153,7 @@ export interface RestoreSessionBase extends Entity, Parsable {
|
|
|
59684
60153
|
*/
|
|
59685
60154
|
lastModifiedDateTime?: Date | null;
|
|
59686
60155
|
/**
|
|
59687
|
-
* Status of the restore session. The value is an aggregated status of the restored artifacts. The possible values are: draft, activating, active, completedWithError, completed, unknownFutureValue, failed.
|
|
60156
|
+
* Status of the restore session. The value is an aggregated status of the restored artifacts. The possible values are: draft, activating, active, completedWithError, completed, unknownFutureValue, failed. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: failed.
|
|
59688
60157
|
*/
|
|
59689
60158
|
status?: RestoreSessionStatus | null;
|
|
59690
60159
|
}
|
|
@@ -59900,7 +60369,7 @@ export interface RiskDetection extends Entity, Parsable {
|
|
|
59900
60369
|
*/
|
|
59901
60370
|
requestId?: string | null;
|
|
59902
60371
|
/**
|
|
59903
|
-
* Details of the detected risk. The possible values are: none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, m365DAdminDismissedDetection.
|
|
60372
|
+
* Details of the detected risk. The possible values are: none, adminGeneratedTemporaryPassword, userChangedPasswordOnPremises, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, m365DAdminDismissedDetection. Use the Prefer: include - unknown -enum-members request header to get the following value(s) in this evolvable enum: m365DAdminDismissedDetection.
|
|
59904
60373
|
*/
|
|
59905
60374
|
riskDetail?: RiskDetail | null;
|
|
59906
60375
|
/**
|
|
@@ -59955,7 +60424,7 @@ export interface RiskServicePrincipalActivity extends AdditionalDataHolder, Back
|
|
|
59955
60424
|
*/
|
|
59956
60425
|
backingStoreEnabled?: boolean | null;
|
|
59957
60426
|
/**
|
|
59958
|
-
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal.
|
|
60427
|
+
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: adminConfirmedServicePrincipalCompromised , adminDismissedAllRiskForServicePrincipal.
|
|
59959
60428
|
*/
|
|
59960
60429
|
detail?: RiskDetail | null;
|
|
59961
60430
|
/**
|
|
@@ -60012,7 +60481,7 @@ export interface RiskyServicePrincipal extends Entity, Parsable {
|
|
|
60012
60481
|
*/
|
|
60013
60482
|
isProcessing?: boolean | null;
|
|
60014
60483
|
/**
|
|
60015
|
-
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal.
|
|
60484
|
+
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: adminConfirmedServicePrincipalCompromised , adminDismissedAllRiskForServicePrincipal.
|
|
60016
60485
|
*/
|
|
60017
60486
|
riskDetail?: RiskDetail | null;
|
|
60018
60487
|
/**
|
|
@@ -60068,7 +60537,7 @@ export interface RiskyUser extends Entity, Parsable {
|
|
|
60068
60537
|
*/
|
|
60069
60538
|
isProcessing?: boolean | null;
|
|
60070
60539
|
/**
|
|
60071
|
-
* The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe.
|
|
60540
|
+
* The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe. Use the Prefer: include-unknown-enum-members request header to get the following value or values in this evolvable enum: adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe.
|
|
60072
60541
|
*/
|
|
60073
60542
|
riskDetail?: RiskDetail | null;
|
|
60074
60543
|
/**
|
|
@@ -60495,10 +60964,18 @@ export interface SamlSingleSignOnSettings extends AdditionalDataHolder, BackedMo
|
|
|
60495
60964
|
relayState?: string | null;
|
|
60496
60965
|
}
|
|
60497
60966
|
export interface Schedule extends Entity, Parsable {
|
|
60967
|
+
/**
|
|
60968
|
+
* The day notes in the schedule.
|
|
60969
|
+
*/
|
|
60970
|
+
dayNotes?: DayNote[] | null;
|
|
60498
60971
|
/**
|
|
60499
60972
|
* Indicates whether the schedule is enabled for the team. Required.
|
|
60500
60973
|
*/
|
|
60501
60974
|
enabled?: boolean | null;
|
|
60975
|
+
/**
|
|
60976
|
+
* Indicates whether copied shifts include activities from the original shift.
|
|
60977
|
+
*/
|
|
60978
|
+
isActivitiesIncludedWhenCopyingShiftsEnabled?: boolean | null;
|
|
60502
60979
|
/**
|
|
60503
60980
|
* The offer requests for shifts in the schedule.
|
|
60504
60981
|
*/
|
|
@@ -60535,6 +61012,10 @@ export interface Schedule extends Entity, Parsable {
|
|
|
60535
61012
|
* The shifts in the schedule.
|
|
60536
61013
|
*/
|
|
60537
61014
|
shifts?: Shift[] | null;
|
|
61015
|
+
/**
|
|
61016
|
+
* Indicates the start day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
|
|
61017
|
+
*/
|
|
61018
|
+
startDayOfWeek?: DayOfWeek | null;
|
|
60538
61019
|
/**
|
|
60539
61020
|
* The swap requests for shifts in the schedule.
|
|
60540
61021
|
*/
|
|
@@ -60543,10 +61024,18 @@ export interface Schedule extends Entity, Parsable {
|
|
|
60543
61024
|
* Indicates whether swap shifts requests are enabled for the schedule.
|
|
60544
61025
|
*/
|
|
60545
61026
|
swapShiftsRequestsEnabled?: boolean | null;
|
|
61027
|
+
/**
|
|
61028
|
+
* The time cards in the schedule.
|
|
61029
|
+
*/
|
|
61030
|
+
timeCards?: TimeCard[] | null;
|
|
60546
61031
|
/**
|
|
60547
61032
|
* Indicates whether time clock is enabled for the schedule.
|
|
60548
61033
|
*/
|
|
60549
61034
|
timeClockEnabled?: boolean | null;
|
|
61035
|
+
/**
|
|
61036
|
+
* The time clock location settings for this schedule.
|
|
61037
|
+
*/
|
|
61038
|
+
timeClockSettings?: TimeClockSettings | null;
|
|
60550
61039
|
/**
|
|
60551
61040
|
* The set of reasons for a time off in the schedule.
|
|
60552
61041
|
*/
|
|
@@ -60568,7 +61057,7 @@ export interface Schedule extends Entity, Parsable {
|
|
|
60568
61057
|
*/
|
|
60569
61058
|
timeZone?: string | null;
|
|
60570
61059
|
/**
|
|
60571
|
-
* The
|
|
61060
|
+
* The IDs for the workforce integrations associated with this schedule.
|
|
60572
61061
|
*/
|
|
60573
61062
|
workforceIntegrationIds?: string[] | null;
|
|
60574
61063
|
}
|
|
@@ -60709,6 +61198,10 @@ export interface ScheduleItem extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
60709
61198
|
}
|
|
60710
61199
|
export type ScheduleRequestActions = (typeof ScheduleRequestActionsObject)[keyof typeof ScheduleRequestActionsObject];
|
|
60711
61200
|
export interface SchedulingGroup extends ChangeTrackedEntity, Parsable {
|
|
61201
|
+
/**
|
|
61202
|
+
* The code for the schedulingGroup to represent an external identifier. This field must be unique within the team in Microsoft Teams and uses an alphanumeric format, with a maximum of 100 characters.
|
|
61203
|
+
*/
|
|
61204
|
+
code?: string | null;
|
|
60712
61205
|
/**
|
|
60713
61206
|
* The display name for the schedulingGroup. Required.
|
|
60714
61207
|
*/
|
|
@@ -61045,7 +61538,7 @@ export interface SearchRequest extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
61045
61538
|
*/
|
|
61046
61539
|
enableTopResults?: boolean | null;
|
|
61047
61540
|
/**
|
|
61048
|
-
* One or more types of resources expected in the response. Possible values are: event, message, driveItem, externalItem, site, list, listItem, drive, chatMessage, person, acronym, bookmark.
|
|
61541
|
+
* One or more types of resources expected in the response. Possible values are: event, message, driveItem, externalItem, site, list, listItem, drive, chatMessage, person, acronym, bookmark. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: chatMessage, person, acronym, bookmark. See known limitations for those combinations of two or more entity types that are supported in the same search request. Required.
|
|
61049
61542
|
*/
|
|
61050
61543
|
entityTypes?: EntityType[] | null;
|
|
61051
61544
|
/**
|
|
@@ -63572,6 +64065,11 @@ export declare function serializeChatMessageReactionIdentitySet(writer: Serializ
|
|
|
63572
64065
|
* @param writer Serialization writer to use to serialize this model
|
|
63573
64066
|
*/
|
|
63574
64067
|
export declare function serializeChatRenamedEventMessageDetail(writer: SerializationWriter, chatRenamedEventMessageDetail?: Partial<ChatRenamedEventMessageDetail> | undefined | null): void;
|
|
64068
|
+
/**
|
|
64069
|
+
* Serializes information the current object
|
|
64070
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64071
|
+
*/
|
|
64072
|
+
export declare function serializeChatRestrictions(writer: SerializationWriter, chatRestrictions?: Partial<ChatRestrictions> | undefined | null): void;
|
|
63575
64073
|
/**
|
|
63576
64074
|
* Serializes information the current object
|
|
63577
64075
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63747,6 +64245,11 @@ export declare function serializeCloudPcProvisioningPolicyAssignment(writer: Ser
|
|
|
63747
64245
|
* @param writer Serialization writer to use to serialize this model
|
|
63748
64246
|
*/
|
|
63749
64247
|
export declare function serializeCloudPcProvisioningPolicyAssignmentCollectionResponse(writer: SerializationWriter, cloudPcProvisioningPolicyAssignmentCollectionResponse?: Partial<CloudPcProvisioningPolicyAssignmentCollectionResponse> | undefined | null): void;
|
|
64248
|
+
/**
|
|
64249
|
+
* Serializes information the current object
|
|
64250
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64251
|
+
*/
|
|
64252
|
+
export declare function serializeCloudPcProvisioningPolicyAutopatch(writer: SerializationWriter, cloudPcProvisioningPolicyAutopatch?: Partial<CloudPcProvisioningPolicyAutopatch> | undefined | null): void;
|
|
63750
64253
|
/**
|
|
63751
64254
|
* Serializes information the current object
|
|
63752
64255
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63927,6 +64430,11 @@ export declare function serializeConditionalAccessAllExternalTenants(writer: Ser
|
|
|
63927
64430
|
* @param writer Serialization writer to use to serialize this model
|
|
63928
64431
|
*/
|
|
63929
64432
|
export declare function serializeConditionalAccessApplications(writer: SerializationWriter, conditionalAccessApplications?: Partial<ConditionalAccessApplications> | undefined | null): void;
|
|
64433
|
+
/**
|
|
64434
|
+
* Serializes information the current object
|
|
64435
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64436
|
+
*/
|
|
64437
|
+
export declare function serializeConditionalAccessAuthenticationFlows(writer: SerializationWriter, conditionalAccessAuthenticationFlows?: Partial<ConditionalAccessAuthenticationFlows> | undefined | null): void;
|
|
63930
64438
|
/**
|
|
63931
64439
|
* Serializes information the current object
|
|
63932
64440
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64372,6 +64880,16 @@ export declare function serializeDateTimeTimeZone(writer: SerializationWriter, d
|
|
|
64372
64880
|
* @param writer Serialization writer to use to serialize this model
|
|
64373
64881
|
*/
|
|
64374
64882
|
export declare function serializeDaylightTimeZoneOffset(writer: SerializationWriter, daylightTimeZoneOffset?: Partial<DaylightTimeZoneOffset> | undefined | null): void;
|
|
64883
|
+
/**
|
|
64884
|
+
* Serializes information the current object
|
|
64885
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64886
|
+
*/
|
|
64887
|
+
export declare function serializeDayNote(writer: SerializationWriter, dayNote?: Partial<DayNote> | undefined | null): void;
|
|
64888
|
+
/**
|
|
64889
|
+
* Serializes information the current object
|
|
64890
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64891
|
+
*/
|
|
64892
|
+
export declare function serializeDayNoteCollectionResponse(writer: SerializationWriter, dayNoteCollectionResponse?: Partial<DayNoteCollectionResponse> | undefined | null): void;
|
|
64375
64893
|
/**
|
|
64376
64894
|
* Serializes information the current object
|
|
64377
64895
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65902,6 +66420,11 @@ export declare function serializeFileStorageContainerCollectionResponse(writer:
|
|
|
65902
66420
|
* @param writer Serialization writer to use to serialize this model
|
|
65903
66421
|
*/
|
|
65904
66422
|
export declare function serializeFileStorageContainerCustomPropertyDictionary(writer: SerializationWriter, fileStorageContainerCustomPropertyDictionary?: Partial<FileStorageContainerCustomPropertyDictionary> | undefined | null): void;
|
|
66423
|
+
/**
|
|
66424
|
+
* Serializes information the current object
|
|
66425
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66426
|
+
*/
|
|
66427
|
+
export declare function serializeFileStorageContainerSettings(writer: SerializationWriter, fileStorageContainerSettings?: Partial<FileStorageContainerSettings> | undefined | null): void;
|
|
65905
66428
|
/**
|
|
65906
66429
|
* Serializes information the current object
|
|
65907
66430
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -69152,6 +69675,26 @@ export declare function serializeRecurrencePattern(writer: SerializationWriter,
|
|
|
69152
69675
|
* @param writer Serialization writer to use to serialize this model
|
|
69153
69676
|
*/
|
|
69154
69677
|
export declare function serializeRecurrenceRange(writer: SerializationWriter, recurrenceRange?: Partial<RecurrenceRange> | undefined | null): void;
|
|
69678
|
+
/**
|
|
69679
|
+
* Serializes information the current object
|
|
69680
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69681
|
+
*/
|
|
69682
|
+
export declare function serializeRecycleBin(writer: SerializationWriter, recycleBin?: Partial<RecycleBin> | undefined | null): void;
|
|
69683
|
+
/**
|
|
69684
|
+
* Serializes information the current object
|
|
69685
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69686
|
+
*/
|
|
69687
|
+
export declare function serializeRecycleBinItem(writer: SerializationWriter, recycleBinItem?: Partial<RecycleBinItem> | undefined | null): void;
|
|
69688
|
+
/**
|
|
69689
|
+
* Serializes information the current object
|
|
69690
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69691
|
+
*/
|
|
69692
|
+
export declare function serializeRecycleBinItemCollectionResponse(writer: SerializationWriter, recycleBinItemCollectionResponse?: Partial<RecycleBinItemCollectionResponse> | undefined | null): void;
|
|
69693
|
+
/**
|
|
69694
|
+
* Serializes information the current object
|
|
69695
|
+
* @param writer Serialization writer to use to serialize this model
|
|
69696
|
+
*/
|
|
69697
|
+
export declare function serializeRecycleBinSettings(writer: SerializationWriter, recycleBinSettings?: Partial<RecycleBinSettings> | undefined | null): void;
|
|
69155
69698
|
/**
|
|
69156
69699
|
* Serializes information the current object
|
|
69157
69700
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -71067,6 +71610,36 @@ export declare function serializeThumbnailSetCollectionResponse(writer: Serializ
|
|
|
71067
71610
|
* @param writer Serialization writer to use to serialize this model
|
|
71068
71611
|
*/
|
|
71069
71612
|
export declare function serializeTicketInfo(writer: SerializationWriter, ticketInfo?: Partial<TicketInfo> | undefined | null): void;
|
|
71613
|
+
/**
|
|
71614
|
+
* Serializes information the current object
|
|
71615
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71616
|
+
*/
|
|
71617
|
+
export declare function serializeTimeCard(writer: SerializationWriter, timeCard?: Partial<TimeCard> | undefined | null): void;
|
|
71618
|
+
/**
|
|
71619
|
+
* Serializes information the current object
|
|
71620
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71621
|
+
*/
|
|
71622
|
+
export declare function serializeTimeCardBreak(writer: SerializationWriter, timeCardBreak?: Partial<TimeCardBreak> | undefined | null): void;
|
|
71623
|
+
/**
|
|
71624
|
+
* Serializes information the current object
|
|
71625
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71626
|
+
*/
|
|
71627
|
+
export declare function serializeTimeCardCollectionResponse(writer: SerializationWriter, timeCardCollectionResponse?: Partial<TimeCardCollectionResponse> | undefined | null): void;
|
|
71628
|
+
/**
|
|
71629
|
+
* Serializes information the current object
|
|
71630
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71631
|
+
*/
|
|
71632
|
+
export declare function serializeTimeCardEntry(writer: SerializationWriter, timeCardEntry?: Partial<TimeCardEntry> | undefined | null): void;
|
|
71633
|
+
/**
|
|
71634
|
+
* Serializes information the current object
|
|
71635
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71636
|
+
*/
|
|
71637
|
+
export declare function serializeTimeCardEvent(writer: SerializationWriter, timeCardEvent?: Partial<TimeCardEvent> | undefined | null): void;
|
|
71638
|
+
/**
|
|
71639
|
+
* Serializes information the current object
|
|
71640
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71641
|
+
*/
|
|
71642
|
+
export declare function serializeTimeClockSettings(writer: SerializationWriter, timeClockSettings?: Partial<TimeClockSettings> | undefined | null): void;
|
|
71070
71643
|
/**
|
|
71071
71644
|
* Serializes information the current object
|
|
71072
71645
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -71972,6 +72545,16 @@ export declare function serializeVirtualEvent(writer: SerializationWriter, virtu
|
|
|
71972
72545
|
* @param writer Serialization writer to use to serialize this model
|
|
71973
72546
|
*/
|
|
71974
72547
|
export declare function serializeVirtualEventCollectionResponse(writer: SerializationWriter, virtualEventCollectionResponse?: Partial<VirtualEventCollectionResponse> | undefined | null): void;
|
|
72548
|
+
/**
|
|
72549
|
+
* Serializes information the current object
|
|
72550
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72551
|
+
*/
|
|
72552
|
+
export declare function serializeVirtualEventExternalInformation(writer: SerializationWriter, virtualEventExternalInformation?: Partial<VirtualEventExternalInformation> | undefined | null): void;
|
|
72553
|
+
/**
|
|
72554
|
+
* Serializes information the current object
|
|
72555
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72556
|
+
*/
|
|
72557
|
+
export declare function serializeVirtualEventExternalRegistrationInformation(writer: SerializationWriter, virtualEventExternalRegistrationInformation?: Partial<VirtualEventExternalRegistrationInformation> | undefined | null): void;
|
|
71975
72558
|
/**
|
|
71976
72559
|
* Serializes information the current object
|
|
71977
72560
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -72157,6 +72740,11 @@ export declare function serializeWin32LobApp(writer: SerializationWriter, win32L
|
|
|
72157
72740
|
* @param writer Serialization writer to use to serialize this model
|
|
72158
72741
|
*/
|
|
72159
72742
|
export declare function serializeWin32LobAppAssignmentSettings(writer: SerializationWriter, win32LobAppAssignmentSettings?: Partial<Win32LobAppAssignmentSettings> | undefined | null): void;
|
|
72743
|
+
/**
|
|
72744
|
+
* Serializes information the current object
|
|
72745
|
+
* @param writer Serialization writer to use to serialize this model
|
|
72746
|
+
*/
|
|
72747
|
+
export declare function serializeWin32LobAppAutoUpdateSettings(writer: SerializationWriter, win32LobAppAutoUpdateSettings?: Partial<Win32LobAppAutoUpdateSettings> | undefined | null): void;
|
|
72160
72748
|
/**
|
|
72161
72749
|
* Serializes information the current object
|
|
72162
72750
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -72942,6 +73530,11 @@ export declare function serializeX509CertificateAuthenticationModeConfiguration(
|
|
|
72942
73530
|
* @param writer Serialization writer to use to serialize this model
|
|
72943
73531
|
*/
|
|
72944
73532
|
export declare function serializeX509CertificateCombinationConfiguration(writer: SerializationWriter, x509CertificateCombinationConfiguration?: Partial<X509CertificateCombinationConfiguration> | undefined | null): void;
|
|
73533
|
+
/**
|
|
73534
|
+
* Serializes information the current object
|
|
73535
|
+
* @param writer Serialization writer to use to serialize this model
|
|
73536
|
+
*/
|
|
73537
|
+
export declare function serializeX509CertificateCRLValidationConfiguration(writer: SerializationWriter, x509CertificateCRLValidationConfiguration?: Partial<X509CertificateCRLValidationConfiguration> | undefined | null): void;
|
|
72945
73538
|
/**
|
|
72946
73539
|
* Serializes information the current object
|
|
72947
73540
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -73226,7 +73819,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
73226
73819
|
*/
|
|
73227
73820
|
appDescription?: string | null;
|
|
73228
73821
|
/**
|
|
73229
|
-
* The display name exposed by the associated application.
|
|
73822
|
+
* The display name exposed by the associated application. Maximum length is 256 characters.
|
|
73230
73823
|
*/
|
|
73231
73824
|
appDisplayName?: string | null;
|
|
73232
73825
|
/**
|
|
@@ -73346,7 +73939,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
73346
73939
|
*/
|
|
73347
73940
|
ownedObjects?: DirectoryObject[] | null;
|
|
73348
73941
|
/**
|
|
73349
|
-
* Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object.
|
|
73942
|
+
* Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand.
|
|
73350
73943
|
*/
|
|
73351
73944
|
owners?: DirectoryObject[] | null;
|
|
73352
73945
|
/**
|
|
@@ -73466,7 +74059,7 @@ export interface ServicePrincipalLockConfiguration extends AdditionalDataHolder,
|
|
|
73466
74059
|
}
|
|
73467
74060
|
export interface ServicePrincipalRiskDetection extends Entity, Parsable {
|
|
73468
74061
|
/**
|
|
73469
|
-
* Indicates the activity type the detected risk is linked to. The possible values are: signin, servicePrincipal.
|
|
74062
|
+
* Indicates the activity type the detected risk is linked to. The possible values are: signin, servicePrincipal. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: servicePrincipal.
|
|
73470
74063
|
*/
|
|
73471
74064
|
activity?: ActivityType | null;
|
|
73472
74065
|
/**
|
|
@@ -73514,7 +74107,7 @@ export interface ServicePrincipalRiskDetection extends Entity, Parsable {
|
|
|
73514
74107
|
*/
|
|
73515
74108
|
requestId?: string | null;
|
|
73516
74109
|
/**
|
|
73517
|
-
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal.
|
|
74110
|
+
* Details of the detected risk. Note: Details for this property are only available for Workload Identities Premium customers. Events in tenants without this license will be returned hidden. The possible values are: none, hidden, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: adminConfirmedServicePrincipalCompromised , adminDismissedAllRiskForServicePrincipal.
|
|
73518
74111
|
*/
|
|
73519
74112
|
riskDetail?: RiskDetail | null;
|
|
73520
74113
|
/**
|
|
@@ -74390,9 +74983,13 @@ export interface SharingLink extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
74390
74983
|
}
|
|
74391
74984
|
export interface Shift extends ChangeTrackedEntity, Parsable {
|
|
74392
74985
|
/**
|
|
74393
|
-
* Draft changes in the shift. Draft changes are only visible to managers. The changes are visible to employees when they
|
|
74986
|
+
* Draft changes in the shift. Draft changes are only visible to managers. The changes are visible to employees when they're shared, which copies the changes from the draftShift to the sharedShift property.
|
|
74394
74987
|
*/
|
|
74395
74988
|
draftShift?: ShiftItem | null;
|
|
74989
|
+
/**
|
|
74990
|
+
* The shift is marked for deletion, a process that is finalized when the schedule is shared.
|
|
74991
|
+
*/
|
|
74992
|
+
isStagedForDeletion?: boolean | null;
|
|
74396
74993
|
/**
|
|
74397
74994
|
* ID of the scheduling group the shift is part of. Required.
|
|
74398
74995
|
*/
|
|
@@ -74424,7 +75021,7 @@ export interface ShiftActivity extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
74424
75021
|
*/
|
|
74425
75022
|
displayName?: string | null;
|
|
74426
75023
|
/**
|
|
74427
|
-
* The end date and time for the shiftActivity. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC
|
|
75024
|
+
* The end date and time for the shiftActivity. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
|
|
74428
75025
|
*/
|
|
74429
75026
|
endDateTime?: Date | null;
|
|
74430
75027
|
/**
|
|
@@ -74436,7 +75033,7 @@ export interface ShiftActivity extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
74436
75033
|
*/
|
|
74437
75034
|
odataType?: string | null;
|
|
74438
75035
|
/**
|
|
74439
|
-
* The start date and time for the shiftActivity. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC
|
|
75036
|
+
* The start date and time for the shiftActivity. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
|
|
74440
75037
|
*/
|
|
74441
75038
|
startDateTime?: Date | null;
|
|
74442
75039
|
/**
|
|
@@ -74506,7 +75103,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
74506
75103
|
*/
|
|
74507
75104
|
appId?: string | null;
|
|
74508
75105
|
/**
|
|
74509
|
-
* Provides a list of conditional access policies that the corresponding sign-in activity triggers. Apps need more Conditional Access-related privileges to read the details of this property. For more information, see
|
|
75106
|
+
* Provides a list of conditional access policies that the corresponding sign-in activity triggers. Apps need more Conditional Access-related privileges to read the details of this property. For more information, see Permissions for viewing applied conditional access (CA) policies in sign-ins.
|
|
74510
75107
|
*/
|
|
74511
75108
|
appliedConditionalAccessPolicies?: AppliedConditionalAccessPolicy[] | null;
|
|
74512
75109
|
/**
|
|
@@ -74550,7 +75147,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
74550
75147
|
*/
|
|
74551
75148
|
resourceId?: string | null;
|
|
74552
75149
|
/**
|
|
74553
|
-
* The reason behind a specific state of a risky user, sign-in, or a risk event. The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe.
|
|
75150
|
+
* The reason behind a specific state of a risky user, sign-in, or a risk event. The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe. Use the Prefer: include-unknown-enum-members request header to get the following value or values in this evolvable enum: adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe.The value none means that Microsoft Entra risk detection did not flag the user or the sign-in as a risky event so far. Supports $filter (eq). Note: Details for this property are only available for Microsoft Entra ID P2 customers. All other customers are returned hidden.
|
|
74554
75151
|
*/
|
|
74555
75152
|
riskDetail?: RiskDetail | null;
|
|
74556
75153
|
/**
|
|
@@ -74736,7 +75333,7 @@ export interface SignInStatus extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
74736
75333
|
export type SignInUserType = (typeof SignInUserTypeObject)[keyof typeof SignInUserTypeObject];
|
|
74737
75334
|
export interface Simulation extends Entity, Parsable {
|
|
74738
75335
|
/**
|
|
74739
|
-
* The social engineering technique used in the attack simulation and training campaign. Supports $filter and $orderby. Possible values are: unknown, credentialHarvesting, attachmentMalware, driveByUrl, linkInAttachment, linkToMalwareFile, unknownFutureValue, oAuthConsentGrant.
|
|
75336
|
+
* The social engineering technique used in the attack simulation and training campaign. Supports $filter and $orderby. Possible values are: unknown, credentialHarvesting, attachmentMalware, driveByUrl, linkInAttachment, linkToMalwareFile, unknownFutureValue, oAuthConsentGrant. Use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: oAuthConsentGrant. For more information on the types of social engineering attack techniques, see simulations.
|
|
74740
75337
|
*/
|
|
74741
75338
|
attackTechnique?: SimulationAttackTechnique | null;
|
|
74742
75339
|
/**
|
|
@@ -75186,6 +75783,7 @@ export interface SiteCollectionResponse extends BaseCollectionPaginationCountRes
|
|
|
75186
75783
|
*/
|
|
75187
75784
|
value?: Site[] | null;
|
|
75188
75785
|
}
|
|
75786
|
+
export type SiteLockState = (typeof SiteLockStateObject)[keyof typeof SiteLockStateObject];
|
|
75189
75787
|
export interface SitePage extends BaseSitePage, Parsable {
|
|
75190
75788
|
/**
|
|
75191
75789
|
* Indicates the layout of the content in a given SharePoint page, including horizontal sections and vertical sections.
|
|
@@ -75963,7 +76561,7 @@ export interface SubjectRightsRequestHistory extends AdditionalDataHolder, Backe
|
|
|
75963
76561
|
*/
|
|
75964
76562
|
odataType?: string | null;
|
|
75965
76563
|
/**
|
|
75966
|
-
* The stage when the entity was changed. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval.
|
|
76564
|
+
* The stage when the entity was changed. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval. Use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: approval.
|
|
75967
76565
|
*/
|
|
75968
76566
|
stage?: SubjectRightsRequestStage | null;
|
|
75969
76567
|
/**
|
|
@@ -76022,7 +76620,7 @@ export interface SubjectRightsRequestStageDetail extends AdditionalDataHolder, B
|
|
|
76022
76620
|
*/
|
|
76023
76621
|
odataType?: string | null;
|
|
76024
76622
|
/**
|
|
76025
|
-
* The stage of the subject rights request. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval.
|
|
76623
|
+
* The stage of the subject rights request. Possible values are: contentRetrieval, contentReview, generateReport, contentDeletion, caseResolved, unknownFutureValue, approval. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: approval.
|
|
76026
76624
|
*/
|
|
76027
76625
|
stage?: SubjectRightsRequestStage | null;
|
|
76028
76626
|
/**
|
|
@@ -76879,7 +77477,7 @@ export interface Team extends Entity, Parsable {
|
|
|
76879
77477
|
*/
|
|
76880
77478
|
channels?: Channel[] | null;
|
|
76881
77479
|
/**
|
|
76882
|
-
* An optional label. Typically describes the data or business sensitivity of the team. Must match one of a
|
|
77480
|
+
* An optional label. Typically describes the data or business sensitivity of the team. Must match one of a preconfigured set in the tenant's directory.
|
|
76883
77481
|
*/
|
|
76884
77482
|
classification?: string | null;
|
|
76885
77483
|
/**
|
|
@@ -76887,7 +77485,7 @@ export interface Team extends Entity, Parsable {
|
|
|
76887
77485
|
*/
|
|
76888
77486
|
createdDateTime?: Date | null;
|
|
76889
77487
|
/**
|
|
76890
|
-
* An optional description for the team. Maximum length:
|
|
77488
|
+
* An optional description for the team. Maximum length: 1,024 characters.
|
|
76891
77489
|
*/
|
|
76892
77490
|
description?: string | null;
|
|
76893
77491
|
/**
|
|
@@ -76915,7 +77513,7 @@ export interface Team extends Entity, Parsable {
|
|
|
76915
77513
|
*/
|
|
76916
77514
|
installedApps?: TeamsAppInstallation[] | null;
|
|
76917
77515
|
/**
|
|
76918
|
-
* A unique ID for the team that
|
|
77516
|
+
* A unique ID for the team that was used in a few places such as the audit log/Office 365 Management Activity API.
|
|
76919
77517
|
*/
|
|
76920
77518
|
internalId?: string | null;
|
|
76921
77519
|
/**
|
|
@@ -76955,7 +77553,7 @@ export interface Team extends Entity, Parsable {
|
|
|
76955
77553
|
*/
|
|
76956
77554
|
schedule?: Schedule | null;
|
|
76957
77555
|
/**
|
|
76958
|
-
* Optional. Indicates whether the team is intended for a particular use case.
|
|
77556
|
+
* Optional. Indicates whether the team is intended for a particular use case. Each team specialization has access to unique behaviors and experiences targeted to its use case.
|
|
76959
77557
|
*/
|
|
76960
77558
|
specialization?: TeamSpecialization | null;
|
|
76961
77559
|
/**
|
|
@@ -76979,7 +77577,7 @@ export interface Team extends Entity, Parsable {
|
|
|
76979
77577
|
*/
|
|
76980
77578
|
visibility?: TeamVisibilityType | null;
|
|
76981
77579
|
/**
|
|
76982
|
-
* A hyperlink that
|
|
77580
|
+
* A hyperlink that goes to the team in the Microsoft Teams client. You get this URL when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed.
|
|
76983
77581
|
*/
|
|
76984
77582
|
webUrl?: string | null;
|
|
76985
77583
|
}
|
|
@@ -77236,6 +77834,10 @@ export interface TeamsAppAuthorization extends AdditionalDataHolder, BackedModel
|
|
|
77236
77834
|
* Stores model information.
|
|
77237
77835
|
*/
|
|
77238
77836
|
backingStoreEnabled?: boolean | null;
|
|
77837
|
+
/**
|
|
77838
|
+
* The registration ID of the Microsoft Entra app ID associated with the teamsApp.
|
|
77839
|
+
*/
|
|
77840
|
+
clientAppId?: string | null;
|
|
77239
77841
|
/**
|
|
77240
77842
|
* The OdataType property
|
|
77241
77843
|
*/
|
|
@@ -77277,7 +77879,7 @@ export interface TeamsAppDefinition extends Entity, Parsable {
|
|
|
77277
77879
|
*/
|
|
77278
77880
|
lastModifiedDateTime?: Date | null;
|
|
77279
77881
|
/**
|
|
77280
|
-
* The published status of a specific version of a Teams app. Possible values are:submitted—The specific version of the Teams app
|
|
77882
|
+
* The published status of a specific version of a Teams app. Possible values are:submitted—The specific version of the Teams app was submitted and is under review.published—The request to publish the specific version of the Teams app was approved by the admin and the app is published.rejected—The admin rejected the request to publish the specific version of the Teams app.
|
|
77281
77883
|
*/
|
|
77282
77884
|
publishingState?: TeamsAppPublishingState | null;
|
|
77283
77885
|
/**
|
|
@@ -78442,6 +79044,147 @@ export interface TicketInfo extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
78442
79044
|
*/
|
|
78443
79045
|
ticketSystem?: string | null;
|
|
78444
79046
|
}
|
|
79047
|
+
export interface TimeCard extends ChangeTrackedEntity, Parsable {
|
|
79048
|
+
/**
|
|
79049
|
+
* The list of breaks associated with the timeCard.
|
|
79050
|
+
*/
|
|
79051
|
+
breaks?: TimeCardBreak[] | null;
|
|
79052
|
+
/**
|
|
79053
|
+
* The clock-in event of the timeCard.
|
|
79054
|
+
*/
|
|
79055
|
+
clockInEvent?: TimeCardEvent | null;
|
|
79056
|
+
/**
|
|
79057
|
+
* The clock-out event of the timeCard.
|
|
79058
|
+
*/
|
|
79059
|
+
clockOutEvent?: TimeCardEvent | null;
|
|
79060
|
+
/**
|
|
79061
|
+
* Indicates whether this timeCard entry is confirmed. Possible values are: none, user, manager, unknownFutureValue.
|
|
79062
|
+
*/
|
|
79063
|
+
confirmedBy?: ConfirmedBy[] | null;
|
|
79064
|
+
/**
|
|
79065
|
+
* Notes about the timeCard.
|
|
79066
|
+
*/
|
|
79067
|
+
notes?: ItemBody | null;
|
|
79068
|
+
/**
|
|
79069
|
+
* The original timeCardEntry of the timeCard before it was edited.
|
|
79070
|
+
*/
|
|
79071
|
+
originalEntry?: TimeCardEntry | null;
|
|
79072
|
+
/**
|
|
79073
|
+
* The current state of the timeCard during its life cycle. The possible values are: clockedIn, onBreak, clockedOut, unknownFutureValue.
|
|
79074
|
+
*/
|
|
79075
|
+
state?: TimeCardState | null;
|
|
79076
|
+
/**
|
|
79077
|
+
* User ID to which the timeCard belongs.
|
|
79078
|
+
*/
|
|
79079
|
+
userId?: string | null;
|
|
79080
|
+
}
|
|
79081
|
+
export interface TimeCardBreak extends AdditionalDataHolder, BackedModel, Parsable {
|
|
79082
|
+
/**
|
|
79083
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
79084
|
+
*/
|
|
79085
|
+
additionalData?: Record<string, unknown>;
|
|
79086
|
+
/**
|
|
79087
|
+
* Stores model information.
|
|
79088
|
+
*/
|
|
79089
|
+
backingStoreEnabled?: boolean | null;
|
|
79090
|
+
/**
|
|
79091
|
+
* ID of the timeCardBreak.
|
|
79092
|
+
*/
|
|
79093
|
+
breakId?: string | null;
|
|
79094
|
+
/**
|
|
79095
|
+
* The start event of the timeCardBreak.
|
|
79096
|
+
*/
|
|
79097
|
+
end?: TimeCardEvent | null;
|
|
79098
|
+
/**
|
|
79099
|
+
* Notes about the timeCardBreak.
|
|
79100
|
+
*/
|
|
79101
|
+
notes?: ItemBody | null;
|
|
79102
|
+
/**
|
|
79103
|
+
* The OdataType property
|
|
79104
|
+
*/
|
|
79105
|
+
odataType?: string | null;
|
|
79106
|
+
/**
|
|
79107
|
+
* The start property
|
|
79108
|
+
*/
|
|
79109
|
+
start?: TimeCardEvent | null;
|
|
79110
|
+
}
|
|
79111
|
+
export interface TimeCardCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
79112
|
+
/**
|
|
79113
|
+
* The value property
|
|
79114
|
+
*/
|
|
79115
|
+
value?: TimeCard[] | null;
|
|
79116
|
+
}
|
|
79117
|
+
export interface TimeCardEntry extends AdditionalDataHolder, BackedModel, Parsable {
|
|
79118
|
+
/**
|
|
79119
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
79120
|
+
*/
|
|
79121
|
+
additionalData?: Record<string, unknown>;
|
|
79122
|
+
/**
|
|
79123
|
+
* Stores model information.
|
|
79124
|
+
*/
|
|
79125
|
+
backingStoreEnabled?: boolean | null;
|
|
79126
|
+
/**
|
|
79127
|
+
* The clock-in event of the timeCard.
|
|
79128
|
+
*/
|
|
79129
|
+
breaks?: TimeCardBreak[] | null;
|
|
79130
|
+
/**
|
|
79131
|
+
* The clock-out event of the timeCard.
|
|
79132
|
+
*/
|
|
79133
|
+
clockInEvent?: TimeCardEvent | null;
|
|
79134
|
+
/**
|
|
79135
|
+
* The list of breaks associated with the timeCard.
|
|
79136
|
+
*/
|
|
79137
|
+
clockOutEvent?: TimeCardEvent | null;
|
|
79138
|
+
/**
|
|
79139
|
+
* The OdataType property
|
|
79140
|
+
*/
|
|
79141
|
+
odataType?: string | null;
|
|
79142
|
+
}
|
|
79143
|
+
export interface TimeCardEvent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
79144
|
+
/**
|
|
79145
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
79146
|
+
*/
|
|
79147
|
+
additionalData?: Record<string, unknown>;
|
|
79148
|
+
/**
|
|
79149
|
+
* Stores model information.
|
|
79150
|
+
*/
|
|
79151
|
+
backingStoreEnabled?: boolean | null;
|
|
79152
|
+
/**
|
|
79153
|
+
* The time the entry is recorded.
|
|
79154
|
+
*/
|
|
79155
|
+
dateTime?: Date | null;
|
|
79156
|
+
/**
|
|
79157
|
+
* Indicates whether this action happens at an approved location.
|
|
79158
|
+
*/
|
|
79159
|
+
isAtApprovedLocation?: boolean | null;
|
|
79160
|
+
/**
|
|
79161
|
+
* Notes about the timeCardEvent.
|
|
79162
|
+
*/
|
|
79163
|
+
notes?: ItemBody | null;
|
|
79164
|
+
/**
|
|
79165
|
+
* The OdataType property
|
|
79166
|
+
*/
|
|
79167
|
+
odataType?: string | null;
|
|
79168
|
+
}
|
|
79169
|
+
export type TimeCardState = (typeof TimeCardStateObject)[keyof typeof TimeCardStateObject];
|
|
79170
|
+
export interface TimeClockSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
79171
|
+
/**
|
|
79172
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
79173
|
+
*/
|
|
79174
|
+
additionalData?: Record<string, unknown>;
|
|
79175
|
+
/**
|
|
79176
|
+
* The approved location of the timeClock.
|
|
79177
|
+
*/
|
|
79178
|
+
approvedLocation?: GeoCoordinates | null;
|
|
79179
|
+
/**
|
|
79180
|
+
* Stores model information.
|
|
79181
|
+
*/
|
|
79182
|
+
backingStoreEnabled?: boolean | null;
|
|
79183
|
+
/**
|
|
79184
|
+
* The OdataType property
|
|
79185
|
+
*/
|
|
79186
|
+
odataType?: string | null;
|
|
79187
|
+
}
|
|
78445
79188
|
export interface TimeConstraint extends AdditionalDataHolder, BackedModel, Parsable {
|
|
78446
79189
|
/**
|
|
78447
79190
|
* The nature of the activity, optional. The possible values are: work, personal, unrestricted, or unknown.
|
|
@@ -78466,9 +79209,13 @@ export interface TimeConstraint extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
78466
79209
|
}
|
|
78467
79210
|
export interface TimeOff extends ChangeTrackedEntity, Parsable {
|
|
78468
79211
|
/**
|
|
78469
|
-
* The draft version of this timeOff item that is viewable by managers. It must be shared before it
|
|
79212
|
+
* The draft version of this timeOff item that is viewable by managers. It must be shared before it's visible to team members. Required.
|
|
78470
79213
|
*/
|
|
78471
79214
|
draftTimeOff?: TimeOffItem | null;
|
|
79215
|
+
/**
|
|
79216
|
+
* The timeOff is marked for deletion, a process that is finalized when the schedule is shared.
|
|
79217
|
+
*/
|
|
79218
|
+
isStagedForDeletion?: boolean | null;
|
|
78472
79219
|
/**
|
|
78473
79220
|
* The shared version of this timeOff that is viewable by both employees and managers. Updates to the sharedTimeOff property send notifications to users in the Teams client. Required.
|
|
78474
79221
|
*/
|
|
@@ -78491,6 +79238,10 @@ export interface TimeOffItem extends Parsable, ScheduleEntity {
|
|
|
78491
79238
|
timeOffReasonId?: string | null;
|
|
78492
79239
|
}
|
|
78493
79240
|
export interface TimeOffReason extends ChangeTrackedEntity, Parsable {
|
|
79241
|
+
/**
|
|
79242
|
+
* The code of the timeOffReason to represent an external identifier. This field must be unique within the team in Microsoft Teams and uses an alphanumeric format, with a maximum of 100 characters.
|
|
79243
|
+
*/
|
|
79244
|
+
code?: string | null;
|
|
78494
79245
|
/**
|
|
78495
79246
|
* The name of the timeOffReason. Required.
|
|
78496
79247
|
*/
|
|
@@ -80242,7 +80993,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
80242
80993
|
*/
|
|
80243
80994
|
lastPasswordChangeDateTime?: Date | null;
|
|
80244
80995
|
/**
|
|
80245
|
-
* Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. For more information, see legal age group property definitions. Returned only on $select.
|
|
80996
|
+
* Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, Undefined, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. For more information, see legal age group property definitions. Returned only on $select.
|
|
80246
80997
|
*/
|
|
80247
80998
|
legalAgeGroupClassification?: string | null;
|
|
80248
80999
|
/**
|
|
@@ -80354,7 +81105,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
80354
81105
|
*/
|
|
80355
81106
|
onPremisesUserPrincipalName?: string | null;
|
|
80356
81107
|
/**
|
|
80357
|
-
* A list of other email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com']. NOTE: This property can't contain accent characters. Returned only on $select. Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0).
|
|
81108
|
+
* A list of other email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com']. Can store up to 250 values, each with a limit of 250 characters. NOTE: This property can't contain accent characters. Returned only on $select. Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0).
|
|
80358
81109
|
*/
|
|
80359
81110
|
otherMails?: string[] | null;
|
|
80360
81111
|
/**
|
|
@@ -80374,7 +81125,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
80374
81125
|
*/
|
|
80375
81126
|
passwordPolicies?: string | null;
|
|
80376
81127
|
/**
|
|
80377
|
-
* Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). To update this property: In delegated
|
|
81128
|
+
* Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). To update this property: User-PasswordProfile.ReadWrite.All is the least privileged permission to update this property. In delegated scenarios, the User Administrator Microsoft Entra role is the least privileged admin role supported to update this property for nonadmin users. Privileged Authentication Administrator is the least privileged role that's allowed to update this property for all administrators in the tenant. In general, the signed-in user must have a higher privileged administrator role as indicated in Who can reset passwords. In app-only scenarios, the calling app must be assigned a supported permission and at least the User Administrator Microsoft Entra role.
|
|
80378
81129
|
*/
|
|
80379
81130
|
passwordProfile?: PasswordProfile | null;
|
|
80380
81131
|
/**
|
|
@@ -82471,7 +83222,7 @@ export interface UserTeamwork extends Entity, Parsable {
|
|
|
82471
83222
|
*/
|
|
82472
83223
|
installedApps?: UserScopeTeamsAppInstallation[] | null;
|
|
82473
83224
|
/**
|
|
82474
|
-
* Represents the location that a user selected in Microsoft Teams and doesn't follow the Office's locale setting. A user
|
|
83225
|
+
* Represents the location that a user selected in Microsoft Teams and doesn't follow the Office's locale setting. A user's locale is represented by their preferred language and country or region. For example, en-us. The language component follows two-letter codes as defined in ISO 639-1, and the country component follows two-letter codes as defined in ISO 3166-1 alpha-2.
|
|
82475
83226
|
*/
|
|
82476
83227
|
locale?: string | null;
|
|
82477
83228
|
/**
|
|
@@ -82750,6 +83501,10 @@ export interface VirtualEvent extends Entity, Parsable {
|
|
|
82750
83501
|
* The end time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
|
|
82751
83502
|
*/
|
|
82752
83503
|
endDateTime?: DateTimeTimeZone | null;
|
|
83504
|
+
/**
|
|
83505
|
+
* The external information of a virtual event. Returned only for event organizers or coorganizers; otherwise, null.
|
|
83506
|
+
*/
|
|
83507
|
+
externalEventInformation?: VirtualEventExternalInformation[] | null;
|
|
82753
83508
|
/**
|
|
82754
83509
|
* The virtual event presenters.
|
|
82755
83510
|
*/
|
|
@@ -82778,6 +83533,50 @@ export interface VirtualEventCollectionResponse extends BaseCollectionPagination
|
|
|
82778
83533
|
*/
|
|
82779
83534
|
value?: VirtualEvent[] | null;
|
|
82780
83535
|
}
|
|
83536
|
+
export interface VirtualEventExternalInformation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
83537
|
+
/**
|
|
83538
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
83539
|
+
*/
|
|
83540
|
+
additionalData?: Record<string, unknown>;
|
|
83541
|
+
/**
|
|
83542
|
+
* Identifier of the application that hosts the externalEventId. Read-only.
|
|
83543
|
+
*/
|
|
83544
|
+
applicationId?: string | null;
|
|
83545
|
+
/**
|
|
83546
|
+
* Stores model information.
|
|
83547
|
+
*/
|
|
83548
|
+
backingStoreEnabled?: boolean | null;
|
|
83549
|
+
/**
|
|
83550
|
+
* The identifier for a virtualEventExternalInformation object that associates the virtual event with an event ID in an external application. This association bundles all the information (both supported and not supported in virtualEvent) into one virtual event object. Optional. If set, the maximum supported length is 256 characters.
|
|
83551
|
+
*/
|
|
83552
|
+
externalEventId?: string | null;
|
|
83553
|
+
/**
|
|
83554
|
+
* The OdataType property
|
|
83555
|
+
*/
|
|
83556
|
+
odataType?: string | null;
|
|
83557
|
+
}
|
|
83558
|
+
export interface VirtualEventExternalRegistrationInformation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
83559
|
+
/**
|
|
83560
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
83561
|
+
*/
|
|
83562
|
+
additionalData?: Record<string, unknown>;
|
|
83563
|
+
/**
|
|
83564
|
+
* Stores model information.
|
|
83565
|
+
*/
|
|
83566
|
+
backingStoreEnabled?: boolean | null;
|
|
83567
|
+
/**
|
|
83568
|
+
* The OdataType property
|
|
83569
|
+
*/
|
|
83570
|
+
odataType?: string | null;
|
|
83571
|
+
/**
|
|
83572
|
+
* A URL or string that represents the location from which the registrant registered. Optional.
|
|
83573
|
+
*/
|
|
83574
|
+
referrer?: string | null;
|
|
83575
|
+
/**
|
|
83576
|
+
* The identifier for a virtualEventExternalRegistrationInformation object. Optional. If set, the maximum supported length is 256 characters.
|
|
83577
|
+
*/
|
|
83578
|
+
registrationId?: string | null;
|
|
83579
|
+
}
|
|
82781
83580
|
export interface VirtualEventPresenter extends Entity, Parsable {
|
|
82782
83581
|
/**
|
|
82783
83582
|
* Email address of the presenter.
|
|
@@ -82855,6 +83654,10 @@ export interface VirtualEventRegistration extends Entity, Parsable {
|
|
|
82855
83654
|
* Email address of the registrant.
|
|
82856
83655
|
*/
|
|
82857
83656
|
email?: string | null;
|
|
83657
|
+
/**
|
|
83658
|
+
* The external information for a virtual event registration.
|
|
83659
|
+
*/
|
|
83660
|
+
externalRegistrationInformation?: VirtualEventExternalRegistrationInformation | null;
|
|
82858
83661
|
/**
|
|
82859
83662
|
* First name of the registrant.
|
|
82860
83663
|
*/
|
|
@@ -83477,6 +84280,10 @@ export interface Win32LobApp extends MobileLobApp, Parsable {
|
|
|
83477
84280
|
* Contains properties used to assign an Win32 LOB mobile app to a group.
|
|
83478
84281
|
*/
|
|
83479
84282
|
export interface Win32LobAppAssignmentSettings extends MobileAppAssignmentSettings, Parsable {
|
|
84283
|
+
/**
|
|
84284
|
+
* The auto-update settings to apply for this app assignment.
|
|
84285
|
+
*/
|
|
84286
|
+
autoUpdateSettings?: Win32LobAppAutoUpdateSettings | null;
|
|
83480
84287
|
/**
|
|
83481
84288
|
* Contains value for delivery optimization priority.
|
|
83482
84289
|
*/
|
|
@@ -83494,6 +84301,27 @@ export interface Win32LobAppAssignmentSettings extends MobileAppAssignmentSettin
|
|
|
83494
84301
|
*/
|
|
83495
84302
|
restartSettings?: Win32LobAppRestartSettings | null;
|
|
83496
84303
|
}
|
|
84304
|
+
/**
|
|
84305
|
+
* Contains properties used to perform the auto-update of an application.
|
|
84306
|
+
*/
|
|
84307
|
+
export interface Win32LobAppAutoUpdateSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
84308
|
+
/**
|
|
84309
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
84310
|
+
*/
|
|
84311
|
+
additionalData?: Record<string, unknown>;
|
|
84312
|
+
/**
|
|
84313
|
+
* Contains value for auto-update superseded apps.
|
|
84314
|
+
*/
|
|
84315
|
+
autoUpdateSupersededAppsState?: Win32LobAutoUpdateSupersededAppsState | null;
|
|
84316
|
+
/**
|
|
84317
|
+
* Stores model information.
|
|
84318
|
+
*/
|
|
84319
|
+
backingStoreEnabled?: boolean | null;
|
|
84320
|
+
/**
|
|
84321
|
+
* The OdataType property
|
|
84322
|
+
*/
|
|
84323
|
+
odataType?: string | null;
|
|
84324
|
+
}
|
|
83497
84325
|
export interface Win32LobAppCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
83498
84326
|
/**
|
|
83499
84327
|
* The value property
|
|
@@ -83767,6 +84595,7 @@ export interface Win32LobAppRule extends AdditionalDataHolder, BackedModel, Pars
|
|
|
83767
84595
|
}
|
|
83768
84596
|
export type Win32LobAppRuleOperator = (typeof Win32LobAppRuleOperatorObject)[keyof typeof Win32LobAppRuleOperatorObject];
|
|
83769
84597
|
export type Win32LobAppRuleType = (typeof Win32LobAppRuleTypeObject)[keyof typeof Win32LobAppRuleTypeObject];
|
|
84598
|
+
export type Win32LobAutoUpdateSupersededAppsState = (typeof Win32LobAutoUpdateSupersededAppsStateObject)[keyof typeof Win32LobAutoUpdateSupersededAppsStateObject];
|
|
83770
84599
|
/**
|
|
83771
84600
|
* This class contains compliance settings for Windows 10.
|
|
83772
84601
|
*/
|
|
@@ -88011,47 +88840,47 @@ export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder
|
|
|
88011
88840
|
*/
|
|
88012
88841
|
additionalData?: Record<string, unknown>;
|
|
88013
88842
|
/**
|
|
88014
|
-
*
|
|
88843
|
+
* Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
|
|
88015
88844
|
*/
|
|
88016
88845
|
allowAutoFilter?: boolean | null;
|
|
88017
88846
|
/**
|
|
88018
|
-
*
|
|
88847
|
+
* Indicates whether the worksheet protection option to allow deleting columns is enabled.
|
|
88019
88848
|
*/
|
|
88020
88849
|
allowDeleteColumns?: boolean | null;
|
|
88021
88850
|
/**
|
|
88022
|
-
*
|
|
88851
|
+
* Indicates whether the worksheet protection option to allow deleting rows is enabled.
|
|
88023
88852
|
*/
|
|
88024
88853
|
allowDeleteRows?: boolean | null;
|
|
88025
88854
|
/**
|
|
88026
|
-
*
|
|
88855
|
+
* Indicates whether the worksheet protection option to allow formatting cells is enabled.
|
|
88027
88856
|
*/
|
|
88028
88857
|
allowFormatCells?: boolean | null;
|
|
88029
88858
|
/**
|
|
88030
|
-
*
|
|
88859
|
+
* Indicates whether the worksheet protection option to allow formatting columns is enabled.
|
|
88031
88860
|
*/
|
|
88032
88861
|
allowFormatColumns?: boolean | null;
|
|
88033
88862
|
/**
|
|
88034
|
-
*
|
|
88863
|
+
* Indicates whether the worksheet protection option to allow formatting rows is enabled.
|
|
88035
88864
|
*/
|
|
88036
88865
|
allowFormatRows?: boolean | null;
|
|
88037
88866
|
/**
|
|
88038
|
-
*
|
|
88867
|
+
* Indicates whether the worksheet protection option to allow inserting columns is enabled.
|
|
88039
88868
|
*/
|
|
88040
88869
|
allowInsertColumns?: boolean | null;
|
|
88041
88870
|
/**
|
|
88042
|
-
*
|
|
88871
|
+
* Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
|
|
88043
88872
|
*/
|
|
88044
88873
|
allowInsertHyperlinks?: boolean | null;
|
|
88045
88874
|
/**
|
|
88046
|
-
*
|
|
88875
|
+
* Indicates whether the worksheet protection option to allow inserting rows is enabled.
|
|
88047
88876
|
*/
|
|
88048
88877
|
allowInsertRows?: boolean | null;
|
|
88049
88878
|
/**
|
|
88050
|
-
*
|
|
88879
|
+
* Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
|
|
88051
88880
|
*/
|
|
88052
88881
|
allowPivotTables?: boolean | null;
|
|
88053
88882
|
/**
|
|
88054
|
-
*
|
|
88883
|
+
* Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
|
|
88055
88884
|
*/
|
|
88056
88885
|
allowSort?: boolean | null;
|
|
88057
88886
|
/**
|
|
@@ -88065,13 +88894,17 @@ export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder
|
|
|
88065
88894
|
}
|
|
88066
88895
|
export interface WorkforceIntegration extends ChangeTrackedEntity, Parsable {
|
|
88067
88896
|
/**
|
|
88068
|
-
* API version for the
|
|
88897
|
+
* API version for the callback URL. Start with 1.
|
|
88069
88898
|
*/
|
|
88070
88899
|
apiVersion?: number | null;
|
|
88071
88900
|
/**
|
|
88072
88901
|
* Name of the workforce integration.
|
|
88073
88902
|
*/
|
|
88074
88903
|
displayName?: string | null;
|
|
88904
|
+
/**
|
|
88905
|
+
* Support to view eligibility-filtered results. Possible values are: none, swapRequest, offerShiftRequest, unknownFutureValue, timeOffReason. Use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: timeOffReason.
|
|
88906
|
+
*/
|
|
88907
|
+
eligibilityFilteringEnabledEntities?: EligibilityFilteringEnabledEntities[] | null;
|
|
88075
88908
|
/**
|
|
88076
88909
|
* The workforce integration encryption resource.
|
|
88077
88910
|
*/
|
|
@@ -88081,7 +88914,7 @@ export interface WorkforceIntegration extends ChangeTrackedEntity, Parsable {
|
|
|
88081
88914
|
*/
|
|
88082
88915
|
isActive?: boolean | null;
|
|
88083
88916
|
/**
|
|
88084
|
-
* The Shifts entities supported for synchronous change notifications. Shifts
|
|
88917
|
+
* The Shifts entities supported for synchronous change notifications. Shifts call back to the provided URL when client changes occur to the entities specified in this property. By default, no entities are supported for change notifications. Possible values are: none, shift, swapRequest, userShiftPreferences, openShift, openShiftRequest, offerShiftRequest, unknownFutureValue, timeCard, timeOffReason, timeOff, timeOffRequest. Use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: timeCard , timeOffReason , timeOff , timeOffRequest.
|
|
88085
88918
|
*/
|
|
88086
88919
|
supportedEntities?: WorkforceIntegrationSupportedEntities[] | null;
|
|
88087
88920
|
/**
|
|
@@ -88161,6 +88994,10 @@ export interface X509CertificateAuthenticationMethodConfiguration extends Authen
|
|
|
88161
88994
|
* Defines fields in the X.509 certificate that map to attributes of the Microsoft Entra user object in order to bind the certificate to the user. The priority of the object determines the order in which the binding is carried out. The first binding that matches will be used and the rest ignored.
|
|
88162
88995
|
*/
|
|
88163
88996
|
certificateUserBindings?: X509CertificateUserBinding[] | null;
|
|
88997
|
+
/**
|
|
88998
|
+
* The crlValidationConfiguration property
|
|
88999
|
+
*/
|
|
89000
|
+
crlValidationConfiguration?: X509CertificateCRLValidationConfiguration | null;
|
|
88164
89001
|
/**
|
|
88165
89002
|
* A collection of groups that are enabled to use the authentication method.
|
|
88166
89003
|
*/
|
|
@@ -88203,6 +89040,29 @@ export interface X509CertificateCombinationConfiguration extends AuthenticationC
|
|
|
88203
89040
|
*/
|
|
88204
89041
|
allowedPolicyOIDs?: string[] | null;
|
|
88205
89042
|
}
|
|
89043
|
+
export interface X509CertificateCRLValidationConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
89044
|
+
/**
|
|
89045
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
89046
|
+
*/
|
|
89047
|
+
additionalData?: Record<string, unknown>;
|
|
89048
|
+
/**
|
|
89049
|
+
* Stores model information.
|
|
89050
|
+
*/
|
|
89051
|
+
backingStoreEnabled?: boolean | null;
|
|
89052
|
+
/**
|
|
89053
|
+
* The exemptedCertificateAuthoritiesSubjectKeyIdentifiers property
|
|
89054
|
+
*/
|
|
89055
|
+
exemptedCertificateAuthoritiesSubjectKeyIdentifiers?: string[] | null;
|
|
89056
|
+
/**
|
|
89057
|
+
* The OdataType property
|
|
89058
|
+
*/
|
|
89059
|
+
odataType?: string | null;
|
|
89060
|
+
/**
|
|
89061
|
+
* The state property
|
|
89062
|
+
*/
|
|
89063
|
+
state?: X509CertificateCRLValidationConfigurationState | null;
|
|
89064
|
+
}
|
|
89065
|
+
export type X509CertificateCRLValidationConfigurationState = (typeof X509CertificateCRLValidationConfigurationStateObject)[keyof typeof X509CertificateCRLValidationConfigurationStateObject];
|
|
88206
89066
|
export interface X509CertificateRule extends AdditionalDataHolder, BackedModel, Parsable {
|
|
88207
89067
|
/**
|
|
88208
89068
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -88430,6 +89290,11 @@ export declare const AlertStatusObject: {
|
|
|
88430
89290
|
readonly Dismissed: "dismissed";
|
|
88431
89291
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88432
89292
|
};
|
|
89293
|
+
export declare const AllowedLobbyAdmitterRolesObject: {
|
|
89294
|
+
readonly OrganizerAndCoOrganizersAndPresenters: "organizerAndCoOrganizersAndPresenters";
|
|
89295
|
+
readonly OrganizerAndCoOrganizers: "organizerAndCoOrganizers";
|
|
89296
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
89297
|
+
};
|
|
88433
89298
|
export declare const AllowedTargetScopeObject: {
|
|
88434
89299
|
readonly NotSpecified: "notSpecified";
|
|
88435
89300
|
readonly SpecificDirectoryUsers: "specificDirectoryUsers";
|
|
@@ -88630,6 +89495,11 @@ export declare const AppLogUploadStateObject: {
|
|
|
88630
89495
|
/** Evolvable enumeration sentinel value. Do not use. */
|
|
88631
89496
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88632
89497
|
};
|
|
89498
|
+
export declare const AppManagementRestrictionStateObject: {
|
|
89499
|
+
readonly Enabled: "enabled";
|
|
89500
|
+
readonly Disabled: "disabled";
|
|
89501
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
89502
|
+
};
|
|
88633
89503
|
export declare const AppsUpdateChannelTypeObject: {
|
|
88634
89504
|
readonly Current: "current";
|
|
88635
89505
|
readonly MonthlyEnterprise: "monthlyEnterprise";
|
|
@@ -89522,6 +90392,18 @@ export declare const ConditionalAccessStatusObject: {
|
|
|
89522
90392
|
readonly NotApplied: "notApplied";
|
|
89523
90393
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
89524
90394
|
};
|
|
90395
|
+
export declare const ConditionalAccessTransferMethodsObject: {
|
|
90396
|
+
readonly None: "none";
|
|
90397
|
+
readonly DeviceCodeFlow: "deviceCodeFlow";
|
|
90398
|
+
readonly AuthenticationTransfer: "authenticationTransfer";
|
|
90399
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90400
|
+
};
|
|
90401
|
+
export declare const ConfirmedByObject: {
|
|
90402
|
+
readonly None: "none";
|
|
90403
|
+
readonly User: "user";
|
|
90404
|
+
readonly Manager: "manager";
|
|
90405
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90406
|
+
};
|
|
89525
90407
|
export declare const ConnectedOrganizationStateObject: {
|
|
89526
90408
|
readonly Configured: "configured";
|
|
89527
90409
|
readonly Proposed: "proposed";
|
|
@@ -89828,21 +90710,21 @@ export declare const DeviceEnrollmentTypeObject: {
|
|
|
89828
90710
|
readonly AppleBulkWithUser: "appleBulkWithUser";
|
|
89829
90711
|
/** Apple bulk enrollment without user challenge. (DEP, Apple Configurator, Mobile Config) */
|
|
89830
90712
|
readonly AppleBulkWithoutUser: "appleBulkWithoutUser";
|
|
89831
|
-
/** Windows 10 Azure AD Join. */
|
|
90713
|
+
/** Windows 10 Entra ID (Azure AD) Join. */
|
|
89832
90714
|
readonly WindowsAzureADJoin: "windowsAzureADJoin";
|
|
89833
90715
|
/** Windows 10 Bulk enrollment through ICD with certificate. */
|
|
89834
90716
|
readonly WindowsBulkUserless: "windowsBulkUserless";
|
|
89835
90717
|
/** Windows 10 automatic enrollment. (Add work account) */
|
|
89836
90718
|
readonly WindowsAutoEnrollment: "windowsAutoEnrollment";
|
|
89837
|
-
/** Windows 10 bulk Azure AD Join. */
|
|
90719
|
+
/** Windows 10 bulk Entra ID (Azure AD) Join. */
|
|
89838
90720
|
readonly WindowsBulkAzureDomainJoin: "windowsBulkAzureDomainJoin";
|
|
89839
90721
|
/** Windows 10 Co-Management triggered by AutoPilot or Group Policy. */
|
|
89840
90722
|
readonly WindowsCoManagement: "windowsCoManagement";
|
|
89841
|
-
/** Windows 10 Azure AD Join using Device Auth. */
|
|
90723
|
+
/** Windows 10 Entra ID (Azure AD) Join using Device Auth. */
|
|
89842
90724
|
readonly WindowsAzureADJoinUsingDeviceAuth: "windowsAzureADJoinUsingDeviceAuth";
|
|
89843
|
-
/**
|
|
90725
|
+
/** Indicates the device is enrolled via Apple User Enrollment with Company Portal. It results in an enrollment with a new partition for managed apps and data and which supports a limited set of management capabilities */
|
|
89844
90726
|
readonly AppleUserEnrollment: "appleUserEnrollment";
|
|
89845
|
-
/**
|
|
90727
|
+
/** 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 */
|
|
89846
90728
|
readonly AppleUserEnrollmentWithServiceAccount: "appleUserEnrollmentWithServiceAccount";
|
|
89847
90729
|
};
|
|
89848
90730
|
/**
|
|
@@ -89974,7 +90856,7 @@ export declare const DeviceManagementPartnerTenantStateObject: {
|
|
|
89974
90856
|
readonly Unresponsive: "unresponsive";
|
|
89975
90857
|
};
|
|
89976
90858
|
/**
|
|
89977
|
-
* Possible values for the file format of a report.
|
|
90859
|
+
* Possible values for the file format of a report to be exported.
|
|
89978
90860
|
*/
|
|
89979
90861
|
export declare const DeviceManagementReportFileFormatObject: {
|
|
89980
90862
|
/** CSV Format. */
|
|
@@ -90229,6 +91111,13 @@ export declare const EducationUserRoleObject: {
|
|
|
90229
91111
|
readonly None: "none";
|
|
90230
91112
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90231
91113
|
};
|
|
91114
|
+
export declare const EligibilityFilteringEnabledEntitiesObject: {
|
|
91115
|
+
readonly None: "none";
|
|
91116
|
+
readonly SwapRequest: "swapRequest";
|
|
91117
|
+
readonly OfferShiftRequest: "offerShiftRequest";
|
|
91118
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91119
|
+
readonly TimeOffReason: "timeOffReason";
|
|
91120
|
+
};
|
|
90232
91121
|
export declare const EmailRoleObject: {
|
|
90233
91122
|
readonly Unknown: "unknown";
|
|
90234
91123
|
readonly Sender: "sender";
|
|
@@ -90777,12 +91666,14 @@ export declare const ManagedBrowserTypeObject: {
|
|
|
90777
91666
|
* Owner type of device.
|
|
90778
91667
|
*/
|
|
90779
91668
|
export declare const ManagedDeviceOwnerTypeObject: {
|
|
90780
|
-
/** Unknown. */
|
|
91669
|
+
/** Unknown device owner type. */
|
|
90781
91670
|
readonly Unknown: "unknown";
|
|
90782
|
-
/**
|
|
91671
|
+
/** Corporate device owner type. */
|
|
90783
91672
|
readonly Company: "company";
|
|
90784
|
-
/**
|
|
91673
|
+
/** Personal device owner type. */
|
|
90785
91674
|
readonly Personal: "personal";
|
|
91675
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
91676
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90786
91677
|
};
|
|
90787
91678
|
/**
|
|
90788
91679
|
* Available health states for the Device Health API
|
|
@@ -90898,6 +91789,11 @@ export declare const MeetingChatModeObject: {
|
|
|
90898
91789
|
readonly Limited: "limited";
|
|
90899
91790
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90900
91791
|
};
|
|
91792
|
+
export declare const MeetingLiveShareOptionsObject: {
|
|
91793
|
+
readonly Enabled: "enabled";
|
|
91794
|
+
readonly Disabled: "disabled";
|
|
91795
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91796
|
+
};
|
|
90901
91797
|
export declare const MeetingMessageTypeObject: {
|
|
90902
91798
|
readonly None: "none";
|
|
90903
91799
|
readonly MeetingRequest: "meetingRequest";
|
|
@@ -93403,6 +94299,13 @@ export declare const SiteArchiveStatusObject: {
|
|
|
93403
94299
|
readonly Reactivating: "reactivating";
|
|
93404
94300
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
93405
94301
|
};
|
|
94302
|
+
export declare const SiteLockStateObject: {
|
|
94303
|
+
readonly Unlocked: "unlocked";
|
|
94304
|
+
readonly LockedReadOnly: "lockedReadOnly";
|
|
94305
|
+
readonly LockedNoAccess: "lockedNoAccess";
|
|
94306
|
+
readonly LockedNoAdditions: "lockedNoAdditions";
|
|
94307
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
94308
|
+
};
|
|
93406
94309
|
/**
|
|
93407
94310
|
* Possible values for site security level.
|
|
93408
94311
|
*/
|
|
@@ -93728,6 +94631,12 @@ export declare const ThreatExpectedAssessmentObject: {
|
|
|
93728
94631
|
readonly Block: "block";
|
|
93729
94632
|
readonly Unblock: "unblock";
|
|
93730
94633
|
};
|
|
94634
|
+
export declare const TimeCardStateObject: {
|
|
94635
|
+
readonly ClockedIn: "clockedIn";
|
|
94636
|
+
readonly OnBreak: "onBreak";
|
|
94637
|
+
readonly ClockedOut: "clockedOut";
|
|
94638
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
94639
|
+
};
|
|
93731
94640
|
export declare const TimeOffReasonIconTypeObject: {
|
|
93732
94641
|
readonly None: "none";
|
|
93733
94642
|
readonly Car: "car";
|
|
@@ -94261,6 +95170,17 @@ export declare const Win32LobAppRuleTypeObject: {
|
|
|
94261
95170
|
/** Requirement rule. */
|
|
94262
95171
|
readonly Requirement: "requirement";
|
|
94263
95172
|
};
|
|
95173
|
+
/**
|
|
95174
|
+
* Contains value for auto-update superseded apps.
|
|
95175
|
+
*/
|
|
95176
|
+
export declare const Win32LobAutoUpdateSupersededAppsStateObject: {
|
|
95177
|
+
/** Indicates that the auto-update superseded apps state is not configured and the app will not auto-update the superseded apps. */
|
|
95178
|
+
readonly NotConfigured: "notConfigured";
|
|
95179
|
+
/** Indicates that the auto-update superseded apps state is enabled and the app will auto-update the superseded apps if the superseded apps are installed on the device. */
|
|
95180
|
+
readonly Enabled: "enabled";
|
|
95181
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
95182
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
95183
|
+
};
|
|
94264
95184
|
/**
|
|
94265
95185
|
* Windows 10 Edition type.
|
|
94266
95186
|
*/
|
|
@@ -94792,6 +95712,10 @@ export declare const WorkforceIntegrationSupportedEntitiesObject: {
|
|
|
94792
95712
|
readonly OpenShiftRequest: "openShiftRequest";
|
|
94793
95713
|
readonly OfferShiftRequest: "offerShiftRequest";
|
|
94794
95714
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
95715
|
+
readonly TimeCard: "timeCard";
|
|
95716
|
+
readonly TimeOffReason: "timeOffReason";
|
|
95717
|
+
readonly TimeOff: "timeOff";
|
|
95718
|
+
readonly TimeOffRequest: "timeOffRequest";
|
|
94795
95719
|
};
|
|
94796
95720
|
export declare const X509CertificateAffinityLevelObject: {
|
|
94797
95721
|
readonly Low: "low";
|
|
@@ -94803,6 +95727,11 @@ export declare const X509CertificateAuthenticationModeObject: {
|
|
|
94803
95727
|
readonly X509CertificateMultiFactor: "x509CertificateMultiFactor";
|
|
94804
95728
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
94805
95729
|
};
|
|
95730
|
+
export declare const X509CertificateCRLValidationConfigurationStateObject: {
|
|
95731
|
+
readonly Disabled: "disabled";
|
|
95732
|
+
readonly Enabled: "enabled";
|
|
95733
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
95734
|
+
};
|
|
94806
95735
|
export declare const X509CertificateRuleTypeObject: {
|
|
94807
95736
|
readonly IssuerSubject: "issuerSubject";
|
|
94808
95737
|
readonly PolicyOID: "policyOID";
|