@microsoft/msgraph-sdk 1.0.0-preview.25 → 1.0.0-preview.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/callRecords/index.d.ts +233 -233
- package/models/callRecords/index.d.ts.map +1 -1
- package/models/callRecords/index.js +358 -223
- package/models/callRecords/index.js.map +1 -1
- package/models/externalConnectors/index.d.ts +114 -114
- package/models/externalConnectors/index.d.ts.map +1 -1
- package/models/externalConnectors/index.js +237 -102
- package/models/externalConnectors/index.js.map +1 -1
- package/models/identityGovernance/index.d.ts +582 -190
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +712 -182
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +15650 -12803
- package/models/index.d.ts.map +1 -1
- package/models/index.js +25928 -11904
- package/models/index.js.map +1 -1
- package/models/oDataErrors/index.d.ts +21 -21
- package/models/oDataErrors/index.d.ts.map +1 -1
- package/models/oDataErrors/index.js +37 -17
- package/models/oDataErrors/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +42 -42
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +111 -41
- package/models/partners/billing/index.js.map +1 -1
- package/models/search/index.d.ts +62 -62
- package/models/search/index.d.ts.map +1 -1
- package/models/search/index.js +115 -60
- package/models/search/index.js.map +1 -1
- package/models/security/index.d.ts +1145 -1065
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +2104 -1030
- package/models/security/index.js.map +1 -1
- package/models/termStore/index.d.ts +61 -61
- package/models/termStore/index.d.ts.map +1 -1
- package/models/termStore/index.js +123 -58
- package/models/termStore/index.js.map +1 -1
- package/package.json +3 -5
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -5,7 +5,7 @@ export interface Acl extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
5
5
|
/**
|
|
6
6
|
* The accessType property
|
|
7
7
|
*/
|
|
8
|
-
accessType?: AccessType;
|
|
8
|
+
accessType?: AccessType | null;
|
|
9
9
|
/**
|
|
10
10
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
11
11
|
*/
|
|
@@ -13,19 +13,19 @@ export interface Acl extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
13
13
|
/**
|
|
14
14
|
* Stores model information.
|
|
15
15
|
*/
|
|
16
|
-
backingStoreEnabled?: boolean;
|
|
16
|
+
backingStoreEnabled?: boolean | null;
|
|
17
17
|
/**
|
|
18
18
|
* The OdataType property
|
|
19
19
|
*/
|
|
20
|
-
odataType?: string;
|
|
20
|
+
odataType?: string | null;
|
|
21
21
|
/**
|
|
22
22
|
* The type property
|
|
23
23
|
*/
|
|
24
|
-
type?: AclType;
|
|
24
|
+
type?: AclType | null;
|
|
25
25
|
/**
|
|
26
26
|
* The unique identifer of the identity. For Microsoft Entra identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. For external groups value is set to the ID of the externalGroup
|
|
27
27
|
*/
|
|
28
|
-
value?: string;
|
|
28
|
+
value?: string | null;
|
|
29
29
|
}
|
|
30
30
|
export type AclType = (typeof AclTypeObject)[keyof typeof AclTypeObject];
|
|
31
31
|
export interface ActivitySettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -36,15 +36,15 @@ export interface ActivitySettings extends AdditionalDataHolder, BackedModel, Par
|
|
|
36
36
|
/**
|
|
37
37
|
* Stores model information.
|
|
38
38
|
*/
|
|
39
|
-
backingStoreEnabled?: boolean;
|
|
39
|
+
backingStoreEnabled?: boolean | null;
|
|
40
40
|
/**
|
|
41
41
|
* The OdataType property
|
|
42
42
|
*/
|
|
43
|
-
odataType?: string;
|
|
43
|
+
odataType?: string | null;
|
|
44
44
|
/**
|
|
45
45
|
* Specifies configurations to identify an externalItem based on a shared URL.
|
|
46
46
|
*/
|
|
47
|
-
urlToItemResolvers?: UrlToItemResolverBase[];
|
|
47
|
+
urlToItemResolvers?: UrlToItemResolverBase[] | null;
|
|
48
48
|
}
|
|
49
49
|
export interface Configuration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50
50
|
/**
|
|
@@ -54,31 +54,31 @@ export interface Configuration extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
54
54
|
/**
|
|
55
55
|
* A collection of application IDs for registered Microsoft Entra apps that are allowed to manage the externalConnection and to index content in the externalConnection.
|
|
56
56
|
*/
|
|
57
|
-
authorizedAppIds?: string[];
|
|
57
|
+
authorizedAppIds?: string[] | null;
|
|
58
58
|
/**
|
|
59
59
|
* Stores model information.
|
|
60
60
|
*/
|
|
61
|
-
backingStoreEnabled?: boolean;
|
|
61
|
+
backingStoreEnabled?: boolean | null;
|
|
62
62
|
/**
|
|
63
63
|
* The OdataType property
|
|
64
64
|
*/
|
|
65
|
-
odataType?: string;
|
|
65
|
+
odataType?: string | null;
|
|
66
66
|
}
|
|
67
67
|
export interface ConnectionOperation extends Entity, Parsable {
|
|
68
68
|
/**
|
|
69
69
|
* If status is failed, provides more information about the error that caused the failure.
|
|
70
70
|
*/
|
|
71
|
-
errorEscaped?: PublicError;
|
|
71
|
+
errorEscaped?: PublicError | null;
|
|
72
72
|
/**
|
|
73
73
|
* Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed, unknownFutureValue.
|
|
74
74
|
*/
|
|
75
|
-
status?: ConnectionOperationStatus;
|
|
75
|
+
status?: ConnectionOperationStatus | null;
|
|
76
76
|
}
|
|
77
77
|
export interface ConnectionOperationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
78
78
|
/**
|
|
79
79
|
* The value property
|
|
80
80
|
*/
|
|
81
|
-
value?: ConnectionOperation[];
|
|
81
|
+
value?: ConnectionOperation[] | null;
|
|
82
82
|
}
|
|
83
83
|
export type ConnectionOperationStatus = (typeof ConnectionOperationStatusObject)[keyof typeof ConnectionOperationStatusObject];
|
|
84
84
|
export type ConnectionState = (typeof ConnectionStateObject)[keyof typeof ConnectionStateObject];
|
|
@@ -387,27 +387,27 @@ export interface DisplayTemplate extends AdditionalDataHolder, BackedModel, Pars
|
|
|
387
387
|
/**
|
|
388
388
|
* Stores model information.
|
|
389
389
|
*/
|
|
390
|
-
backingStoreEnabled?: boolean;
|
|
390
|
+
backingStoreEnabled?: boolean | null;
|
|
391
391
|
/**
|
|
392
392
|
* The text identifier for the display template; for example, contosoTickets. Maximum 16 characters. Only alphanumeric characters allowed.
|
|
393
393
|
*/
|
|
394
|
-
id?: string;
|
|
394
|
+
id?: string | null;
|
|
395
395
|
/**
|
|
396
396
|
* The definition of the content's appearance, represented by an Adaptive Card, which is a JSON-serialized card object model.
|
|
397
397
|
*/
|
|
398
|
-
layout?: UntypedNode;
|
|
398
|
+
layout?: UntypedNode | null;
|
|
399
399
|
/**
|
|
400
400
|
* The OdataType property
|
|
401
401
|
*/
|
|
402
|
-
odataType?: string;
|
|
402
|
+
odataType?: string | null;
|
|
403
403
|
/**
|
|
404
404
|
* Defines the priority of a display template. A display template with priority 1 is evaluated before a template with priority 4. Gaps in priority values are supported. Must be positive value.
|
|
405
405
|
*/
|
|
406
|
-
priority?: number;
|
|
406
|
+
priority?: number | null;
|
|
407
407
|
/**
|
|
408
408
|
* Specifies additional rules for selecting this display template based on the item schema. Optional.
|
|
409
409
|
*/
|
|
410
|
-
rules?: PropertyRule[];
|
|
410
|
+
rules?: PropertyRule[] | null;
|
|
411
411
|
}
|
|
412
412
|
export interface External extends AdditionalDataHolder, BackedModel, Parsable {
|
|
413
413
|
/**
|
|
@@ -417,138 +417,138 @@ export interface External extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
417
417
|
/**
|
|
418
418
|
* Stores model information.
|
|
419
419
|
*/
|
|
420
|
-
backingStoreEnabled?: boolean;
|
|
420
|
+
backingStoreEnabled?: boolean | null;
|
|
421
421
|
/**
|
|
422
422
|
* The connections property
|
|
423
423
|
*/
|
|
424
|
-
connections?: ExternalConnection[];
|
|
424
|
+
connections?: ExternalConnection[] | null;
|
|
425
425
|
/**
|
|
426
426
|
* The OdataType property
|
|
427
427
|
*/
|
|
428
|
-
odataType?: string;
|
|
428
|
+
odataType?: string | null;
|
|
429
429
|
}
|
|
430
430
|
export interface ExternalActivity extends Entity, Parsable {
|
|
431
431
|
/**
|
|
432
432
|
* Represents an identity used to identify who is responsible for the activity.
|
|
433
433
|
*/
|
|
434
|
-
performedBy?: Identity;
|
|
434
|
+
performedBy?: Identity | null;
|
|
435
435
|
/**
|
|
436
436
|
* The date and time when the particular activity occurred. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
437
437
|
*/
|
|
438
|
-
startDateTime?: Date;
|
|
438
|
+
startDateTime?: Date | null;
|
|
439
439
|
/**
|
|
440
440
|
* The type property
|
|
441
441
|
*/
|
|
442
|
-
type?: ExternalActivityType;
|
|
442
|
+
type?: ExternalActivityType | null;
|
|
443
443
|
}
|
|
444
444
|
export interface ExternalActivityCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
445
445
|
/**
|
|
446
446
|
* The value property
|
|
447
447
|
*/
|
|
448
|
-
value?: ExternalActivity[];
|
|
448
|
+
value?: ExternalActivity[] | null;
|
|
449
449
|
}
|
|
450
450
|
export interface ExternalActivityResult extends ExternalActivity, Parsable {
|
|
451
451
|
/**
|
|
452
452
|
* Error information that explains the failure to process an external activity.
|
|
453
453
|
*/
|
|
454
|
-
errorEscaped?: PublicError;
|
|
454
|
+
errorEscaped?: PublicError | null;
|
|
455
455
|
}
|
|
456
456
|
export type ExternalActivityType = (typeof ExternalActivityTypeObject)[keyof typeof ExternalActivityTypeObject];
|
|
457
457
|
export interface ExternalConnection extends Entity, Parsable {
|
|
458
458
|
/**
|
|
459
459
|
* Collects configurable settings related to activities involving connector content.
|
|
460
460
|
*/
|
|
461
|
-
activitySettings?: ActivitySettings;
|
|
461
|
+
activitySettings?: ActivitySettings | null;
|
|
462
462
|
/**
|
|
463
463
|
* Specifies additional application IDs that are allowed to manage the connection and to index content in the connection. Optional.
|
|
464
464
|
*/
|
|
465
|
-
configuration?: Configuration;
|
|
465
|
+
configuration?: Configuration | null;
|
|
466
466
|
/**
|
|
467
467
|
* The Teams app ID. Optional.
|
|
468
468
|
*/
|
|
469
|
-
connectorId?: string;
|
|
469
|
+
connectorId?: string | null;
|
|
470
470
|
/**
|
|
471
471
|
* Description of the connection displayed in the Microsoft 365 admin center. Optional.
|
|
472
472
|
*/
|
|
473
|
-
description?: string;
|
|
473
|
+
description?: string | null;
|
|
474
474
|
/**
|
|
475
475
|
* The groups property
|
|
476
476
|
*/
|
|
477
|
-
groups?: ExternalGroup[];
|
|
477
|
+
groups?: ExternalGroup[] | null;
|
|
478
478
|
/**
|
|
479
479
|
* The items property
|
|
480
480
|
*/
|
|
481
|
-
items?: ExternalItem[];
|
|
481
|
+
items?: ExternalItem[] | null;
|
|
482
482
|
/**
|
|
483
483
|
* The display name of the connection to be displayed in the Microsoft 365 admin center. Maximum length of 128 characters. Required.
|
|
484
484
|
*/
|
|
485
|
-
name?: string;
|
|
485
|
+
name?: string | null;
|
|
486
486
|
/**
|
|
487
487
|
* The operations property
|
|
488
488
|
*/
|
|
489
|
-
operations?: ConnectionOperation[];
|
|
489
|
+
operations?: ConnectionOperation[] | null;
|
|
490
490
|
/**
|
|
491
491
|
* The schema property
|
|
492
492
|
*/
|
|
493
|
-
schema?: Schema;
|
|
493
|
+
schema?: Schema | null;
|
|
494
494
|
/**
|
|
495
495
|
* The settings configuring the search experience for content in this connection, such as the display templates for search results.
|
|
496
496
|
*/
|
|
497
|
-
searchSettings?: SearchSettings;
|
|
497
|
+
searchSettings?: SearchSettings | null;
|
|
498
498
|
/**
|
|
499
499
|
* Indicates the current state of the connection. Possible values are: draft, ready, obsolete, limitExceeded, unknownFutureValue.
|
|
500
500
|
*/
|
|
501
|
-
state?: ConnectionState;
|
|
501
|
+
state?: ConnectionState | null;
|
|
502
502
|
}
|
|
503
503
|
export interface ExternalConnectionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
504
504
|
/**
|
|
505
505
|
* The value property
|
|
506
506
|
*/
|
|
507
|
-
value?: ExternalConnection[];
|
|
507
|
+
value?: ExternalConnection[] | null;
|
|
508
508
|
}
|
|
509
509
|
export interface ExternalGroup extends Entity, Parsable {
|
|
510
510
|
/**
|
|
511
511
|
* The description of the external group. Optional.
|
|
512
512
|
*/
|
|
513
|
-
description?: string;
|
|
513
|
+
description?: string | null;
|
|
514
514
|
/**
|
|
515
515
|
* The friendly name of the external group. Optional.
|
|
516
516
|
*/
|
|
517
|
-
displayName?: string;
|
|
517
|
+
displayName?: string | null;
|
|
518
518
|
/**
|
|
519
519
|
* A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members.
|
|
520
520
|
*/
|
|
521
|
-
members?: Identity[];
|
|
521
|
+
members?: Identity[] | null;
|
|
522
522
|
}
|
|
523
523
|
export interface ExternalGroupCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
524
524
|
/**
|
|
525
525
|
* The value property
|
|
526
526
|
*/
|
|
527
|
-
value?: ExternalGroup[];
|
|
527
|
+
value?: ExternalGroup[] | null;
|
|
528
528
|
}
|
|
529
529
|
export interface ExternalItem extends Entity, Parsable {
|
|
530
530
|
/**
|
|
531
531
|
* An array of access control entries. Each entry specifies the access granted to a user or group. Required.
|
|
532
532
|
*/
|
|
533
|
-
acl?: Acl[];
|
|
533
|
+
acl?: Acl[] | null;
|
|
534
534
|
/**
|
|
535
535
|
* Returns a list of activities performed on the item. Write-only.
|
|
536
536
|
*/
|
|
537
|
-
activities?: ExternalActivity[];
|
|
537
|
+
activities?: ExternalActivity[] | null;
|
|
538
538
|
/**
|
|
539
539
|
* A plain-text representation of the contents of the item. The text in this property is full-text indexed. Optional.
|
|
540
540
|
*/
|
|
541
|
-
content?: ExternalItemContent;
|
|
541
|
+
content?: ExternalItemContent | null;
|
|
542
542
|
/**
|
|
543
543
|
* A property bag with the properties of the item. The properties MUST conform to the schema defined for the externalConnection. Required.
|
|
544
544
|
*/
|
|
545
|
-
properties?: Properties;
|
|
545
|
+
properties?: Properties | null;
|
|
546
546
|
}
|
|
547
547
|
export interface ExternalItemCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
548
548
|
/**
|
|
549
549
|
* The value property
|
|
550
550
|
*/
|
|
551
|
-
value?: ExternalItem[];
|
|
551
|
+
value?: ExternalItem[] | null;
|
|
552
552
|
}
|
|
553
553
|
export interface ExternalItemContent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
554
554
|
/**
|
|
@@ -558,43 +558,43 @@ export interface ExternalItemContent extends AdditionalDataHolder, BackedModel,
|
|
|
558
558
|
/**
|
|
559
559
|
* Stores model information.
|
|
560
560
|
*/
|
|
561
|
-
backingStoreEnabled?: boolean;
|
|
561
|
+
backingStoreEnabled?: boolean | null;
|
|
562
562
|
/**
|
|
563
563
|
* The OdataType property
|
|
564
564
|
*/
|
|
565
|
-
odataType?: string;
|
|
565
|
+
odataType?: string | null;
|
|
566
566
|
/**
|
|
567
567
|
* The type property
|
|
568
568
|
*/
|
|
569
|
-
type?: ExternalItemContentType;
|
|
569
|
+
type?: ExternalItemContentType | null;
|
|
570
570
|
/**
|
|
571
571
|
* The content for the externalItem. Required.
|
|
572
572
|
*/
|
|
573
|
-
value?: string;
|
|
573
|
+
value?: string | null;
|
|
574
574
|
}
|
|
575
575
|
export type ExternalItemContentType = (typeof ExternalItemContentTypeObject)[keyof typeof ExternalItemContentTypeObject];
|
|
576
576
|
export interface Identity extends Entity, Parsable {
|
|
577
577
|
/**
|
|
578
578
|
* The type of identity. Possible values are: user or group for Microsoft Entra identities and externalgroup for groups in an external system.
|
|
579
579
|
*/
|
|
580
|
-
type?: IdentityType;
|
|
580
|
+
type?: IdentityType | null;
|
|
581
581
|
}
|
|
582
582
|
export interface IdentityCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
583
583
|
/**
|
|
584
584
|
* The value property
|
|
585
585
|
*/
|
|
586
|
-
value?: Identity[];
|
|
586
|
+
value?: Identity[] | null;
|
|
587
587
|
}
|
|
588
588
|
export type IdentityType = (typeof IdentityTypeObject)[keyof typeof IdentityTypeObject];
|
|
589
589
|
export interface ItemIdResolver extends Parsable, UrlToItemResolverBase {
|
|
590
590
|
/**
|
|
591
591
|
* Pattern that specifies how to form the ID of the external item that the URL represents. The named groups from the regular expression in urlPattern within the urlMatchInfo can be referenced by inserting the group name inside curly brackets.
|
|
592
592
|
*/
|
|
593
|
-
itemId?: string;
|
|
593
|
+
itemId?: string | null;
|
|
594
594
|
/**
|
|
595
595
|
* Configurations to match and resolve URL.
|
|
596
596
|
*/
|
|
597
|
-
urlMatchInfo?: UrlMatchInfo;
|
|
597
|
+
urlMatchInfo?: UrlMatchInfo | null;
|
|
598
598
|
}
|
|
599
599
|
export type Label = (typeof LabelObject)[keyof typeof LabelObject];
|
|
600
600
|
export interface Properties extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -605,11 +605,11 @@ export interface Properties extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
605
605
|
/**
|
|
606
606
|
* Stores model information.
|
|
607
607
|
*/
|
|
608
|
-
backingStoreEnabled?: boolean;
|
|
608
|
+
backingStoreEnabled?: boolean | null;
|
|
609
609
|
/**
|
|
610
610
|
* The OdataType property
|
|
611
611
|
*/
|
|
612
|
-
odataType?: string;
|
|
612
|
+
odataType?: string | null;
|
|
613
613
|
}
|
|
614
614
|
export interface Property extends AdditionalDataHolder, BackedModel, Parsable {
|
|
615
615
|
/**
|
|
@@ -619,43 +619,43 @@ export interface Property extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
619
619
|
/**
|
|
620
620
|
* A set of aliases or a friendly name for the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Optional.
|
|
621
621
|
*/
|
|
622
|
-
aliases?: string[];
|
|
622
|
+
aliases?: string[] | null;
|
|
623
623
|
/**
|
|
624
624
|
* Stores model information.
|
|
625
625
|
*/
|
|
626
|
-
backingStoreEnabled?: boolean;
|
|
626
|
+
backingStoreEnabled?: boolean | null;
|
|
627
627
|
/**
|
|
628
628
|
* Specifies if the property is queryable. Queryable properties can be used in Keyword Query Language (KQL) queries. Optional.
|
|
629
629
|
*/
|
|
630
|
-
isQueryable?: boolean;
|
|
630
|
+
isQueryable?: boolean | null;
|
|
631
631
|
/**
|
|
632
632
|
* Specifies if the property is refinable. Refinable properties can be used to filter search results in the Search API and add a refiner control in the Microsoft Search user experience. Optional.
|
|
633
633
|
*/
|
|
634
|
-
isRefinable?: boolean;
|
|
634
|
+
isRefinable?: boolean | null;
|
|
635
635
|
/**
|
|
636
636
|
* Specifies if the property is retrievable. Retrievable properties are returned in the result set when items are returned by the search API. Retrievable properties are also available to add to the display template used to render search results. Optional.
|
|
637
637
|
*/
|
|
638
|
-
isRetrievable?: boolean;
|
|
638
|
+
isRetrievable?: boolean | null;
|
|
639
639
|
/**
|
|
640
640
|
* Specifies if the property is searchable. Only properties of type String or StringCollection can be searchable. Nonsearchable properties aren't added to the search index. Optional.
|
|
641
641
|
*/
|
|
642
|
-
isSearchable?: boolean;
|
|
642
|
+
isSearchable?: boolean | null;
|
|
643
643
|
/**
|
|
644
644
|
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (for example, better relevance). Optional.The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue, iconUrl. You must use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: iconUrl.
|
|
645
645
|
*/
|
|
646
|
-
labels?: Label[];
|
|
646
|
+
labels?: Label[] | null;
|
|
647
647
|
/**
|
|
648
648
|
* The name of the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Required.
|
|
649
649
|
*/
|
|
650
|
-
name?: string;
|
|
650
|
+
name?: string | null;
|
|
651
651
|
/**
|
|
652
652
|
* The OdataType property
|
|
653
653
|
*/
|
|
654
|
-
odataType?: string;
|
|
654
|
+
odataType?: string | null;
|
|
655
655
|
/**
|
|
656
656
|
* The type property
|
|
657
657
|
*/
|
|
658
|
-
type?: PropertyType;
|
|
658
|
+
type?: PropertyType | null;
|
|
659
659
|
}
|
|
660
660
|
export interface PropertyRule extends AdditionalDataHolder, BackedModel, Parsable {
|
|
661
661
|
/**
|
|
@@ -665,27 +665,27 @@ export interface PropertyRule extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
665
665
|
/**
|
|
666
666
|
* Stores model information.
|
|
667
667
|
*/
|
|
668
|
-
backingStoreEnabled?: boolean;
|
|
668
|
+
backingStoreEnabled?: boolean | null;
|
|
669
669
|
/**
|
|
670
670
|
* The OdataType property
|
|
671
671
|
*/
|
|
672
|
-
odataType?: string;
|
|
672
|
+
odataType?: string | null;
|
|
673
673
|
/**
|
|
674
674
|
* The operation property
|
|
675
675
|
*/
|
|
676
|
-
operation?: RuleOperation;
|
|
676
|
+
operation?: RuleOperation | null;
|
|
677
677
|
/**
|
|
678
678
|
* The property from the externalItem schema. Required.
|
|
679
679
|
*/
|
|
680
|
-
property?: string;
|
|
680
|
+
property?: string | null;
|
|
681
681
|
/**
|
|
682
682
|
* A collection with one or many strings. One or more specified strings are matched with the specified property using the specified operation. Required.
|
|
683
683
|
*/
|
|
684
|
-
values?: string[];
|
|
684
|
+
values?: string[] | null;
|
|
685
685
|
/**
|
|
686
686
|
* The valuesJoinedBy property
|
|
687
687
|
*/
|
|
688
|
-
valuesJoinedBy?: BinaryOperator;
|
|
688
|
+
valuesJoinedBy?: BinaryOperator | null;
|
|
689
689
|
}
|
|
690
690
|
export type PropertyType = (typeof PropertyTypeObject)[keyof typeof PropertyTypeObject];
|
|
691
691
|
export type RuleOperation = (typeof RuleOperationObject)[keyof typeof RuleOperationObject];
|
|
@@ -693,11 +693,11 @@ export interface Schema extends Entity, Parsable {
|
|
|
693
693
|
/**
|
|
694
694
|
* Must be set to microsoft.graph.externalConnector.externalItem. Required.
|
|
695
695
|
*/
|
|
696
|
-
baseType?: string;
|
|
696
|
+
baseType?: string | null;
|
|
697
697
|
/**
|
|
698
698
|
* The properties defined for the items in the connection. The minimum number of properties is one, the maximum is 128.
|
|
699
699
|
*/
|
|
700
|
-
properties?: Property[];
|
|
700
|
+
properties?: Property[] | null;
|
|
701
701
|
}
|
|
702
702
|
export interface SearchSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
703
703
|
/**
|
|
@@ -707,151 +707,151 @@ export interface SearchSettings extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
707
707
|
/**
|
|
708
708
|
* Stores model information.
|
|
709
709
|
*/
|
|
710
|
-
backingStoreEnabled?: boolean;
|
|
710
|
+
backingStoreEnabled?: boolean | null;
|
|
711
711
|
/**
|
|
712
712
|
* The OdataType property
|
|
713
713
|
*/
|
|
714
|
-
odataType?: string;
|
|
714
|
+
odataType?: string | null;
|
|
715
715
|
/**
|
|
716
716
|
* Enables the developer to define the appearance of the content and configure conditions that dictate when the template should be displayed. Maximum of 2 search result templates per connection.
|
|
717
717
|
*/
|
|
718
|
-
searchResultTemplates?: DisplayTemplate[];
|
|
718
|
+
searchResultTemplates?: DisplayTemplate[] | null;
|
|
719
719
|
}
|
|
720
720
|
/**
|
|
721
721
|
* Serializes information the current object
|
|
722
722
|
* @param writer Serialization writer to use to serialize this model
|
|
723
723
|
*/
|
|
724
|
-
export declare function serializeAcl(writer: SerializationWriter, acl?: Partial<Acl> | undefined): void;
|
|
724
|
+
export declare function serializeAcl(writer: SerializationWriter, acl?: Partial<Acl> | undefined | null): void;
|
|
725
725
|
/**
|
|
726
726
|
* Serializes information the current object
|
|
727
727
|
* @param writer Serialization writer to use to serialize this model
|
|
728
728
|
*/
|
|
729
|
-
export declare function serializeActivitySettings(writer: SerializationWriter, activitySettings?: Partial<ActivitySettings> | undefined): void;
|
|
729
|
+
export declare function serializeActivitySettings(writer: SerializationWriter, activitySettings?: Partial<ActivitySettings> | undefined | null): void;
|
|
730
730
|
/**
|
|
731
731
|
* Serializes information the current object
|
|
732
732
|
* @param writer Serialization writer to use to serialize this model
|
|
733
733
|
*/
|
|
734
|
-
export declare function serializeConfiguration(writer: SerializationWriter, configuration?: Partial<Configuration> | undefined): void;
|
|
734
|
+
export declare function serializeConfiguration(writer: SerializationWriter, configuration?: Partial<Configuration> | undefined | null): void;
|
|
735
735
|
/**
|
|
736
736
|
* Serializes information the current object
|
|
737
737
|
* @param writer Serialization writer to use to serialize this model
|
|
738
738
|
*/
|
|
739
|
-
export declare function serializeConnectionOperation(writer: SerializationWriter, connectionOperation?: Partial<ConnectionOperation> | undefined): void;
|
|
739
|
+
export declare function serializeConnectionOperation(writer: SerializationWriter, connectionOperation?: Partial<ConnectionOperation> | undefined | null): void;
|
|
740
740
|
/**
|
|
741
741
|
* Serializes information the current object
|
|
742
742
|
* @param writer Serialization writer to use to serialize this model
|
|
743
743
|
*/
|
|
744
|
-
export declare function serializeConnectionOperationCollectionResponse(writer: SerializationWriter, connectionOperationCollectionResponse?: Partial<ConnectionOperationCollectionResponse> | undefined): void;
|
|
744
|
+
export declare function serializeConnectionOperationCollectionResponse(writer: SerializationWriter, connectionOperationCollectionResponse?: Partial<ConnectionOperationCollectionResponse> | undefined | null): void;
|
|
745
745
|
/**
|
|
746
746
|
* Serializes information the current object
|
|
747
747
|
* @param writer Serialization writer to use to serialize this model
|
|
748
748
|
*/
|
|
749
|
-
export declare function serializeDisplayTemplate(writer: SerializationWriter, displayTemplate?: Partial<DisplayTemplate> | undefined): void;
|
|
749
|
+
export declare function serializeDisplayTemplate(writer: SerializationWriter, displayTemplate?: Partial<DisplayTemplate> | undefined | null): void;
|
|
750
750
|
/**
|
|
751
751
|
* Serializes information the current object
|
|
752
752
|
* @param writer Serialization writer to use to serialize this model
|
|
753
753
|
*/
|
|
754
|
-
export declare function serializeExternal(writer: SerializationWriter, external?: Partial<External> | undefined): void;
|
|
754
|
+
export declare function serializeExternal(writer: SerializationWriter, external?: Partial<External> | undefined | null): void;
|
|
755
755
|
/**
|
|
756
756
|
* Serializes information the current object
|
|
757
757
|
* @param writer Serialization writer to use to serialize this model
|
|
758
758
|
*/
|
|
759
|
-
export declare function serializeExternalActivity(writer: SerializationWriter, externalActivity?: Partial<ExternalActivity> | undefined): void;
|
|
759
|
+
export declare function serializeExternalActivity(writer: SerializationWriter, externalActivity?: Partial<ExternalActivity> | undefined | null): void;
|
|
760
760
|
/**
|
|
761
761
|
* Serializes information the current object
|
|
762
762
|
* @param writer Serialization writer to use to serialize this model
|
|
763
763
|
*/
|
|
764
|
-
export declare function serializeExternalActivityCollectionResponse(writer: SerializationWriter, externalActivityCollectionResponse?: Partial<ExternalActivityCollectionResponse> | undefined): void;
|
|
764
|
+
export declare function serializeExternalActivityCollectionResponse(writer: SerializationWriter, externalActivityCollectionResponse?: Partial<ExternalActivityCollectionResponse> | undefined | null): void;
|
|
765
765
|
/**
|
|
766
766
|
* Serializes information the current object
|
|
767
767
|
* @param writer Serialization writer to use to serialize this model
|
|
768
768
|
*/
|
|
769
|
-
export declare function serializeExternalActivityResult(writer: SerializationWriter, externalActivityResult?: Partial<ExternalActivityResult> | undefined): void;
|
|
769
|
+
export declare function serializeExternalActivityResult(writer: SerializationWriter, externalActivityResult?: Partial<ExternalActivityResult> | undefined | null): void;
|
|
770
770
|
/**
|
|
771
771
|
* Serializes information the current object
|
|
772
772
|
* @param writer Serialization writer to use to serialize this model
|
|
773
773
|
*/
|
|
774
|
-
export declare function serializeExternalConnection(writer: SerializationWriter, externalConnection?: Partial<ExternalConnection> | undefined): void;
|
|
774
|
+
export declare function serializeExternalConnection(writer: SerializationWriter, externalConnection?: Partial<ExternalConnection> | undefined | null): void;
|
|
775
775
|
/**
|
|
776
776
|
* Serializes information the current object
|
|
777
777
|
* @param writer Serialization writer to use to serialize this model
|
|
778
778
|
*/
|
|
779
|
-
export declare function serializeExternalConnectionCollectionResponse(writer: SerializationWriter, externalConnectionCollectionResponse?: Partial<ExternalConnectionCollectionResponse> | undefined): void;
|
|
779
|
+
export declare function serializeExternalConnectionCollectionResponse(writer: SerializationWriter, externalConnectionCollectionResponse?: Partial<ExternalConnectionCollectionResponse> | undefined | null): void;
|
|
780
780
|
/**
|
|
781
781
|
* Serializes information the current object
|
|
782
782
|
* @param writer Serialization writer to use to serialize this model
|
|
783
783
|
*/
|
|
784
|
-
export declare function serializeExternalGroup(writer: SerializationWriter, externalGroup?: Partial<ExternalGroup> | undefined): void;
|
|
784
|
+
export declare function serializeExternalGroup(writer: SerializationWriter, externalGroup?: Partial<ExternalGroup> | undefined | null): void;
|
|
785
785
|
/**
|
|
786
786
|
* Serializes information the current object
|
|
787
787
|
* @param writer Serialization writer to use to serialize this model
|
|
788
788
|
*/
|
|
789
|
-
export declare function serializeExternalGroupCollectionResponse(writer: SerializationWriter, externalGroupCollectionResponse?: Partial<ExternalGroupCollectionResponse> | undefined): void;
|
|
789
|
+
export declare function serializeExternalGroupCollectionResponse(writer: SerializationWriter, externalGroupCollectionResponse?: Partial<ExternalGroupCollectionResponse> | undefined | null): void;
|
|
790
790
|
/**
|
|
791
791
|
* Serializes information the current object
|
|
792
792
|
* @param writer Serialization writer to use to serialize this model
|
|
793
793
|
*/
|
|
794
|
-
export declare function serializeExternalItem(writer: SerializationWriter, externalItem?: Partial<ExternalItem> | undefined): void;
|
|
794
|
+
export declare function serializeExternalItem(writer: SerializationWriter, externalItem?: Partial<ExternalItem> | undefined | null): void;
|
|
795
795
|
/**
|
|
796
796
|
* Serializes information the current object
|
|
797
797
|
* @param writer Serialization writer to use to serialize this model
|
|
798
798
|
*/
|
|
799
|
-
export declare function serializeExternalItemCollectionResponse(writer: SerializationWriter, externalItemCollectionResponse?: Partial<ExternalItemCollectionResponse> | undefined): void;
|
|
799
|
+
export declare function serializeExternalItemCollectionResponse(writer: SerializationWriter, externalItemCollectionResponse?: Partial<ExternalItemCollectionResponse> | undefined | null): void;
|
|
800
800
|
/**
|
|
801
801
|
* Serializes information the current object
|
|
802
802
|
* @param writer Serialization writer to use to serialize this model
|
|
803
803
|
*/
|
|
804
|
-
export declare function serializeExternalItemContent(writer: SerializationWriter, externalItemContent?: Partial<ExternalItemContent> | undefined): void;
|
|
804
|
+
export declare function serializeExternalItemContent(writer: SerializationWriter, externalItemContent?: Partial<ExternalItemContent> | undefined | null): void;
|
|
805
805
|
/**
|
|
806
806
|
* Serializes information the current object
|
|
807
807
|
* @param writer Serialization writer to use to serialize this model
|
|
808
808
|
*/
|
|
809
|
-
export declare function serializeIdentity(writer: SerializationWriter, identity?: Partial<Identity> | undefined): void;
|
|
809
|
+
export declare function serializeIdentity(writer: SerializationWriter, identity?: Partial<Identity> | undefined | null): void;
|
|
810
810
|
/**
|
|
811
811
|
* Serializes information the current object
|
|
812
812
|
* @param writer Serialization writer to use to serialize this model
|
|
813
813
|
*/
|
|
814
|
-
export declare function serializeIdentityCollectionResponse(writer: SerializationWriter, identityCollectionResponse?: Partial<IdentityCollectionResponse> | undefined): void;
|
|
814
|
+
export declare function serializeIdentityCollectionResponse(writer: SerializationWriter, identityCollectionResponse?: Partial<IdentityCollectionResponse> | undefined | null): void;
|
|
815
815
|
/**
|
|
816
816
|
* Serializes information the current object
|
|
817
817
|
* @param writer Serialization writer to use to serialize this model
|
|
818
818
|
*/
|
|
819
|
-
export declare function serializeItemIdResolver(writer: SerializationWriter, itemIdResolver?: Partial<ItemIdResolver> | undefined): void;
|
|
819
|
+
export declare function serializeItemIdResolver(writer: SerializationWriter, itemIdResolver?: Partial<ItemIdResolver> | undefined | null): void;
|
|
820
820
|
/**
|
|
821
821
|
* Serializes information the current object
|
|
822
822
|
* @param writer Serialization writer to use to serialize this model
|
|
823
823
|
*/
|
|
824
|
-
export declare function serializeProperties(writer: SerializationWriter, properties?: Partial<Properties> | undefined): void;
|
|
824
|
+
export declare function serializeProperties(writer: SerializationWriter, properties?: Partial<Properties> | undefined | null): void;
|
|
825
825
|
/**
|
|
826
826
|
* Serializes information the current object
|
|
827
827
|
* @param writer Serialization writer to use to serialize this model
|
|
828
828
|
*/
|
|
829
|
-
export declare function serializeProperty(writer: SerializationWriter, property?: Partial<Property> | undefined): void;
|
|
829
|
+
export declare function serializeProperty(writer: SerializationWriter, property?: Partial<Property> | undefined | null): void;
|
|
830
830
|
/**
|
|
831
831
|
* Serializes information the current object
|
|
832
832
|
* @param writer Serialization writer to use to serialize this model
|
|
833
833
|
*/
|
|
834
|
-
export declare function serializePropertyRule(writer: SerializationWriter, propertyRule?: Partial<PropertyRule> | undefined): void;
|
|
834
|
+
export declare function serializePropertyRule(writer: SerializationWriter, propertyRule?: Partial<PropertyRule> | undefined | null): void;
|
|
835
835
|
/**
|
|
836
836
|
* Serializes information the current object
|
|
837
837
|
* @param writer Serialization writer to use to serialize this model
|
|
838
838
|
*/
|
|
839
|
-
export declare function serializeSchema(writer: SerializationWriter, schema?: Partial<Schema> | undefined): void;
|
|
839
|
+
export declare function serializeSchema(writer: SerializationWriter, schema?: Partial<Schema> | undefined | null): void;
|
|
840
840
|
/**
|
|
841
841
|
* Serializes information the current object
|
|
842
842
|
* @param writer Serialization writer to use to serialize this model
|
|
843
843
|
*/
|
|
844
|
-
export declare function serializeSearchSettings(writer: SerializationWriter, searchSettings?: Partial<SearchSettings> | undefined): void;
|
|
844
|
+
export declare function serializeSearchSettings(writer: SerializationWriter, searchSettings?: Partial<SearchSettings> | undefined | null): void;
|
|
845
845
|
/**
|
|
846
846
|
* Serializes information the current object
|
|
847
847
|
* @param writer Serialization writer to use to serialize this model
|
|
848
848
|
*/
|
|
849
|
-
export declare function serializeUrlMatchInfo(writer: SerializationWriter, urlMatchInfo?: Partial<UrlMatchInfo> | undefined): void;
|
|
849
|
+
export declare function serializeUrlMatchInfo(writer: SerializationWriter, urlMatchInfo?: Partial<UrlMatchInfo> | undefined | null): void;
|
|
850
850
|
/**
|
|
851
851
|
* Serializes information the current object
|
|
852
852
|
* @param writer Serialization writer to use to serialize this model
|
|
853
853
|
*/
|
|
854
|
-
export declare function serializeUrlToItemResolverBase(writer: SerializationWriter, urlToItemResolverBase?: Partial<UrlToItemResolverBase> | undefined): void;
|
|
854
|
+
export declare function serializeUrlToItemResolverBase(writer: SerializationWriter, urlToItemResolverBase?: Partial<UrlToItemResolverBase> | undefined | null): void;
|
|
855
855
|
export interface UrlMatchInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
856
856
|
/**
|
|
857
857
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -860,19 +860,19 @@ export interface UrlMatchInfo extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
860
860
|
/**
|
|
861
861
|
* Stores model information.
|
|
862
862
|
*/
|
|
863
|
-
backingStoreEnabled?: boolean;
|
|
863
|
+
backingStoreEnabled?: boolean | null;
|
|
864
864
|
/**
|
|
865
865
|
* A list of the URL prefixes that must match URLs to be processed by this URL-to-item-resolver.
|
|
866
866
|
*/
|
|
867
|
-
baseUrls?: string[];
|
|
867
|
+
baseUrls?: string[] | null;
|
|
868
868
|
/**
|
|
869
869
|
* The OdataType property
|
|
870
870
|
*/
|
|
871
|
-
odataType?: string;
|
|
871
|
+
odataType?: string | null;
|
|
872
872
|
/**
|
|
873
873
|
* A regular expression that will be matched towards the URL that is processed by this URL-to-item-resolver. The ECMAScript specification for regular expressions (ECMA-262) is used for the evaluation. The named groups defined by the regular expression will be used later to extract values from the URL.
|
|
874
874
|
*/
|
|
875
|
-
urlPattern?: string;
|
|
875
|
+
urlPattern?: string | null;
|
|
876
876
|
}
|
|
877
877
|
export interface UrlToItemResolverBase extends AdditionalDataHolder, BackedModel, Parsable {
|
|
878
878
|
/**
|
|
@@ -882,15 +882,15 @@ export interface UrlToItemResolverBase extends AdditionalDataHolder, BackedModel
|
|
|
882
882
|
/**
|
|
883
883
|
* Stores model information.
|
|
884
884
|
*/
|
|
885
|
-
backingStoreEnabled?: boolean;
|
|
885
|
+
backingStoreEnabled?: boolean | null;
|
|
886
886
|
/**
|
|
887
887
|
* The OdataType property
|
|
888
888
|
*/
|
|
889
|
-
odataType?: string;
|
|
889
|
+
odataType?: string | null;
|
|
890
890
|
/**
|
|
891
891
|
* The priority which defines the sequence in which the urlToItemResolverBase instances are evaluated.
|
|
892
892
|
*/
|
|
893
|
-
priority?: number;
|
|
893
|
+
priority?: number | null;
|
|
894
894
|
}
|
|
895
895
|
export declare const AccessTypeObject: {
|
|
896
896
|
readonly Grant: "grant";
|