@microsoft/msgraph-sdk 1.0.0-preview.55 → 1.0.0-preview.57
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 +509 -11
- package/models/index.d.ts.map +1 -1
- package/models/index.js +461 -1
- package/models/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/models/index.d.ts
CHANGED
|
@@ -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,189 @@ export interface AgreementFileVersionCollectionResponse extends BaseCollectionPa
|
|
|
2178
2178
|
*/
|
|
2179
2179
|
value?: AgreementFileVersion[] | null;
|
|
2180
2180
|
}
|
|
2181
|
+
export interface AiInteraction extends Entity, Parsable {
|
|
2182
|
+
/**
|
|
2183
|
+
* The appClass property
|
|
2184
|
+
*/
|
|
2185
|
+
appClass?: string | null;
|
|
2186
|
+
/**
|
|
2187
|
+
* The attachments property
|
|
2188
|
+
*/
|
|
2189
|
+
attachments?: AiInteractionAttachment[] | null;
|
|
2190
|
+
/**
|
|
2191
|
+
* The body property
|
|
2192
|
+
*/
|
|
2193
|
+
body?: ItemBody | null;
|
|
2194
|
+
/**
|
|
2195
|
+
* The contexts property
|
|
2196
|
+
*/
|
|
2197
|
+
contexts?: AiInteractionContext[] | null;
|
|
2198
|
+
/**
|
|
2199
|
+
* The conversationType property
|
|
2200
|
+
*/
|
|
2201
|
+
conversationType?: string | null;
|
|
2202
|
+
/**
|
|
2203
|
+
* The createdDateTime property
|
|
2204
|
+
*/
|
|
2205
|
+
createdDateTime?: Date | null;
|
|
2206
|
+
/**
|
|
2207
|
+
* The etag property
|
|
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 links property
|
|
2220
|
+
*/
|
|
2221
|
+
links?: AiInteractionLink[] | null;
|
|
2222
|
+
/**
|
|
2223
|
+
* The locale property
|
|
2224
|
+
*/
|
|
2225
|
+
locale?: string | null;
|
|
2226
|
+
/**
|
|
2227
|
+
* The mentions property
|
|
2228
|
+
*/
|
|
2229
|
+
mentions?: AiInteractionMention[] | null;
|
|
2230
|
+
/**
|
|
2231
|
+
* The requestId property
|
|
2232
|
+
*/
|
|
2233
|
+
requestId?: string | null;
|
|
2234
|
+
/**
|
|
2235
|
+
* The sessionId property
|
|
2236
|
+
*/
|
|
2237
|
+
sessionId?: string | null;
|
|
2238
|
+
}
|
|
2239
|
+
export interface AiInteractionAttachment extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2240
|
+
/**
|
|
2241
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2242
|
+
*/
|
|
2243
|
+
additionalData?: Record<string, unknown>;
|
|
2244
|
+
/**
|
|
2245
|
+
* The attachmentId property
|
|
2246
|
+
*/
|
|
2247
|
+
attachmentId?: string | null;
|
|
2248
|
+
/**
|
|
2249
|
+
* Stores model information.
|
|
2250
|
+
*/
|
|
2251
|
+
backingStoreEnabled?: boolean | null;
|
|
2252
|
+
/**
|
|
2253
|
+
* The content property
|
|
2254
|
+
*/
|
|
2255
|
+
content?: string | null;
|
|
2256
|
+
/**
|
|
2257
|
+
* The contentType property
|
|
2258
|
+
*/
|
|
2259
|
+
contentType?: string | null;
|
|
2260
|
+
/**
|
|
2261
|
+
* The contentUrl property
|
|
2262
|
+
*/
|
|
2263
|
+
contentUrl?: string | null;
|
|
2264
|
+
/**
|
|
2265
|
+
* The name property
|
|
2266
|
+
*/
|
|
2267
|
+
name?: string | null;
|
|
2268
|
+
/**
|
|
2269
|
+
* The OdataType property
|
|
2270
|
+
*/
|
|
2271
|
+
odataType?: string | null;
|
|
2272
|
+
}
|
|
2273
|
+
export interface AiInteractionContext extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2274
|
+
/**
|
|
2275
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2276
|
+
*/
|
|
2277
|
+
additionalData?: Record<string, unknown>;
|
|
2278
|
+
/**
|
|
2279
|
+
* Stores model information.
|
|
2280
|
+
*/
|
|
2281
|
+
backingStoreEnabled?: boolean | null;
|
|
2282
|
+
/**
|
|
2283
|
+
* The contextReference property
|
|
2284
|
+
*/
|
|
2285
|
+
contextReference?: string | null;
|
|
2286
|
+
/**
|
|
2287
|
+
* The contextType property
|
|
2288
|
+
*/
|
|
2289
|
+
contextType?: string | null;
|
|
2290
|
+
/**
|
|
2291
|
+
* The displayName property
|
|
2292
|
+
*/
|
|
2293
|
+
displayName?: string | null;
|
|
2294
|
+
/**
|
|
2295
|
+
* The OdataType property
|
|
2296
|
+
*/
|
|
2297
|
+
odataType?: string | null;
|
|
2298
|
+
}
|
|
2299
|
+
export interface AiInteractionHistory extends Entity, Parsable {
|
|
2300
|
+
}
|
|
2301
|
+
export interface AiInteractionLink extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2302
|
+
/**
|
|
2303
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2304
|
+
*/
|
|
2305
|
+
additionalData?: Record<string, unknown>;
|
|
2306
|
+
/**
|
|
2307
|
+
* Stores model information.
|
|
2308
|
+
*/
|
|
2309
|
+
backingStoreEnabled?: boolean | null;
|
|
2310
|
+
/**
|
|
2311
|
+
* The displayName property
|
|
2312
|
+
*/
|
|
2313
|
+
displayName?: string | null;
|
|
2314
|
+
/**
|
|
2315
|
+
* The linkType property
|
|
2316
|
+
*/
|
|
2317
|
+
linkType?: string | null;
|
|
2318
|
+
/**
|
|
2319
|
+
* The linkUrl property
|
|
2320
|
+
*/
|
|
2321
|
+
linkUrl?: string | null;
|
|
2322
|
+
/**
|
|
2323
|
+
* The OdataType property
|
|
2324
|
+
*/
|
|
2325
|
+
odataType?: string | null;
|
|
2326
|
+
}
|
|
2327
|
+
export interface AiInteractionMention extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2328
|
+
/**
|
|
2329
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
2330
|
+
*/
|
|
2331
|
+
additionalData?: Record<string, unknown>;
|
|
2332
|
+
/**
|
|
2333
|
+
* Stores model information.
|
|
2334
|
+
*/
|
|
2335
|
+
backingStoreEnabled?: boolean | null;
|
|
2336
|
+
/**
|
|
2337
|
+
* The mentioned property
|
|
2338
|
+
*/
|
|
2339
|
+
mentioned?: AiInteractionMentionedIdentitySet | null;
|
|
2340
|
+
/**
|
|
2341
|
+
* The mentionId property
|
|
2342
|
+
*/
|
|
2343
|
+
mentionId?: number | null;
|
|
2344
|
+
/**
|
|
2345
|
+
* The mentionText property
|
|
2346
|
+
*/
|
|
2347
|
+
mentionText?: string | null;
|
|
2348
|
+
/**
|
|
2349
|
+
* The OdataType property
|
|
2350
|
+
*/
|
|
2351
|
+
odataType?: string | null;
|
|
2352
|
+
}
|
|
2353
|
+
export interface AiInteractionMentionedIdentitySet extends IdentitySet, Parsable {
|
|
2354
|
+
/**
|
|
2355
|
+
* The conversation property
|
|
2356
|
+
*/
|
|
2357
|
+
conversation?: TeamworkConversationIdentity | null;
|
|
2358
|
+
/**
|
|
2359
|
+
* The tag property
|
|
2360
|
+
*/
|
|
2361
|
+
tag?: TeamworkTagIdentity | null;
|
|
2362
|
+
}
|
|
2363
|
+
export type AiInteractionType = (typeof AiInteractionTypeObject)[keyof typeof AiInteractionTypeObject];
|
|
2181
2364
|
export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2182
2365
|
/**
|
|
2183
2366
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -2196,6 +2379,12 @@ export interface AirPrintSettings extends AdditionalDataHolder, BackedModel, Par
|
|
|
2196
2379
|
*/
|
|
2197
2380
|
odataType?: string | null;
|
|
2198
2381
|
}
|
|
2382
|
+
export interface AiUser extends Entity, Parsable {
|
|
2383
|
+
/**
|
|
2384
|
+
* The interactionHistory property
|
|
2385
|
+
*/
|
|
2386
|
+
interactionHistory?: AiInteractionHistory | null;
|
|
2387
|
+
}
|
|
2199
2388
|
export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
|
|
2200
2389
|
/**
|
|
2201
2390
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -8519,6 +8708,59 @@ export interface CertificateAuthority extends AdditionalDataHolder, BackedModel,
|
|
|
8519
8708
|
*/
|
|
8520
8709
|
odataType?: string | null;
|
|
8521
8710
|
}
|
|
8711
|
+
export interface CertificateAuthorityDetail extends DirectoryObject, Parsable {
|
|
8712
|
+
/**
|
|
8713
|
+
* The certificate property
|
|
8714
|
+
*/
|
|
8715
|
+
certificate?: ArrayBuffer | null;
|
|
8716
|
+
/**
|
|
8717
|
+
* The certificateAuthorityType property
|
|
8718
|
+
*/
|
|
8719
|
+
certificateAuthorityType?: CertificateAuthorityType | null;
|
|
8720
|
+
/**
|
|
8721
|
+
* The certificateRevocationListUrl property
|
|
8722
|
+
*/
|
|
8723
|
+
certificateRevocationListUrl?: string | null;
|
|
8724
|
+
/**
|
|
8725
|
+
* The createdDateTime property
|
|
8726
|
+
*/
|
|
8727
|
+
createdDateTime?: Date | null;
|
|
8728
|
+
/**
|
|
8729
|
+
* The deltaCertificateRevocationListUrl property
|
|
8730
|
+
*/
|
|
8731
|
+
deltaCertificateRevocationListUrl?: string | null;
|
|
8732
|
+
/**
|
|
8733
|
+
* The displayName property
|
|
8734
|
+
*/
|
|
8735
|
+
displayName?: string | null;
|
|
8736
|
+
/**
|
|
8737
|
+
* The expirationDateTime property
|
|
8738
|
+
*/
|
|
8739
|
+
expirationDateTime?: Date | null;
|
|
8740
|
+
/**
|
|
8741
|
+
* The isIssuerHintEnabled property
|
|
8742
|
+
*/
|
|
8743
|
+
isIssuerHintEnabled?: boolean | null;
|
|
8744
|
+
/**
|
|
8745
|
+
* The issuer property
|
|
8746
|
+
*/
|
|
8747
|
+
issuer?: string | null;
|
|
8748
|
+
/**
|
|
8749
|
+
* The issuerSubjectKeyIdentifier property
|
|
8750
|
+
*/
|
|
8751
|
+
issuerSubjectKeyIdentifier?: string | null;
|
|
8752
|
+
/**
|
|
8753
|
+
* The thumbprint property
|
|
8754
|
+
*/
|
|
8755
|
+
thumbprint?: string | null;
|
|
8756
|
+
}
|
|
8757
|
+
export interface CertificateAuthorityDetailCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8758
|
+
/**
|
|
8759
|
+
* The value property
|
|
8760
|
+
*/
|
|
8761
|
+
value?: CertificateAuthorityDetail[] | null;
|
|
8762
|
+
}
|
|
8763
|
+
export type CertificateAuthorityType = (typeof CertificateAuthorityTypeObject)[keyof typeof CertificateAuthorityTypeObject];
|
|
8522
8764
|
export interface CertificateBasedAuthConfiguration extends Entity, Parsable {
|
|
8523
8765
|
/**
|
|
8524
8766
|
* Collection of certificate authorities which creates a trusted certificate chain.
|
|
@@ -8531,6 +8773,34 @@ export interface CertificateBasedAuthConfigurationCollectionResponse extends Bas
|
|
|
8531
8773
|
*/
|
|
8532
8774
|
value?: CertificateBasedAuthConfiguration[] | null;
|
|
8533
8775
|
}
|
|
8776
|
+
export interface CertificateBasedAuthPki extends DirectoryObject, Parsable {
|
|
8777
|
+
/**
|
|
8778
|
+
* The certificateAuthorities property
|
|
8779
|
+
*/
|
|
8780
|
+
certificateAuthorities?: CertificateAuthorityDetail[] | null;
|
|
8781
|
+
/**
|
|
8782
|
+
* The displayName property
|
|
8783
|
+
*/
|
|
8784
|
+
displayName?: string | null;
|
|
8785
|
+
/**
|
|
8786
|
+
* The lastModifiedDateTime property
|
|
8787
|
+
*/
|
|
8788
|
+
lastModifiedDateTime?: Date | null;
|
|
8789
|
+
/**
|
|
8790
|
+
* The status property
|
|
8791
|
+
*/
|
|
8792
|
+
status?: string | null;
|
|
8793
|
+
/**
|
|
8794
|
+
* The statusDetails property
|
|
8795
|
+
*/
|
|
8796
|
+
statusDetails?: string | null;
|
|
8797
|
+
}
|
|
8798
|
+
export interface CertificateBasedAuthPkiCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8799
|
+
/**
|
|
8800
|
+
* The value property
|
|
8801
|
+
*/
|
|
8802
|
+
value?: CertificateBasedAuthPki[] | null;
|
|
8803
|
+
}
|
|
8534
8804
|
export type CertificateStatus = (typeof CertificateStatusObject)[keyof typeof CertificateStatusObject];
|
|
8535
8805
|
export interface Certification extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8536
8806
|
/**
|
|
@@ -12776,12 +13046,60 @@ export declare function createAgreementFileVersionFromDiscriminatorValue(parseNo
|
|
|
12776
13046
|
* @returns {Agreement}
|
|
12777
13047
|
*/
|
|
12778
13048
|
export declare function createAgreementFromDiscriminatorValue(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 {AiInteractionAttachment}
|
|
13053
|
+
*/
|
|
13054
|
+
export declare function createAiInteractionAttachmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13055
|
+
/**
|
|
13056
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13057
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13058
|
+
* @returns {AiInteractionContext}
|
|
13059
|
+
*/
|
|
13060
|
+
export declare function createAiInteractionContextFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13061
|
+
/**
|
|
13062
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13063
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13064
|
+
* @returns {AiInteraction}
|
|
13065
|
+
*/
|
|
13066
|
+
export declare function createAiInteractionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13067
|
+
/**
|
|
13068
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13069
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13070
|
+
* @returns {AiInteractionHistory}
|
|
13071
|
+
*/
|
|
13072
|
+
export declare function createAiInteractionHistoryFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13073
|
+
/**
|
|
13074
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13075
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13076
|
+
* @returns {AiInteractionLink}
|
|
13077
|
+
*/
|
|
13078
|
+
export declare function createAiInteractionLinkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13079
|
+
/**
|
|
13080
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13081
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13082
|
+
* @returns {AiInteractionMentionedIdentitySet}
|
|
13083
|
+
*/
|
|
13084
|
+
export declare function createAiInteractionMentionedIdentitySetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13085
|
+
/**
|
|
13086
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13087
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13088
|
+
* @returns {AiInteractionMention}
|
|
13089
|
+
*/
|
|
13090
|
+
export declare function createAiInteractionMentionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12779
13091
|
/**
|
|
12780
13092
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12781
13093
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12782
13094
|
* @returns {AirPrintSettings}
|
|
12783
13095
|
*/
|
|
12784
13096
|
export declare function createAirPrintSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13097
|
+
/**
|
|
13098
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13099
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13100
|
+
* @returns {AiUser}
|
|
13101
|
+
*/
|
|
13102
|
+
export declare function createAiUserFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12785
13103
|
/**
|
|
12786
13104
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12787
13105
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14330,6 +14648,18 @@ export declare function createCancelMediaProcessingOperationFromDiscriminatorVal
|
|
|
14330
14648
|
* @returns {CanvasLayout}
|
|
14331
14649
|
*/
|
|
14332
14650
|
export declare function createCanvasLayoutFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14651
|
+
/**
|
|
14652
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14653
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14654
|
+
* @returns {CertificateAuthorityDetailCollectionResponse}
|
|
14655
|
+
*/
|
|
14656
|
+
export declare function createCertificateAuthorityDetailCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14657
|
+
/**
|
|
14658
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14659
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14660
|
+
* @returns {CertificateAuthorityDetail}
|
|
14661
|
+
*/
|
|
14662
|
+
export declare function createCertificateAuthorityDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14333
14663
|
/**
|
|
14334
14664
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14335
14665
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14348,6 +14678,18 @@ export declare function createCertificateBasedAuthConfigurationCollectionRespons
|
|
|
14348
14678
|
* @returns {CertificateBasedAuthConfiguration}
|
|
14349
14679
|
*/
|
|
14350
14680
|
export declare function createCertificateBasedAuthConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14681
|
+
/**
|
|
14682
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14683
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14684
|
+
* @returns {CertificateBasedAuthPkiCollectionResponse}
|
|
14685
|
+
*/
|
|
14686
|
+
export declare function createCertificateBasedAuthPkiCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14687
|
+
/**
|
|
14688
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14689
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14690
|
+
* @returns {CertificateBasedAuthPki}
|
|
14691
|
+
*/
|
|
14692
|
+
export declare function createCertificateBasedAuthPkiFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14351
14693
|
/**
|
|
14352
14694
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14353
14695
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21350,6 +21692,12 @@ export declare function createPublicErrorFromDiscriminatorValue(parseNode: Parse
|
|
|
21350
21692
|
* @returns {PublicInnerError}
|
|
21351
21693
|
*/
|
|
21352
21694
|
export declare function createPublicInnerErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21695
|
+
/**
|
|
21696
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21697
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21698
|
+
* @returns {PublicKeyInfrastructureRoot}
|
|
21699
|
+
*/
|
|
21700
|
+
export declare function createPublicKeyInfrastructureRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21353
21701
|
/**
|
|
21354
21702
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21355
21703
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -27831,11 +28179,51 @@ export declare function deserializeIntoAgreementFileVersion(agreementFileVersion
|
|
|
27831
28179
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27832
28180
|
*/
|
|
27833
28181
|
export declare function deserializeIntoAgreementFileVersionCollectionResponse(agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28182
|
+
/**
|
|
28183
|
+
* The deserialization information for the current model
|
|
28184
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28185
|
+
*/
|
|
28186
|
+
export declare function deserializeIntoAiInteraction(aiInteraction?: Partial<AiInteraction> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28187
|
+
/**
|
|
28188
|
+
* The deserialization information for the current model
|
|
28189
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28190
|
+
*/
|
|
28191
|
+
export declare function deserializeIntoAiInteractionAttachment(aiInteractionAttachment?: Partial<AiInteractionAttachment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28192
|
+
/**
|
|
28193
|
+
* The deserialization information for the current model
|
|
28194
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28195
|
+
*/
|
|
28196
|
+
export declare function deserializeIntoAiInteractionContext(aiInteractionContext?: Partial<AiInteractionContext> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28197
|
+
/**
|
|
28198
|
+
* The deserialization information for the current model
|
|
28199
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28200
|
+
*/
|
|
28201
|
+
export declare function deserializeIntoAiInteractionHistory(aiInteractionHistory?: Partial<AiInteractionHistory> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28202
|
+
/**
|
|
28203
|
+
* The deserialization information for the current model
|
|
28204
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28205
|
+
*/
|
|
28206
|
+
export declare function deserializeIntoAiInteractionLink(aiInteractionLink?: Partial<AiInteractionLink> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28207
|
+
/**
|
|
28208
|
+
* The deserialization information for the current model
|
|
28209
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28210
|
+
*/
|
|
28211
|
+
export declare function deserializeIntoAiInteractionMention(aiInteractionMention?: Partial<AiInteractionMention> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28212
|
+
/**
|
|
28213
|
+
* The deserialization information for the current model
|
|
28214
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28215
|
+
*/
|
|
28216
|
+
export declare function deserializeIntoAiInteractionMentionedIdentitySet(aiInteractionMentionedIdentitySet?: Partial<AiInteractionMentionedIdentitySet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27834
28217
|
/**
|
|
27835
28218
|
* The deserialization information for the current model
|
|
27836
28219
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27837
28220
|
*/
|
|
27838
28221
|
export declare function deserializeIntoAirPrintSettings(airPrintSettings?: Partial<AirPrintSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28222
|
+
/**
|
|
28223
|
+
* The deserialization information for the current model
|
|
28224
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28225
|
+
*/
|
|
28226
|
+
export declare function deserializeIntoAiUser(aiUser?: Partial<AiUser> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27839
28227
|
/**
|
|
27840
28228
|
* The deserialization information for the current model
|
|
27841
28229
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29131,6 +29519,16 @@ export declare function deserializeIntoCanvasLayout(canvasLayout?: Partial<Canva
|
|
|
29131
29519
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29132
29520
|
*/
|
|
29133
29521
|
export declare function deserializeIntoCertificateAuthority(certificateAuthority?: Partial<CertificateAuthority> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29522
|
+
/**
|
|
29523
|
+
* The deserialization information for the current model
|
|
29524
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29525
|
+
*/
|
|
29526
|
+
export declare function deserializeIntoCertificateAuthorityDetail(certificateAuthorityDetail?: Partial<CertificateAuthorityDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29527
|
+
/**
|
|
29528
|
+
* The deserialization information for the current model
|
|
29529
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29530
|
+
*/
|
|
29531
|
+
export declare function deserializeIntoCertificateAuthorityDetailCollectionResponse(certificateAuthorityDetailCollectionResponse?: Partial<CertificateAuthorityDetailCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29134
29532
|
/**
|
|
29135
29533
|
* The deserialization information for the current model
|
|
29136
29534
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29141,6 +29539,16 @@ export declare function deserializeIntoCertificateBasedAuthConfiguration(certifi
|
|
|
29141
29539
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29142
29540
|
*/
|
|
29143
29541
|
export declare function deserializeIntoCertificateBasedAuthConfigurationCollectionResponse(certificateBasedAuthConfigurationCollectionResponse?: Partial<CertificateBasedAuthConfigurationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29542
|
+
/**
|
|
29543
|
+
* The deserialization information for the current model
|
|
29544
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29545
|
+
*/
|
|
29546
|
+
export declare function deserializeIntoCertificateBasedAuthPki(certificateBasedAuthPki?: Partial<CertificateBasedAuthPki> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29547
|
+
/**
|
|
29548
|
+
* The deserialization information for the current model
|
|
29549
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29550
|
+
*/
|
|
29551
|
+
export declare function deserializeIntoCertificateBasedAuthPkiCollectionResponse(certificateBasedAuthPkiCollectionResponse?: Partial<CertificateBasedAuthPkiCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29144
29552
|
/**
|
|
29145
29553
|
* The deserialization information for the current model
|
|
29146
29554
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -34976,6 +35384,11 @@ export declare function deserializeIntoPublicErrorDetail(publicErrorDetail?: Par
|
|
|
34976
35384
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34977
35385
|
*/
|
|
34978
35386
|
export declare function deserializeIntoPublicInnerError(publicInnerError?: Partial<PublicInnerError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
35387
|
+
/**
|
|
35388
|
+
* The deserialization information for the current model
|
|
35389
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
35390
|
+
*/
|
|
35391
|
+
export declare function deserializeIntoPublicKeyInfrastructureRoot(publicKeyInfrastructureRoot?: Partial<PublicKeyInfrastructureRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34979
35392
|
/**
|
|
34980
35393
|
* The deserialization information for the current model
|
|
34981
35394
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -41432,6 +41845,10 @@ export interface Directory extends Entity, Parsable {
|
|
|
41432
41845
|
* A container for on-premises directory synchronization functionalities that are available for the organization.
|
|
41433
41846
|
*/
|
|
41434
41847
|
onPremisesSynchronization?: OnPremisesDirectorySynchronization[] | null;
|
|
41848
|
+
/**
|
|
41849
|
+
* The publicKeyInfrastructure property
|
|
41850
|
+
*/
|
|
41851
|
+
publicKeyInfrastructure?: PublicKeyInfrastructureRoot | null;
|
|
41435
41852
|
/**
|
|
41436
41853
|
* List of commercial subscriptions that an organization acquired.
|
|
41437
41854
|
*/
|
|
@@ -44198,7 +44615,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
44198
44615
|
*/
|
|
44199
44616
|
calendar?: Calendar | null;
|
|
44200
44617
|
/**
|
|
44201
|
-
*
|
|
44618
|
+
* 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
44619
|
*/
|
|
44203
44620
|
cancelledOccurrences?: string[] | null;
|
|
44204
44621
|
/**
|
|
@@ -44206,7 +44623,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
44206
44623
|
*/
|
|
44207
44624
|
end?: DateTimeTimeZone | null;
|
|
44208
44625
|
/**
|
|
44209
|
-
*
|
|
44626
|
+
* 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
44627
|
*/
|
|
44211
44628
|
exceptionOccurrences?: Event[] | null;
|
|
44212
44629
|
/**
|
|
@@ -44230,7 +44647,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
44230
44647
|
*/
|
|
44231
44648
|
importance?: Importance | null;
|
|
44232
44649
|
/**
|
|
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
|
|
44650
|
+
* 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
44651
|
*/
|
|
44235
44652
|
instances?: Event[] | null;
|
|
44236
44653
|
/**
|
|
@@ -45502,7 +45919,7 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
45502
45919
|
*/
|
|
45503
45920
|
assignedLabels?: AssignedLabel[] | null;
|
|
45504
45921
|
/**
|
|
45505
|
-
* The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq).Read-only.
|
|
45922
|
+
* The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq). Read-only.
|
|
45506
45923
|
*/
|
|
45507
45924
|
assignedLicenses?: AssignedLicense[] | null;
|
|
45508
45925
|
/**
|
|
@@ -59542,6 +59959,12 @@ export interface PublicInnerError extends AdditionalDataHolder, BackedModel, Par
|
|
|
59542
59959
|
*/
|
|
59543
59960
|
target?: string | null;
|
|
59544
59961
|
}
|
|
59962
|
+
export interface PublicKeyInfrastructureRoot extends Entity, Parsable {
|
|
59963
|
+
/**
|
|
59964
|
+
* The certificateBasedAuthConfigurations property
|
|
59965
|
+
*/
|
|
59966
|
+
certificateBasedAuthConfigurations?: CertificateBasedAuthPki[] | null;
|
|
59967
|
+
}
|
|
59545
59968
|
export type QuarantineReason = (typeof QuarantineReasonObject)[keyof typeof QuarantineReasonObject];
|
|
59546
59969
|
export interface Quota extends AdditionalDataHolder, BackedModel, Parsable {
|
|
59547
59970
|
/**
|
|
@@ -62546,7 +62969,7 @@ export interface SecureScoreControlProfile extends Entity, Parsable {
|
|
|
62546
62969
|
*/
|
|
62547
62970
|
azureTenantId?: string | null;
|
|
62548
62971
|
/**
|
|
62549
|
-
* The collection of compliance information associated with secure score control
|
|
62972
|
+
* The collection of compliance information associated with secure score control. Not implemented. Currently returns null.
|
|
62550
62973
|
*/
|
|
62551
62974
|
complianceInformation?: ComplianceInformation[] | null;
|
|
62552
62975
|
/**
|
|
@@ -63404,11 +63827,51 @@ export declare function serializeAgreementFileVersion(writer: SerializationWrite
|
|
|
63404
63827
|
* @param writer Serialization writer to use to serialize this model
|
|
63405
63828
|
*/
|
|
63406
63829
|
export declare function serializeAgreementFileVersionCollectionResponse(writer: SerializationWriter, agreementFileVersionCollectionResponse?: Partial<AgreementFileVersionCollectionResponse> | undefined | null): void;
|
|
63830
|
+
/**
|
|
63831
|
+
* Serializes information the current object
|
|
63832
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63833
|
+
*/
|
|
63834
|
+
export declare function serializeAiInteraction(writer: SerializationWriter, aiInteraction?: Partial<AiInteraction> | undefined | null): void;
|
|
63835
|
+
/**
|
|
63836
|
+
* Serializes information the current object
|
|
63837
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63838
|
+
*/
|
|
63839
|
+
export declare function serializeAiInteractionAttachment(writer: SerializationWriter, aiInteractionAttachment?: Partial<AiInteractionAttachment> | undefined | null): void;
|
|
63840
|
+
/**
|
|
63841
|
+
* Serializes information the current object
|
|
63842
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63843
|
+
*/
|
|
63844
|
+
export declare function serializeAiInteractionContext(writer: SerializationWriter, aiInteractionContext?: Partial<AiInteractionContext> | undefined | null): void;
|
|
63845
|
+
/**
|
|
63846
|
+
* Serializes information the current object
|
|
63847
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63848
|
+
*/
|
|
63849
|
+
export declare function serializeAiInteractionHistory(writer: SerializationWriter, aiInteractionHistory?: Partial<AiInteractionHistory> | undefined | null): void;
|
|
63850
|
+
/**
|
|
63851
|
+
* Serializes information the current object
|
|
63852
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63853
|
+
*/
|
|
63854
|
+
export declare function serializeAiInteractionLink(writer: SerializationWriter, aiInteractionLink?: Partial<AiInteractionLink> | undefined | null): void;
|
|
63855
|
+
/**
|
|
63856
|
+
* Serializes information the current object
|
|
63857
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63858
|
+
*/
|
|
63859
|
+
export declare function serializeAiInteractionMention(writer: SerializationWriter, aiInteractionMention?: Partial<AiInteractionMention> | undefined | null): void;
|
|
63860
|
+
/**
|
|
63861
|
+
* Serializes information the current object
|
|
63862
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63863
|
+
*/
|
|
63864
|
+
export declare function serializeAiInteractionMentionedIdentitySet(writer: SerializationWriter, aiInteractionMentionedIdentitySet?: Partial<AiInteractionMentionedIdentitySet> | undefined | null): void;
|
|
63407
63865
|
/**
|
|
63408
63866
|
* Serializes information the current object
|
|
63409
63867
|
* @param writer Serialization writer to use to serialize this model
|
|
63410
63868
|
*/
|
|
63411
63869
|
export declare function serializeAirPrintSettings(writer: SerializationWriter, airPrintSettings?: Partial<AirPrintSettings> | undefined | null): void;
|
|
63870
|
+
/**
|
|
63871
|
+
* Serializes information the current object
|
|
63872
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63873
|
+
*/
|
|
63874
|
+
export declare function serializeAiUser(writer: SerializationWriter, aiUser?: Partial<AiUser> | undefined | null): void;
|
|
63412
63875
|
/**
|
|
63413
63876
|
* Serializes information the current object
|
|
63414
63877
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64704,6 +65167,16 @@ export declare function serializeCanvasLayout(writer: SerializationWriter, canva
|
|
|
64704
65167
|
* @param writer Serialization writer to use to serialize this model
|
|
64705
65168
|
*/
|
|
64706
65169
|
export declare function serializeCertificateAuthority(writer: SerializationWriter, certificateAuthority?: Partial<CertificateAuthority> | undefined | null): void;
|
|
65170
|
+
/**
|
|
65171
|
+
* Serializes information the current object
|
|
65172
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65173
|
+
*/
|
|
65174
|
+
export declare function serializeCertificateAuthorityDetail(writer: SerializationWriter, certificateAuthorityDetail?: Partial<CertificateAuthorityDetail> | undefined | null): void;
|
|
65175
|
+
/**
|
|
65176
|
+
* Serializes information the current object
|
|
65177
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65178
|
+
*/
|
|
65179
|
+
export declare function serializeCertificateAuthorityDetailCollectionResponse(writer: SerializationWriter, certificateAuthorityDetailCollectionResponse?: Partial<CertificateAuthorityDetailCollectionResponse> | undefined | null): void;
|
|
64707
65180
|
/**
|
|
64708
65181
|
* Serializes information the current object
|
|
64709
65182
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64714,6 +65187,16 @@ export declare function serializeCertificateBasedAuthConfiguration(writer: Seria
|
|
|
64714
65187
|
* @param writer Serialization writer to use to serialize this model
|
|
64715
65188
|
*/
|
|
64716
65189
|
export declare function serializeCertificateBasedAuthConfigurationCollectionResponse(writer: SerializationWriter, certificateBasedAuthConfigurationCollectionResponse?: Partial<CertificateBasedAuthConfigurationCollectionResponse> | undefined | null): void;
|
|
65190
|
+
/**
|
|
65191
|
+
* Serializes information the current object
|
|
65192
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65193
|
+
*/
|
|
65194
|
+
export declare function serializeCertificateBasedAuthPki(writer: SerializationWriter, certificateBasedAuthPki?: Partial<CertificateBasedAuthPki> | undefined | null): void;
|
|
65195
|
+
/**
|
|
65196
|
+
* Serializes information the current object
|
|
65197
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65198
|
+
*/
|
|
65199
|
+
export declare function serializeCertificateBasedAuthPkiCollectionResponse(writer: SerializationWriter, certificateBasedAuthPkiCollectionResponse?: Partial<CertificateBasedAuthPkiCollectionResponse> | undefined | null): void;
|
|
64717
65200
|
/**
|
|
64718
65201
|
* Serializes information the current object
|
|
64719
65202
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -70549,6 +71032,11 @@ export declare function serializePublicErrorDetail(writer: SerializationWriter,
|
|
|
70549
71032
|
* @param writer Serialization writer to use to serialize this model
|
|
70550
71033
|
*/
|
|
70551
71034
|
export declare function serializePublicInnerError(writer: SerializationWriter, publicInnerError?: Partial<PublicInnerError> | undefined | null): void;
|
|
71035
|
+
/**
|
|
71036
|
+
* Serializes information the current object
|
|
71037
|
+
* @param writer Serialization writer to use to serialize this model
|
|
71038
|
+
*/
|
|
71039
|
+
export declare function serializePublicKeyInfrastructureRoot(writer: SerializationWriter, publicKeyInfrastructureRoot?: Partial<PublicKeyInfrastructureRoot> | undefined | null): void;
|
|
70552
71040
|
/**
|
|
70553
71041
|
* Serializes information the current object
|
|
70554
71042
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -84964,7 +85452,7 @@ export interface VppLicensingType extends AdditionalDataHolder, BackedModel, Par
|
|
|
84964
85452
|
*/
|
|
84965
85453
|
export interface VppToken extends Entity, Parsable {
|
|
84966
85454
|
/**
|
|
84967
|
-
* The
|
|
85455
|
+
* The Apple ID associated with the given Apple Volume Purchase Program Token.
|
|
84968
85456
|
*/
|
|
84969
85457
|
appleId?: string | null;
|
|
84970
85458
|
/**
|
|
@@ -84972,7 +85460,7 @@ export interface VppToken extends Entity, Parsable {
|
|
|
84972
85460
|
*/
|
|
84973
85461
|
automaticallyUpdateApps?: boolean | null;
|
|
84974
85462
|
/**
|
|
84975
|
-
*
|
|
85463
|
+
* The country or region associated with the Apple Volume Purchase Program Token.
|
|
84976
85464
|
*/
|
|
84977
85465
|
countryOrRegion?: string | null;
|
|
84978
85466
|
/**
|
|
@@ -90265,6 +90753,11 @@ export declare const AgreementAcceptanceStateObject: {
|
|
|
90265
90753
|
readonly Declined: "declined";
|
|
90266
90754
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90267
90755
|
};
|
|
90756
|
+
export declare const AiInteractionTypeObject: {
|
|
90757
|
+
readonly UserPrompt: "userPrompt";
|
|
90758
|
+
readonly AiResponse: "aiResponse";
|
|
90759
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
90760
|
+
};
|
|
90268
90761
|
export declare const AlertFeedbackObject: {
|
|
90269
90762
|
readonly Unknown: "unknown";
|
|
90270
90763
|
readonly TruePositive: "truePositive";
|
|
@@ -91019,6 +91512,11 @@ export declare const CategoryColorObject: {
|
|
|
91019
91512
|
readonly Preset23: "preset23";
|
|
91020
91513
|
readonly Preset24: "preset24";
|
|
91021
91514
|
};
|
|
91515
|
+
export declare const CertificateAuthorityTypeObject: {
|
|
91516
|
+
readonly Root: "root";
|
|
91517
|
+
readonly Intermediate: "intermediate";
|
|
91518
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91519
|
+
};
|
|
91022
91520
|
export declare const CertificateStatusObject: {
|
|
91023
91521
|
readonly NotProvisioned: "notProvisioned";
|
|
91024
91522
|
readonly Provisioned: "provisioned";
|