@microsoft/msgraph-sdk 1.0.0-preview.55 → 1.0.0-preview.58
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/README.md +186 -5
- package/models/index.d.ts +516 -66
- package/models/index.d.ts.map +1 -1
- package/models/index.js +431 -1
- package/models/index.js.map +1 -1
- package/models/security/index.d.ts +2 -2
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.d.ts
CHANGED
|
@@ -247,7 +247,7 @@ export interface AccessPackageAssignmentApprovalSettings extends AdditionalDataH
|
|
|
247
247
|
*/
|
|
248
248
|
isApprovalRequiredForUpdate?: boolean | null;
|
|
249
249
|
/**
|
|
250
|
-
*
|
|
250
|
+
* If false, then requestor justification isn't required for updates to requests in this policy.
|
|
251
251
|
*/
|
|
252
252
|
isRequestorJustificationRequired?: boolean | null;
|
|
253
253
|
/**
|
|
@@ -363,7 +363,7 @@ export interface AccessPackageAssignmentRequest extends Entity, Parsable {
|
|
|
363
363
|
*/
|
|
364
364
|
customExtensionCalloutInstances?: CustomExtensionCalloutInstance[] | null;
|
|
365
365
|
/**
|
|
366
|
-
* The justification
|
|
366
|
+
* The requestor's supplied justification.
|
|
367
367
|
*/
|
|
368
368
|
justification?: string | null;
|
|
369
369
|
/**
|
|
@@ -479,7 +479,7 @@ export interface AccessPackageAssignmentRequestRequirements extends AdditionalDa
|
|
|
479
479
|
*/
|
|
480
480
|
isApprovalRequiredForUpdate?: boolean | null;
|
|
481
481
|
/**
|
|
482
|
-
*
|
|
482
|
+
* Indicates whether requestors must justify requesting access to an access package.
|
|
483
483
|
*/
|
|
484
484
|
isRequestorJustificationRequired?: boolean | null;
|
|
485
485
|
/**
|
|
@@ -732,7 +732,7 @@ export interface AccessPackageNotificationSettings extends AdditionalDataHolder,
|
|
|
732
732
|
*/
|
|
733
733
|
backingStoreEnabled?: boolean | null;
|
|
734
734
|
/**
|
|
735
|
-
*
|
|
735
|
+
* Indicates if notification emails for an access package are disabled within an access package assignment policy.
|
|
736
736
|
*/
|
|
737
737
|
isAssignmentNotificationDisabled?: boolean | null;
|
|
738
738
|
/**
|
|
@@ -2178,6 +2178,141 @@ export interface AgreementFileVersionCollectionResponse extends BaseCollectionPa
|
|
|
2178
2178
|
*/
|
|
2179
2179
|
value?: AgreementFileVersion[] | null;
|
|
2180
2180
|
}
|
|
2181
|
+
export interface AiInteraction extends Entity, Parsable {
|
|
2182
|
+
/**
|
|
2183
|
+
* The data source for Copilot data. For example, IPM.SkypeTeams.Message.Copilot.Excel or IPM.SkypeTeams.Message.Copilot.Loop.
|
|
2184
|
+
*/
|
|
2185
|
+
appClass?: string | null;
|
|
2186
|
+
/**
|
|
2187
|
+
* The collection of documents attached to the interaction, such as cards and images.
|
|
2188
|
+
*/
|
|
2189
|
+
attachments?: AiInteractionAttachment[] | null;
|
|
2190
|
+
/**
|
|
2191
|
+
* The body of the message, including the text of the body and its body type.
|
|
2192
|
+
*/
|
|
2193
|
+
body?: ItemBody | null;
|
|
2194
|
+
/**
|
|
2195
|
+
* The identifer that maps to all contexts associated with an interaction.
|
|
2196
|
+
*/
|
|
2197
|
+
contexts?: AiInteractionContext[] | null;
|
|
2198
|
+
/**
|
|
2199
|
+
* The type of the conversation. For example, appchat or bizchat.
|
|
2200
|
+
*/
|
|
2201
|
+
conversationType?: string | null;
|
|
2202
|
+
/**
|
|
2203
|
+
* The time when the interaction was created.
|
|
2204
|
+
*/
|
|
2205
|
+
createdDateTime?: Date | null;
|
|
2206
|
+
/**
|
|
2207
|
+
* The timestamp of when the interaction was last modified.
|
|
2208
|
+
*/
|
|
2209
|
+
etag?: string | null;
|
|
2210
|
+
/**
|
|
2211
|
+
* The from property
|
|
2212
|
+
*/
|
|
2213
|
+
from?: IdentitySet | null;
|
|
2214
|
+
/**
|
|
2215
|
+
* The interactionType property
|
|
2216
|
+
*/
|
|
2217
|
+
interactionType?: AiInteractionType | null;
|
|
2218
|
+
/**
|
|
2219
|
+
* The collection of links that appear in the interaction.
|
|
2220
|
+
*/
|
|
2221
|
+
links?: AiInteractionLink[] | null;
|
|
2222
|
+
/**
|
|
2223
|
+
* The locale of the sender.
|
|
2224
|
+
*/
|
|
2225
|
+
locale?: string | null;
|
|
2226
|
+
/**
|
|
2227
|
+
* The collection of the entities that were mentioned in the interaction, including users, bots, and so on.
|
|
2228
|
+
*/
|
|
2229
|
+
mentions?: AiInteractionMention[] | null;
|
|
2230
|
+
/**
|
|
2231
|
+
* The identifier that groups a user prompt with its Copilot response.
|
|
2232
|
+
*/
|
|
2233
|
+
requestId?: string | null;
|
|
2234
|
+
/**
|
|
2235
|
+
* The thread ID or conversation identifier that maps to all Copilot sessions for the user.
|
|
2236
|
+
*/
|
|
2237
|
+
sessionId?: string | null;
|
|
2238
|
+
}
|
|
2239
|
+
export interface AiInteractionAttachment extends Entity, Parsable {
|
|
2240
|
+
/**
|
|
2241
|
+
* The identifier for the attachment. This identifier is only unique within the message scope.
|
|
2242
|
+
*/
|
|
2243
|
+
attachmentId?: string | null;
|
|
2244
|
+
/**
|
|
2245
|
+
* The content of the attachment.
|
|
2246
|
+
*/
|
|
2247
|
+
content?: string | null;
|
|
2248
|
+
/**
|
|
2249
|
+
* The type of the content. For example, reference, file, and image/imageType.
|
|
2250
|
+
*/
|
|
2251
|
+
contentType?: string | null;
|
|
2252
|
+
/**
|
|
2253
|
+
* The URL of the content.
|
|
2254
|
+
*/
|
|
2255
|
+
contentUrl?: string | null;
|
|
2256
|
+
/**
|
|
2257
|
+
* The name of the attachment.
|
|
2258
|
+
*/
|
|
2259
|
+
name?: string | null;
|
|
2260
|
+
}
|
|
2261
|
+
export interface AiInteractionContext extends Entity, Parsable {
|
|
2262
|
+
/**
|
|
2263
|
+
* The full file URL where the interaction happened.
|
|
2264
|
+
*/
|
|
2265
|
+
contextReference?: string | null;
|
|
2266
|
+
/**
|
|
2267
|
+
* The type of the file.
|
|
2268
|
+
*/
|
|
2269
|
+
contextType?: string | null;
|
|
2270
|
+
/**
|
|
2271
|
+
* The name of the file.
|
|
2272
|
+
*/
|
|
2273
|
+
displayName?: string | null;
|
|
2274
|
+
}
|
|
2275
|
+
export interface AiInteractionHistory extends Entity, Parsable {
|
|
2276
|
+
}
|
|
2277
|
+
export interface AiInteractionLink extends Entity, Parsable {
|
|
2278
|
+
/**
|
|
2279
|
+
* The name of the link.
|
|
2280
|
+
*/
|
|
2281
|
+
displayName?: string | null;
|
|
2282
|
+
/**
|
|
2283
|
+
* Information about a link in an app chat or Business Chat (BizChat) interaction.
|
|
2284
|
+
*/
|
|
2285
|
+
linkType?: string | null;
|
|
2286
|
+
/**
|
|
2287
|
+
* The URL of the link.
|
|
2288
|
+
*/
|
|
2289
|
+
linkUrl?: string | null;
|
|
2290
|
+
}
|
|
2291
|
+
export interface AiInteractionMention extends Entity, Parsable {
|
|
2292
|
+
/**
|
|
2293
|
+
* The entity mentioned in the message.
|
|
2294
|
+
*/
|
|
2295
|
+
mentioned?: AiInteractionMentionedIdentitySet | null;
|
|
2296
|
+
/**
|
|
2297
|
+
* The identifier for the mention.
|
|
2298
|
+
*/
|
|
2299
|
+
mentionId?: number | null;
|
|
2300
|
+
/**
|
|
2301
|
+
* The text mentioned in the message.
|
|
2302
|
+
*/
|
|
2303
|
+
mentionText?: string | null;
|
|
2304
|
+
}
|
|
2305
|
+
export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable {
|
|
2306
|
+
/**
|
|
2307
|
+
* The conversation property
|
|
2308
|
+
*/
|
|
2309
|
+
conversation?: TeamworkConversationIdentity | null;
|
|
2310
|
+
/**
|
|
2311
|
+
* The tag details.
|
|
2312
|
+
*/
|
|
2313
|
+
tag?: TeamworkTagIdentity | null;
|
|
2314
|
+
}
|
|
2315
|
+
export type AiInteractionType = (typeof AiInteractionTypeObject)[keyof typeof AiInteractionTypeObject];
|
|
2181
2316
|
export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2182
2317
|
/**
|
|
2183
2318
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2196,6 +2331,12 @@ export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Par
|
|
|
2196
2331
|
*/
|
|
2197
2332
|
odataType?: string | null;
|
|
2198
2333
|
}
|
|
2334
|
+
export interface AiUser extends Entity, Parsable {
|
|
2335
|
+
/**
|
|
2336
|
+
* The history of interactions between AI agents and users.
|
|
2337
|
+
*/
|
|
2338
|
+
interactionHistory?: AiInteractionHistory | null;
|
|
2339
|
+
}
|
|
2199
2340
|
export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2200
2341
|
/**
|
|
2201
2342
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -3624,7 +3765,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3624
3765
|
*/
|
|
3625
3766
|
homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[] | null;
|
|
3626
3767
|
/**
|
|
3627
|
-
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
|
|
3768
|
+
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique across Microsoft Entra ID. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
|
|
3628
3769
|
*/
|
|
3629
3770
|
identifierUris?: string[] | null;
|
|
3630
3771
|
/**
|
|
@@ -4151,11 +4292,11 @@ export interface ApprovalStageCollectionResponse extends BaseCollectionPaginatio
|
|
|
4151
4292
|
}
|
|
4152
4293
|
export interface AppScope extends Entity, Parsable {
|
|
4153
4294
|
/**
|
|
4154
|
-
* Provides the display name of the app-specific resource represented by the app scope.
|
|
4295
|
+
* Provides the display name of the app-specific resource represented by the app scope. Read only.
|
|
4155
4296
|
*/
|
|
4156
4297
|
displayName?: string | null;
|
|
4157
4298
|
/**
|
|
4158
|
-
* Describes the type of app-specific resource represented by the app scope
|
|
4299
|
+
* Describes the type of app-specific resource represented by the app scope. Read-only.
|
|
4159
4300
|
*/
|
|
4160
4301
|
type?: string | null;
|
|
4161
4302
|
}
|
|
@@ -5214,7 +5355,7 @@ export interface AuditActivityInitiator extends AdditionalDataHolder, BackedMode
|
|
|
5214
5355
|
*/
|
|
5215
5356
|
additionalData?: Record<string, unknown>;
|
|
5216
5357
|
/**
|
|
5217
|
-
* If the resource initiating the activity is an app, this property indicates all the app related information like appId
|
|
5358
|
+
* If the resource initiating the activity is an app, this property indicates all the app related information like appId and name.
|
|
5218
5359
|
*/
|
|
5219
5360
|
app?: AppIdentity | null;
|
|
5220
5361
|
/**
|
|
@@ -5226,7 +5367,7 @@ export interface AuditActivityInitiator extends AdditionalDataHolder, BackedMode
|
|
|
5226
5367
|
*/
|
|
5227
5368
|
odataType?: string | null;
|
|
5228
5369
|
/**
|
|
5229
|
-
* If the resource initiating the activity is a user, this property Indicates all the user related information like
|
|
5370
|
+
* If the resource initiating the activity is a user, this property Indicates all the user related information like user ID and userPrincipalName.
|
|
5230
5371
|
*/
|
|
5231
5372
|
user?: UserIdentity | null;
|
|
5232
5373
|
}
|
|
@@ -8519,6 +8660,59 @@ export interface CertificateAuthority extends AdditionalDataHolder, BackedModel,
|
|
|
8519
8660
|
*/
|
|
8520
8661
|
odataType?: string | null;
|
|
8521
8662
|
}
|
|
8663
|
+
export interface CertificateAuthorityDetail extends DirectoryObject, Parsable {
|
|
8664
|
+
/**
|
|
8665
|
+
* The certificate property
|
|
8666
|
+
*/
|
|
8667
|
+
certificate?: ArrayBuffer | null;
|
|
8668
|
+
/**
|
|
8669
|
+
* The certificateAuthorityType property
|
|
8670
|
+
*/
|
|
8671
|
+
certificateAuthorityType?: CertificateAuthorityType | null;
|
|
8672
|
+
/**
|
|
8673
|
+
* The certificateRevocationListUrl property
|
|
8674
|
+
*/
|
|
8675
|
+
certificateRevocationListUrl?: string | null;
|
|
8676
|
+
/**
|
|
8677
|
+
* The createdDateTime property
|
|
8678
|
+
*/
|
|
8679
|
+
createdDateTime?: Date | null;
|
|
8680
|
+
/**
|
|
8681
|
+
* The deltaCertificateRevocationListUrl property
|
|
8682
|
+
*/
|
|
8683
|
+
deltaCertificateRevocationListUrl?: string | null;
|
|
8684
|
+
/**
|
|
8685
|
+
* The displayName property
|
|
8686
|
+
*/
|
|
8687
|
+
displayName?: string | null;
|
|
8688
|
+
/**
|
|
8689
|
+
* The expirationDateTime property
|
|
8690
|
+
*/
|
|
8691
|
+
expirationDateTime?: Date | null;
|
|
8692
|
+
/**
|
|
8693
|
+
* The isIssuerHintEnabled property
|
|
8694
|
+
*/
|
|
8695
|
+
isIssuerHintEnabled?: boolean | null;
|
|
8696
|
+
/**
|
|
8697
|
+
* The issuer property
|
|
8698
|
+
*/
|
|
8699
|
+
issuer?: string | null;
|
|
8700
|
+
/**
|
|
8701
|
+
* The issuerSubjectKeyIdentifier property
|
|
8702
|
+
*/
|
|
8703
|
+
issuerSubjectKeyIdentifier?: string | null;
|
|
8704
|
+
/**
|
|
8705
|
+
* The thumbprint property
|
|
8706
|
+
*/
|
|
8707
|
+
thumbprint?: string | null;
|
|
8708
|
+
}
|
|
8709
|
+
export interface CertificateAuthorityDetailCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8710
|
+
/**
|
|
8711
|
+
* The value property
|
|
8712
|
+
*/
|
|
8713
|
+
value?: CertificateAuthorityDetail[] | null;
|
|
8714
|
+
}
|
|
8715
|
+
export type CertificateAuthorityType = (typeof CertificateAuthorityTypeObject)[keyof typeof CertificateAuthorityTypeObject];
|
|
8522
8716
|
export interface CertificateBasedAuthConfiguration extends Entity, Parsable {
|
|
8523
8717
|
/**
|
|
8524
8718
|
* Collection of certificate authorities which creates a trusted certificate chain.
|
|
@@ -8531,6 +8725,34 @@ export interface CertificateBasedAuthConfigurationCollectionResponse extends Bas
|
|
|
8531
8725
|
*/
|
|
8532
8726
|
value?: CertificateBasedAuthConfiguration[] | null;
|
|
8533
8727
|
}
|
|
8728
|
+
export interface CertificateBasedAuthPki extends DirectoryObject, Parsable {
|
|
8729
|
+
/**
|
|
8730
|
+
* The certificateAuthorities property
|
|
8731
|
+
*/
|
|
8732
|
+
certificateAuthorities?: CertificateAuthorityDetail[] | null;
|
|
8733
|
+
/**
|
|
8734
|
+
* The displayName property
|
|
8735
|
+
*/
|
|
8736
|
+
displayName?: string | null;
|
|
8737
|
+
/**
|
|
8738
|
+
* The lastModifiedDateTime property
|
|
8739
|
+
*/
|
|
8740
|
+
lastModifiedDateTime?: Date | null;
|
|
8741
|
+
/**
|
|
8742
|
+
* The status property
|
|
8743
|
+
*/
|
|
8744
|
+
status?: string | null;
|
|
8745
|
+
/**
|
|
8746
|
+
* The statusDetails property
|
|
8747
|
+
*/
|
|
8748
|
+
statusDetails?: string | null;
|
|
8749
|
+
}
|
|
8750
|
+
export interface CertificateBasedAuthPkiCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8751
|
+
/**
|
|
8752
|
+
* The value property
|
|
8753
|
+
*/
|
|
8754
|
+
value?: CertificateBasedAuthPki[] | null;
|
|
8755
|
+
}
|
|
8534
8756
|
export type CertificateStatus = (typeof CertificateStatusObject)[keyof typeof CertificateStatusObject];
|
|
8535
8757
|
export interface Certification extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8536
8758
|
/**
|
|
@@ -12776,12 +12998,60 @@ export declare function createAgreementFileVersionFromDiscriminatorValue(parseNo
|
|
|
12776
12998
|
* @returns {Agreement}
|
|
12777
12999
|
*/
|
|
12778
13000
|
export declare function createAgreementFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13001
|
+
/**
|
|
13002
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13003
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13004
|
+
* @returns {AiInteractionAttachment}
|
|
13005
|
+
*/
|
|
13006
|
+
export declare function createAiInteractionAttachmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13007
|
+
/**
|
|
13008
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13009
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13010
|
+
* @returns {AiInteractionContext}
|
|
13011
|
+
*/
|
|
13012
|
+
export declare function createAiInteractionContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13013
|
+
/**
|
|
13014
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13015
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13016
|
+
* @returns {AiInteraction}
|
|
13017
|
+
*/
|
|
13018
|
+
export declare function createAiInteractionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13019
|
+
/**
|
|
13020
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13021
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13022
|
+
* @returns {AiInteractionHistory}
|
|
13023
|
+
*/
|
|
13024
|
+
export declare function createAiInteractionHistoryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13025
|
+
/**
|
|
13026
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13027
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13028
|
+
* @returns {AiInteractionLink}
|
|
13029
|
+
*/
|
|
13030
|
+
export declare function createAiInteractionLinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13031
|
+
/**
|
|
13032
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13033
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13034
|
+
* @returns {AiInteractionMentionedIdentitySet}
|
|
13035
|
+
*/
|
|
13036
|
+
export declare function createAiInteractionMentionedIdentitySetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13037
|
+
/**
|
|
13038
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13039
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13040
|
+
* @returns {AiInteractionMention}
|
|
13041
|
+
*/
|
|
13042
|
+
export declare function createAiInteractionMentionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12779
13043
|
/**
|
|
12780
13044
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12781
13045
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12782
13046
|
* @returns {AirPrintSettings}
|
|
12783
13047
|
*/
|
|
12784
13048
|
export declare function createAirPrintSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13049
|
+
/**
|
|
13050
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13051
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13052
|
+
* @returns {AiUser}
|
|
13053
|
+
*/
|
|
13054
|
+
export declare function createAiUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12785
13055
|
/**
|
|
12786
13056
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12787
13057
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14330,6 +14600,18 @@ export declare function createCancelMediaProcessingOperationFromDiscriminatorVal
|
|
|
14330
14600
|
* @returns {CanvasLayout}
|
|
14331
14601
|
*/
|
|
14332
14602
|
export declare function createCanvasLayoutFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14603
|
+
/**
|
|
14604
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14605
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14606
|
+
* @returns {CertificateAuthorityDetailCollectionResponse}
|
|
14607
|
+
*/
|
|
14608
|
+
export declare function createCertificateAuthorityDetailCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14609
|
+
/**
|
|
14610
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14611
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14612
|
+
* @returns {CertificateAuthorityDetail}
|
|
14613
|
+
*/
|
|
14614
|
+
export declare function createCertificateAuthorityDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14333
14615
|
/**
|
|
14334
14616
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14335
14617
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14348,6 +14630,18 @@ export declare function createCertificateBasedAuthConfigurationCollectionRespons
|
|
|
14348
14630
|
* @returns {CertificateBasedAuthConfiguration}
|
|
14349
14631
|
*/
|
|
14350
14632
|
export declare function createCertificateBasedAuthConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14633
|
+
/**
|
|
14634
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14635
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14636
|
+
* @returns {CertificateBasedAuthPkiCollectionResponse}
|
|
14637
|
+
*/
|
|
14638
|
+
export declare function createCertificateBasedAuthPkiCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14639
|
+
/**
|
|
14640
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14641
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14642
|
+
* @returns {CertificateBasedAuthPki}
|
|
14643
|
+
*/
|
|
14644
|
+
export declare function createCertificateBasedAuthPkiFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14351
14645
|
/**
|
|
14352
14646
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14353
14647
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21350,6 +21644,12 @@ export declare function createPublicErrorFromDiscriminatorValue(parseNode: Parse
|
|
|
21350
21644
|
* @returns {PublicInnerError}
|
|
21351
21645
|
*/
|
|
21352
21646
|
export declare function createPublicInnerErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21647
|
+
/**
|
|
21648
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21649
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21650
|
+
* @returns {PublicKeyInfrastructureRoot}
|
|
21651
|
+
*/
|
|
21652
|
+
export declare function createPublicKeyInfrastructureRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21353
21653
|
/**
|
|
21354
21654
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21355
21655
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -27831,11 +28131,51 @@ export declare function deserializeIntoAgreementFileVersion(agreementFileVersion
|
|
|
27831
28131
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27832
28132
|
*/
|
|
27833
28133
|
export declare function deserializeIntoAgreementFileVersionCollectionResponse(agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28134
|
+
/**
|
|
28135
|
+
* The deserialization information for the current model
|
|
28136
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28137
|
+
*/
|
|
28138
|
+
export declare function deserializeIntoAiInteraction(aiInteraction?: Partial<AiInteraction> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28139
|
+
/**
|
|
28140
|
+
* The deserialization information for the current model
|
|
28141
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28142
|
+
*/
|
|
28143
|
+
export declare function deserializeIntoAiInteractionAttachment(aiInteractionAttachment?: Partial<AiInteractionAttachment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28144
|
+
/**
|
|
28145
|
+
* The deserialization information for the current model
|
|
28146
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28147
|
+
*/
|
|
28148
|
+
export declare function deserializeIntoAiInteractionContext(aiInteractionContext?: Partial<AiInteractionContext> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28149
|
+
/**
|
|
28150
|
+
* The deserialization information for the current model
|
|
28151
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28152
|
+
*/
|
|
28153
|
+
export declare function deserializeIntoAiInteractionHistory(aiInteractionHistory?: Partial<AiInteractionHistory> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28154
|
+
/**
|
|
28155
|
+
* The deserialization information for the current model
|
|
28156
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28157
|
+
*/
|
|
28158
|
+
export declare function deserializeIntoAiInteractionLink(aiInteractionLink?: Partial<AiInteractionLink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28159
|
+
/**
|
|
28160
|
+
* The deserialization information for the current model
|
|
28161
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28162
|
+
*/
|
|
28163
|
+
export declare function deserializeIntoAiInteractionMention(aiInteractionMention?: Partial<AiInteractionMention> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28164
|
+
/**
|
|
28165
|
+
* The deserialization information for the current model
|
|
28166
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28167
|
+
*/
|
|
28168
|
+
export declare function deserializeIntoAiInteractionMentionedIdentitySet(aiInteractionMentionedIdentitySet?: Partial<AiInteractionMentionedIdentitySet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27834
28169
|
/**
|
|
27835
28170
|
* The deserialization information for the current model
|
|
27836
28171
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27837
28172
|
*/
|
|
27838
28173
|
export declare function deserializeIntoAirPrintSettings(airPrintSettings?: Partial<AirPrintSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28174
|
+
/**
|
|
28175
|
+
* The deserialization information for the current model
|
|
28176
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28177
|
+
*/
|
|
28178
|
+
export declare function deserializeIntoAiUser(aiUser?: Partial<AiUser> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27839
28179
|
/**
|
|
27840
28180
|
* The deserialization information for the current model
|
|
27841
28181
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29131,6 +29471,16 @@ export declare function deserializeIntoCanvasLayout(canvasLayout?: Partial<Canva
|
|
|
29131
29471
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29132
29472
|
*/
|
|
29133
29473
|
export declare function deserializeIntoCertificateAuthority(certificateAuthority?: Partial<CertificateAuthority> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29474
|
+
/**
|
|
29475
|
+
* The deserialization information for the current model
|
|
29476
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29477
|
+
*/
|
|
29478
|
+
export declare function deserializeIntoCertificateAuthorityDetail(certificateAuthorityDetail?: Partial<CertificateAuthorityDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29479
|
+
/**
|
|
29480
|
+
* The deserialization information for the current model
|
|
29481
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29482
|
+
*/
|
|
29483
|
+
export declare function deserializeIntoCertificateAuthorityDetailCollectionResponse(certificateAuthorityDetailCollectionResponse?: Partial<CertificateAuthorityDetailCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29134
29484
|
/**
|
|
29135
29485
|
* The deserialization information for the current model
|
|
29136
29486
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29141,6 +29491,16 @@ export declare function deserializeIntoCertificateBasedAuthConfiguration(certifi
|
|
|
29141
29491
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29142
29492
|
*/
|
|
29143
29493
|
export declare function deserializeIntoCertificateBasedAuthConfigurationCollectionResponse(certificateBasedAuthConfigurationCollectionResponse?: Partial<CertificateBasedAuthConfigurationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29494
|
+
/**
|
|
29495
|
+
* The deserialization information for the current model
|
|
29496
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29497
|
+
*/
|
|
29498
|
+
export declare function deserializeIntoCertificateBasedAuthPki(certificateBasedAuthPki?: Partial<CertificateBasedAuthPki> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29499
|
+
/**
|
|
29500
|
+
* The deserialization information for the current model
|
|
29501
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29502
|
+
*/
|
|
29503
|
+
export declare function deserializeIntoCertificateBasedAuthPkiCollectionResponse(certificateBasedAuthPkiCollectionResponse?: Partial<CertificateBasedAuthPkiCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29144
29504
|
/**
|
|
29145
29505
|
* The deserialization information for the current model
|
|
29146
29506
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -34976,6 +35336,11 @@ export declare function deserializeIntoPublicErrorDetail(publicErrorDetail?: Par
|
|
|
34976
35336
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34977
35337
|
*/
|
|
34978
35338
|
export declare function deserializeIntoPublicInnerError(publicInnerError?: Partial<PublicInnerError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35339
|
+
/**
|
|
35340
|
+
* The deserialization information for the current model
|
|
35341
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35342
|
+
*/
|
|
35343
|
+
export declare function deserializeIntoPublicKeyInfrastructureRoot(publicKeyInfrastructureRoot?: Partial<PublicKeyInfrastructureRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34979
35344
|
/**
|
|
34980
35345
|
* The deserialization information for the current model
|
|
34981
35346
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -41432,6 +41797,10 @@ export interface Directory extends Entity, Parsable {
|
|
|
41432
41797
|
* A container for on-premises directory synchronization functionalities that are available for the organization.
|
|
41433
41798
|
*/
|
|
41434
41799
|
onPremisesSynchronization?: OnPremisesDirectorySynchronization[] | null;
|
|
41800
|
+
/**
|
|
41801
|
+
* The publicKeyInfrastructure property
|
|
41802
|
+
*/
|
|
41803
|
+
publicKeyInfrastructure?: PublicKeyInfrastructureRoot | null;
|
|
41435
41804
|
/**
|
|
41436
41805
|
* List of commercial subscriptions that an organization acquired.
|
|
41437
41806
|
*/
|
|
@@ -42245,11 +42614,11 @@ export interface DriveProtectionUnitCollectionResponse extends BaseCollectionPag
|
|
|
42245
42614
|
}
|
|
42246
42615
|
export interface DriveProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
|
|
42247
42616
|
/**
|
|
42248
|
-
* The directoryObjectIds
|
|
42617
|
+
* The list of OneDrive directoryObjectIds to add to the OneDrive protection policy.
|
|
42249
42618
|
*/
|
|
42250
42619
|
directoryObjectIds?: string[] | null;
|
|
42251
42620
|
/**
|
|
42252
|
-
* The
|
|
42621
|
+
* The list of email addresses to add to the OneDrive protection policy.
|
|
42253
42622
|
*/
|
|
42254
42623
|
drives?: string[] | null;
|
|
42255
42624
|
}
|
|
@@ -42307,11 +42676,11 @@ export interface DriveRestoreArtifactCollectionResponse extends BaseCollectionPa
|
|
|
42307
42676
|
}
|
|
42308
42677
|
export interface DriveRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
|
|
42309
42678
|
/**
|
|
42310
|
-
* The
|
|
42679
|
+
* The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation.
|
|
42311
42680
|
*/
|
|
42312
42681
|
directoryObjectIds?: string[] | null;
|
|
42313
42682
|
/**
|
|
42314
|
-
* The
|
|
42683
|
+
* The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation.
|
|
42315
42684
|
*/
|
|
42316
42685
|
drives?: string[] | null;
|
|
42317
42686
|
}
|
|
@@ -44198,7 +44567,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
44198
44567
|
*/
|
|
44199
44568
|
calendar?: Calendar | null;
|
|
44200
44569
|
/**
|
|
44201
|
-
*
|
|
44570
|
+
* Contains occurrenceId property values of canceled instances in a recurring series, if the event is the series master. Instances in a recurring series that are canceled are called canceled occurences.Returned only on $select in a Get operation which specifies the ID (seriesMasterId property value) of a series master event.
|
|
44202
44571
|
*/
|
|
44203
44572
|
cancelledOccurrences?: string[] | null;
|
|
44204
44573
|
/**
|
|
@@ -44206,7 +44575,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
44206
44575
|
*/
|
|
44207
44576
|
end?: DateTimeTimeZone | null;
|
|
44208
44577
|
/**
|
|
44209
|
-
*
|
|
44578
|
+
* Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
|
|
44210
44579
|
*/
|
|
44211
44580
|
exceptionOccurrences?: Event[] | null;
|
|
44212
44581
|
/**
|
|
@@ -44230,7 +44599,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
44230
44599
|
*/
|
|
44231
44600
|
importance?: Importance | null;
|
|
44232
44601
|
/**
|
|
44233
|
-
* The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences
|
|
44602
|
+
* The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
|
|
44234
44603
|
*/
|
|
44235
44604
|
instances?: Event[] | null;
|
|
44236
44605
|
/**
|
|
@@ -44480,7 +44849,7 @@ export interface ExchangeRestoreSession extends Parsable, RestoreSessionBase {
|
|
|
44480
44849
|
*/
|
|
44481
44850
|
mailboxRestoreArtifacts?: MailboxRestoreArtifact[] | null;
|
|
44482
44851
|
/**
|
|
44483
|
-
*
|
|
44852
|
+
* A collection of user mailboxes and destination details that can be used to restore Exchange mailboxes.
|
|
44484
44853
|
*/
|
|
44485
44854
|
mailboxRestoreArtifactsBulkAdditionRequests?: MailboxRestoreArtifactsBulkAdditionRequest[] | null;
|
|
44486
44855
|
}
|
|
@@ -45502,7 +45871,7 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
45502
45871
|
*/
|
|
45503
45872
|
assignedLabels?: AssignedLabel[] | null;
|
|
45504
45873
|
/**
|
|
45505
|
-
* The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq).Read-only.
|
|
45874
|
+
* The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq). Read-only.
|
|
45506
45875
|
*/
|
|
45507
45876
|
assignedLicenses?: AssignedLicense[] | null;
|
|
45508
45877
|
/**
|
|
@@ -50083,11 +50452,11 @@ export interface MailboxProtectionUnitCollectionResponse extends BaseCollectionP
|
|
|
50083
50452
|
}
|
|
50084
50453
|
export interface MailboxProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
|
|
50085
50454
|
/**
|
|
50086
|
-
* The directoryObjectIds
|
|
50455
|
+
* The list of Exchange directoryObjectIds to add to the Exchange protection policy.
|
|
50087
50456
|
*/
|
|
50088
50457
|
directoryObjectIds?: string[] | null;
|
|
50089
50458
|
/**
|
|
50090
|
-
* The
|
|
50459
|
+
* The list of Exchange email addresses to add to the Exchange protection policy.
|
|
50091
50460
|
*/
|
|
50092
50461
|
mailboxes?: string[] | null;
|
|
50093
50462
|
}
|
|
@@ -50115,11 +50484,11 @@ export interface MailboxRestoreArtifactCollectionResponse extends BaseCollection
|
|
|
50115
50484
|
}
|
|
50116
50485
|
export interface MailboxRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
|
|
50117
50486
|
/**
|
|
50118
|
-
* The
|
|
50487
|
+
* The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation.
|
|
50119
50488
|
*/
|
|
50120
50489
|
directoryObjectIds?: string[] | null;
|
|
50121
50490
|
/**
|
|
50122
|
-
* The
|
|
50491
|
+
* The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation.
|
|
50123
50492
|
*/
|
|
50124
50493
|
mailboxes?: string[] | null;
|
|
50125
50494
|
}
|
|
@@ -53772,19 +54141,19 @@ export interface ObjectMappingMetadataEntry extends AdditionalDataHolder, Backed
|
|
|
53772
54141
|
}
|
|
53773
54142
|
export interface OfferShiftRequest extends Parsable, ScheduleChangeRequest {
|
|
53774
54143
|
/**
|
|
53775
|
-
* The
|
|
54144
|
+
* The date and time when the recipient approved or declined the request.
|
|
53776
54145
|
*/
|
|
53777
54146
|
recipientActionDateTime?: Date | null;
|
|
53778
54147
|
/**
|
|
53779
|
-
*
|
|
54148
|
+
* The message sent by the recipient regarding the request.
|
|
53780
54149
|
*/
|
|
53781
54150
|
recipientActionMessage?: string | null;
|
|
53782
54151
|
/**
|
|
53783
|
-
*
|
|
54152
|
+
* The recipient's user ID.
|
|
53784
54153
|
*/
|
|
53785
54154
|
recipientUserId?: string | null;
|
|
53786
54155
|
/**
|
|
53787
|
-
*
|
|
54156
|
+
* The sender's shift ID.
|
|
53788
54157
|
*/
|
|
53789
54158
|
senderShiftId?: string | null;
|
|
53790
54159
|
}
|
|
@@ -54050,11 +54419,11 @@ export interface OneDriveForBusinessProtectionPolicyCollectionResponse extends B
|
|
|
54050
54419
|
}
|
|
54051
54420
|
export interface OneDriveForBusinessRestoreSession extends Parsable, RestoreSessionBase {
|
|
54052
54421
|
/**
|
|
54053
|
-
* A collection of restore points and destination details that can be used to restore a OneDrive for
|
|
54422
|
+
* A collection of restore points and destination details that can be used to restore a OneDrive for work or school drive.
|
|
54054
54423
|
*/
|
|
54055
54424
|
driveRestoreArtifacts?: DriveRestoreArtifact[] | null;
|
|
54056
54425
|
/**
|
|
54057
|
-
*
|
|
54426
|
+
* A collection of user mailboxes and destination details that can be used to restore a OneDrive for work or school drive.
|
|
54058
54427
|
*/
|
|
54059
54428
|
driveRestoreArtifactsBulkAdditionRequests?: DriveRestoreArtifactsBulkAdditionRequest[] | null;
|
|
54060
54429
|
}
|
|
@@ -59070,7 +59439,7 @@ export interface ProtectionRuleBase extends Entity, Parsable {
|
|
|
59070
59439
|
*/
|
|
59071
59440
|
errorEscaped?: PublicError | null;
|
|
59072
59441
|
/**
|
|
59073
|
-
*
|
|
59442
|
+
* The isAutoApplyEnabled property
|
|
59074
59443
|
*/
|
|
59075
59444
|
isAutoApplyEnabled?: boolean | null;
|
|
59076
59445
|
/**
|
|
@@ -59125,27 +59494,27 @@ export interface ProtectionUnitBaseCollectionResponse extends BaseCollectionPagi
|
|
|
59125
59494
|
}
|
|
59126
59495
|
export interface ProtectionUnitsBulkJobBase extends Entity, Parsable {
|
|
59127
59496
|
/**
|
|
59128
|
-
* The
|
|
59497
|
+
* The identity of person who created the job.
|
|
59129
59498
|
*/
|
|
59130
59499
|
createdBy?: IdentitySet | null;
|
|
59131
59500
|
/**
|
|
59132
|
-
* The
|
|
59501
|
+
* The time of creation of the job.
|
|
59133
59502
|
*/
|
|
59134
59503
|
createdDateTime?: Date | null;
|
|
59135
59504
|
/**
|
|
59136
|
-
* The
|
|
59505
|
+
* The name of the protection units bulk addition job.
|
|
59137
59506
|
*/
|
|
59138
59507
|
displayName?: string | null;
|
|
59139
59508
|
/**
|
|
59140
|
-
*
|
|
59509
|
+
* Error details containing resource resolution failures, if any.
|
|
59141
59510
|
*/
|
|
59142
59511
|
errorEscaped?: PublicError | null;
|
|
59143
59512
|
/**
|
|
59144
|
-
* The
|
|
59513
|
+
* The identity of the person who last modified the job.
|
|
59145
59514
|
*/
|
|
59146
59515
|
lastModifiedBy?: IdentitySet | null;
|
|
59147
59516
|
/**
|
|
59148
|
-
*
|
|
59517
|
+
* Timestamp of the last modification made to the job.
|
|
59149
59518
|
*/
|
|
59150
59519
|
lastModifiedDateTime?: Date | null;
|
|
59151
59520
|
/**
|
|
@@ -59542,6 +59911,12 @@ export interface PublicInnerError extends AdditionalDataHolder, BackedModel, Par
|
|
|
59542
59911
|
*/
|
|
59543
59912
|
target?: string | null;
|
|
59544
59913
|
}
|
|
59914
|
+
export interface PublicKeyInfrastructureRoot extends Entity, Parsable {
|
|
59915
|
+
/**
|
|
59916
|
+
* The certificateBasedAuthConfigurations property
|
|
59917
|
+
*/
|
|
59918
|
+
certificateBasedAuthConfigurations?: CertificateBasedAuthPki[] | null;
|
|
59919
|
+
}
|
|
59545
59920
|
export type QuarantineReason = (typeof QuarantineReasonObject)[keyof typeof QuarantineReasonObject];
|
|
59546
59921
|
export interface Quota extends AdditionalDataHolder, BackedModel, Parsable {
|
|
59547
59922
|
/**
|
|
@@ -60803,43 +61178,43 @@ export interface RestoreArtifactBase extends Entity, Parsable {
|
|
|
60803
61178
|
}
|
|
60804
61179
|
export interface RestoreArtifactsBulkRequestBase extends Entity, Parsable {
|
|
60805
61180
|
/**
|
|
60806
|
-
* The
|
|
61181
|
+
* The identity of the person who created the bulk request.
|
|
60807
61182
|
*/
|
|
60808
61183
|
createdBy?: IdentitySet | null;
|
|
60809
61184
|
/**
|
|
60810
|
-
* The
|
|
61185
|
+
* The time when the bulk request was created.
|
|
60811
61186
|
*/
|
|
60812
61187
|
createdDateTime?: Date | null;
|
|
60813
61188
|
/**
|
|
60814
|
-
* The
|
|
61189
|
+
* Indicates the restoration destination. The possible values are: new, inPlace, unknownFutureValue.
|
|
60815
61190
|
*/
|
|
60816
61191
|
destinationType?: DestinationType | null;
|
|
60817
61192
|
/**
|
|
60818
|
-
*
|
|
61193
|
+
* Name of the addition request.
|
|
60819
61194
|
*/
|
|
60820
61195
|
displayName?: string | null;
|
|
60821
61196
|
/**
|
|
60822
|
-
*
|
|
61197
|
+
* Error details are populated for resource resolution failures.
|
|
60823
61198
|
*/
|
|
60824
61199
|
errorEscaped?: PublicError | null;
|
|
60825
61200
|
/**
|
|
60826
|
-
*
|
|
61201
|
+
* Identity of the person who last modified this entity.
|
|
60827
61202
|
*/
|
|
60828
61203
|
lastModifiedBy?: IdentitySet | null;
|
|
60829
61204
|
/**
|
|
60830
|
-
*
|
|
61205
|
+
* Timestamp when this entity was last modified.
|
|
60831
61206
|
*/
|
|
60832
61207
|
lastModifiedDateTime?: Date | null;
|
|
60833
61208
|
/**
|
|
60834
|
-
* The
|
|
61209
|
+
* The start and end date and time of the protection period.
|
|
60835
61210
|
*/
|
|
60836
61211
|
protectionTimePeriod?: TimePeriod | null;
|
|
60837
61212
|
/**
|
|
60838
|
-
*
|
|
61213
|
+
* Indicates which protection units to restore. This property isn't implemented yet. Future value; don't use.
|
|
60839
61214
|
*/
|
|
60840
61215
|
protectionUnitIds?: string[] | null;
|
|
60841
61216
|
/**
|
|
60842
|
-
* The
|
|
61217
|
+
* Indicates which restore point to return. The possible values are: oldest, latest, unknownFutureValue.
|
|
60843
61218
|
*/
|
|
60844
61219
|
restorePointPreference?: RestorePointPreference | null;
|
|
60845
61220
|
/**
|
|
@@ -60847,7 +61222,7 @@ export interface RestoreArtifactsBulkRequestBase extends Entity, Parsable {
|
|
|
60847
61222
|
*/
|
|
60848
61223
|
status?: RestoreArtifactsBulkRequestStatus | null;
|
|
60849
61224
|
/**
|
|
60850
|
-
* The
|
|
61225
|
+
* The type of the restore point. The possible values are: none, fastRestore, unknownFutureValue.
|
|
60851
61226
|
*/
|
|
60852
61227
|
tags?: RestorePointTags[] | null;
|
|
60853
61228
|
}
|
|
@@ -61862,35 +62237,35 @@ export interface Schedule extends Entity, Parsable {
|
|
|
61862
62237
|
}
|
|
61863
62238
|
export interface ScheduleChangeRequest extends ChangeTrackedEntity, Parsable {
|
|
61864
62239
|
/**
|
|
61865
|
-
*
|
|
62240
|
+
* Indicates who the request is assigned to. Possible values are: sender, recipient, manager, system, unknownFutureValue.
|
|
61866
62241
|
*/
|
|
61867
62242
|
assignedTo?: ScheduleChangeRequestActor | null;
|
|
61868
62243
|
/**
|
|
61869
|
-
* The
|
|
62244
|
+
* The date and time when the manager approved or declined the scheduleChangeRequest. 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.
|
|
61870
62245
|
*/
|
|
61871
62246
|
managerActionDateTime?: Date | null;
|
|
61872
62247
|
/**
|
|
61873
|
-
* The
|
|
62248
|
+
* The message sent by the manager regarding the scheduleChangeRequest. Optional.
|
|
61874
62249
|
*/
|
|
61875
62250
|
managerActionMessage?: string | null;
|
|
61876
62251
|
/**
|
|
61877
|
-
* The
|
|
62252
|
+
* The user ID of the manager who approved or declined the scheduleChangeRequest.
|
|
61878
62253
|
*/
|
|
61879
62254
|
managerUserId?: string | null;
|
|
61880
62255
|
/**
|
|
61881
|
-
* The
|
|
62256
|
+
* The date and time when the sender sent the scheduleChangeRequest. 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.
|
|
61882
62257
|
*/
|
|
61883
62258
|
senderDateTime?: Date | null;
|
|
61884
62259
|
/**
|
|
61885
|
-
* The
|
|
62260
|
+
* The message sent by the sender of the scheduleChangeRequest. Optional.
|
|
61886
62261
|
*/
|
|
61887
62262
|
senderMessage?: string | null;
|
|
61888
62263
|
/**
|
|
61889
|
-
* The
|
|
62264
|
+
* The user ID of the sender of the scheduleChangeRequest.
|
|
61890
62265
|
*/
|
|
61891
62266
|
senderUserId?: string | null;
|
|
61892
62267
|
/**
|
|
61893
|
-
* The state
|
|
62268
|
+
* The state of the scheduleChangeRequest. Possible values are: pending, approved, declined, unknownFutureValue.
|
|
61894
62269
|
*/
|
|
61895
62270
|
state?: ScheduleChangeState | null;
|
|
61896
62271
|
}
|
|
@@ -62341,7 +62716,7 @@ export interface SearchRequest extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
62341
62716
|
*/
|
|
62342
62717
|
entityTypes?: EntityType[] | null;
|
|
62343
62718
|
/**
|
|
62344
|
-
* Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default; otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from the content that Microsoft
|
|
62719
|
+
* Contains the fields to be returned for each resource object specified in entityTypes, allowing customization of the fields returned by default; otherwise, including additional fields such as custom managed properties from SharePoint and OneDrive, or custom fields in externalItem from the content that Microsoft 365 Copilot connectors bring in. The fields property can use the semantic labels applied to properties. For example, if a property is labeled as title, you can retrieve it using the following syntax: label_title. Optional.
|
|
62345
62720
|
*/
|
|
62346
62721
|
fields?: string[] | null;
|
|
62347
62722
|
/**
|
|
@@ -62546,7 +62921,7 @@ export interface SecureScoreControlProfile extends Entity, Parsable {
|
|
|
62546
62921
|
*/
|
|
62547
62922
|
azureTenantId?: string | null;
|
|
62548
62923
|
/**
|
|
62549
|
-
* The collection of compliance information associated with secure score control
|
|
62924
|
+
* The collection of compliance information associated with secure score control. Not implemented. Currently returns null.
|
|
62550
62925
|
*/
|
|
62551
62926
|
complianceInformation?: ComplianceInformation[] | null;
|
|
62552
62927
|
/**
|
|
@@ -63404,11 +63779,51 @@ export declare function serializeAgreementFileVersion(writer: SerializationWrite
|
|
|
63404
63779
|
* @param writer Serialization writer to use to serialize this model
|
|
63405
63780
|
*/
|
|
63406
63781
|
export declare function serializeAgreementFileVersionCollectionResponse(writer: SerializationWriter, agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined | null): void;
|
|
63782
|
+
/**
|
|
63783
|
+
* Serializes information the current object
|
|
63784
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63785
|
+
*/
|
|
63786
|
+
export declare function serializeAiInteraction(writer: SerializationWriter, aiInteraction?: Partial<AiInteraction> | undefined | null): void;
|
|
63787
|
+
/**
|
|
63788
|
+
* Serializes information the current object
|
|
63789
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63790
|
+
*/
|
|
63791
|
+
export declare function serializeAiInteractionAttachment(writer: SerializationWriter, aiInteractionAttachment?: Partial<AiInteractionAttachment> | undefined | null): void;
|
|
63792
|
+
/**
|
|
63793
|
+
* Serializes information the current object
|
|
63794
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63795
|
+
*/
|
|
63796
|
+
export declare function serializeAiInteractionContext(writer: SerializationWriter, aiInteractionContext?: Partial<AiInteractionContext> | undefined | null): void;
|
|
63797
|
+
/**
|
|
63798
|
+
* Serializes information the current object
|
|
63799
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63800
|
+
*/
|
|
63801
|
+
export declare function serializeAiInteractionHistory(writer: SerializationWriter, aiInteractionHistory?: Partial<AiInteractionHistory> | undefined | null): void;
|
|
63802
|
+
/**
|
|
63803
|
+
* Serializes information the current object
|
|
63804
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63805
|
+
*/
|
|
63806
|
+
export declare function serializeAiInteractionLink(writer: SerializationWriter, aiInteractionLink?: Partial<AiInteractionLink> | undefined | null): void;
|
|
63807
|
+
/**
|
|
63808
|
+
* Serializes information the current object
|
|
63809
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63810
|
+
*/
|
|
63811
|
+
export declare function serializeAiInteractionMention(writer: SerializationWriter, aiInteractionMention?: Partial<AiInteractionMention> | undefined | null): void;
|
|
63812
|
+
/**
|
|
63813
|
+
* Serializes information the current object
|
|
63814
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63815
|
+
*/
|
|
63816
|
+
export declare function serializeAiInteractionMentionedIdentitySet(writer: SerializationWriter, aiInteractionMentionedIdentitySet?: Partial<AiInteractionMentionedIdentitySet> | undefined | null): void;
|
|
63407
63817
|
/**
|
|
63408
63818
|
* Serializes information the current object
|
|
63409
63819
|
* @param writer Serialization writer to use to serialize this model
|
|
63410
63820
|
*/
|
|
63411
63821
|
export declare function serializeAirPrintSettings(writer: SerializationWriter, airPrintSettings?: Partial<AirPrintSettings> | undefined | null): void;
|
|
63822
|
+
/**
|
|
63823
|
+
* Serializes information the current object
|
|
63824
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63825
|
+
*/
|
|
63826
|
+
export declare function serializeAiUser(writer: SerializationWriter, aiUser?: Partial<AiUser> | undefined | null): void;
|
|
63412
63827
|
/**
|
|
63413
63828
|
* Serializes information the current object
|
|
63414
63829
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64704,6 +65119,16 @@ export declare function serializeCanvasLayout(writer: SerializationWriter, canva
|
|
|
64704
65119
|
* @param writer Serialization writer to use to serialize this model
|
|
64705
65120
|
*/
|
|
64706
65121
|
export declare function serializeCertificateAuthority(writer: SerializationWriter, certificateAuthority?: Partial<CertificateAuthority> | undefined | null): void;
|
|
65122
|
+
/**
|
|
65123
|
+
* Serializes information the current object
|
|
65124
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65125
|
+
*/
|
|
65126
|
+
export declare function serializeCertificateAuthorityDetail(writer: SerializationWriter, certificateAuthorityDetail?: Partial<CertificateAuthorityDetail> | undefined | null): void;
|
|
65127
|
+
/**
|
|
65128
|
+
* Serializes information the current object
|
|
65129
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65130
|
+
*/
|
|
65131
|
+
export declare function serializeCertificateAuthorityDetailCollectionResponse(writer: SerializationWriter, certificateAuthorityDetailCollectionResponse?: Partial<CertificateAuthorityDetailCollectionResponse> | undefined | null): void;
|
|
64707
65132
|
/**
|
|
64708
65133
|
* Serializes information the current object
|
|
64709
65134
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64714,6 +65139,16 @@ export declare function serializeCertificateBasedAuthConfiguration(writer: Seria
|
|
|
64714
65139
|
* @param writer Serialization writer to use to serialize this model
|
|
64715
65140
|
*/
|
|
64716
65141
|
export declare function serializeCertificateBasedAuthConfigurationCollectionResponse(writer: SerializationWriter, certificateBasedAuthConfigurationCollectionResponse?: Partial<CertificateBasedAuthConfigurationCollectionResponse> | undefined | null): void;
|
|
65142
|
+
/**
|
|
65143
|
+
* Serializes information the current object
|
|
65144
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65145
|
+
*/
|
|
65146
|
+
export declare function serializeCertificateBasedAuthPki(writer: SerializationWriter, certificateBasedAuthPki?: Partial<CertificateBasedAuthPki> | undefined | null): void;
|
|
65147
|
+
/**
|
|
65148
|
+
* Serializes information the current object
|
|
65149
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65150
|
+
*/
|
|
65151
|
+
export declare function serializeCertificateBasedAuthPkiCollectionResponse(writer: SerializationWriter, certificateBasedAuthPkiCollectionResponse?: Partial<CertificateBasedAuthPkiCollectionResponse> | undefined | null): void;
|
|
64717
65152
|
/**
|
|
64718
65153
|
* Serializes information the current object
|
|
64719
65154
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -70549,6 +70984,11 @@ export declare function serializePublicErrorDetail(writer: SerializationWriter,
|
|
|
70549
70984
|
* @param writer Serialization writer to use to serialize this model
|
|
70550
70985
|
*/
|
|
70551
70986
|
export declare function serializePublicInnerError(writer: SerializationWriter, publicInnerError?: Partial<PublicInnerError> | undefined | null): void;
|
|
70987
|
+
/**
|
|
70988
|
+
* Serializes information the current object
|
|
70989
|
+
* @param writer Serialization writer to use to serialize this model
|
|
70990
|
+
*/
|
|
70991
|
+
export declare function serializePublicKeyInfrastructureRoot(writer: SerializationWriter, publicKeyInfrastructureRoot?: Partial<PublicKeyInfrastructureRoot> | undefined | null): void;
|
|
70552
70992
|
/**
|
|
70553
70993
|
* Serializes information the current object
|
|
70554
70994
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -75711,7 +76151,7 @@ export interface SharePointRestoreSession extends Parsable, RestoreSessionBase {
|
|
|
75711
76151
|
*/
|
|
75712
76152
|
siteRestoreArtifacts?: SiteRestoreArtifact[] | null;
|
|
75713
76153
|
/**
|
|
75714
|
-
*
|
|
76154
|
+
* A collection of SharePoint site URLs and destination details that can be used to restore SharePoint sites.
|
|
75715
76155
|
*/
|
|
75716
76156
|
siteRestoreArtifactsBulkAdditionRequests?: SiteRestoreArtifactsBulkAdditionRequest[] | null;
|
|
75717
76157
|
}
|
|
@@ -76820,11 +77260,11 @@ export interface SiteProtectionUnitCollectionResponse extends BaseCollectionPagi
|
|
|
76820
77260
|
}
|
|
76821
77261
|
export interface SiteProtectionUnitsBulkAdditionJob extends Parsable, ProtectionUnitsBulkJobBase {
|
|
76822
77262
|
/**
|
|
76823
|
-
* The
|
|
77263
|
+
* The list of SharePoint site IDs to add to the SharePoint protection policy.
|
|
76824
77264
|
*/
|
|
76825
77265
|
siteIds?: string[] | null;
|
|
76826
77266
|
/**
|
|
76827
|
-
* The
|
|
77267
|
+
* The list of SharePoint site URLs to add to the SharePoint protection policy.
|
|
76828
77268
|
*/
|
|
76829
77269
|
siteWebUrls?: string[] | null;
|
|
76830
77270
|
}
|
|
@@ -76856,11 +77296,11 @@ export interface SiteRestoreArtifactCollectionResponse extends BaseCollectionPag
|
|
|
76856
77296
|
}
|
|
76857
77297
|
export interface SiteRestoreArtifactsBulkAdditionRequest extends Parsable, RestoreArtifactsBulkRequestBase {
|
|
76858
77298
|
/**
|
|
76859
|
-
* The
|
|
77299
|
+
* The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation.
|
|
76860
77300
|
*/
|
|
76861
77301
|
siteIds?: string[] | null;
|
|
76862
77302
|
/**
|
|
76863
|
-
* The
|
|
77303
|
+
* The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation.
|
|
76864
77304
|
*/
|
|
76865
77305
|
siteWebUrls?: string[] | null;
|
|
76866
77306
|
}
|
|
@@ -77755,7 +78195,7 @@ export interface SubscriptionCollectionResponse extends BaseCollectionPagination
|
|
|
77755
78195
|
}
|
|
77756
78196
|
export interface SwapShiftsChangeRequest extends OfferShiftRequest, Parsable {
|
|
77757
78197
|
/**
|
|
77758
|
-
*
|
|
78198
|
+
* The recipient's Shift ID
|
|
77759
78199
|
*/
|
|
77760
78200
|
recipientShiftId?: string | null;
|
|
77761
78201
|
}
|
|
@@ -80262,11 +80702,11 @@ export interface TimeOffReasonCollectionResponse extends BaseCollectionPaginatio
|
|
|
80262
80702
|
export type TimeOffReasonIconType = (typeof TimeOffReasonIconTypeObject)[keyof typeof TimeOffReasonIconTypeObject];
|
|
80263
80703
|
export interface TimeOffRequest extends Parsable, ScheduleChangeRequest {
|
|
80264
80704
|
/**
|
|
80265
|
-
* The
|
|
80705
|
+
* The date and time the time off ends in ISO 8601 format and in UTC time.
|
|
80266
80706
|
*/
|
|
80267
80707
|
endDateTime?: Date | null;
|
|
80268
80708
|
/**
|
|
80269
|
-
* The
|
|
80709
|
+
* The date and time the time off starts in ISO 8601 format and in UTC time.
|
|
80270
80710
|
*/
|
|
80271
80711
|
startDateTime?: Date | null;
|
|
80272
80712
|
/**
|
|
@@ -84964,7 +85404,7 @@ export interface VppLicensingType extends AdditionalDataHolder, BackedModel, Par
|
|
|
84964
85404
|
*/
|
|
84965
85405
|
export interface VppToken extends Entity, Parsable {
|
|
84966
85406
|
/**
|
|
84967
|
-
* The
|
|
85407
|
+
* The Apple ID associated with the given Apple Volume Purchase Program Token.
|
|
84968
85408
|
*/
|
|
84969
85409
|
appleId?: string | null;
|
|
84970
85410
|
/**
|
|
@@ -84972,7 +85412,7 @@ export interface VppToken extends Entity, Parsable {
|
|
|
84972
85412
|
*/
|
|
84973
85413
|
automaticallyUpdateApps?: boolean | null;
|
|
84974
85414
|
/**
|
|
84975
|
-
*
|
|
85415
|
+
* The country or region associated with the Apple Volume Purchase Program Token.
|
|
84976
85416
|
*/
|
|
84977
85417
|
countryOrRegion?: string | null;
|
|
84978
85418
|
/**
|
|
@@ -90265,6 +90705,11 @@ export declare const AgreementAcceptanceStateObject: {
|
|
|
90265
90705
|
readonly Declined: "declined";
|
|
90266
90706
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90267
90707
|
};
|
|
90708
|
+
export declare const AiInteractionTypeObject: {
|
|
90709
|
+
readonly UserPrompt: "userPrompt";
|
|
90710
|
+
readonly AiResponse: "aiResponse";
|
|
90711
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90712
|
+
};
|
|
90268
90713
|
export declare const AlertFeedbackObject: {
|
|
90269
90714
|
readonly Unknown: "unknown";
|
|
90270
90715
|
readonly TruePositive: "truePositive";
|
|
@@ -91019,6 +91464,11 @@ export declare const CategoryColorObject: {
|
|
|
91019
91464
|
readonly Preset23: "preset23";
|
|
91020
91465
|
readonly Preset24: "preset24";
|
|
91021
91466
|
};
|
|
91467
|
+
export declare const CertificateAuthorityTypeObject: {
|
|
91468
|
+
readonly Root: "root";
|
|
91469
|
+
readonly Intermediate: "intermediate";
|
|
91470
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91471
|
+
};
|
|
91022
91472
|
export declare const CertificateStatusObject: {
|
|
91023
91473
|
readonly NotProvisioned: "notProvisioned";
|
|
91024
91474
|
readonly Provisioned: "provisioned";
|