@microsoft/msgraph-sdk 1.0.0-preview.60 → 1.0.0-preview.62
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/index.d.ts +172 -55
- package/models/index.d.ts.map +1 -1
- package/models/index.js +126 -1
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +22 -0
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +29 -1
- package/models/partners/billing/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
|
@@ -1930,7 +1930,7 @@ export interface AdministrativeUnit extends DirectoryObject, Parsable {
|
|
|
1930
1930
|
*/
|
|
1931
1931
|
extensions?: Extension[] | null;
|
|
1932
1932
|
/**
|
|
1933
|
-
*
|
|
1933
|
+
* true if members of this administrative unit should be treated as sensitive, which requires specific permissions to manage. If not set, the default value is null and the default behavior is false. Use this property to define administrative units with roles that don't inherit from tenant-level administrators, and where the management of individual member objects is limited to administrators scoped to a restricted management administrative unit. This property is immutable and can't be changed later. For more information on how to work with restricted management administrative units, see Restricted management administrative units in Microsoft Entra ID.
|
|
1934
1934
|
*/
|
|
1935
1935
|
isMemberManagementRestricted?: boolean | null;
|
|
1936
1936
|
/**
|
|
@@ -8354,6 +8354,21 @@ export interface CallEndedEventMessageDetail extends EventMessageDetail, Parsabl
|
|
|
8354
8354
|
*/
|
|
8355
8355
|
initiator?: IdentitySet | null;
|
|
8356
8356
|
}
|
|
8357
|
+
export interface CallEvent extends Entity, Parsable {
|
|
8358
|
+
/**
|
|
8359
|
+
* The callEventType property
|
|
8360
|
+
*/
|
|
8361
|
+
callEventType?: CallEventType | null;
|
|
8362
|
+
/**
|
|
8363
|
+
* The eventDateTime property
|
|
8364
|
+
*/
|
|
8365
|
+
eventDateTime?: Date | null;
|
|
8366
|
+
/**
|
|
8367
|
+
* The participants property
|
|
8368
|
+
*/
|
|
8369
|
+
participants?: Participant[] | null;
|
|
8370
|
+
}
|
|
8371
|
+
export type CallEventType = (typeof CallEventTypeObject)[keyof typeof CallEventTypeObject];
|
|
8357
8372
|
export interface CallMediaState extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8358
8373
|
/**
|
|
8359
8374
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -8662,19 +8677,19 @@ export interface CertificateAuthority extends AdditionalDataHolder, BackedModel,
|
|
|
8662
8677
|
}
|
|
8663
8678
|
export interface CertificateAuthorityDetail extends DirectoryObject, Parsable {
|
|
8664
8679
|
/**
|
|
8665
|
-
* The certificate
|
|
8680
|
+
* The public key of the certificate authority.
|
|
8666
8681
|
*/
|
|
8667
8682
|
certificate?: ArrayBuffer | null;
|
|
8668
8683
|
/**
|
|
8669
|
-
* The
|
|
8684
|
+
* The type of certificate authority. The possible values are: root, intermediate, unknownFutureValue. Supports $filter (eq).
|
|
8670
8685
|
*/
|
|
8671
8686
|
certificateAuthorityType?: CertificateAuthorityType | null;
|
|
8672
8687
|
/**
|
|
8673
|
-
* The
|
|
8688
|
+
* The URL to check if the certificate is revoked.
|
|
8674
8689
|
*/
|
|
8675
8690
|
certificateRevocationListUrl?: string | null;
|
|
8676
8691
|
/**
|
|
8677
|
-
* The
|
|
8692
|
+
* The date and time when the certificate authority was created.
|
|
8678
8693
|
*/
|
|
8679
8694
|
createdDateTime?: Date | null;
|
|
8680
8695
|
/**
|
|
@@ -8682,27 +8697,27 @@ export interface CertificateAuthorityDetail extends DirectoryObject, Parsable {
|
|
|
8682
8697
|
*/
|
|
8683
8698
|
deltaCertificateRevocationListUrl?: string | null;
|
|
8684
8699
|
/**
|
|
8685
|
-
* The
|
|
8700
|
+
* The display name of the certificate authority.
|
|
8686
8701
|
*/
|
|
8687
8702
|
displayName?: string | null;
|
|
8688
8703
|
/**
|
|
8689
|
-
* The
|
|
8704
|
+
* The date and time when the certificate authority expires. Supports $filter (eq) and $orderby.
|
|
8690
8705
|
*/
|
|
8691
8706
|
expirationDateTime?: Date | null;
|
|
8692
8707
|
/**
|
|
8693
|
-
*
|
|
8708
|
+
* Indicates whether the certificate picker presents the certificate authority to the user to use for authentication. Default value is false. Optional.
|
|
8694
8709
|
*/
|
|
8695
8710
|
isIssuerHintEnabled?: boolean | null;
|
|
8696
8711
|
/**
|
|
8697
|
-
* The issuer
|
|
8712
|
+
* The issuer of the certificate authority.
|
|
8698
8713
|
*/
|
|
8699
8714
|
issuer?: string | null;
|
|
8700
8715
|
/**
|
|
8701
|
-
* The
|
|
8716
|
+
* The subject key identifier of certificate authority.
|
|
8702
8717
|
*/
|
|
8703
8718
|
issuerSubjectKeyIdentifier?: string | null;
|
|
8704
8719
|
/**
|
|
8705
|
-
* The thumbprint
|
|
8720
|
+
* The thumbprint of certificate authority certificate. Supports $filter (eq, startswith).
|
|
8706
8721
|
*/
|
|
8707
8722
|
thumbprint?: string | null;
|
|
8708
8723
|
}
|
|
@@ -8727,23 +8742,23 @@ export interface CertificateBasedAuthConfigurationCollectionResponse extends Bas
|
|
|
8727
8742
|
}
|
|
8728
8743
|
export interface CertificateBasedAuthPki extends DirectoryObject, Parsable {
|
|
8729
8744
|
/**
|
|
8730
|
-
* The
|
|
8745
|
+
* The collection of certificate authorities contained in this public key infrastructure resource.
|
|
8731
8746
|
*/
|
|
8732
8747
|
certificateAuthorities?: CertificateAuthorityDetail[] | null;
|
|
8733
8748
|
/**
|
|
8734
|
-
* The
|
|
8749
|
+
* The name of the object. Maximum length is 256 characters.
|
|
8735
8750
|
*/
|
|
8736
8751
|
displayName?: string | null;
|
|
8737
8752
|
/**
|
|
8738
|
-
* The
|
|
8753
|
+
* The date and time when the object was created or last modified.
|
|
8739
8754
|
*/
|
|
8740
8755
|
lastModifiedDateTime?: Date | null;
|
|
8741
8756
|
/**
|
|
8742
|
-
* The status
|
|
8757
|
+
* The status of any asynchronous jobs runs on the object which can be upload or delete.
|
|
8743
8758
|
*/
|
|
8744
8759
|
status?: string | null;
|
|
8745
8760
|
/**
|
|
8746
|
-
* The
|
|
8761
|
+
* The status details of the upload/deleted operation of PKI (Public Key Infrastructure).
|
|
8747
8762
|
*/
|
|
8748
8763
|
statusDetails?: string | null;
|
|
8749
8764
|
}
|
|
@@ -14510,6 +14525,12 @@ export declare function createCallCollectionResponseFromDiscriminatorValue(parse
|
|
|
14510
14525
|
* @returns {CallEndedEventMessageDetail}
|
|
14511
14526
|
*/
|
|
14512
14527
|
export declare function createCallEndedEventMessageDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14528
|
+
/**
|
|
14529
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14530
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14531
|
+
* @returns {CallEvent}
|
|
14532
|
+
*/
|
|
14533
|
+
export declare function createCallEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14513
14534
|
/**
|
|
14514
14535
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14515
14536
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -17300,6 +17321,18 @@ export declare function createEmailPayloadDetailFromDiscriminatorValue(parseNode
|
|
|
17300
17321
|
* @returns {EmailSettings}
|
|
17301
17322
|
*/
|
|
17302
17323
|
export declare function createEmailSettingsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17324
|
+
/**
|
|
17325
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17326
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17327
|
+
* @returns {EmergencyCallerInfo}
|
|
17328
|
+
*/
|
|
17329
|
+
export declare function createEmergencyCallerInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17330
|
+
/**
|
|
17331
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17332
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17333
|
+
* @returns {EmergencyCallEvent}
|
|
17334
|
+
*/
|
|
17335
|
+
export declare function createEmergencyCallEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17303
17336
|
/**
|
|
17304
17337
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
17305
17338
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -29396,6 +29429,11 @@ export declare function deserializeIntoCallCollectionResponse(callCollectionResp
|
|
|
29396
29429
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29397
29430
|
*/
|
|
29398
29431
|
export declare function deserializeIntoCallEndedEventMessageDetail(callEndedEventMessageDetail?: Partial<CallEndedEventMessageDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29432
|
+
/**
|
|
29433
|
+
* The deserialization information for the current model
|
|
29434
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29435
|
+
*/
|
|
29436
|
+
export declare function deserializeIntoCallEvent(callEvent?: Partial<CallEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29399
29437
|
/**
|
|
29400
29438
|
* The deserialization information for the current model
|
|
29401
29439
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31716,6 +31754,16 @@ export declare function deserializeIntoEmailPayloadDetail(emailPayloadDetail?: P
|
|
|
31716
31754
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31717
31755
|
*/
|
|
31718
31756
|
export declare function deserializeIntoEmailSettings(emailSettings?: Partial<EmailSettings> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31757
|
+
/**
|
|
31758
|
+
* The deserialization information for the current model
|
|
31759
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31760
|
+
*/
|
|
31761
|
+
export declare function deserializeIntoEmergencyCallerInfo(emergencyCallerInfo?: Partial<EmergencyCallerInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31762
|
+
/**
|
|
31763
|
+
* The deserialization information for the current model
|
|
31764
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31765
|
+
*/
|
|
31766
|
+
export declare function deserializeIntoEmergencyCallEvent(emergencyCallEvent?: Partial<EmergencyCallEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31719
31767
|
/**
|
|
31720
31768
|
* The deserialization information for the current model
|
|
31721
31769
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -39408,7 +39456,7 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
39408
39456
|
*/
|
|
39409
39457
|
isManaged?: boolean | null;
|
|
39410
39458
|
/**
|
|
39411
|
-
*
|
|
39459
|
+
* Indicates whether the device is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a device that's a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select.
|
|
39412
39460
|
*/
|
|
39413
39461
|
isManagementRestricted?: boolean | null;
|
|
39414
39462
|
/**
|
|
@@ -41798,7 +41846,7 @@ export interface Directory extends Entity, Parsable {
|
|
|
41798
41846
|
*/
|
|
41799
41847
|
onPremisesSynchronization?: OnPremisesDirectorySynchronization[] | null;
|
|
41800
41848
|
/**
|
|
41801
|
-
* The
|
|
41849
|
+
* The collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant.
|
|
41802
41850
|
*/
|
|
41803
41851
|
publicKeyInfrastructure?: PublicKeyInfrastructureRoot | null;
|
|
41804
41852
|
/**
|
|
@@ -44115,6 +44163,54 @@ export interface EmailSettings extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44115
44163
|
*/
|
|
44116
44164
|
useCompanyBranding?: boolean | null;
|
|
44117
44165
|
}
|
|
44166
|
+
export interface EmergencyCallerInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
44167
|
+
/**
|
|
44168
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
44169
|
+
*/
|
|
44170
|
+
additionalData?: Record<string, unknown>;
|
|
44171
|
+
/**
|
|
44172
|
+
* Stores model information.
|
|
44173
|
+
*/
|
|
44174
|
+
backingStoreEnabled?: boolean | null;
|
|
44175
|
+
/**
|
|
44176
|
+
* The displayName property
|
|
44177
|
+
*/
|
|
44178
|
+
displayName?: string | null;
|
|
44179
|
+
/**
|
|
44180
|
+
* The location property
|
|
44181
|
+
*/
|
|
44182
|
+
location?: Location | null;
|
|
44183
|
+
/**
|
|
44184
|
+
* The OdataType property
|
|
44185
|
+
*/
|
|
44186
|
+
odataType?: string | null;
|
|
44187
|
+
/**
|
|
44188
|
+
* The phoneNumber property
|
|
44189
|
+
*/
|
|
44190
|
+
phoneNumber?: string | null;
|
|
44191
|
+
/**
|
|
44192
|
+
* The tenantId property
|
|
44193
|
+
*/
|
|
44194
|
+
tenantId?: string | null;
|
|
44195
|
+
/**
|
|
44196
|
+
* The upn property
|
|
44197
|
+
*/
|
|
44198
|
+
upn?: string | null;
|
|
44199
|
+
}
|
|
44200
|
+
export interface EmergencyCallEvent extends CallEvent, Parsable {
|
|
44201
|
+
/**
|
|
44202
|
+
* The callerInfo property
|
|
44203
|
+
*/
|
|
44204
|
+
callerInfo?: EmergencyCallerInfo | null;
|
|
44205
|
+
/**
|
|
44206
|
+
* The emergencyNumberDialed property
|
|
44207
|
+
*/
|
|
44208
|
+
emergencyNumberDialed?: string | null;
|
|
44209
|
+
/**
|
|
44210
|
+
* The policyName property
|
|
44211
|
+
*/
|
|
44212
|
+
policyName?: string | null;
|
|
44213
|
+
}
|
|
44118
44214
|
/**
|
|
44119
44215
|
* Represents a container that exposes navigation properties for employee experience resources.
|
|
44120
44216
|
*/
|
|
@@ -45959,7 +46055,7 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
45959
46055
|
*/
|
|
45960
46056
|
isAssignableToRole?: boolean | null;
|
|
45961
46057
|
/**
|
|
45962
|
-
*
|
|
46058
|
+
* Indicates whether the group is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a group member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select.
|
|
45963
46059
|
*/
|
|
45964
46060
|
isManagementRestricted?: boolean | null;
|
|
45965
46061
|
/**
|
|
@@ -58965,7 +59061,7 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
58965
59061
|
*/
|
|
58966
59062
|
accessId?: PrivilegedAccessGroupRelationships | null;
|
|
58967
59063
|
/**
|
|
58968
|
-
* When the request activates an ownership or membership assignment in PIM for
|
|
59064
|
+
* When the request activates an ownership or membership assignment in PIM for Groups, this object represents the eligibility relationship. Otherwise, it's null. Supports $expand.
|
|
58969
59065
|
*/
|
|
58970
59066
|
activatedUsing?: PrivilegedAccessGroupEligibilitySchedule | null;
|
|
58971
59067
|
/**
|
|
@@ -58973,11 +59069,11 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
58973
59069
|
*/
|
|
58974
59070
|
assignmentType?: PrivilegedAccessGroupAssignmentType | null;
|
|
58975
59071
|
/**
|
|
58976
|
-
* References the group that is the scope of the membership or ownership assignment through PIM for
|
|
59072
|
+
* References the group that is the scope of the membership or ownership assignment through PIM for Groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
|
|
58977
59073
|
*/
|
|
58978
59074
|
group?: Group | null;
|
|
58979
59075
|
/**
|
|
58980
|
-
* The identifier of the group representing the scope of the membership or ownership assignment through PIM for
|
|
59076
|
+
* The identifier of the group representing the scope of the membership or ownership assignment through PIM for Groups. Required. Supports $filter (eq).
|
|
58981
59077
|
*/
|
|
58982
59078
|
groupId?: string | null;
|
|
58983
59079
|
/**
|
|
@@ -58989,7 +59085,7 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
58989
59085
|
*/
|
|
58990
59086
|
principal?: DirectoryObject | null;
|
|
58991
59087
|
/**
|
|
58992
|
-
* The identifier of the principal whose membership or ownership assignment is granted through PIM for
|
|
59088
|
+
* The identifier of the principal whose membership or ownership assignment is granted through PIM for Groups. Required. Supports $filter (eq).
|
|
58993
59089
|
*/
|
|
58994
59090
|
principalId?: string | null;
|
|
58995
59091
|
}
|
|
@@ -59005,7 +59101,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleInstance extends Parsabl
|
|
|
59005
59101
|
*/
|
|
59006
59102
|
accessId?: PrivilegedAccessGroupRelationships | null;
|
|
59007
59103
|
/**
|
|
59008
|
-
* When the request activates a membership or ownership in PIM for
|
|
59104
|
+
* When the request activates a membership or ownership in PIM for Groups, this object represents the eligibility request for the group. Otherwise, it is null.
|
|
59009
59105
|
*/
|
|
59010
59106
|
activatedUsing?: PrivilegedAccessGroupEligibilityScheduleInstance | null;
|
|
59011
59107
|
/**
|
|
@@ -59017,11 +59113,11 @@ export interface PrivilegedAccessGroupAssignmentScheduleInstance extends Parsabl
|
|
|
59017
59113
|
*/
|
|
59018
59114
|
assignmentType?: PrivilegedAccessGroupAssignmentType | null;
|
|
59019
59115
|
/**
|
|
59020
|
-
* References the group that is the scope of the membership or ownership assignment through PIM for
|
|
59116
|
+
* References the group that is the scope of the membership or ownership assignment through PIM for Groups. Supports $expand.
|
|
59021
59117
|
*/
|
|
59022
59118
|
group?: Group | null;
|
|
59023
59119
|
/**
|
|
59024
|
-
* The identifier of the group representing the scope of the membership or ownership assignment through PIM for
|
|
59120
|
+
* The identifier of the group representing the scope of the membership or ownership assignment through PIM for Groups. Optional. Supports $filter (eq).
|
|
59025
59121
|
*/
|
|
59026
59122
|
groupId?: string | null;
|
|
59027
59123
|
/**
|
|
@@ -59033,7 +59129,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleInstance extends Parsabl
|
|
|
59033
59129
|
*/
|
|
59034
59130
|
principal?: DirectoryObject | null;
|
|
59035
59131
|
/**
|
|
59036
|
-
* The identifier of the principal whose membership or ownership assignment to the group is managed through PIM for
|
|
59132
|
+
* The identifier of the principal whose membership or ownership assignment to the group is managed through PIM for Groups. Required. Supports $filter (eq).
|
|
59037
59133
|
*/
|
|
59038
59134
|
principalId?: string | null;
|
|
59039
59135
|
}
|
|
@@ -59049,15 +59145,15 @@ export interface PrivilegedAccessGroupAssignmentScheduleRequest extends Parsable
|
|
|
59049
59145
|
*/
|
|
59050
59146
|
accessId?: PrivilegedAccessGroupRelationships | null;
|
|
59051
59147
|
/**
|
|
59052
|
-
* When the request activates a membership or ownership assignment in PIM for
|
|
59148
|
+
* When the request activates a membership or ownership assignment in PIM for Groups, this object represents the eligibility policy for the group. Otherwise, it is null. Supports $expand.
|
|
59053
59149
|
*/
|
|
59054
59150
|
activatedUsing?: PrivilegedAccessGroupEligibilitySchedule | null;
|
|
59055
59151
|
/**
|
|
59056
|
-
* References the group that is the scope of the membership or ownership assignment request through PIM for
|
|
59152
|
+
* References the group that is the scope of the membership or ownership assignment request through PIM for Groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
|
|
59057
59153
|
*/
|
|
59058
59154
|
group?: Group | null;
|
|
59059
59155
|
/**
|
|
59060
|
-
* The identifier of the group representing the scope of the membership or ownership assignment through PIM for
|
|
59156
|
+
* The identifier of the group representing the scope of the membership or ownership assignment through PIM for Groups. Required.
|
|
59061
59157
|
*/
|
|
59062
59158
|
groupId?: string | null;
|
|
59063
59159
|
/**
|
|
@@ -59065,7 +59161,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleRequest extends Parsable
|
|
|
59065
59161
|
*/
|
|
59066
59162
|
principal?: DirectoryObject | null;
|
|
59067
59163
|
/**
|
|
59068
|
-
* The identifier of the principal whose membership or ownership assignment to the group is managed through PIM for
|
|
59164
|
+
* The identifier of the principal whose membership or ownership assignment to the group is managed through PIM for Groups. Supports $filter (eq, ne).
|
|
59069
59165
|
*/
|
|
59070
59166
|
principalId?: string | null;
|
|
59071
59167
|
/**
|
|
@@ -59090,11 +59186,11 @@ export interface PrivilegedAccessGroupEligibilitySchedule extends Parsable, Priv
|
|
|
59090
59186
|
*/
|
|
59091
59187
|
accessId?: PrivilegedAccessGroupRelationships | null;
|
|
59092
59188
|
/**
|
|
59093
|
-
* References the group that is the scope of the membership or ownership eligibility through PIM for
|
|
59189
|
+
* References the group that is the scope of the membership or ownership eligibility through PIM for Groups. Supports $expand.
|
|
59094
59190
|
*/
|
|
59095
59191
|
group?: Group | null;
|
|
59096
59192
|
/**
|
|
59097
|
-
* The identifier of the group representing the scope of the membership or ownership eligibility through PIM for
|
|
59193
|
+
* The identifier of the group representing the scope of the membership or ownership eligibility through PIM for Groups. Required. Supports $filter (eq).
|
|
59098
59194
|
*/
|
|
59099
59195
|
groupId?: string | null;
|
|
59100
59196
|
/**
|
|
@@ -59106,7 +59202,7 @@ export interface PrivilegedAccessGroupEligibilitySchedule extends Parsable, Priv
|
|
|
59106
59202
|
*/
|
|
59107
59203
|
principal?: DirectoryObject | null;
|
|
59108
59204
|
/**
|
|
59109
|
-
* The identifier of the principal whose membership or ownership eligibility is granted through PIM for
|
|
59205
|
+
* The identifier of the principal whose membership or ownership eligibility is granted through PIM for Groups. Required. Supports $filter (eq).
|
|
59110
59206
|
*/
|
|
59111
59207
|
principalId?: string | null;
|
|
59112
59208
|
}
|
|
@@ -59126,11 +59222,11 @@ export interface PrivilegedAccessGroupEligibilityScheduleInstance extends Parsab
|
|
|
59126
59222
|
*/
|
|
59127
59223
|
eligibilityScheduleId?: string | null;
|
|
59128
59224
|
/**
|
|
59129
|
-
* References the group that is the scope of the membership or ownership eligibility through PIM for
|
|
59225
|
+
* References the group that is the scope of the membership or ownership eligibility through PIM for Groups. Supports $expand.
|
|
59130
59226
|
*/
|
|
59131
59227
|
group?: Group | null;
|
|
59132
59228
|
/**
|
|
59133
|
-
* The identifier of the group representing the scope of the membership or ownership eligibility through PIM for
|
|
59229
|
+
* The identifier of the group representing the scope of the membership or ownership eligibility through PIM for Groups. Required. Supports $filter (eq).
|
|
59134
59230
|
*/
|
|
59135
59231
|
groupId?: string | null;
|
|
59136
59232
|
/**
|
|
@@ -59142,7 +59238,7 @@ export interface PrivilegedAccessGroupEligibilityScheduleInstance extends Parsab
|
|
|
59142
59238
|
*/
|
|
59143
59239
|
principal?: DirectoryObject | null;
|
|
59144
59240
|
/**
|
|
59145
|
-
* The identifier of the principal whose membership or ownership eligibility to the group is managed through PIM for
|
|
59241
|
+
* The identifier of the principal whose membership or ownership eligibility to the group is managed through PIM for Groups. Required. Supports $filter (eq).
|
|
59146
59242
|
*/
|
|
59147
59243
|
principalId?: string | null;
|
|
59148
59244
|
}
|
|
@@ -59158,11 +59254,11 @@ export interface PrivilegedAccessGroupEligibilityScheduleRequest extends Parsabl
|
|
|
59158
59254
|
*/
|
|
59159
59255
|
accessId?: PrivilegedAccessGroupRelationships | null;
|
|
59160
59256
|
/**
|
|
59161
|
-
* References the group that is the scope of the membership or ownership eligibility request through PIM for
|
|
59257
|
+
* References the group that is the scope of the membership or ownership eligibility request through PIM for Groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
|
|
59162
59258
|
*/
|
|
59163
59259
|
group?: Group | null;
|
|
59164
59260
|
/**
|
|
59165
|
-
* The identifier of the group representing the scope of the membership and ownership eligibility through PIM for
|
|
59261
|
+
* The identifier of the group representing the scope of the membership and ownership eligibility through PIM for Groups. Required.
|
|
59166
59262
|
*/
|
|
59167
59263
|
groupId?: string | null;
|
|
59168
59264
|
/**
|
|
@@ -59170,7 +59266,7 @@ export interface PrivilegedAccessGroupEligibilityScheduleRequest extends Parsabl
|
|
|
59170
59266
|
*/
|
|
59171
59267
|
principal?: DirectoryObject | null;
|
|
59172
59268
|
/**
|
|
59173
|
-
* The identifier of the principal whose membership or ownership eligibility to the group is managed through PIM for
|
|
59269
|
+
* The identifier of the principal whose membership or ownership eligibility to the group is managed through PIM for Groups. Required.
|
|
59174
59270
|
*/
|
|
59175
59271
|
principalId?: string | null;
|
|
59176
59272
|
/**
|
|
@@ -59913,7 +60009,7 @@ export interface PublicInnerError extends AdditionalDataHolder, BackedModel, Par
|
|
|
59913
60009
|
}
|
|
59914
60010
|
export interface PublicKeyInfrastructureRoot extends Entity, Parsable {
|
|
59915
60011
|
/**
|
|
59916
|
-
* The
|
|
60012
|
+
* The collection of public key infrastructure instances for the certificate-based authentication feature for users.
|
|
59917
60013
|
*/
|
|
59918
60014
|
certificateBasedAuthConfigurations?: CertificateBasedAuthPki[] | null;
|
|
59919
60015
|
}
|
|
@@ -65044,6 +65140,11 @@ export declare function serializeCallCollectionResponse(writer: SerializationWri
|
|
|
65044
65140
|
* @param writer Serialization writer to use to serialize this model
|
|
65045
65141
|
*/
|
|
65046
65142
|
export declare function serializeCallEndedEventMessageDetail(writer: SerializationWriter, callEndedEventMessageDetail?: Partial<CallEndedEventMessageDetail> | undefined | null): void;
|
|
65143
|
+
/**
|
|
65144
|
+
* Serializes information the current object
|
|
65145
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65146
|
+
*/
|
|
65147
|
+
export declare function serializeCallEvent(writer: SerializationWriter, callEvent?: Partial<CallEvent> | undefined | null): void;
|
|
65047
65148
|
/**
|
|
65048
65149
|
* Serializes information the current object
|
|
65049
65150
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -67364,6 +67465,16 @@ export declare function serializeEmailPayloadDetail(writer: SerializationWriter,
|
|
|
67364
67465
|
* @param writer Serialization writer to use to serialize this model
|
|
67365
67466
|
*/
|
|
67366
67467
|
export declare function serializeEmailSettings(writer: SerializationWriter, emailSettings?: Partial<EmailSettings> | undefined | null): void;
|
|
67468
|
+
/**
|
|
67469
|
+
* Serializes information the current object
|
|
67470
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67471
|
+
*/
|
|
67472
|
+
export declare function serializeEmergencyCallerInfo(writer: SerializationWriter, emergencyCallerInfo?: Partial<EmergencyCallerInfo> | undefined | null): void;
|
|
67473
|
+
/**
|
|
67474
|
+
* Serializes information the current object
|
|
67475
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67476
|
+
*/
|
|
67477
|
+
export declare function serializeEmergencyCallEvent(writer: SerializationWriter, emergencyCallEvent?: Partial<EmergencyCallEvent> | undefined | null): void;
|
|
67367
67478
|
/**
|
|
67368
67479
|
* Serializes information the current object
|
|
67369
67480
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -81738,11 +81849,11 @@ export interface UnifiedRoleManagementPolicyAssignment extends Entity, Parsable
|
|
|
81738
81849
|
*/
|
|
81739
81850
|
policyId?: string | null;
|
|
81740
81851
|
/**
|
|
81741
|
-
* For Microsoft Entra roles policy, it's the identifier of the role definition object where the policy applies. For PIM for
|
|
81852
|
+
* For Microsoft Entra roles policy, it's the identifier of the role definition object where the policy applies. For PIM for Groups membership and ownership, it's either member or owner. Supports $filter (eq).
|
|
81742
81853
|
*/
|
|
81743
81854
|
roleDefinitionId?: string | null;
|
|
81744
81855
|
/**
|
|
81745
|
-
* The identifier of the scope where the policy is assigned.
|
|
81856
|
+
* The identifier of the scope where the policy is assigned. Can be / for the tenant or a group ID. Required.
|
|
81746
81857
|
*/
|
|
81747
81858
|
scopeId?: string | null;
|
|
81748
81859
|
/**
|
|
@@ -82411,7 +82522,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
82411
82522
|
*/
|
|
82412
82523
|
interests?: string[] | null;
|
|
82413
82524
|
/**
|
|
82414
|
-
*
|
|
82525
|
+
* true if the user is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a user who is a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select.
|
|
82415
82526
|
*/
|
|
82416
82527
|
isManagementRestricted?: boolean | null;
|
|
82417
82528
|
/**
|
|
@@ -90278,47 +90389,47 @@ export interface WorkbookWorksheetProtectionOptions extends AdditionalDataHolder
|
|
|
90278
90389
|
*/
|
|
90279
90390
|
additionalData?: Record<string, unknown>;
|
|
90280
90391
|
/**
|
|
90281
|
-
*
|
|
90392
|
+
* Represents the worksheet protection option of allowing using auto filter feature.
|
|
90282
90393
|
*/
|
|
90283
90394
|
allowAutoFilter?: boolean | null;
|
|
90284
90395
|
/**
|
|
90285
|
-
*
|
|
90396
|
+
* Represents the worksheet protection option of allowing deleting columns.
|
|
90286
90397
|
*/
|
|
90287
90398
|
allowDeleteColumns?: boolean | null;
|
|
90288
90399
|
/**
|
|
90289
|
-
*
|
|
90400
|
+
* Represents the worksheet protection option of allowing deleting rows.
|
|
90290
90401
|
*/
|
|
90291
90402
|
allowDeleteRows?: boolean | null;
|
|
90292
90403
|
/**
|
|
90293
|
-
*
|
|
90404
|
+
* Represents the worksheet protection option of allowing formatting cells.
|
|
90294
90405
|
*/
|
|
90295
90406
|
allowFormatCells?: boolean | null;
|
|
90296
90407
|
/**
|
|
90297
|
-
*
|
|
90408
|
+
* Represents the worksheet protection option of allowing formatting columns.
|
|
90298
90409
|
*/
|
|
90299
90410
|
allowFormatColumns?: boolean | null;
|
|
90300
90411
|
/**
|
|
90301
|
-
*
|
|
90412
|
+
* Represents the worksheet protection option of allowing formatting rows.
|
|
90302
90413
|
*/
|
|
90303
90414
|
allowFormatRows?: boolean | null;
|
|
90304
90415
|
/**
|
|
90305
|
-
*
|
|
90416
|
+
* Represents the worksheet protection option of allowing inserting columns.
|
|
90306
90417
|
*/
|
|
90307
90418
|
allowInsertColumns?: boolean | null;
|
|
90308
90419
|
/**
|
|
90309
|
-
*
|
|
90420
|
+
* Represents the worksheet protection option of allowing inserting hyperlinks.
|
|
90310
90421
|
*/
|
|
90311
90422
|
allowInsertHyperlinks?: boolean | null;
|
|
90312
90423
|
/**
|
|
90313
|
-
*
|
|
90424
|
+
* Represents the worksheet protection option of allowing inserting rows.
|
|
90314
90425
|
*/
|
|
90315
90426
|
allowInsertRows?: boolean | null;
|
|
90316
90427
|
/**
|
|
90317
|
-
*
|
|
90428
|
+
* Represents the worksheet protection option of allowing using pivot table feature.
|
|
90318
90429
|
*/
|
|
90319
90430
|
allowPivotTables?: boolean | null;
|
|
90320
90431
|
/**
|
|
90321
|
-
*
|
|
90432
|
+
* Represents the worksheet protection option of allowing using sort feature.
|
|
90322
90433
|
*/
|
|
90323
90434
|
allowSort?: boolean | null;
|
|
90324
90435
|
/**
|
|
@@ -91411,6 +91522,12 @@ export declare const CallDirectionObject: {
|
|
|
91411
91522
|
readonly Incoming: "incoming";
|
|
91412
91523
|
readonly Outgoing: "outgoing";
|
|
91413
91524
|
};
|
|
91525
|
+
export declare const CallEventTypeObject: {
|
|
91526
|
+
readonly CallStarted: "callStarted";
|
|
91527
|
+
readonly CallEnded: "callEnded";
|
|
91528
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
91529
|
+
readonly RosterUpdated: "rosterUpdated";
|
|
91530
|
+
};
|
|
91414
91531
|
export declare const CallRecordingStatusObject: {
|
|
91415
91532
|
readonly Success: "success";
|
|
91416
91533
|
readonly Failure: "failure";
|