@microsoft/msgraph-sdk 1.0.0-preview.19 → 1.0.0-preview.21
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 +8 -8
- package/models/callRecords/index.d.ts.map +1 -1
- package/models/callRecords/index.js +1 -0
- package/models/externalConnectors/index.d.ts.map +1 -1
- package/models/externalConnectors/index.js +1 -0
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +1 -0
- package/models/index.d.ts +1233 -116
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1240 -145
- package/models/oDataErrors/index.d.ts.map +1 -1
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +1 -0
- package/models/search/index.d.ts.map +1 -1
- package/models/search/index.js +1 -0
- package/models/security/index.d.ts +862 -10
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +926 -14
- package/models/termStore/index.d.ts.map +1 -1
- package/models/termStore/index.js +1 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { type CallRecord } from './callRecords/';
|
|
|
2
2
|
import { type LifecycleWorkflowsContainer, type Workflow } from './identityGovernance/';
|
|
3
3
|
import { type Billing } from './partners/billing/';
|
|
4
4
|
import { type Acronym, type Bookmark, type Qna } from './search/';
|
|
5
|
-
import { BehaviorDuringRetentionPeriod, type CasesRoot, type Incident, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/';
|
|
5
|
+
import { BehaviorDuringRetentionPeriod, type CasesRoot, type Incident, type LabelsRoot, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/';
|
|
6
6
|
import { type Set, type Store, type Term } from './termStore/';
|
|
7
7
|
import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly } from '@microsoft/kiota-abstractions';
|
|
8
8
|
import { type Guid } from 'guid-typescript';
|
|
@@ -192,7 +192,7 @@ export interface AccessPackageApprovalStage extends AdditionalDataHolder, Backed
|
|
|
192
192
|
*/
|
|
193
193
|
odataType?: string;
|
|
194
194
|
/**
|
|
195
|
-
* The subjects, typically users, who will be asked to approve requests. A collection of singleUser, groupMembers, requestorManager, internalSponsors or
|
|
195
|
+
* The subjects, typically users, who will be asked to approve requests. A collection of singleUser, groupMembers, requestorManager, internalSponsors, externalSponsors, or targetUserSponsors.
|
|
196
196
|
*/
|
|
197
197
|
primaryApprovers?: SubjectSet[];
|
|
198
198
|
}
|
|
@@ -792,6 +792,14 @@ export interface AccessPackageResourceAttribute extends AdditionalDataHolder, Ba
|
|
|
792
792
|
* Information about how to set the attribute, currently a accessPackageUserDirectoryAttributeStore type.
|
|
793
793
|
*/
|
|
794
794
|
destination?: AccessPackageResourceAttributeDestination;
|
|
795
|
+
/**
|
|
796
|
+
* The isEditable property
|
|
797
|
+
*/
|
|
798
|
+
isEditable?: boolean;
|
|
799
|
+
/**
|
|
800
|
+
* The isPersistedOnAssignmentRemoval property
|
|
801
|
+
*/
|
|
802
|
+
isPersistedOnAssignmentRemoval?: boolean;
|
|
795
803
|
/**
|
|
796
804
|
* The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension2b676109c7c74ae2b41549205f1947edpersonalTitle.
|
|
797
805
|
*/
|
|
@@ -2121,7 +2129,7 @@ export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
2121
2129
|
*/
|
|
2122
2130
|
backingStoreEnabled?: boolean;
|
|
2123
2131
|
/**
|
|
2124
|
-
* Unique identifier of the
|
|
2132
|
+
* Unique identifier of the driveItem that is the cover of the album.
|
|
2125
2133
|
*/
|
|
2126
2134
|
coverImageItemId?: string;
|
|
2127
2135
|
/**
|
|
@@ -2151,7 +2159,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
2151
2159
|
*/
|
|
2152
2160
|
azureTenantId?: string;
|
|
2153
2161
|
/**
|
|
2154
|
-
* Category of the alert (for example, credentialTheft, ransomware
|
|
2162
|
+
* Category of the alert (for example, credentialTheft, ransomware).
|
|
2155
2163
|
*/
|
|
2156
2164
|
category?: string;
|
|
2157
2165
|
/**
|
|
@@ -2183,11 +2191,11 @@ export interface Alert extends Entity, Parsable {
|
|
|
2183
2191
|
*/
|
|
2184
2192
|
detectionIds?: string[];
|
|
2185
2193
|
/**
|
|
2186
|
-
* Time at which the event
|
|
2194
|
+
* Time at which the event or events that served as the trigger to generate the alert occurred. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
|
|
2187
2195
|
*/
|
|
2188
2196
|
eventDateTime?: Date;
|
|
2189
2197
|
/**
|
|
2190
|
-
* Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive.
|
|
2198
|
+
* Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. Supports update.
|
|
2191
2199
|
*/
|
|
2192
2200
|
feedback?: AlertFeedback;
|
|
2193
2201
|
/**
|
|
@@ -2251,7 +2259,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
2251
2259
|
*/
|
|
2252
2260
|
severity?: AlertSeverity;
|
|
2253
2261
|
/**
|
|
2254
|
-
* Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search
|
|
2262
|
+
* Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search.
|
|
2255
2263
|
*/
|
|
2256
2264
|
sourceMaterials?: string[];
|
|
2257
2265
|
/**
|
|
@@ -2259,7 +2267,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
2259
2267
|
*/
|
|
2260
2268
|
status?: AlertStatus;
|
|
2261
2269
|
/**
|
|
2262
|
-
* User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW'
|
|
2270
|
+
* User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW') (supports update).
|
|
2263
2271
|
*/
|
|
2264
2272
|
tags?: string[];
|
|
2265
2273
|
/**
|
|
@@ -3534,7 +3542,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3534
3542
|
*/
|
|
3535
3543
|
homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[];
|
|
3536
3544
|
/**
|
|
3537
|
-
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://<
|
|
3545
|
+
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://<appId>, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
|
|
3538
3546
|
*/
|
|
3539
3547
|
identifierUris?: string[];
|
|
3540
3548
|
/**
|
|
@@ -3610,7 +3618,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3610
3618
|
*/
|
|
3611
3619
|
servicePrincipalLockConfiguration?: ServicePrincipalLockConfiguration;
|
|
3612
3620
|
/**
|
|
3613
|
-
* Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount
|
|
3621
|
+
* Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg (default), AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, and PersonalMicrosoftAccount. See more in the table. The value of this object also limits the number of permissions an app can request. For more information, see Limits on requested permissions per app. The value for this property has implications on other app object properties. As a result, if you change this property, you might need to change other properties first. For more information, see Validation differences for signInAudience.Supports $filter (eq, ne, not).
|
|
3614
3622
|
*/
|
|
3615
3623
|
signInAudience?: string;
|
|
3616
3624
|
/**
|
|
@@ -3638,7 +3646,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3638
3646
|
*/
|
|
3639
3647
|
tokenLifetimePolicies?: TokenLifetimePolicy[];
|
|
3640
3648
|
/**
|
|
3641
|
-
* The
|
|
3649
|
+
* The unique identifier that can be assigned to an application and used as an alternate key. Immutable. Read-only.
|
|
3642
3650
|
*/
|
|
3643
3651
|
uniqueName?: string;
|
|
3644
3652
|
/**
|
|
@@ -5331,6 +5339,82 @@ export interface AuthenticationCombinationConfigurationCollectionResponse extend
|
|
|
5331
5339
|
*/
|
|
5332
5340
|
value?: AuthenticationCombinationConfiguration[];
|
|
5333
5341
|
}
|
|
5342
|
+
export interface AuthenticationConditionApplication extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5343
|
+
/**
|
|
5344
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5345
|
+
*/
|
|
5346
|
+
additionalData?: Record<string, unknown>;
|
|
5347
|
+
/**
|
|
5348
|
+
* The identifier for an application corresponding to a condition that triggers an authenticationEventListener.
|
|
5349
|
+
*/
|
|
5350
|
+
appId?: string;
|
|
5351
|
+
/**
|
|
5352
|
+
* Stores model information.
|
|
5353
|
+
*/
|
|
5354
|
+
backingStoreEnabled?: boolean;
|
|
5355
|
+
/**
|
|
5356
|
+
* The OdataType property
|
|
5357
|
+
*/
|
|
5358
|
+
odataType?: string;
|
|
5359
|
+
}
|
|
5360
|
+
export interface AuthenticationConditions extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5361
|
+
/**
|
|
5362
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5363
|
+
*/
|
|
5364
|
+
additionalData?: Record<string, unknown>;
|
|
5365
|
+
/**
|
|
5366
|
+
* Applications which trigger a custom authentication extension.
|
|
5367
|
+
*/
|
|
5368
|
+
applications?: AuthenticationConditionsApplications;
|
|
5369
|
+
/**
|
|
5370
|
+
* Stores model information.
|
|
5371
|
+
*/
|
|
5372
|
+
backingStoreEnabled?: boolean;
|
|
5373
|
+
/**
|
|
5374
|
+
* The OdataType property
|
|
5375
|
+
*/
|
|
5376
|
+
odataType?: string;
|
|
5377
|
+
}
|
|
5378
|
+
export interface AuthenticationConditionsApplications extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5379
|
+
/**
|
|
5380
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5381
|
+
*/
|
|
5382
|
+
additionalData?: Record<string, unknown>;
|
|
5383
|
+
/**
|
|
5384
|
+
* Stores model information.
|
|
5385
|
+
*/
|
|
5386
|
+
backingStoreEnabled?: boolean;
|
|
5387
|
+
/**
|
|
5388
|
+
* The includeApplications property
|
|
5389
|
+
*/
|
|
5390
|
+
includeApplications?: AuthenticationConditionApplication[];
|
|
5391
|
+
/**
|
|
5392
|
+
* The OdataType property
|
|
5393
|
+
*/
|
|
5394
|
+
odataType?: string;
|
|
5395
|
+
}
|
|
5396
|
+
export interface AuthenticationConfigurationValidation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5397
|
+
/**
|
|
5398
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
5399
|
+
*/
|
|
5400
|
+
additionalData?: Record<string, unknown>;
|
|
5401
|
+
/**
|
|
5402
|
+
* Stores model information.
|
|
5403
|
+
*/
|
|
5404
|
+
backingStoreEnabled?: boolean;
|
|
5405
|
+
/**
|
|
5406
|
+
* Errors in the validation result of a customAuthenticationExtension.
|
|
5407
|
+
*/
|
|
5408
|
+
errors?: GenericError[];
|
|
5409
|
+
/**
|
|
5410
|
+
* The OdataType property
|
|
5411
|
+
*/
|
|
5412
|
+
odataType?: string;
|
|
5413
|
+
/**
|
|
5414
|
+
* Warnings in the validation result of a customAuthenticationExtension.
|
|
5415
|
+
*/
|
|
5416
|
+
warnings?: GenericError[];
|
|
5417
|
+
}
|
|
5334
5418
|
export interface AuthenticationContextClassReference extends Entity, Parsable {
|
|
5335
5419
|
/**
|
|
5336
5420
|
* A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user-facing admin experiences. For example, a selection UX.
|
|
@@ -5351,6 +5435,22 @@ export interface AuthenticationContextClassReferenceCollectionResponse extends B
|
|
|
5351
5435
|
*/
|
|
5352
5436
|
value?: AuthenticationContextClassReference[];
|
|
5353
5437
|
}
|
|
5438
|
+
export interface AuthenticationEventListener extends Entity, Parsable {
|
|
5439
|
+
/**
|
|
5440
|
+
* The authenticationEventsFlowId property
|
|
5441
|
+
*/
|
|
5442
|
+
authenticationEventsFlowId?: string;
|
|
5443
|
+
/**
|
|
5444
|
+
* The conditions on which this authenticationEventListener should trigger.
|
|
5445
|
+
*/
|
|
5446
|
+
conditions?: AuthenticationConditions;
|
|
5447
|
+
}
|
|
5448
|
+
export interface AuthenticationEventListenerCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
5449
|
+
/**
|
|
5450
|
+
* The value property
|
|
5451
|
+
*/
|
|
5452
|
+
value?: AuthenticationEventListener[];
|
|
5453
|
+
}
|
|
5354
5454
|
export interface AuthenticationFlowsPolicy extends Entity, Parsable {
|
|
5355
5455
|
/**
|
|
5356
5456
|
* Inherited property. A description of the policy. Optional. Read-only.
|
|
@@ -5875,6 +5975,12 @@ export interface AzureADRegistrationPolicy extends AdditionalDataHolder, BackedM
|
|
|
5875
5975
|
*/
|
|
5876
5976
|
odataType?: string;
|
|
5877
5977
|
}
|
|
5978
|
+
export interface AzureAdTokenAuthentication extends CustomExtensionAuthenticationConfiguration, Parsable {
|
|
5979
|
+
/**
|
|
5980
|
+
* The appID of the Microsoft Entra application to use to authenticate an app with a custom extension.
|
|
5981
|
+
*/
|
|
5982
|
+
resourceId?: string;
|
|
5983
|
+
}
|
|
5878
5984
|
export interface AzureCommunicationServicesUserConversationMember extends ConversationMember, Parsable {
|
|
5879
5985
|
/**
|
|
5880
5986
|
* Azure Communication Services ID of the user.
|
|
@@ -5887,6 +5993,7 @@ export interface AzureCommunicationServicesUserIdentity extends Identity, Parsab
|
|
|
5887
5993
|
*/
|
|
5888
5994
|
azureCommunicationServicesResourceId?: string;
|
|
5889
5995
|
}
|
|
5996
|
+
export type B2bIdentityProvidersType = (typeof B2bIdentityProvidersTypeObject)[keyof typeof B2bIdentityProvidersTypeObject];
|
|
5890
5997
|
export interface B2xIdentityUserFlow extends IdentityUserFlow, Parsable {
|
|
5891
5998
|
/**
|
|
5892
5999
|
* Configuration for enabling an API connector for use as part of the self-service sign-up user flow. You can only obtain the value of this object using Get userFlowApiConnectorConfiguration.
|
|
@@ -6042,15 +6149,15 @@ export interface BaseItemVersion extends Entity, Parsable {
|
|
|
6042
6149
|
}
|
|
6043
6150
|
export interface BaseSitePage extends BaseItem, Parsable {
|
|
6044
6151
|
/**
|
|
6045
|
-
* The
|
|
6152
|
+
* The name of the page layout of the page. The possible values are: microsoftReserved, article, home, unknownFutureValue.
|
|
6046
6153
|
*/
|
|
6047
6154
|
pageLayout?: PageLayoutType;
|
|
6048
6155
|
/**
|
|
6049
|
-
* The
|
|
6156
|
+
* The publishing status and the MM.mm version of the page.
|
|
6050
6157
|
*/
|
|
6051
6158
|
publishingState?: PublicationFacet;
|
|
6052
6159
|
/**
|
|
6053
|
-
*
|
|
6160
|
+
* Title of the sitePage.
|
|
6054
6161
|
*/
|
|
6055
6162
|
title?: string;
|
|
6056
6163
|
}
|
|
@@ -6144,6 +6251,22 @@ export interface BookingAppointment extends Entity, Parsable {
|
|
|
6144
6251
|
* The URL of the meeting to join anonymously.
|
|
6145
6252
|
*/
|
|
6146
6253
|
anonymousJoinWebUrl?: string;
|
|
6254
|
+
/**
|
|
6255
|
+
* The customerEmailAddress property
|
|
6256
|
+
*/
|
|
6257
|
+
customerEmailAddress?: string;
|
|
6258
|
+
/**
|
|
6259
|
+
* The customerName property
|
|
6260
|
+
*/
|
|
6261
|
+
customerName?: string;
|
|
6262
|
+
/**
|
|
6263
|
+
* Notes from the customer associated with this appointment.
|
|
6264
|
+
*/
|
|
6265
|
+
customerNotes?: string;
|
|
6266
|
+
/**
|
|
6267
|
+
* The customerPhone property
|
|
6268
|
+
*/
|
|
6269
|
+
customerPhone?: string;
|
|
6147
6270
|
/**
|
|
6148
6271
|
* A collection of customer properties for an appointment. An appointment contains a list of customer information and each unit will indicate the properties of a customer who is part of that appointment. Optional.
|
|
6149
6272
|
*/
|
|
@@ -6685,6 +6808,10 @@ export interface BookingStaffMember extends BookingStaffMemberBase, Parsable {
|
|
|
6685
6808
|
* True indicates that a staff member will be notified via email when a booking assigned to them is created or changed.
|
|
6686
6809
|
*/
|
|
6687
6810
|
isEmailNotificationEnabled?: boolean;
|
|
6811
|
+
/**
|
|
6812
|
+
* The membershipStatus property
|
|
6813
|
+
*/
|
|
6814
|
+
membershipStatus?: BookingStaffMembershipStatus;
|
|
6688
6815
|
/**
|
|
6689
6816
|
* The role property
|
|
6690
6817
|
*/
|
|
@@ -6713,6 +6840,7 @@ export interface BookingStaffMemberBaseCollectionResponse extends BaseCollection
|
|
|
6713
6840
|
*/
|
|
6714
6841
|
value?: BookingStaffMemberBase[];
|
|
6715
6842
|
}
|
|
6843
|
+
export type BookingStaffMembershipStatus = (typeof BookingStaffMembershipStatusObject)[keyof typeof BookingStaffMembershipStatusObject];
|
|
6716
6844
|
export type BookingStaffRole = (typeof BookingStaffRoleObject)[keyof typeof BookingStaffRoleObject];
|
|
6717
6845
|
export type BookingType = (typeof BookingTypeObject)[keyof typeof BookingTypeObject];
|
|
6718
6846
|
/**
|
|
@@ -7176,7 +7304,7 @@ export interface Bundle extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
7176
7304
|
*/
|
|
7177
7305
|
additionalData?: Record<string, unknown>;
|
|
7178
7306
|
/**
|
|
7179
|
-
* If the bundle is an
|
|
7307
|
+
* If the bundle is an album, then the album property is included
|
|
7180
7308
|
*/
|
|
7181
7309
|
album?: Album;
|
|
7182
7310
|
/**
|
|
@@ -7757,11 +7885,11 @@ export interface CancelMediaProcessingOperation extends CommsOperation, Parsable
|
|
|
7757
7885
|
}
|
|
7758
7886
|
export interface CanvasLayout extends Entity, Parsable {
|
|
7759
7887
|
/**
|
|
7760
|
-
*
|
|
7888
|
+
* Collection of horizontal sections on the SharePoint page.
|
|
7761
7889
|
*/
|
|
7762
7890
|
horizontalSections?: HorizontalSection[];
|
|
7763
7891
|
/**
|
|
7764
|
-
*
|
|
7892
|
+
* Vertical section on the SharePoint page.
|
|
7765
7893
|
*/
|
|
7766
7894
|
verticalSection?: VerticalSection;
|
|
7767
7895
|
}
|
|
@@ -9627,7 +9755,7 @@ export interface ColumnDefinition extends Entity, Parsable {
|
|
|
9627
9755
|
*/
|
|
9628
9756
|
lookup?: LookupColumn;
|
|
9629
9757
|
/**
|
|
9630
|
-
* The API-facing name of the column as it appears in the
|
|
9758
|
+
* The API-facing name of the column as it appears in the fields on a listItem. For the user-facing name, see displayName.
|
|
9631
9759
|
*/
|
|
9632
9760
|
name?: string;
|
|
9633
9761
|
/**
|
|
@@ -9810,6 +9938,62 @@ export interface CommunicationsUserIdentity extends Identity, Parsable {
|
|
|
9810
9938
|
*/
|
|
9811
9939
|
tenantId?: string;
|
|
9812
9940
|
}
|
|
9941
|
+
export interface CompanySubscription extends Entity, Parsable {
|
|
9942
|
+
/**
|
|
9943
|
+
* The commerceSubscriptionId property
|
|
9944
|
+
*/
|
|
9945
|
+
commerceSubscriptionId?: string;
|
|
9946
|
+
/**
|
|
9947
|
+
* The createdDateTime property
|
|
9948
|
+
*/
|
|
9949
|
+
createdDateTime?: Date;
|
|
9950
|
+
/**
|
|
9951
|
+
* The isTrial property
|
|
9952
|
+
*/
|
|
9953
|
+
isTrial?: boolean;
|
|
9954
|
+
/**
|
|
9955
|
+
* The nextLifecycleDateTime property
|
|
9956
|
+
*/
|
|
9957
|
+
nextLifecycleDateTime?: Date;
|
|
9958
|
+
/**
|
|
9959
|
+
* The ownerId property
|
|
9960
|
+
*/
|
|
9961
|
+
ownerId?: string;
|
|
9962
|
+
/**
|
|
9963
|
+
* The ownerTenantId property
|
|
9964
|
+
*/
|
|
9965
|
+
ownerTenantId?: string;
|
|
9966
|
+
/**
|
|
9967
|
+
* The ownerType property
|
|
9968
|
+
*/
|
|
9969
|
+
ownerType?: string;
|
|
9970
|
+
/**
|
|
9971
|
+
* The serviceStatus property
|
|
9972
|
+
*/
|
|
9973
|
+
serviceStatus?: ServicePlanInfo[];
|
|
9974
|
+
/**
|
|
9975
|
+
* The skuId property
|
|
9976
|
+
*/
|
|
9977
|
+
skuId?: string;
|
|
9978
|
+
/**
|
|
9979
|
+
* The skuPartNumber property
|
|
9980
|
+
*/
|
|
9981
|
+
skuPartNumber?: string;
|
|
9982
|
+
/**
|
|
9983
|
+
* The status property
|
|
9984
|
+
*/
|
|
9985
|
+
status?: string;
|
|
9986
|
+
/**
|
|
9987
|
+
* The totalLicenses property
|
|
9988
|
+
*/
|
|
9989
|
+
totalLicenses?: number;
|
|
9990
|
+
}
|
|
9991
|
+
export interface CompanySubscriptionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9992
|
+
/**
|
|
9993
|
+
* The value property
|
|
9994
|
+
*/
|
|
9995
|
+
value?: CompanySubscription[];
|
|
9996
|
+
}
|
|
9813
9997
|
export interface Compliance extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9814
9998
|
/**
|
|
9815
9999
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -12537,6 +12721,30 @@ export declare function createAuthenticationCombinationConfigurationCollectionRe
|
|
|
12537
12721
|
* @returns {AuthenticationCombinationConfiguration}
|
|
12538
12722
|
*/
|
|
12539
12723
|
export declare function createAuthenticationCombinationConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12724
|
+
/**
|
|
12725
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12726
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12727
|
+
* @returns {AuthenticationConditionApplication}
|
|
12728
|
+
*/
|
|
12729
|
+
export declare function createAuthenticationConditionApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12730
|
+
/**
|
|
12731
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12732
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12733
|
+
* @returns {AuthenticationConditionsApplications}
|
|
12734
|
+
*/
|
|
12735
|
+
export declare function createAuthenticationConditionsApplicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12736
|
+
/**
|
|
12737
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12738
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12739
|
+
* @returns {AuthenticationConditions}
|
|
12740
|
+
*/
|
|
12741
|
+
export declare function createAuthenticationConditionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12742
|
+
/**
|
|
12743
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12744
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12745
|
+
* @returns {AuthenticationConfigurationValidation}
|
|
12746
|
+
*/
|
|
12747
|
+
export declare function createAuthenticationConfigurationValidationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12540
12748
|
/**
|
|
12541
12749
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12542
12750
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12549,6 +12757,18 @@ export declare function createAuthenticationContextClassReferenceCollectionRespo
|
|
|
12549
12757
|
* @returns {AuthenticationContextClassReference}
|
|
12550
12758
|
*/
|
|
12551
12759
|
export declare function createAuthenticationContextClassReferenceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12760
|
+
/**
|
|
12761
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12762
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12763
|
+
* @returns {AuthenticationEventListenerCollectionResponse}
|
|
12764
|
+
*/
|
|
12765
|
+
export declare function createAuthenticationEventListenerCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12766
|
+
/**
|
|
12767
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12768
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12769
|
+
* @returns {AuthenticationEventListener}
|
|
12770
|
+
*/
|
|
12771
|
+
export declare function createAuthenticationEventListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12552
12772
|
/**
|
|
12553
12773
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12554
12774
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12729,6 +12949,12 @@ export declare function createAzureAdPopTokenAuthenticationFromDiscriminatorValu
|
|
|
12729
12949
|
* @returns {AzureADRegistrationPolicy}
|
|
12730
12950
|
*/
|
|
12731
12951
|
export declare function createAzureADRegistrationPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12952
|
+
/**
|
|
12953
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12954
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12955
|
+
* @returns {AzureAdTokenAuthentication}
|
|
12956
|
+
*/
|
|
12957
|
+
export declare function createAzureAdTokenAuthenticationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12732
12958
|
/**
|
|
12733
12959
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12734
12960
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13803,6 +14029,18 @@ export declare function createCommunicationsPhoneIdentityFromDiscriminatorValue(
|
|
|
13803
14029
|
* @returns {CommunicationsUserIdentity}
|
|
13804
14030
|
*/
|
|
13805
14031
|
export declare function createCommunicationsUserIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14032
|
+
/**
|
|
14033
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14034
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14035
|
+
* @returns {CompanySubscriptionCollectionResponse}
|
|
14036
|
+
*/
|
|
14037
|
+
export declare function createCompanySubscriptionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14038
|
+
/**
|
|
14039
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14040
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14041
|
+
* @returns {CompanySubscription}
|
|
14042
|
+
*/
|
|
14043
|
+
export declare function createCompanySubscriptionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13806
14044
|
/**
|
|
13807
14045
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13808
14046
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14217,6 +14455,18 @@ export declare function createCrossTenantUserSyncInboundFromDiscriminatorValue(p
|
|
|
14217
14455
|
* @returns {CurrencyColumn}
|
|
14218
14456
|
*/
|
|
14219
14457
|
export declare function createCurrencyColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14458
|
+
/**
|
|
14459
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14460
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14461
|
+
* @returns {CustomAuthenticationExtensionCollectionResponse}
|
|
14462
|
+
*/
|
|
14463
|
+
export declare function createCustomAuthenticationExtensionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14464
|
+
/**
|
|
14465
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14466
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14467
|
+
* @returns {CustomAuthenticationExtension}
|
|
14468
|
+
*/
|
|
14469
|
+
export declare function createCustomAuthenticationExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14220
14470
|
/**
|
|
14221
14471
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14222
14472
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14265,6 +14515,12 @@ export declare function createCustomExtensionDataFromDiscriminatorValue(parseNod
|
|
|
14265
14515
|
* @returns {CustomExtensionEndpointConfiguration}
|
|
14266
14516
|
*/
|
|
14267
14517
|
export declare function createCustomExtensionEndpointConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14518
|
+
/**
|
|
14519
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14520
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14521
|
+
* @returns {CustomExtensionOverwriteConfiguration}
|
|
14522
|
+
*/
|
|
14523
|
+
export declare function createCustomExtensionOverwriteConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14268
14524
|
/**
|
|
14269
14525
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14270
14526
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14349,6 +14605,12 @@ export declare function createDaylightTimeZoneOffsetFromDiscriminatorValue(parse
|
|
|
14349
14605
|
* @returns {DefaultColumnValue}
|
|
14350
14606
|
*/
|
|
14351
14607
|
export declare function createDefaultColumnValueFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14608
|
+
/**
|
|
14609
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14610
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14611
|
+
* @returns {DefaultInvitationRedemptionIdentityProviderConfiguration}
|
|
14612
|
+
*/
|
|
14613
|
+
export declare function createDefaultInvitationRedemptionIdentityProviderConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14352
14614
|
/**
|
|
14353
14615
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14354
14616
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16275,6 +16537,12 @@ export declare function createHorizontalSectionFromDiscriminatorValue(parseNode:
|
|
|
16275
16537
|
* @returns {HostSecurityState}
|
|
16276
16538
|
*/
|
|
16277
16539
|
export declare function createHostSecurityStateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16540
|
+
/**
|
|
16541
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16542
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16543
|
+
* @returns {HttpRequestEndpoint}
|
|
16544
|
+
*/
|
|
16545
|
+
export declare function createHttpRequestEndpointFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16278
16546
|
/**
|
|
16279
16547
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16280
16548
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16599,6 +16867,12 @@ export declare function createInvitationFromDiscriminatorValue(parseNode: ParseN
|
|
|
16599
16867
|
* @returns {InvitationParticipantInfo}
|
|
16600
16868
|
*/
|
|
16601
16869
|
export declare function createInvitationParticipantInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16870
|
+
/**
|
|
16871
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16872
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16873
|
+
* @returns {InvitationRedemptionIdentityProviderConfiguration}
|
|
16874
|
+
*/
|
|
16875
|
+
export declare function createInvitationRedemptionIdentityProviderConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16602
16876
|
/**
|
|
16603
16877
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16604
16878
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18081,6 +18355,54 @@ export declare function createMobileThreatDefenseConnectorFromDiscriminatorValue
|
|
|
18081
18355
|
* @returns {ModifiedProperty}
|
|
18082
18356
|
*/
|
|
18083
18357
|
export declare function createModifiedPropertyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18358
|
+
/**
|
|
18359
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18360
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18361
|
+
* @returns {MultiTenantOrganization}
|
|
18362
|
+
*/
|
|
18363
|
+
export declare function createMultiTenantOrganizationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18364
|
+
/**
|
|
18365
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18366
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18367
|
+
* @returns {MultiTenantOrganizationIdentitySyncPolicyTemplate}
|
|
18368
|
+
*/
|
|
18369
|
+
export declare function createMultiTenantOrganizationIdentitySyncPolicyTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18370
|
+
/**
|
|
18371
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18372
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18373
|
+
* @returns {MultiTenantOrganizationJoinRequestRecord}
|
|
18374
|
+
*/
|
|
18375
|
+
export declare function createMultiTenantOrganizationJoinRequestRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18376
|
+
/**
|
|
18377
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18378
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18379
|
+
* @returns {MultiTenantOrganizationJoinRequestTransitionDetails}
|
|
18380
|
+
*/
|
|
18381
|
+
export declare function createMultiTenantOrganizationJoinRequestTransitionDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18382
|
+
/**
|
|
18383
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18384
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18385
|
+
* @returns {MultiTenantOrganizationMemberCollectionResponse}
|
|
18386
|
+
*/
|
|
18387
|
+
export declare function createMultiTenantOrganizationMemberCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18388
|
+
/**
|
|
18389
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18390
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18391
|
+
* @returns {MultiTenantOrganizationMember}
|
|
18392
|
+
*/
|
|
18393
|
+
export declare function createMultiTenantOrganizationMemberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18394
|
+
/**
|
|
18395
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18396
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18397
|
+
* @returns {MultiTenantOrganizationMemberTransitionDetails}
|
|
18398
|
+
*/
|
|
18399
|
+
export declare function createMultiTenantOrganizationMemberTransitionDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18400
|
+
/**
|
|
18401
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18402
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18403
|
+
* @returns {MultiTenantOrganizationPartnerConfigurationTemplate}
|
|
18404
|
+
*/
|
|
18405
|
+
export declare function createMultiTenantOrganizationPartnerConfigurationTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18084
18406
|
/**
|
|
18085
18407
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18086
18408
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18453,6 +18775,36 @@ export declare function createOnPremisesExtensionAttributesFromDiscriminatorValu
|
|
|
18453
18775
|
* @returns {OnPremisesProvisioningError}
|
|
18454
18776
|
*/
|
|
18455
18777
|
export declare function createOnPremisesProvisioningErrorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18778
|
+
/**
|
|
18779
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18780
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18781
|
+
* @returns {OnTokenIssuanceStartCustomExtension}
|
|
18782
|
+
*/
|
|
18783
|
+
export declare function createOnTokenIssuanceStartCustomExtensionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18784
|
+
/**
|
|
18785
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18786
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18787
|
+
* @returns {OnTokenIssuanceStartCustomExtensionHandler}
|
|
18788
|
+
*/
|
|
18789
|
+
export declare function createOnTokenIssuanceStartCustomExtensionHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18790
|
+
/**
|
|
18791
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18792
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18793
|
+
* @returns {OnTokenIssuanceStartHandler}
|
|
18794
|
+
*/
|
|
18795
|
+
export declare function createOnTokenIssuanceStartHandlerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18796
|
+
/**
|
|
18797
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18798
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18799
|
+
* @returns {OnTokenIssuanceStartListener}
|
|
18800
|
+
*/
|
|
18801
|
+
export declare function createOnTokenIssuanceStartListenerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18802
|
+
/**
|
|
18803
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
18804
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18805
|
+
* @returns {OnTokenIssuanceStartReturnClaim}
|
|
18806
|
+
*/
|
|
18807
|
+
export declare function createOnTokenIssuanceStartReturnClaimFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18456
18808
|
/**
|
|
18457
18809
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18458
18810
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19041,6 +19393,12 @@ export declare function createPolicyBaseFromDiscriminatorValue(parseNode: ParseN
|
|
|
19041
19393
|
* @returns {PolicyRoot}
|
|
19042
19394
|
*/
|
|
19043
19395
|
export declare function createPolicyRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19396
|
+
/**
|
|
19397
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19398
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19399
|
+
* @returns {PolicyTemplate}
|
|
19400
|
+
*/
|
|
19401
|
+
export declare function createPolicyTemplateFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19044
19402
|
/**
|
|
19045
19403
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19046
19404
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21291,6 +21649,12 @@ export declare function createTargetManagerFromDiscriminatorValue(parseNode: Par
|
|
|
21291
21649
|
* @returns {TargetResource}
|
|
21292
21650
|
*/
|
|
21293
21651
|
export declare function createTargetResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21652
|
+
/**
|
|
21653
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21654
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21655
|
+
* @returns {TargetUserSponsors}
|
|
21656
|
+
*/
|
|
21657
|
+
export declare function createTargetUserSponsorsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21294
21658
|
/**
|
|
21295
21659
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21296
21660
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21471,6 +21835,12 @@ export declare function createTeamsAsyncOperationCollectionResponseFromDiscrimin
|
|
|
21471
21835
|
* @returns {TeamsAsyncOperation}
|
|
21472
21836
|
*/
|
|
21473
21837
|
export declare function createTeamsAsyncOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21838
|
+
/**
|
|
21839
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21840
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21841
|
+
* @returns {TeamsLicensingDetails}
|
|
21842
|
+
*/
|
|
21843
|
+
export declare function createTeamsLicensingDetailsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21474
21844
|
/**
|
|
21475
21845
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21476
21846
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23952,6 +24322,10 @@ export interface CrossTenantAccessPolicy extends Parsable, PolicyBase {
|
|
|
23952
24322
|
* Defines partner-specific configurations for external Microsoft Entra organizations.
|
|
23953
24323
|
*/
|
|
23954
24324
|
partners?: CrossTenantAccessPolicyConfigurationPartner[];
|
|
24325
|
+
/**
|
|
24326
|
+
* Represents the base policy in the directory for multitenant organization settings.
|
|
24327
|
+
*/
|
|
24328
|
+
templates?: PolicyTemplate;
|
|
23955
24329
|
}
|
|
23956
24330
|
export interface CrossTenantAccessPolicyB2BSetting extends AdditionalDataHolder, BackedModel, Parsable {
|
|
23957
24331
|
/**
|
|
@@ -23977,7 +24351,7 @@ export interface CrossTenantAccessPolicyB2BSetting extends AdditionalDataHolder,
|
|
|
23977
24351
|
}
|
|
23978
24352
|
export interface CrossTenantAccessPolicyConfigurationDefault extends Entity, Parsable {
|
|
23979
24353
|
/**
|
|
23980
|
-
* Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and
|
|
24354
|
+
* Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and can't be updated in the default configuration. Read-only.
|
|
23981
24355
|
*/
|
|
23982
24356
|
automaticUserConsentSettings?: InboundOutboundPolicyConfiguration;
|
|
23983
24357
|
/**
|
|
@@ -24001,7 +24375,11 @@ export interface CrossTenantAccessPolicyConfigurationDefault extends Entity, Par
|
|
|
24001
24375
|
*/
|
|
24002
24376
|
inboundTrust?: CrossTenantAccessPolicyInboundTrust;
|
|
24003
24377
|
/**
|
|
24004
|
-
*
|
|
24378
|
+
* Defines the priority order based on which an identity provider is selected during invitation redemption for a guest user.
|
|
24379
|
+
*/
|
|
24380
|
+
invitationRedemptionIdentityProviderConfiguration?: DefaultInvitationRedemptionIdentityProviderConfiguration;
|
|
24381
|
+
/**
|
|
24382
|
+
* If true, the default configuration is set to the system default configuration. If false, the default settings are customized.
|
|
24005
24383
|
*/
|
|
24006
24384
|
isServiceDefault?: boolean;
|
|
24007
24385
|
}
|
|
@@ -24042,6 +24420,10 @@ export interface CrossTenantAccessPolicyConfigurationPartner extends AdditionalD
|
|
|
24042
24420
|
* Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
|
|
24043
24421
|
*/
|
|
24044
24422
|
inboundTrust?: CrossTenantAccessPolicyInboundTrust;
|
|
24423
|
+
/**
|
|
24424
|
+
* Identifies whether a tenant is a member of a multitenant organization.
|
|
24425
|
+
*/
|
|
24426
|
+
isInMultiTenantOrganization?: boolean;
|
|
24045
24427
|
/**
|
|
24046
24428
|
* Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
|
|
24047
24429
|
*/
|
|
@@ -24195,6 +24577,14 @@ export interface CurrencyColumn extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
24195
24577
|
*/
|
|
24196
24578
|
odataType?: string;
|
|
24197
24579
|
}
|
|
24580
|
+
export interface CustomAuthenticationExtension extends CustomCalloutExtension, Parsable {
|
|
24581
|
+
}
|
|
24582
|
+
export interface CustomAuthenticationExtensionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
24583
|
+
/**
|
|
24584
|
+
* The value property
|
|
24585
|
+
*/
|
|
24586
|
+
value?: CustomAuthenticationExtension[];
|
|
24587
|
+
}
|
|
24198
24588
|
export interface CustomCalloutExtension extends Entity, Parsable {
|
|
24199
24589
|
/**
|
|
24200
24590
|
* Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow.
|
|
@@ -24299,6 +24689,10 @@ export interface CustomExtensionClientConfiguration extends AdditionalDataHolder
|
|
|
24299
24689
|
* Stores model information.
|
|
24300
24690
|
*/
|
|
24301
24691
|
backingStoreEnabled?: boolean;
|
|
24692
|
+
/**
|
|
24693
|
+
* The max number of retries that Microsoft Entra ID makes to the external API. Values of 0 or 1 are supported. If null, the default for the service applies.
|
|
24694
|
+
*/
|
|
24695
|
+
maximumRetries?: number;
|
|
24302
24696
|
/**
|
|
24303
24697
|
* The OdataType property
|
|
24304
24698
|
*/
|
|
@@ -24336,6 +24730,24 @@ export interface CustomExtensionEndpointConfiguration extends AdditionalDataHold
|
|
|
24336
24730
|
*/
|
|
24337
24731
|
odataType?: string;
|
|
24338
24732
|
}
|
|
24733
|
+
export interface CustomExtensionOverwriteConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
24734
|
+
/**
|
|
24735
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
24736
|
+
*/
|
|
24737
|
+
additionalData?: Record<string, unknown>;
|
|
24738
|
+
/**
|
|
24739
|
+
* Stores model information.
|
|
24740
|
+
*/
|
|
24741
|
+
backingStoreEnabled?: boolean;
|
|
24742
|
+
/**
|
|
24743
|
+
* Configuration regarding properties of the custom extension which can be overwritten per event listener. If no values are provided, the properties on the custom extension are used.
|
|
24744
|
+
*/
|
|
24745
|
+
clientConfiguration?: CustomExtensionClientConfiguration;
|
|
24746
|
+
/**
|
|
24747
|
+
* The OdataType property
|
|
24748
|
+
*/
|
|
24749
|
+
odataType?: string;
|
|
24750
|
+
}
|
|
24339
24751
|
export interface CustomExtensionStageSetting extends Entity, Parsable {
|
|
24340
24752
|
/**
|
|
24341
24753
|
* Indicates the custom workflow extension that will be executed at this stage. Nullable. Supports $expand.
|
|
@@ -24583,6 +24995,8 @@ export interface DefaultColumnValue extends AdditionalDataHolder, BackedModel, P
|
|
|
24583
24995
|
*/
|
|
24584
24996
|
value?: string;
|
|
24585
24997
|
}
|
|
24998
|
+
export interface DefaultInvitationRedemptionIdentityProviderConfiguration extends InvitationRedemptionIdentityProviderConfiguration, Parsable {
|
|
24999
|
+
}
|
|
24586
25000
|
/**
|
|
24587
25001
|
* Policy used to configure detailed management settings for a specified set of apps for all users not targeted by a TargetedManagedAppProtection Policy
|
|
24588
25002
|
*/
|
|
@@ -26186,6 +26600,26 @@ export declare function deserializeIntoAuthenticationCombinationConfiguration(au
|
|
|
26186
26600
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26187
26601
|
*/
|
|
26188
26602
|
export declare function deserializeIntoAuthenticationCombinationConfigurationCollectionResponse(authenticationCombinationConfigurationCollectionResponse?: Partial<AuthenticationCombinationConfigurationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26603
|
+
/**
|
|
26604
|
+
* The deserialization information for the current model
|
|
26605
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26606
|
+
*/
|
|
26607
|
+
export declare function deserializeIntoAuthenticationConditionApplication(authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26608
|
+
/**
|
|
26609
|
+
* The deserialization information for the current model
|
|
26610
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26611
|
+
*/
|
|
26612
|
+
export declare function deserializeIntoAuthenticationConditions(authenticationConditions?: Partial<AuthenticationConditions> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26613
|
+
/**
|
|
26614
|
+
* The deserialization information for the current model
|
|
26615
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26616
|
+
*/
|
|
26617
|
+
export declare function deserializeIntoAuthenticationConditionsApplications(authenticationConditionsApplications?: Partial<AuthenticationConditionsApplications> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26618
|
+
/**
|
|
26619
|
+
* The deserialization information for the current model
|
|
26620
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26621
|
+
*/
|
|
26622
|
+
export declare function deserializeIntoAuthenticationConfigurationValidation(authenticationConfigurationValidation?: Partial<AuthenticationConfigurationValidation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26189
26623
|
/**
|
|
26190
26624
|
* The deserialization information for the current model
|
|
26191
26625
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -26196,6 +26630,16 @@ export declare function deserializeIntoAuthenticationContextClassReference(authe
|
|
|
26196
26630
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26197
26631
|
*/
|
|
26198
26632
|
export declare function deserializeIntoAuthenticationContextClassReferenceCollectionResponse(authenticationContextClassReferenceCollectionResponse?: Partial<AuthenticationContextClassReferenceCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26633
|
+
/**
|
|
26634
|
+
* The deserialization information for the current model
|
|
26635
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26636
|
+
*/
|
|
26637
|
+
export declare function deserializeIntoAuthenticationEventListener(authenticationEventListener?: Partial<AuthenticationEventListener> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26638
|
+
/**
|
|
26639
|
+
* The deserialization information for the current model
|
|
26640
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26641
|
+
*/
|
|
26642
|
+
export declare function deserializeIntoAuthenticationEventListenerCollectionResponse(authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26199
26643
|
/**
|
|
26200
26644
|
* The deserialization information for the current model
|
|
26201
26645
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -26341,6 +26785,11 @@ export declare function deserializeIntoAzureAdPopTokenAuthentication(azureAdPopT
|
|
|
26341
26785
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26342
26786
|
*/
|
|
26343
26787
|
export declare function deserializeIntoAzureADRegistrationPolicy(azureADRegistrationPolicy?: Partial<AzureADRegistrationPolicy> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26788
|
+
/**
|
|
26789
|
+
* The deserialization information for the current model
|
|
26790
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26791
|
+
*/
|
|
26792
|
+
export declare function deserializeIntoAzureAdTokenAuthentication(azureAdTokenAuthentication?: Partial<AzureAdTokenAuthentication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26344
26793
|
/**
|
|
26345
26794
|
* The deserialization information for the current model
|
|
26346
26795
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27236,6 +27685,16 @@ export declare function deserializeIntoCommunicationsPhoneIdentity(communication
|
|
|
27236
27685
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27237
27686
|
*/
|
|
27238
27687
|
export declare function deserializeIntoCommunicationsUserIdentity(communicationsUserIdentity?: Partial<CommunicationsUserIdentity> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27688
|
+
/**
|
|
27689
|
+
* The deserialization information for the current model
|
|
27690
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27691
|
+
*/
|
|
27692
|
+
export declare function deserializeIntoCompanySubscription(companySubscription?: Partial<CompanySubscription> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27693
|
+
/**
|
|
27694
|
+
* The deserialization information for the current model
|
|
27695
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27696
|
+
*/
|
|
27697
|
+
export declare function deserializeIntoCompanySubscriptionCollectionResponse(companySubscriptionCollectionResponse?: Partial<CompanySubscriptionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27239
27698
|
/**
|
|
27240
27699
|
* The deserialization information for the current model
|
|
27241
27700
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27581,6 +28040,16 @@ export declare function deserializeIntoCrossTenantUserSyncInbound(crossTenantUse
|
|
|
27581
28040
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27582
28041
|
*/
|
|
27583
28042
|
export declare function deserializeIntoCurrencyColumn(currencyColumn?: Partial<CurrencyColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28043
|
+
/**
|
|
28044
|
+
* The deserialization information for the current model
|
|
28045
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28046
|
+
*/
|
|
28047
|
+
export declare function deserializeIntoCustomAuthenticationExtension(customAuthenticationExtension?: Partial<CustomAuthenticationExtension> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28048
|
+
/**
|
|
28049
|
+
* The deserialization information for the current model
|
|
28050
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28051
|
+
*/
|
|
28052
|
+
export declare function deserializeIntoCustomAuthenticationExtensionCollectionResponse(customAuthenticationExtensionCollectionResponse?: Partial<CustomAuthenticationExtensionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27584
28053
|
/**
|
|
27585
28054
|
* The deserialization information for the current model
|
|
27586
28055
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27621,6 +28090,11 @@ export declare function deserializeIntoCustomExtensionData(customExtensionData?:
|
|
|
27621
28090
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27622
28091
|
*/
|
|
27623
28092
|
export declare function deserializeIntoCustomExtensionEndpointConfiguration(customExtensionEndpointConfiguration?: Partial<CustomExtensionEndpointConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28093
|
+
/**
|
|
28094
|
+
* The deserialization information for the current model
|
|
28095
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28096
|
+
*/
|
|
28097
|
+
export declare function deserializeIntoCustomExtensionOverwriteConfiguration(customExtensionOverwriteConfiguration?: Partial<CustomExtensionOverwriteConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27624
28098
|
/**
|
|
27625
28099
|
* The deserialization information for the current model
|
|
27626
28100
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27691,6 +28165,11 @@ export declare function deserializeIntoDaylightTimeZoneOffset(daylightTimeZoneOf
|
|
|
27691
28165
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27692
28166
|
*/
|
|
27693
28167
|
export declare function deserializeIntoDefaultColumnValue(defaultColumnValue?: Partial<DefaultColumnValue> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28168
|
+
/**
|
|
28169
|
+
* The deserialization information for the current model
|
|
28170
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28171
|
+
*/
|
|
28172
|
+
export declare function deserializeIntoDefaultInvitationRedemptionIdentityProviderConfiguration(defaultInvitationRedemptionIdentityProviderConfiguration?: Partial<DefaultInvitationRedemptionIdentityProviderConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27694
28173
|
/**
|
|
27695
28174
|
* The deserialization information for the current model
|
|
27696
28175
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29296,6 +29775,11 @@ export declare function deserializeIntoHorizontalSectionColumnCollectionResponse
|
|
|
29296
29775
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29297
29776
|
*/
|
|
29298
29777
|
export declare function deserializeIntoHostSecurityState(hostSecurityState?: Partial<HostSecurityState> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29778
|
+
/**
|
|
29779
|
+
* The deserialization information for the current model
|
|
29780
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29781
|
+
*/
|
|
29782
|
+
export declare function deserializeIntoHttpRequestEndpoint(httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29299
29783
|
/**
|
|
29300
29784
|
* The deserialization information for the current model
|
|
29301
29785
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29566,6 +30050,11 @@ export declare function deserializeIntoInvitationCollectionResponse(invitationCo
|
|
|
29566
30050
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29567
30051
|
*/
|
|
29568
30052
|
export declare function deserializeIntoInvitationParticipantInfo(invitationParticipantInfo?: Partial<InvitationParticipantInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30053
|
+
/**
|
|
30054
|
+
* The deserialization information for the current model
|
|
30055
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30056
|
+
*/
|
|
30057
|
+
export declare function deserializeIntoInvitationRedemptionIdentityProviderConfiguration(invitationRedemptionIdentityProviderConfiguration?: Partial<InvitationRedemptionIdentityProviderConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29569
30058
|
/**
|
|
29570
30059
|
* The deserialization information for the current model
|
|
29571
30060
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -30801,6 +31290,46 @@ export declare function deserializeIntoMobileThreatDefenseConnectorCollectionRes
|
|
|
30801
31290
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30802
31291
|
*/
|
|
30803
31292
|
export declare function deserializeIntoModifiedProperty(modifiedProperty?: Partial<ModifiedProperty> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31293
|
+
/**
|
|
31294
|
+
* The deserialization information for the current model
|
|
31295
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31296
|
+
*/
|
|
31297
|
+
export declare function deserializeIntoMultiTenantOrganization(multiTenantOrganization?: Partial<MultiTenantOrganization> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31298
|
+
/**
|
|
31299
|
+
* The deserialization information for the current model
|
|
31300
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31301
|
+
*/
|
|
31302
|
+
export declare function deserializeIntoMultiTenantOrganizationIdentitySyncPolicyTemplate(multiTenantOrganizationIdentitySyncPolicyTemplate?: Partial<MultiTenantOrganizationIdentitySyncPolicyTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31303
|
+
/**
|
|
31304
|
+
* The deserialization information for the current model
|
|
31305
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31306
|
+
*/
|
|
31307
|
+
export declare function deserializeIntoMultiTenantOrganizationJoinRequestRecord(multiTenantOrganizationJoinRequestRecord?: Partial<MultiTenantOrganizationJoinRequestRecord> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31308
|
+
/**
|
|
31309
|
+
* The deserialization information for the current model
|
|
31310
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31311
|
+
*/
|
|
31312
|
+
export declare function deserializeIntoMultiTenantOrganizationJoinRequestTransitionDetails(multiTenantOrganizationJoinRequestTransitionDetails?: Partial<MultiTenantOrganizationJoinRequestTransitionDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31313
|
+
/**
|
|
31314
|
+
* The deserialization information for the current model
|
|
31315
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31316
|
+
*/
|
|
31317
|
+
export declare function deserializeIntoMultiTenantOrganizationMember(multiTenantOrganizationMember?: Partial<MultiTenantOrganizationMember> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31318
|
+
/**
|
|
31319
|
+
* The deserialization information for the current model
|
|
31320
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31321
|
+
*/
|
|
31322
|
+
export declare function deserializeIntoMultiTenantOrganizationMemberCollectionResponse(multiTenantOrganizationMemberCollectionResponse?: Partial<MultiTenantOrganizationMemberCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31323
|
+
/**
|
|
31324
|
+
* The deserialization information for the current model
|
|
31325
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31326
|
+
*/
|
|
31327
|
+
export declare function deserializeIntoMultiTenantOrganizationMemberTransitionDetails(multiTenantOrganizationMemberTransitionDetails?: Partial<MultiTenantOrganizationMemberTransitionDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31328
|
+
/**
|
|
31329
|
+
* The deserialization information for the current model
|
|
31330
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31331
|
+
*/
|
|
31332
|
+
export declare function deserializeIntoMultiTenantOrganizationPartnerConfigurationTemplate(multiTenantOrganizationPartnerConfigurationTemplate?: Partial<MultiTenantOrganizationPartnerConfigurationTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30804
31333
|
/**
|
|
30805
31334
|
* The deserialization information for the current model
|
|
30806
31335
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31111,6 +31640,31 @@ export declare function deserializeIntoOnPremisesExtensionAttributes(onPremisesE
|
|
|
31111
31640
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31112
31641
|
*/
|
|
31113
31642
|
export declare function deserializeIntoOnPremisesProvisioningError(onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31643
|
+
/**
|
|
31644
|
+
* The deserialization information for the current model
|
|
31645
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31646
|
+
*/
|
|
31647
|
+
export declare function deserializeIntoOnTokenIssuanceStartCustomExtension(onTokenIssuanceStartCustomExtension?: Partial<OnTokenIssuanceStartCustomExtension> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31648
|
+
/**
|
|
31649
|
+
* The deserialization information for the current model
|
|
31650
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31651
|
+
*/
|
|
31652
|
+
export declare function deserializeIntoOnTokenIssuanceStartCustomExtensionHandler(onTokenIssuanceStartCustomExtensionHandler?: Partial<OnTokenIssuanceStartCustomExtensionHandler> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31653
|
+
/**
|
|
31654
|
+
* The deserialization information for the current model
|
|
31655
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31656
|
+
*/
|
|
31657
|
+
export declare function deserializeIntoOnTokenIssuanceStartHandler(onTokenIssuanceStartHandler?: Partial<OnTokenIssuanceStartHandler> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31658
|
+
/**
|
|
31659
|
+
* The deserialization information for the current model
|
|
31660
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31661
|
+
*/
|
|
31662
|
+
export declare function deserializeIntoOnTokenIssuanceStartListener(onTokenIssuanceStartListener?: Partial<OnTokenIssuanceStartListener> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31663
|
+
/**
|
|
31664
|
+
* The deserialization information for the current model
|
|
31665
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31666
|
+
*/
|
|
31667
|
+
export declare function deserializeIntoOnTokenIssuanceStartReturnClaim(onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31114
31668
|
/**
|
|
31115
31669
|
* The deserialization information for the current model
|
|
31116
31670
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31601,6 +32155,11 @@ export declare function deserializeIntoPolicyBase(policyBase?: Partial<PolicyBas
|
|
|
31601
32155
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31602
32156
|
*/
|
|
31603
32157
|
export declare function deserializeIntoPolicyRoot(policyRoot?: Partial<PolicyRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32158
|
+
/**
|
|
32159
|
+
* The deserialization information for the current model
|
|
32160
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32161
|
+
*/
|
|
32162
|
+
export declare function deserializeIntoPolicyTemplate(policyTemplate?: Partial<PolicyTemplate> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31604
32163
|
/**
|
|
31605
32164
|
* The deserialization information for the current model
|
|
31606
32165
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33476,6 +34035,11 @@ export declare function deserializeIntoTargetManager(targetManager?: Partial<Tar
|
|
|
33476
34035
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33477
34036
|
*/
|
|
33478
34037
|
export declare function deserializeIntoTargetResource(targetResource?: Partial<TargetResource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34038
|
+
/**
|
|
34039
|
+
* The deserialization information for the current model
|
|
34040
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34041
|
+
*/
|
|
34042
|
+
export declare function deserializeIntoTargetUserSponsors(targetUserSponsors?: Partial<TargetUserSponsors> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33479
34043
|
/**
|
|
33480
34044
|
* The deserialization information for the current model
|
|
33481
34045
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33626,6 +34190,11 @@ export declare function deserializeIntoTeamsAsyncOperation(teamsAsyncOperation?:
|
|
|
33626
34190
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33627
34191
|
*/
|
|
33628
34192
|
export declare function deserializeIntoTeamsAsyncOperationCollectionResponse(teamsAsyncOperationCollectionResponse?: Partial<TeamsAsyncOperationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34193
|
+
/**
|
|
34194
|
+
* The deserialization information for the current model
|
|
34195
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34196
|
+
*/
|
|
34197
|
+
export declare function deserializeIntoTeamsLicensingDetails(teamsLicensingDetails?: Partial<TeamsLicensingDetails> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33629
34198
|
/**
|
|
33630
34199
|
* The deserialization information for the current model
|
|
33631
34200
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -35771,7 +36340,7 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
35771
36340
|
*/
|
|
35772
36341
|
enrollmentProfileName?: string;
|
|
35773
36342
|
/**
|
|
35774
|
-
*
|
|
36343
|
+
* Enrollment type of the device. This property is set by Intune. Possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement.
|
|
35775
36344
|
*/
|
|
35776
36345
|
enrollmentType?: string;
|
|
35777
36346
|
/**
|
|
@@ -35787,11 +36356,11 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
35787
36356
|
*/
|
|
35788
36357
|
isManaged?: boolean;
|
|
35789
36358
|
/**
|
|
35790
|
-
*
|
|
36359
|
+
* true if the device is rooted; false if the device is jail-broken. This property can only be updated by Intune.
|
|
35791
36360
|
*/
|
|
35792
36361
|
isRooted?: boolean;
|
|
35793
36362
|
/**
|
|
35794
|
-
* The
|
|
36363
|
+
* The management channel of the device. This property is set by Intune. Possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController.
|
|
35795
36364
|
*/
|
|
35796
36365
|
managementType?: string;
|
|
35797
36366
|
/**
|
|
@@ -38150,6 +38719,10 @@ export interface Directory extends Entity, Parsable {
|
|
|
38150
38719
|
* A container for on-premises directory synchronization functionalities that are available for the organization.
|
|
38151
38720
|
*/
|
|
38152
38721
|
onPremisesSynchronization?: OnPremisesDirectorySynchronization[];
|
|
38722
|
+
/**
|
|
38723
|
+
* The subscriptions property
|
|
38724
|
+
*/
|
|
38725
|
+
subscriptions?: CompanySubscription[];
|
|
38153
38726
|
}
|
|
38154
38727
|
export interface DirectoryAudit extends Entity, Parsable {
|
|
38155
38728
|
/**
|
|
@@ -38459,7 +39032,7 @@ export interface DocumentSetVersionItem extends AdditionalDataHolder, BackedMode
|
|
|
38459
39032
|
}
|
|
38460
39033
|
export interface Domain extends Entity, Parsable {
|
|
38461
39034
|
/**
|
|
38462
|
-
* Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable.
|
|
39035
|
+
* Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Microsoft Entra ID performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable. To update this property in delegated scenarios, the calling app must be assigned the Directory.AccessAsUser.All delegated permission.
|
|
38463
39036
|
*/
|
|
38464
39037
|
authenticationType?: string;
|
|
38465
39038
|
/**
|
|
@@ -38467,7 +39040,7 @@ export interface Domain extends Entity, Parsable {
|
|
|
38467
39040
|
*/
|
|
38468
39041
|
availabilityStatus?: string;
|
|
38469
39042
|
/**
|
|
38470
|
-
* The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group.
|
|
39043
|
+
* The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example, /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group.
|
|
38471
39044
|
*/
|
|
38472
39045
|
domainNameReferences?: DirectoryObject[];
|
|
38473
39046
|
/**
|
|
@@ -38475,15 +39048,15 @@ export interface Domain extends Entity, Parsable {
|
|
|
38475
39048
|
*/
|
|
38476
39049
|
federationConfiguration?: InternalDomainFederation[];
|
|
38477
39050
|
/**
|
|
38478
|
-
* The value of the property is false if the DNS record management of the domain
|
|
39051
|
+
* The value of the property is false if the DNS record management of the domain is delegated to Microsoft 365. Otherwise, the value is true. Not nullable
|
|
38479
39052
|
*/
|
|
38480
39053
|
isAdminManaged?: boolean;
|
|
38481
39054
|
/**
|
|
38482
|
-
* true if this is the default domain that is used for user creation. There
|
|
39055
|
+
* true if this is the default domain that is used for user creation. There's only one default domain per company. Not nullable
|
|
38483
39056
|
*/
|
|
38484
39057
|
isDefault?: boolean;
|
|
38485
39058
|
/**
|
|
38486
|
-
* true if this is the initial domain created by Microsoft Online Services (contoso.com). There
|
|
39059
|
+
* true if this is the initial domain created by Microsoft Online Services (contoso.com). There's only one initial domain per company. Not nullable
|
|
38487
39060
|
*/
|
|
38488
39061
|
isInitial?: boolean;
|
|
38489
39062
|
/**
|
|
@@ -38503,11 +39076,11 @@ export interface Domain extends Entity, Parsable {
|
|
|
38503
39076
|
*/
|
|
38504
39077
|
model?: string;
|
|
38505
39078
|
/**
|
|
38506
|
-
* Specifies the number of days before a user receives notification that their password will expire. If the property
|
|
39079
|
+
* Specifies the number of days before a user receives notification that their password will expire. If the property isn't set, a default value of 14 days is used.
|
|
38507
39080
|
*/
|
|
38508
39081
|
passwordNotificationWindowInDays?: number;
|
|
38509
39082
|
/**
|
|
38510
|
-
* Specifies the length of time that a password is valid before it must be changed. If the property
|
|
39083
|
+
* Specifies the length of time that a password is valid before it must be changed. If the property isn't set, a default value of 90 days is used.
|
|
38511
39084
|
*/
|
|
38512
39085
|
passwordValidityPeriodInDays?: number;
|
|
38513
39086
|
/**
|
|
@@ -38519,7 +39092,7 @@ export interface Domain extends Entity, Parsable {
|
|
|
38519
39092
|
*/
|
|
38520
39093
|
state?: DomainState;
|
|
38521
39094
|
/**
|
|
38522
|
-
* The capabilities assigned to the domain. Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline, SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune. The values
|
|
39095
|
+
* The capabilities assigned to the domain. Can include 0, 1 or more of following values: Email, Sharepoint, EmailInternalRelayOnly, OfficeCommunicationsOnline, SharePointDefaultDomain, FullRedelegation, SharePointPublic, OrgIdAuthentication, Yammer, Intune. The values that you can add or remove using the API include: Email, OfficeCommunicationsOnline, Yammer. Not nullable.
|
|
38523
39096
|
*/
|
|
38524
39097
|
supportedServices?: string[];
|
|
38525
39098
|
/**
|
|
@@ -38551,7 +39124,7 @@ export interface DomainDnsMxRecord extends DomainDnsRecord, Parsable {
|
|
|
38551
39124
|
}
|
|
38552
39125
|
export interface DomainDnsRecord extends Entity, Parsable {
|
|
38553
39126
|
/**
|
|
38554
|
-
* If false,
|
|
39127
|
+
* If false, the customer must configure this record at the DNS host for Microsoft Online Services to operate correctly with the domain.
|
|
38555
39128
|
*/
|
|
38556
39129
|
isOptional?: boolean;
|
|
38557
39130
|
/**
|
|
@@ -38643,17 +39216,17 @@ export interface DomainState extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
38643
39216
|
*/
|
|
38644
39217
|
odataType?: string;
|
|
38645
39218
|
/**
|
|
38646
|
-
* Type of asynchronous operation. The values can be ForceDelete or Verification
|
|
39219
|
+
* Type of asynchronous operation. The values can be ForceDelete or Verification.
|
|
38647
39220
|
*/
|
|
38648
39221
|
operation?: string;
|
|
38649
39222
|
/**
|
|
38650
|
-
* Current status of the operation. Scheduled - Operation
|
|
39223
|
+
* Current status of the operation. Scheduled - Operation is scheduled but hasn't started. InProgress - Task is in progress. Failed - The operation failed.
|
|
38651
39224
|
*/
|
|
38652
39225
|
status?: string;
|
|
38653
39226
|
}
|
|
38654
39227
|
export interface Drive extends BaseItem, Parsable {
|
|
38655
39228
|
/**
|
|
38656
|
-
* Collection of
|
|
39229
|
+
* Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive.
|
|
38657
39230
|
*/
|
|
38658
39231
|
bundles?: DriveItem[];
|
|
38659
39232
|
/**
|
|
@@ -38817,11 +39390,11 @@ export interface DriveItem extends BaseItem, Parsable {
|
|
|
38817
39390
|
*/
|
|
38818
39391
|
subscriptions?: Subscription[];
|
|
38819
39392
|
/**
|
|
38820
|
-
* Collection of
|
|
39393
|
+
* Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable.
|
|
38821
39394
|
*/
|
|
38822
39395
|
thumbnails?: ThumbnailSet[];
|
|
38823
39396
|
/**
|
|
38824
|
-
* The list of previous versions of the item. For more info, see
|
|
39397
|
+
* The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable.
|
|
38825
39398
|
*/
|
|
38826
39399
|
versions?: DriveItemVersion[];
|
|
38827
39400
|
/**
|
|
@@ -39120,7 +39693,7 @@ export interface EducationAssignment extends Entity, Parsable {
|
|
|
39120
39693
|
*/
|
|
39121
39694
|
lastModifiedBy?: IdentitySet;
|
|
39122
39695
|
/**
|
|
39123
|
-
*
|
|
39696
|
+
* The date and time on which the assignment was modified. A student submission doesn't modify the assignment; only teachers can update assignments. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
39124
39697
|
*/
|
|
39125
39698
|
lastModifiedDateTime?: Date;
|
|
39126
39699
|
/**
|
|
@@ -39937,7 +40510,7 @@ export interface EducationSubmission extends Entity, Parsable {
|
|
|
39937
40510
|
*/
|
|
39938
40511
|
returnedDateTime?: Date;
|
|
39939
40512
|
/**
|
|
39940
|
-
* Read-only. Possible values are: working, submitted, returned, and reassigned. Note that you must use the Prefer: include-unknown-enum-members request header to get the following
|
|
40513
|
+
* Read-only. Possible values are: working, submitted, returned, and reassigned. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: reassigned.
|
|
39941
40514
|
*/
|
|
39942
40515
|
status?: EducationSubmissionStatus;
|
|
39943
40516
|
/**
|
|
@@ -41149,7 +41722,7 @@ export interface ExtensionSchemaProperty extends AdditionalDataHolder, BackedMod
|
|
|
41149
41722
|
*/
|
|
41150
41723
|
odataType?: string;
|
|
41151
41724
|
/**
|
|
41152
|
-
* The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer or String.
|
|
41725
|
+
* The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer, or String. For more information, see Supported property data types.
|
|
41153
41726
|
*/
|
|
41154
41727
|
type?: string;
|
|
41155
41728
|
}
|
|
@@ -41278,7 +41851,7 @@ export interface FederatedIdentityCredential extends Entity, Parsable {
|
|
|
41278
41851
|
*/
|
|
41279
41852
|
issuer?: string;
|
|
41280
41853
|
/**
|
|
41281
|
-
* The unique identifier for the federated identity credential, which has a limit of 120 characters and must be URL friendly. The string is immutable after it's created. Required. Not nullable. Supports $filter (eq).
|
|
41854
|
+
* The unique identifier for the federated identity credential, which has a limit of 120 characters and must be URL friendly. The string is immutable after it's created. Alternate key. Required. Not nullable. Supports $filter (eq).
|
|
41282
41855
|
*/
|
|
41283
41856
|
name?: string;
|
|
41284
41857
|
/**
|
|
@@ -42103,7 +42676,7 @@ export interface Group extends DirectoryObject, Parsable {
|
|
|
42103
42676
|
*/
|
|
42104
42677
|
transitiveMembers?: DirectoryObject[];
|
|
42105
42678
|
/**
|
|
42106
|
-
* The
|
|
42679
|
+
* The unique identifier that can be assigned to a group and used as an alternate key. Immutable. Read-only.
|
|
42107
42680
|
*/
|
|
42108
42681
|
uniqueName?: string;
|
|
42109
42682
|
/**
|
|
@@ -42261,15 +42834,15 @@ export interface HomeRealmDiscoveryPolicyCollectionResponse extends BaseCollecti
|
|
|
42261
42834
|
}
|
|
42262
42835
|
export interface HorizontalSection extends Entity, Parsable {
|
|
42263
42836
|
/**
|
|
42264
|
-
* The columns
|
|
42837
|
+
* The set of vertical columns in this section.
|
|
42265
42838
|
*/
|
|
42266
42839
|
columns?: HorizontalSectionColumn[];
|
|
42267
42840
|
/**
|
|
42268
|
-
*
|
|
42841
|
+
* Enumeration value that indicates the emphasis of the section background. The possible values are: none, netural, soft, strong, unknownFutureValue.
|
|
42269
42842
|
*/
|
|
42270
42843
|
emphasis?: SectionEmphasisType;
|
|
42271
42844
|
/**
|
|
42272
|
-
* The
|
|
42845
|
+
* Layout type of the section. The possible values are: none, oneColumn, twoColumns, threeColumns, oneThirdLeftColumn, oneThirdRightColumn, fullWidth, unknownFutureValue.
|
|
42273
42846
|
*/
|
|
42274
42847
|
layout?: HorizontalSectionLayoutType;
|
|
42275
42848
|
}
|
|
@@ -42281,11 +42854,11 @@ export interface HorizontalSectionCollectionResponse extends BaseCollectionPagin
|
|
|
42281
42854
|
}
|
|
42282
42855
|
export interface HorizontalSectionColumn extends Entity, Parsable {
|
|
42283
42856
|
/**
|
|
42284
|
-
* The
|
|
42857
|
+
* The collection of WebParts in this column.
|
|
42285
42858
|
*/
|
|
42286
42859
|
webparts?: WebPart[];
|
|
42287
42860
|
/**
|
|
42288
|
-
*
|
|
42861
|
+
* Width of the column. A horizontal section is divided into 12 grids. A column should have a value of 1-12 to represent its range spans. For example, there can be two columns both have a width of 6 in a section.
|
|
42289
42862
|
*/
|
|
42290
42863
|
width?: number;
|
|
42291
42864
|
}
|
|
@@ -42346,6 +42919,12 @@ export interface HostSecurityState extends AdditionalDataHolder, BackedModel, Pa
|
|
|
42346
42919
|
*/
|
|
42347
42920
|
riskScore?: string;
|
|
42348
42921
|
}
|
|
42922
|
+
export interface HttpRequestEndpoint extends CustomExtensionEndpointConfiguration, Parsable {
|
|
42923
|
+
/**
|
|
42924
|
+
* The HTTP endpoint that a custom extension calls.
|
|
42925
|
+
*/
|
|
42926
|
+
targetUrl?: string;
|
|
42927
|
+
}
|
|
42349
42928
|
export interface HyperlinkOrPictureColumn extends AdditionalDataHolder, BackedModel, Parsable {
|
|
42350
42929
|
/**
|
|
42351
42930
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -42413,6 +42992,10 @@ export interface IdentityContainer extends Entity, Parsable {
|
|
|
42413
42992
|
* Represents entry point for API connectors.
|
|
42414
42993
|
*/
|
|
42415
42994
|
apiConnectors?: IdentityApiConnector[];
|
|
42995
|
+
/**
|
|
42996
|
+
* Represents listeners for custom authentication extension events in Azure AD for workforce and customers.
|
|
42997
|
+
*/
|
|
42998
|
+
authenticationEventListeners?: AuthenticationEventListener[];
|
|
42416
42999
|
/**
|
|
42417
43000
|
* Represents entry point for B2X/self-service sign-up identity userflows.
|
|
42418
43001
|
*/
|
|
@@ -42421,6 +43004,10 @@ export interface IdentityContainer extends Entity, Parsable {
|
|
|
42421
43004
|
* the entry point for the Conditional Access (CA) object model.
|
|
42422
43005
|
*/
|
|
42423
43006
|
conditionalAccess?: ConditionalAccessRoot;
|
|
43007
|
+
/**
|
|
43008
|
+
* Represents custom extensions to authentication flows in Azure AD for workforce and customers.
|
|
43009
|
+
*/
|
|
43010
|
+
customAuthenticationExtensions?: CustomAuthenticationExtension[];
|
|
42424
43011
|
/**
|
|
42425
43012
|
* The identityProviders property
|
|
42426
43013
|
*/
|
|
@@ -43247,13 +43834,17 @@ export interface Invitation extends Entity, Parsable {
|
|
|
43247
43834
|
*/
|
|
43248
43835
|
invitedUserDisplayName?: string;
|
|
43249
43836
|
/**
|
|
43250
|
-
* The email address of the user being invited. Required. The following special characters aren't permitted in the email address:Tilde (~)Exclamation point (!)Number sign (#)Dollar sign ($)Percent (%)Circumflex (^)Ampersand (&)Asterisk (*)Parentheses (( ))Plus sign (+)Equal sign (=)Brackets ([ ])Braces ({ })Backslash (/)Slash mark (/)Pipe (/|)Semicolon (;)Colon (:)Quotation marks (')Angle brackets (< >)Question mark (?)Comma (,)However, the following exceptions apply:A period (.) or a hyphen (-) is permitted anywhere in the user name, except at the beginning or end of the name.An underscore (_) is permitted anywhere in the user name
|
|
43837
|
+
* The email address of the user being invited. Required. The following special characters aren't permitted in the email address:Tilde (~)Exclamation point (!)Number sign (#)Dollar sign ($)Percent (%)Circumflex (^)Ampersand (&)Asterisk (*)Parentheses (( ))Plus sign (+)Equal sign (=)Brackets ([ ])Braces ({ })Backslash (/)Slash mark (/)Pipe (/|)Semicolon (;)Colon (:)Quotation marks (')Angle brackets (< >)Question mark (?)Comma (,)However, the following exceptions apply:A period (.) or a hyphen (-) is permitted anywhere in the user name, except at the beginning or end of the name.An underscore (_) is permitted anywhere in the user name, including at the beginning or end of the name.
|
|
43251
43838
|
*/
|
|
43252
43839
|
invitedUserEmailAddress?: string;
|
|
43253
43840
|
/**
|
|
43254
|
-
* Additional configuration for the message being sent to the invited user, including customizing message text, language and cc recipient list.
|
|
43841
|
+
* Additional configuration for the message being sent to the invited user, including customizing message text, language, and cc recipient list.
|
|
43255
43842
|
*/
|
|
43256
43843
|
invitedUserMessageInfo?: InvitedUserMessageInfo;
|
|
43844
|
+
/**
|
|
43845
|
+
* The users or groups who are sponsors of the invited user. Sponsors are users and groups that are responsible for guest users' privileges in the tenant and for keeping the guest users' information and access up to date.
|
|
43846
|
+
*/
|
|
43847
|
+
invitedUserSponsors?: DirectoryObject[];
|
|
43257
43848
|
/**
|
|
43258
43849
|
* The userType of the user being invited. By default, this is Guest. You can invite as Member if you're a company administrator.
|
|
43259
43850
|
*/
|
|
@@ -43319,6 +43910,28 @@ export interface InvitationParticipantInfo extends AdditionalDataHolder, BackedM
|
|
|
43319
43910
|
*/
|
|
43320
43911
|
replacesCallId?: string;
|
|
43321
43912
|
}
|
|
43913
|
+
export interface InvitationRedemptionIdentityProviderConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
43914
|
+
/**
|
|
43915
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
43916
|
+
*/
|
|
43917
|
+
additionalData?: Record<string, unknown>;
|
|
43918
|
+
/**
|
|
43919
|
+
* Stores model information.
|
|
43920
|
+
*/
|
|
43921
|
+
backingStoreEnabled?: boolean;
|
|
43922
|
+
/**
|
|
43923
|
+
* The fallback identity provider to be used in case no primary identity provider can be used for guest invitation redemption. Possible values are: defaultConfiguredIdp, emailOneTimePasscode, or microsoftAccount.
|
|
43924
|
+
*/
|
|
43925
|
+
fallbackIdentityProvider?: B2bIdentityProvidersType;
|
|
43926
|
+
/**
|
|
43927
|
+
* The OdataType property
|
|
43928
|
+
*/
|
|
43929
|
+
odataType?: string;
|
|
43930
|
+
/**
|
|
43931
|
+
* Collection of identity providers in priority order of preference to be used for guest invitation redemption. Possible values are: azureActiveDirectory, externalFederation, or socialIdentityProviders.
|
|
43932
|
+
*/
|
|
43933
|
+
primaryIdentityProviderPrecedenceOrder?: B2bIdentityProvidersType[];
|
|
43934
|
+
}
|
|
43322
43935
|
export interface InvitedUserMessageInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
43323
43936
|
/**
|
|
43324
43937
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -44832,11 +45445,11 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44832
45445
|
*/
|
|
44833
45446
|
backingStoreEnabled?: boolean;
|
|
44834
45447
|
/**
|
|
44835
|
-
* Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a
|
|
45448
|
+
* Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only.
|
|
44836
45449
|
*/
|
|
44837
45450
|
driveId?: string;
|
|
44838
45451
|
/**
|
|
44839
|
-
* Identifies the type of drive. Only returned if the item is located in a
|
|
45452
|
+
* Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values.
|
|
44840
45453
|
*/
|
|
44841
45454
|
driveType?: string;
|
|
44842
45455
|
/**
|
|
@@ -44856,7 +45469,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44856
45469
|
*/
|
|
44857
45470
|
path?: string;
|
|
44858
45471
|
/**
|
|
44859
|
-
* A unique identifier for a shared resource that can be accessed via the
|
|
45472
|
+
* A unique identifier for a shared resource that can be accessed via the Shares API.
|
|
44860
45473
|
*/
|
|
44861
45474
|
shareId?: string;
|
|
44862
45475
|
/**
|
|
@@ -44864,7 +45477,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44864
45477
|
*/
|
|
44865
45478
|
sharepointIds?: SharepointIds;
|
|
44866
45479
|
/**
|
|
44867
|
-
* For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that
|
|
45480
|
+
* For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated.
|
|
44868
45481
|
*/
|
|
44869
45482
|
siteId?: string;
|
|
44870
45483
|
}
|
|
@@ -45204,6 +45817,10 @@ export interface LearningContent extends Entity, Parsable {
|
|
|
45204
45817
|
* The date and time when the learning content was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional.
|
|
45205
45818
|
*/
|
|
45206
45819
|
lastModifiedDateTime?: Date;
|
|
45820
|
+
/**
|
|
45821
|
+
* The difficulty level of the learning content. Possible values are: Beginner, Intermediate, Advanced, unknownFutureValue. Optional.
|
|
45822
|
+
*/
|
|
45823
|
+
level?: Level;
|
|
45207
45824
|
/**
|
|
45208
45825
|
* The number of pages of the learning content, for example, 9. Optional.
|
|
45209
45826
|
*/
|
|
@@ -45317,6 +45934,7 @@ export interface LearningSelfInitiatedCourse extends LearningCourseActivity, Par
|
|
|
45317
45934
|
*/
|
|
45318
45935
|
startedDateTime?: Date;
|
|
45319
45936
|
}
|
|
45937
|
+
export type Level = (typeof LevelObject)[keyof typeof LevelObject];
|
|
45320
45938
|
export interface LicenseAssignmentState extends AdditionalDataHolder, BackedModel, Parsable {
|
|
45321
45939
|
/**
|
|
45322
45940
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -45535,7 +46153,7 @@ export interface ListItem extends BaseItem, Parsable {
|
|
|
45535
46153
|
*/
|
|
45536
46154
|
documentSetVersions?: DocumentSetVersion[];
|
|
45537
46155
|
/**
|
|
45538
|
-
* For document libraries, the driveItem relationship exposes the listItem as a
|
|
46156
|
+
* For document libraries, the driveItem relationship exposes the listItem as a driveItem
|
|
45539
46157
|
*/
|
|
45540
46158
|
driveItem?: DriveItem;
|
|
45541
46159
|
/**
|
|
@@ -47151,6 +47769,10 @@ export interface ManagedDevice extends Entity, Parsable {
|
|
|
47151
47769
|
* Enrollment time of the device. Supports $filter operator 'lt' and 'gt'. This property is read-only.
|
|
47152
47770
|
*/
|
|
47153
47771
|
enrolledDateTime?: Date;
|
|
47772
|
+
/**
|
|
47773
|
+
* Name of the enrollment profile assigned to the device. Default value is empty string, indicating no enrollment profile was assgined. This property is read-only.
|
|
47774
|
+
*/
|
|
47775
|
+
enrollmentProfileName?: string;
|
|
47154
47776
|
/**
|
|
47155
47777
|
* Indicates Ethernet MAC Address of the device. Default, is Null (Non-Default property) for this property when returned as part of managedDevice entity. Individual get call with select query options is needed to retrieve actual values. Example: deviceManagement/managedDevices({managedDeviceId})?$select=ethernetMacAddress Supports: $select. $Search is not supported. Read-only. This property is read-only.
|
|
47156
47778
|
*/
|
|
@@ -48424,7 +49046,7 @@ export interface MessageRule extends Entity, Parsable {
|
|
|
48424
49046
|
*/
|
|
48425
49047
|
actions?: MessageRuleActions;
|
|
48426
49048
|
/**
|
|
48427
|
-
* Conditions that when fulfilled
|
|
49049
|
+
* Conditions that when fulfilled trigger the corresponding actions for that rule.
|
|
48428
49050
|
*/
|
|
48429
49051
|
conditions?: MessageRulePredicates;
|
|
48430
49052
|
/**
|
|
@@ -48720,7 +49342,7 @@ export interface MetaDataKeyStringPair extends AdditionalDataHolder, BackedModel
|
|
|
48720
49342
|
*/
|
|
48721
49343
|
backingStoreEnabled?: boolean;
|
|
48722
49344
|
/**
|
|
48723
|
-
*
|
|
49345
|
+
* Key of the meta data.
|
|
48724
49346
|
*/
|
|
48725
49347
|
key?: string;
|
|
48726
49348
|
/**
|
|
@@ -48728,7 +49350,7 @@ export interface MetaDataKeyStringPair extends AdditionalDataHolder, BackedModel
|
|
|
48728
49350
|
*/
|
|
48729
49351
|
odataType?: string;
|
|
48730
49352
|
/**
|
|
48731
|
-
*
|
|
49353
|
+
* Value of the meta data.
|
|
48732
49354
|
*/
|
|
48733
49355
|
value?: string;
|
|
48734
49356
|
}
|
|
@@ -49104,6 +49726,10 @@ export interface MobileAppContentFile extends Entity, Parsable {
|
|
|
49104
49726
|
* A value indicating whether the file is committed.
|
|
49105
49727
|
*/
|
|
49106
49728
|
isCommitted?: boolean;
|
|
49729
|
+
/**
|
|
49730
|
+
* Indicates whether this content file is a dependency for the main content file. TRUE means that the content file is a dependency, FALSE means that the content file is not a dependency and is the main content file. Defaults to FALSE.
|
|
49731
|
+
*/
|
|
49732
|
+
isDependency?: boolean;
|
|
49107
49733
|
/**
|
|
49108
49734
|
* The manifest information.
|
|
49109
49735
|
*/
|
|
@@ -49323,6 +49949,190 @@ export interface ModifiedProperty extends AdditionalDataHolder, BackedModel, Par
|
|
|
49323
49949
|
oldValue?: string;
|
|
49324
49950
|
}
|
|
49325
49951
|
export type MultiFactorAuthConfiguration = (typeof MultiFactorAuthConfigurationObject)[keyof typeof MultiFactorAuthConfigurationObject];
|
|
49952
|
+
export interface MultiTenantOrganization extends Entity, Parsable {
|
|
49953
|
+
/**
|
|
49954
|
+
* Date when multitenant organization was created. Read-only.
|
|
49955
|
+
*/
|
|
49956
|
+
createdDateTime?: Date;
|
|
49957
|
+
/**
|
|
49958
|
+
* Description of the multitenant organization.
|
|
49959
|
+
*/
|
|
49960
|
+
description?: string;
|
|
49961
|
+
/**
|
|
49962
|
+
* Display name of the multitenant organization.
|
|
49963
|
+
*/
|
|
49964
|
+
displayName?: string;
|
|
49965
|
+
/**
|
|
49966
|
+
* Defines the status of a tenant joining a multitenant organization.
|
|
49967
|
+
*/
|
|
49968
|
+
joinRequest?: MultiTenantOrganizationJoinRequestRecord;
|
|
49969
|
+
/**
|
|
49970
|
+
* State of the multitenant organization. The possible values are: active, inactive, unknownFutureValue. active indicates the multitenant organization is created. inactive indicates the multitenant organization isn't created. Read-only.
|
|
49971
|
+
*/
|
|
49972
|
+
state?: MultiTenantOrganizationState;
|
|
49973
|
+
/**
|
|
49974
|
+
* Defines tenants added to a multitenant organization.
|
|
49975
|
+
*/
|
|
49976
|
+
tenants?: MultiTenantOrganizationMember[];
|
|
49977
|
+
}
|
|
49978
|
+
export interface MultiTenantOrganizationIdentitySyncPolicyTemplate extends Entity, Parsable {
|
|
49979
|
+
/**
|
|
49980
|
+
* The templateApplicationLevel property
|
|
49981
|
+
*/
|
|
49982
|
+
templateApplicationLevel?: TemplateApplicationLevel[];
|
|
49983
|
+
/**
|
|
49984
|
+
* Defines whether users can be synchronized from the partner tenant.
|
|
49985
|
+
*/
|
|
49986
|
+
userSyncInbound?: CrossTenantUserSyncInbound;
|
|
49987
|
+
}
|
|
49988
|
+
export interface MultiTenantOrganizationJoinRequestRecord extends Entity, Parsable {
|
|
49989
|
+
/**
|
|
49990
|
+
* Tenant ID of the Microsoft Entra tenant that added a tenant to the multitenant organization. To reset a failed join request, set addedByTenantId to 00000000-0000-0000-0000-000000000000. Required.
|
|
49991
|
+
*/
|
|
49992
|
+
addedByTenantId?: string;
|
|
49993
|
+
/**
|
|
49994
|
+
* State of the tenant in the multitenant organization. The possible values are: pending, active, removed, unknownFutureValue. Tenants in the pending state must join the multitenant organization to participate in the multitenant organization. Tenants in the active state can participate in the multitenant organization. Tenants in the removed state are in the process of being removed from the multitenant organization. Read-only.
|
|
49995
|
+
*/
|
|
49996
|
+
memberState?: MultiTenantOrganizationMemberState;
|
|
49997
|
+
/**
|
|
49998
|
+
* Role of the tenant in the multitenant organization. The possible values are: owner, member (default), unknownFutureValue. Tenants with the owner role can manage the multitenant organization. There can be multiple tenants with the owner role in a multitenant organization. Tenants with the member role can participate in a multitenant organization.
|
|
49999
|
+
*/
|
|
50000
|
+
role?: MultiTenantOrganizationMemberRole;
|
|
50001
|
+
/**
|
|
50002
|
+
* Details of the processing status for a tenant joining a multitenant organization. Read-only.
|
|
50003
|
+
*/
|
|
50004
|
+
transitionDetails?: MultiTenantOrganizationJoinRequestTransitionDetails;
|
|
50005
|
+
}
|
|
50006
|
+
export interface MultiTenantOrganizationJoinRequestTransitionDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50007
|
+
/**
|
|
50008
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
50009
|
+
*/
|
|
50010
|
+
additionalData?: Record<string, unknown>;
|
|
50011
|
+
/**
|
|
50012
|
+
* Stores model information.
|
|
50013
|
+
*/
|
|
50014
|
+
backingStoreEnabled?: boolean;
|
|
50015
|
+
/**
|
|
50016
|
+
* State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
|
|
50017
|
+
*/
|
|
50018
|
+
desiredMemberState?: MultiTenantOrganizationMemberState;
|
|
50019
|
+
/**
|
|
50020
|
+
* Details that explain the processing status if any. Read-only.
|
|
50021
|
+
*/
|
|
50022
|
+
details?: string;
|
|
50023
|
+
/**
|
|
50024
|
+
* The OdataType property
|
|
50025
|
+
*/
|
|
50026
|
+
odataType?: string;
|
|
50027
|
+
/**
|
|
50028
|
+
* Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
|
|
50029
|
+
*/
|
|
50030
|
+
status?: MultiTenantOrganizationMemberProcessingStatus;
|
|
50031
|
+
}
|
|
50032
|
+
export interface MultiTenantOrganizationMember extends DirectoryObject, Parsable {
|
|
50033
|
+
/**
|
|
50034
|
+
* Tenant ID of the tenant that added the tenant to the multitenant organization. Read-only.
|
|
50035
|
+
*/
|
|
50036
|
+
addedByTenantId?: Guid;
|
|
50037
|
+
/**
|
|
50038
|
+
* Date and time when the tenant was added to the multitenant organization. Read-only.
|
|
50039
|
+
*/
|
|
50040
|
+
addedDateTime?: Date;
|
|
50041
|
+
/**
|
|
50042
|
+
* Display name of the tenant added to the multitenant organization.
|
|
50043
|
+
*/
|
|
50044
|
+
displayName?: string;
|
|
50045
|
+
/**
|
|
50046
|
+
* Date and time when the tenant joined the multitenant organization. Read-only.
|
|
50047
|
+
*/
|
|
50048
|
+
joinedDateTime?: Date;
|
|
50049
|
+
/**
|
|
50050
|
+
* Role of the tenant in the multitenant organization. The possible values are: owner, member (default), unknownFutureValue. Tenants with the owner role can manage the multitenant organization but tenants with the member role can only participate in a multitenant organization. There can be multiple tenants with the owner role in a multitenant organization.
|
|
50051
|
+
*/
|
|
50052
|
+
role?: MultiTenantOrganizationMemberRole;
|
|
50053
|
+
/**
|
|
50054
|
+
* State of the tenant in the multitenant organization. The possible values are: pending, active, removed, unknownFutureValue. Tenants in the pending state must join the multitenant organization to participate in the multitenant organization. Tenants in the active state can participate in the multitenant organization. Tenants in the removed state are in the process of being removed from the multitenant organization. Read-only.
|
|
50055
|
+
*/
|
|
50056
|
+
state?: MultiTenantOrganizationMemberState;
|
|
50057
|
+
/**
|
|
50058
|
+
* Tenant ID of the Microsoft Entra tenant added to the multitenant organization. Set at the time tenant is added.Supports $filter. Key.
|
|
50059
|
+
*/
|
|
50060
|
+
tenantId?: string;
|
|
50061
|
+
/**
|
|
50062
|
+
* Details of the processing status for a tenant in a multitenant organization. Read-only. Nullable.
|
|
50063
|
+
*/
|
|
50064
|
+
transitionDetails?: MultiTenantOrganizationMemberTransitionDetails;
|
|
50065
|
+
}
|
|
50066
|
+
export interface MultiTenantOrganizationMemberCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
50067
|
+
/**
|
|
50068
|
+
* The value property
|
|
50069
|
+
*/
|
|
50070
|
+
value?: MultiTenantOrganizationMember[];
|
|
50071
|
+
}
|
|
50072
|
+
export type MultiTenantOrganizationMemberProcessingStatus = (typeof MultiTenantOrganizationMemberProcessingStatusObject)[keyof typeof MultiTenantOrganizationMemberProcessingStatusObject];
|
|
50073
|
+
export type MultiTenantOrganizationMemberRole = (typeof MultiTenantOrganizationMemberRoleObject)[keyof typeof MultiTenantOrganizationMemberRoleObject];
|
|
50074
|
+
export type MultiTenantOrganizationMemberState = (typeof MultiTenantOrganizationMemberStateObject)[keyof typeof MultiTenantOrganizationMemberStateObject];
|
|
50075
|
+
export interface MultiTenantOrganizationMemberTransitionDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50076
|
+
/**
|
|
50077
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
50078
|
+
*/
|
|
50079
|
+
additionalData?: Record<string, unknown>;
|
|
50080
|
+
/**
|
|
50081
|
+
* Stores model information.
|
|
50082
|
+
*/
|
|
50083
|
+
backingStoreEnabled?: boolean;
|
|
50084
|
+
/**
|
|
50085
|
+
* Role of the tenant in the multitenant organization. The possible values are: owner, member, unknownFutureValue.
|
|
50086
|
+
*/
|
|
50087
|
+
desiredRole?: MultiTenantOrganizationMemberRole;
|
|
50088
|
+
/**
|
|
50089
|
+
* State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
|
|
50090
|
+
*/
|
|
50091
|
+
desiredState?: MultiTenantOrganizationMemberState;
|
|
50092
|
+
/**
|
|
50093
|
+
* Details that explain the processing status if any. Read-only.
|
|
50094
|
+
*/
|
|
50095
|
+
details?: string;
|
|
50096
|
+
/**
|
|
50097
|
+
* The OdataType property
|
|
50098
|
+
*/
|
|
50099
|
+
odataType?: string;
|
|
50100
|
+
/**
|
|
50101
|
+
* Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
|
|
50102
|
+
*/
|
|
50103
|
+
status?: MultiTenantOrganizationMemberProcessingStatus;
|
|
50104
|
+
}
|
|
50105
|
+
export interface MultiTenantOrganizationPartnerConfigurationTemplate extends Entity, Parsable {
|
|
50106
|
+
/**
|
|
50107
|
+
* Determines the partner-specific configuration for automatic user consent settings. Unless configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
|
|
50108
|
+
*/
|
|
50109
|
+
automaticUserConsentSettings?: InboundOutboundPolicyConfiguration;
|
|
50110
|
+
/**
|
|
50111
|
+
* Defines your partner-specific configuration for users from other organizations accessing your resources via Microsoft Entra B2B collaboration.
|
|
50112
|
+
*/
|
|
50113
|
+
b2bCollaborationInbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50114
|
+
/**
|
|
50115
|
+
* Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B collaboration.
|
|
50116
|
+
*/
|
|
50117
|
+
b2bCollaborationOutbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50118
|
+
/**
|
|
50119
|
+
* Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
|
|
50120
|
+
*/
|
|
50121
|
+
b2bDirectConnectInbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50122
|
+
/**
|
|
50123
|
+
* Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B direct connect.
|
|
50124
|
+
*/
|
|
50125
|
+
b2bDirectConnectOutbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50126
|
+
/**
|
|
50127
|
+
* Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
|
|
50128
|
+
*/
|
|
50129
|
+
inboundTrust?: CrossTenantAccessPolicyInboundTrust;
|
|
50130
|
+
/**
|
|
50131
|
+
* The templateApplicationLevel property
|
|
50132
|
+
*/
|
|
50133
|
+
templateApplicationLevel?: TemplateApplicationLevel[];
|
|
50134
|
+
}
|
|
50135
|
+
export type MultiTenantOrganizationState = (typeof MultiTenantOrganizationStateObject)[keyof typeof MultiTenantOrganizationStateObject];
|
|
49326
50136
|
export interface MultiValueLegacyExtendedProperty extends Entity, Parsable {
|
|
49327
50137
|
/**
|
|
49328
50138
|
* A collection of property values.
|
|
@@ -50667,6 +51477,60 @@ export interface OnPremisesProvisioningError extends AdditionalDataHolder, Backe
|
|
|
50667
51477
|
*/
|
|
50668
51478
|
value?: string;
|
|
50669
51479
|
}
|
|
51480
|
+
export interface OnTokenIssuanceStartCustomExtension extends CustomAuthenticationExtension, Parsable {
|
|
51481
|
+
/**
|
|
51482
|
+
* Collection of claims to be returned by the API called by this custom authentication extension. Used to populate claims mapping experience in Microsoft Entra admin center. Optional.
|
|
51483
|
+
*/
|
|
51484
|
+
claimsForTokenConfiguration?: OnTokenIssuanceStartReturnClaim[];
|
|
51485
|
+
}
|
|
51486
|
+
export interface OnTokenIssuanceStartCustomExtensionHandler extends OnTokenIssuanceStartHandler, Parsable {
|
|
51487
|
+
/**
|
|
51488
|
+
* The configuration property
|
|
51489
|
+
*/
|
|
51490
|
+
configuration?: CustomExtensionOverwriteConfiguration;
|
|
51491
|
+
/**
|
|
51492
|
+
* The customExtension property
|
|
51493
|
+
*/
|
|
51494
|
+
customExtension?: OnTokenIssuanceStartCustomExtension;
|
|
51495
|
+
}
|
|
51496
|
+
export interface OnTokenIssuanceStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
|
|
51497
|
+
/**
|
|
51498
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
51499
|
+
*/
|
|
51500
|
+
additionalData?: Record<string, unknown>;
|
|
51501
|
+
/**
|
|
51502
|
+
* Stores model information.
|
|
51503
|
+
*/
|
|
51504
|
+
backingStoreEnabled?: boolean;
|
|
51505
|
+
/**
|
|
51506
|
+
* The OdataType property
|
|
51507
|
+
*/
|
|
51508
|
+
odataType?: string;
|
|
51509
|
+
}
|
|
51510
|
+
export interface OnTokenIssuanceStartListener extends AuthenticationEventListener, Parsable {
|
|
51511
|
+
/**
|
|
51512
|
+
* The handler to invoke when conditions are met for this onTokenIssuanceStartListener.
|
|
51513
|
+
*/
|
|
51514
|
+
handler?: OnTokenIssuanceStartHandler;
|
|
51515
|
+
}
|
|
51516
|
+
export interface OnTokenIssuanceStartReturnClaim extends AdditionalDataHolder, BackedModel, Parsable {
|
|
51517
|
+
/**
|
|
51518
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
51519
|
+
*/
|
|
51520
|
+
additionalData?: Record<string, unknown>;
|
|
51521
|
+
/**
|
|
51522
|
+
* Stores model information.
|
|
51523
|
+
*/
|
|
51524
|
+
backingStoreEnabled?: boolean;
|
|
51525
|
+
/**
|
|
51526
|
+
* The identifier of the claim returned by an API that is to be add to a token being issued.
|
|
51527
|
+
*/
|
|
51528
|
+
claimIdInApiResponse?: string;
|
|
51529
|
+
/**
|
|
51530
|
+
* The OdataType property
|
|
51531
|
+
*/
|
|
51532
|
+
odataType?: string;
|
|
51533
|
+
}
|
|
50670
51534
|
export interface OpenShift extends ChangeTrackedEntity, Parsable {
|
|
50671
51535
|
/**
|
|
50672
51536
|
* An unpublished open shift.
|
|
@@ -51914,11 +52778,11 @@ export interface PermissionGrantConditionSetCollectionResponse extends BaseColle
|
|
|
51914
52778
|
}
|
|
51915
52779
|
export interface PermissionGrantPolicy extends Parsable, PolicyBase {
|
|
51916
52780
|
/**
|
|
51917
|
-
* Condition sets
|
|
52781
|
+
* Condition sets that are excluded in this permission grant policy. Automatically expanded on GET.
|
|
51918
52782
|
*/
|
|
51919
52783
|
excludes?: PermissionGrantConditionSet[];
|
|
51920
52784
|
/**
|
|
51921
|
-
* Condition sets
|
|
52785
|
+
* Condition sets that are included in this permission grant policy. Automatically expanded on GET.
|
|
51922
52786
|
*/
|
|
51923
52787
|
includes?: PermissionGrantConditionSet[];
|
|
51924
52788
|
}
|
|
@@ -52934,6 +53798,16 @@ export interface PolicyRoot extends Entity, Parsable {
|
|
|
52934
53798
|
*/
|
|
52935
53799
|
tokenLifetimePolicies?: TokenLifetimePolicy[];
|
|
52936
53800
|
}
|
|
53801
|
+
export interface PolicyTemplate extends Entity, Parsable {
|
|
53802
|
+
/**
|
|
53803
|
+
* Defines an optional cross-tenant access policy template with user synchronization settings for a multitenant organization.
|
|
53804
|
+
*/
|
|
53805
|
+
multiTenantOrganizationIdentitySynchronization?: MultiTenantOrganizationIdentitySyncPolicyTemplate;
|
|
53806
|
+
/**
|
|
53807
|
+
* Defines an optional cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
53808
|
+
*/
|
|
53809
|
+
multiTenantOrganizationPartnerConfiguration?: MultiTenantOrganizationPartnerConfigurationTemplate;
|
|
53810
|
+
}
|
|
52937
53811
|
export interface PositiveReinforcementNotification extends BaseEndUserNotification, Parsable {
|
|
52938
53812
|
/**
|
|
52939
53813
|
* Delivery preference. Possible values are: unknown, deliverImmedietly, deliverAfterCampaignEnd, unknownFutureValue.
|
|
@@ -55101,11 +55975,11 @@ export interface ReactionsFacet extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
55101
55975
|
*/
|
|
55102
55976
|
backingStoreEnabled?: boolean;
|
|
55103
55977
|
/**
|
|
55104
|
-
*
|
|
55978
|
+
* Count of comments.
|
|
55105
55979
|
*/
|
|
55106
55980
|
commentCount?: number;
|
|
55107
55981
|
/**
|
|
55108
|
-
*
|
|
55982
|
+
* Count of likes.
|
|
55109
55983
|
*/
|
|
55110
55984
|
likeCount?: number;
|
|
55111
55985
|
/**
|
|
@@ -55113,7 +55987,7 @@ export interface ReactionsFacet extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
55113
55987
|
*/
|
|
55114
55988
|
odataType?: string;
|
|
55115
55989
|
/**
|
|
55116
|
-
*
|
|
55990
|
+
* Count of shares.
|
|
55117
55991
|
*/
|
|
55118
55992
|
shareCount?: number;
|
|
55119
55993
|
}
|
|
@@ -55515,7 +56389,7 @@ export interface RelatedContact extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
55515
56389
|
}
|
|
55516
56390
|
export interface RelyingPartyDetailedSummary extends Entity, Parsable {
|
|
55517
56391
|
/**
|
|
55518
|
-
*
|
|
56392
|
+
* Number of failed sign ins on AD FS in the period specified. Supports $orderby, $filter (eq).
|
|
55519
56393
|
*/
|
|
55520
56394
|
failedSignInCount?: number;
|
|
55521
56395
|
/**
|
|
@@ -55523,39 +56397,39 @@ export interface RelyingPartyDetailedSummary extends Entity, Parsable {
|
|
|
55523
56397
|
*/
|
|
55524
56398
|
migrationStatus?: MigrationStatus;
|
|
55525
56399
|
/**
|
|
55526
|
-
*
|
|
56400
|
+
* Specifies all the validations checks done on applications config details.
|
|
55527
56401
|
*/
|
|
55528
56402
|
migrationValidationDetails?: KeyValuePair[];
|
|
55529
56403
|
/**
|
|
55530
|
-
*
|
|
56404
|
+
* Identifies the relying party to this federation service. It's used when issuing claims to the relying party. Supports $orderby, $filter (eq).
|
|
55531
56405
|
*/
|
|
55532
56406
|
relyingPartyId?: string;
|
|
55533
56407
|
/**
|
|
55534
|
-
*
|
|
56408
|
+
* Name of the relying party's website or other entity on the Internet that uses an identity provider to authenticate a user who wants to log in. Supports $orderby, $filter (eq).
|
|
55535
56409
|
*/
|
|
55536
56410
|
relyingPartyName?: string;
|
|
55537
56411
|
/**
|
|
55538
|
-
*
|
|
56412
|
+
* Specifies where the relying party expects to receive the token.
|
|
55539
56413
|
*/
|
|
55540
56414
|
replyUrls?: string[];
|
|
55541
56415
|
/**
|
|
55542
|
-
*
|
|
56416
|
+
* Uniquely identifies the Active Directory forest. Supports $orderby, $filter (eq).
|
|
55543
56417
|
*/
|
|
55544
56418
|
serviceId?: string;
|
|
55545
56419
|
/**
|
|
55546
|
-
*
|
|
56420
|
+
* Calculated as Number of successful / (Number of successful + Number of failed sign ins) or successfulSignInCount / totalSignInCount on AD FS in the period specified. Supports $orderby, $filter (eq).
|
|
55547
56421
|
*/
|
|
55548
56422
|
signInSuccessRate?: number;
|
|
55549
56423
|
/**
|
|
55550
|
-
*
|
|
56424
|
+
* Number of successful sign ins on AD FS. Supports $orderby, $filter (eq).
|
|
55551
56425
|
*/
|
|
55552
56426
|
successfulSignInCount?: number;
|
|
55553
56427
|
/**
|
|
55554
|
-
*
|
|
56428
|
+
* Number of successful + failed sign ins on AD FS in the period specified. Supports $orderby, $filter (eq).
|
|
55555
56429
|
*/
|
|
55556
56430
|
totalSignInCount?: number;
|
|
55557
56431
|
/**
|
|
55558
|
-
*
|
|
56432
|
+
* Number of unique users that signed into the application. Supports $orderby, $filter (eq).
|
|
55559
56433
|
*/
|
|
55560
56434
|
uniqueUserCount?: number;
|
|
55561
56435
|
}
|
|
@@ -55943,6 +56817,10 @@ export interface ResellerDelegatedAdminRelationship extends DelegatedAdminRelati
|
|
|
55943
56817
|
* Reset passcode action result
|
|
55944
56818
|
*/
|
|
55945
56819
|
export interface ResetPasscodeActionResult extends DeviceActionResult, Parsable {
|
|
56820
|
+
/**
|
|
56821
|
+
* RotateBitLockerKeys action error code. Valid values 0 to 2147483647
|
|
56822
|
+
*/
|
|
56823
|
+
errorCode?: number;
|
|
55946
56824
|
/**
|
|
55947
56825
|
* Newly generated passcode for the device
|
|
55948
56826
|
*/
|
|
@@ -56359,7 +57237,7 @@ export interface RiskDetection extends Entity, Parsable {
|
|
|
56359
57237
|
*/
|
|
56360
57238
|
riskDetail?: RiskDetail;
|
|
56361
57239
|
/**
|
|
56362
|
-
* The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection.
|
|
57240
|
+
* The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, suspiciousSendingPatterns, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection.
|
|
56363
57241
|
*/
|
|
56364
57242
|
riskEventType?: string;
|
|
56365
57243
|
/**
|
|
@@ -57834,6 +58712,10 @@ export interface Security extends Entity, Parsable {
|
|
|
57834
58712
|
* A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack.
|
|
57835
58713
|
*/
|
|
57836
58714
|
incidents?: Incident[];
|
|
58715
|
+
/**
|
|
58716
|
+
* The labels property
|
|
58717
|
+
*/
|
|
58718
|
+
labels?: LabelsRoot;
|
|
57837
58719
|
/**
|
|
57838
58720
|
* The secureScoreControlProfiles property
|
|
57839
58721
|
*/
|
|
@@ -59159,6 +60041,26 @@ export declare function serializeAuthenticationCombinationConfiguration(writer:
|
|
|
59159
60041
|
* @param writer Serialization writer to use to serialize this model
|
|
59160
60042
|
*/
|
|
59161
60043
|
export declare function serializeAuthenticationCombinationConfigurationCollectionResponse(writer: SerializationWriter, authenticationCombinationConfigurationCollectionResponse?: Partial<AuthenticationCombinationConfigurationCollectionResponse> | undefined): void;
|
|
60044
|
+
/**
|
|
60045
|
+
* Serializes information the current object
|
|
60046
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60047
|
+
*/
|
|
60048
|
+
export declare function serializeAuthenticationConditionApplication(writer: SerializationWriter, authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): void;
|
|
60049
|
+
/**
|
|
60050
|
+
* Serializes information the current object
|
|
60051
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60052
|
+
*/
|
|
60053
|
+
export declare function serializeAuthenticationConditions(writer: SerializationWriter, authenticationConditions?: Partial<AuthenticationConditions> | undefined): void;
|
|
60054
|
+
/**
|
|
60055
|
+
* Serializes information the current object
|
|
60056
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60057
|
+
*/
|
|
60058
|
+
export declare function serializeAuthenticationConditionsApplications(writer: SerializationWriter, authenticationConditionsApplications?: Partial<AuthenticationConditionsApplications> | undefined): void;
|
|
60059
|
+
/**
|
|
60060
|
+
* Serializes information the current object
|
|
60061
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60062
|
+
*/
|
|
60063
|
+
export declare function serializeAuthenticationConfigurationValidation(writer: SerializationWriter, authenticationConfigurationValidation?: Partial<AuthenticationConfigurationValidation> | undefined): void;
|
|
59162
60064
|
/**
|
|
59163
60065
|
* Serializes information the current object
|
|
59164
60066
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -59169,6 +60071,16 @@ export declare function serializeAuthenticationContextClassReference(writer: Ser
|
|
|
59169
60071
|
* @param writer Serialization writer to use to serialize this model
|
|
59170
60072
|
*/
|
|
59171
60073
|
export declare function serializeAuthenticationContextClassReferenceCollectionResponse(writer: SerializationWriter, authenticationContextClassReferenceCollectionResponse?: Partial<AuthenticationContextClassReferenceCollectionResponse> | undefined): void;
|
|
60074
|
+
/**
|
|
60075
|
+
* Serializes information the current object
|
|
60076
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60077
|
+
*/
|
|
60078
|
+
export declare function serializeAuthenticationEventListener(writer: SerializationWriter, authenticationEventListener?: Partial<AuthenticationEventListener> | undefined): void;
|
|
60079
|
+
/**
|
|
60080
|
+
* Serializes information the current object
|
|
60081
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60082
|
+
*/
|
|
60083
|
+
export declare function serializeAuthenticationEventListenerCollectionResponse(writer: SerializationWriter, authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): void;
|
|
59172
60084
|
/**
|
|
59173
60085
|
* Serializes information the current object
|
|
59174
60086
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -59314,6 +60226,11 @@ export declare function serializeAzureAdPopTokenAuthentication(writer: Serializa
|
|
|
59314
60226
|
* @param writer Serialization writer to use to serialize this model
|
|
59315
60227
|
*/
|
|
59316
60228
|
export declare function serializeAzureADRegistrationPolicy(writer: SerializationWriter, azureADRegistrationPolicy?: Partial<AzureADRegistrationPolicy> | undefined): void;
|
|
60229
|
+
/**
|
|
60230
|
+
* Serializes information the current object
|
|
60231
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60232
|
+
*/
|
|
60233
|
+
export declare function serializeAzureAdTokenAuthentication(writer: SerializationWriter, azureAdTokenAuthentication?: Partial<AzureAdTokenAuthentication> | undefined): void;
|
|
59317
60234
|
/**
|
|
59318
60235
|
* Serializes information the current object
|
|
59319
60236
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60209,6 +61126,16 @@ export declare function serializeCommunicationsPhoneIdentity(writer: Serializati
|
|
|
60209
61126
|
* @param writer Serialization writer to use to serialize this model
|
|
60210
61127
|
*/
|
|
60211
61128
|
export declare function serializeCommunicationsUserIdentity(writer: SerializationWriter, communicationsUserIdentity?: Partial<CommunicationsUserIdentity> | undefined): void;
|
|
61129
|
+
/**
|
|
61130
|
+
* Serializes information the current object
|
|
61131
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61132
|
+
*/
|
|
61133
|
+
export declare function serializeCompanySubscription(writer: SerializationWriter, companySubscription?: Partial<CompanySubscription> | undefined): void;
|
|
61134
|
+
/**
|
|
61135
|
+
* Serializes information the current object
|
|
61136
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61137
|
+
*/
|
|
61138
|
+
export declare function serializeCompanySubscriptionCollectionResponse(writer: SerializationWriter, companySubscriptionCollectionResponse?: Partial<CompanySubscriptionCollectionResponse> | undefined): void;
|
|
60212
61139
|
/**
|
|
60213
61140
|
* Serializes information the current object
|
|
60214
61141
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60554,6 +61481,16 @@ export declare function serializeCrossTenantUserSyncInbound(writer: Serializatio
|
|
|
60554
61481
|
* @param writer Serialization writer to use to serialize this model
|
|
60555
61482
|
*/
|
|
60556
61483
|
export declare function serializeCurrencyColumn(writer: SerializationWriter, currencyColumn?: Partial<CurrencyColumn> | undefined): void;
|
|
61484
|
+
/**
|
|
61485
|
+
* Serializes information the current object
|
|
61486
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61487
|
+
*/
|
|
61488
|
+
export declare function serializeCustomAuthenticationExtension(writer: SerializationWriter, customAuthenticationExtension?: Partial<CustomAuthenticationExtension> | undefined): void;
|
|
61489
|
+
/**
|
|
61490
|
+
* Serializes information the current object
|
|
61491
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61492
|
+
*/
|
|
61493
|
+
export declare function serializeCustomAuthenticationExtensionCollectionResponse(writer: SerializationWriter, customAuthenticationExtensionCollectionResponse?: Partial<CustomAuthenticationExtensionCollectionResponse> | undefined): void;
|
|
60557
61494
|
/**
|
|
60558
61495
|
* Serializes information the current object
|
|
60559
61496
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60594,6 +61531,11 @@ export declare function serializeCustomExtensionData(writer: SerializationWriter
|
|
|
60594
61531
|
* @param writer Serialization writer to use to serialize this model
|
|
60595
61532
|
*/
|
|
60596
61533
|
export declare function serializeCustomExtensionEndpointConfiguration(writer: SerializationWriter, customExtensionEndpointConfiguration?: Partial<CustomExtensionEndpointConfiguration> | undefined): void;
|
|
61534
|
+
/**
|
|
61535
|
+
* Serializes information the current object
|
|
61536
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61537
|
+
*/
|
|
61538
|
+
export declare function serializeCustomExtensionOverwriteConfiguration(writer: SerializationWriter, customExtensionOverwriteConfiguration?: Partial<CustomExtensionOverwriteConfiguration> | undefined): void;
|
|
60597
61539
|
/**
|
|
60598
61540
|
* Serializes information the current object
|
|
60599
61541
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60664,6 +61606,11 @@ export declare function serializeDaylightTimeZoneOffset(writer: SerializationWri
|
|
|
60664
61606
|
* @param writer Serialization writer to use to serialize this model
|
|
60665
61607
|
*/
|
|
60666
61608
|
export declare function serializeDefaultColumnValue(writer: SerializationWriter, defaultColumnValue?: Partial<DefaultColumnValue> | undefined): void;
|
|
61609
|
+
/**
|
|
61610
|
+
* Serializes information the current object
|
|
61611
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61612
|
+
*/
|
|
61613
|
+
export declare function serializeDefaultInvitationRedemptionIdentityProviderConfiguration(writer: SerializationWriter, defaultInvitationRedemptionIdentityProviderConfiguration?: Partial<DefaultInvitationRedemptionIdentityProviderConfiguration> | undefined): void;
|
|
60667
61614
|
/**
|
|
60668
61615
|
* Serializes information the current object
|
|
60669
61616
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -62269,6 +63216,11 @@ export declare function serializeHorizontalSectionColumnCollectionResponse(write
|
|
|
62269
63216
|
* @param writer Serialization writer to use to serialize this model
|
|
62270
63217
|
*/
|
|
62271
63218
|
export declare function serializeHostSecurityState(writer: SerializationWriter, hostSecurityState?: Partial<HostSecurityState> | undefined): void;
|
|
63219
|
+
/**
|
|
63220
|
+
* Serializes information the current object
|
|
63221
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63222
|
+
*/
|
|
63223
|
+
export declare function serializeHttpRequestEndpoint(writer: SerializationWriter, httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined): void;
|
|
62272
63224
|
/**
|
|
62273
63225
|
* Serializes information the current object
|
|
62274
63226
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -62539,6 +63491,11 @@ export declare function serializeInvitationCollectionResponse(writer: Serializat
|
|
|
62539
63491
|
* @param writer Serialization writer to use to serialize this model
|
|
62540
63492
|
*/
|
|
62541
63493
|
export declare function serializeInvitationParticipantInfo(writer: SerializationWriter, invitationParticipantInfo?: Partial<InvitationParticipantInfo> | undefined): void;
|
|
63494
|
+
/**
|
|
63495
|
+
* Serializes information the current object
|
|
63496
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63497
|
+
*/
|
|
63498
|
+
export declare function serializeInvitationRedemptionIdentityProviderConfiguration(writer: SerializationWriter, invitationRedemptionIdentityProviderConfiguration?: Partial<InvitationRedemptionIdentityProviderConfiguration> | undefined): void;
|
|
62542
63499
|
/**
|
|
62543
63500
|
* Serializes information the current object
|
|
62544
63501
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63774,6 +64731,46 @@ export declare function serializeMobileThreatDefenseConnectorCollectionResponse(
|
|
|
63774
64731
|
* @param writer Serialization writer to use to serialize this model
|
|
63775
64732
|
*/
|
|
63776
64733
|
export declare function serializeModifiedProperty(writer: SerializationWriter, modifiedProperty?: Partial<ModifiedProperty> | undefined): void;
|
|
64734
|
+
/**
|
|
64735
|
+
* Serializes information the current object
|
|
64736
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64737
|
+
*/
|
|
64738
|
+
export declare function serializeMultiTenantOrganization(writer: SerializationWriter, multiTenantOrganization?: Partial<MultiTenantOrganization> | undefined): void;
|
|
64739
|
+
/**
|
|
64740
|
+
* Serializes information the current object
|
|
64741
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64742
|
+
*/
|
|
64743
|
+
export declare function serializeMultiTenantOrganizationIdentitySyncPolicyTemplate(writer: SerializationWriter, multiTenantOrganizationIdentitySyncPolicyTemplate?: Partial<MultiTenantOrganizationIdentitySyncPolicyTemplate> | undefined): void;
|
|
64744
|
+
/**
|
|
64745
|
+
* Serializes information the current object
|
|
64746
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64747
|
+
*/
|
|
64748
|
+
export declare function serializeMultiTenantOrganizationJoinRequestRecord(writer: SerializationWriter, multiTenantOrganizationJoinRequestRecord?: Partial<MultiTenantOrganizationJoinRequestRecord> | undefined): void;
|
|
64749
|
+
/**
|
|
64750
|
+
* Serializes information the current object
|
|
64751
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64752
|
+
*/
|
|
64753
|
+
export declare function serializeMultiTenantOrganizationJoinRequestTransitionDetails(writer: SerializationWriter, multiTenantOrganizationJoinRequestTransitionDetails?: Partial<MultiTenantOrganizationJoinRequestTransitionDetails> | undefined): void;
|
|
64754
|
+
/**
|
|
64755
|
+
* Serializes information the current object
|
|
64756
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64757
|
+
*/
|
|
64758
|
+
export declare function serializeMultiTenantOrganizationMember(writer: SerializationWriter, multiTenantOrganizationMember?: Partial<MultiTenantOrganizationMember> | undefined): void;
|
|
64759
|
+
/**
|
|
64760
|
+
* Serializes information the current object
|
|
64761
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64762
|
+
*/
|
|
64763
|
+
export declare function serializeMultiTenantOrganizationMemberCollectionResponse(writer: SerializationWriter, multiTenantOrganizationMemberCollectionResponse?: Partial<MultiTenantOrganizationMemberCollectionResponse> | undefined): void;
|
|
64764
|
+
/**
|
|
64765
|
+
* Serializes information the current object
|
|
64766
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64767
|
+
*/
|
|
64768
|
+
export declare function serializeMultiTenantOrganizationMemberTransitionDetails(writer: SerializationWriter, multiTenantOrganizationMemberTransitionDetails?: Partial<MultiTenantOrganizationMemberTransitionDetails> | undefined): void;
|
|
64769
|
+
/**
|
|
64770
|
+
* Serializes information the current object
|
|
64771
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64772
|
+
*/
|
|
64773
|
+
export declare function serializeMultiTenantOrganizationPartnerConfigurationTemplate(writer: SerializationWriter, multiTenantOrganizationPartnerConfigurationTemplate?: Partial<MultiTenantOrganizationPartnerConfigurationTemplate> | undefined): void;
|
|
63777
64774
|
/**
|
|
63778
64775
|
* Serializes information the current object
|
|
63779
64776
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64084,6 +65081,31 @@ export declare function serializeOnPremisesExtensionAttributes(writer: Serializa
|
|
|
64084
65081
|
* @param writer Serialization writer to use to serialize this model
|
|
64085
65082
|
*/
|
|
64086
65083
|
export declare function serializeOnPremisesProvisioningError(writer: SerializationWriter, onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): void;
|
|
65084
|
+
/**
|
|
65085
|
+
* Serializes information the current object
|
|
65086
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65087
|
+
*/
|
|
65088
|
+
export declare function serializeOnTokenIssuanceStartCustomExtension(writer: SerializationWriter, onTokenIssuanceStartCustomExtension?: Partial<OnTokenIssuanceStartCustomExtension> | undefined): void;
|
|
65089
|
+
/**
|
|
65090
|
+
* Serializes information the current object
|
|
65091
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65092
|
+
*/
|
|
65093
|
+
export declare function serializeOnTokenIssuanceStartCustomExtensionHandler(writer: SerializationWriter, onTokenIssuanceStartCustomExtensionHandler?: Partial<OnTokenIssuanceStartCustomExtensionHandler> | undefined): void;
|
|
65094
|
+
/**
|
|
65095
|
+
* Serializes information the current object
|
|
65096
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65097
|
+
*/
|
|
65098
|
+
export declare function serializeOnTokenIssuanceStartHandler(writer: SerializationWriter, onTokenIssuanceStartHandler?: Partial<OnTokenIssuanceStartHandler> | undefined): void;
|
|
65099
|
+
/**
|
|
65100
|
+
* Serializes information the current object
|
|
65101
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65102
|
+
*/
|
|
65103
|
+
export declare function serializeOnTokenIssuanceStartListener(writer: SerializationWriter, onTokenIssuanceStartListener?: Partial<OnTokenIssuanceStartListener> | undefined): void;
|
|
65104
|
+
/**
|
|
65105
|
+
* Serializes information the current object
|
|
65106
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65107
|
+
*/
|
|
65108
|
+
export declare function serializeOnTokenIssuanceStartReturnClaim(writer: SerializationWriter, onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): void;
|
|
64087
65109
|
/**
|
|
64088
65110
|
* Serializes information the current object
|
|
64089
65111
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64574,6 +65596,11 @@ export declare function serializePolicyBase(writer: SerializationWriter, policyB
|
|
|
64574
65596
|
* @param writer Serialization writer to use to serialize this model
|
|
64575
65597
|
*/
|
|
64576
65598
|
export declare function serializePolicyRoot(writer: SerializationWriter, policyRoot?: Partial<PolicyRoot> | undefined): void;
|
|
65599
|
+
/**
|
|
65600
|
+
* Serializes information the current object
|
|
65601
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65602
|
+
*/
|
|
65603
|
+
export declare function serializePolicyTemplate(writer: SerializationWriter, policyTemplate?: Partial<PolicyTemplate> | undefined): void;
|
|
64577
65604
|
/**
|
|
64578
65605
|
* Serializes information the current object
|
|
64579
65606
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -66449,6 +67476,11 @@ export declare function serializeTargetManager(writer: SerializationWriter, targ
|
|
|
66449
67476
|
* @param writer Serialization writer to use to serialize this model
|
|
66450
67477
|
*/
|
|
66451
67478
|
export declare function serializeTargetResource(writer: SerializationWriter, targetResource?: Partial<TargetResource> | undefined): void;
|
|
67479
|
+
/**
|
|
67480
|
+
* Serializes information the current object
|
|
67481
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67482
|
+
*/
|
|
67483
|
+
export declare function serializeTargetUserSponsors(writer: SerializationWriter, targetUserSponsors?: Partial<TargetUserSponsors> | undefined): void;
|
|
66452
67484
|
/**
|
|
66453
67485
|
* Serializes information the current object
|
|
66454
67486
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -66599,6 +67631,11 @@ export declare function serializeTeamsAsyncOperation(writer: SerializationWriter
|
|
|
66599
67631
|
* @param writer Serialization writer to use to serialize this model
|
|
66600
67632
|
*/
|
|
66601
67633
|
export declare function serializeTeamsAsyncOperationCollectionResponse(writer: SerializationWriter, teamsAsyncOperationCollectionResponse?: Partial<TeamsAsyncOperationCollectionResponse> | undefined): void;
|
|
67634
|
+
/**
|
|
67635
|
+
* Serializes information the current object
|
|
67636
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67637
|
+
*/
|
|
67638
|
+
export declare function serializeTeamsLicensingDetails(writer: SerializationWriter, teamsLicensingDetails?: Partial<TeamsLicensingDetails> | undefined): void;
|
|
66602
67639
|
/**
|
|
66603
67640
|
* Serializes information the current object
|
|
66604
67641
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -68654,15 +69691,15 @@ export interface ServerProcessedContent extends AdditionalDataHolder, BackedMode
|
|
|
68654
69691
|
*/
|
|
68655
69692
|
backingStoreEnabled?: boolean;
|
|
68656
69693
|
/**
|
|
68657
|
-
*
|
|
69694
|
+
* A key-value map where keys are string identifiers and values are rich text with HTML format. SharePoint servers treat the values as HTML content and run services like safety checks, search index and link fixup on them.
|
|
68658
69695
|
*/
|
|
68659
69696
|
htmlStrings?: MetaDataKeyStringPair[];
|
|
68660
69697
|
/**
|
|
68661
|
-
*
|
|
69698
|
+
* A key-value map where keys are string identifiers and values are image sources. SharePoint servers treat the values as image sources and run services like search index and link fixup on them.
|
|
68662
69699
|
*/
|
|
68663
69700
|
imageSources?: MetaDataKeyStringPair[];
|
|
68664
69701
|
/**
|
|
68665
|
-
*
|
|
69702
|
+
* A key-value map where keys are string identifiers and values are links. SharePoint servers treat the values as links and run services like link fixup on them.
|
|
68666
69703
|
*/
|
|
68667
69704
|
links?: MetaDataKeyStringPair[];
|
|
68668
69705
|
/**
|
|
@@ -68670,7 +69707,7 @@ export interface ServerProcessedContent extends AdditionalDataHolder, BackedMode
|
|
|
68670
69707
|
*/
|
|
68671
69708
|
odataType?: string;
|
|
68672
69709
|
/**
|
|
68673
|
-
*
|
|
69710
|
+
* A key-value map where keys are string identifiers and values are strings that should be search indexed.
|
|
68674
69711
|
*/
|
|
68675
69712
|
searchablePlainTexts?: MetaDataKeyStringPair[];
|
|
68676
69713
|
}
|
|
@@ -70672,7 +71709,7 @@ export interface Site extends BaseItem, Parsable {
|
|
|
70672
71709
|
*/
|
|
70673
71710
|
operations?: RichLongRunningOperation[];
|
|
70674
71711
|
/**
|
|
70675
|
-
* The pages
|
|
71712
|
+
* The collection of pages in the baseSitePages list in this site.
|
|
70676
71713
|
*/
|
|
70677
71714
|
pages?: BaseSitePage[];
|
|
70678
71715
|
/**
|
|
@@ -70738,35 +71775,35 @@ export interface SiteCollectionResponse extends BaseCollectionPaginationCountRes
|
|
|
70738
71775
|
}
|
|
70739
71776
|
export interface SitePage extends BaseSitePage, Parsable {
|
|
70740
71777
|
/**
|
|
70741
|
-
*
|
|
71778
|
+
* Indicates the layout of the content in a given SharePoint page, including horizontal sections and vertical sections.
|
|
70742
71779
|
*/
|
|
70743
71780
|
canvasLayout?: CanvasLayout;
|
|
70744
71781
|
/**
|
|
70745
|
-
* The
|
|
71782
|
+
* Indicates the promotion kind of the sitePage. The possible values are: microsoftReserved, page, newsPost, unknownFutureValue.
|
|
70746
71783
|
*/
|
|
70747
71784
|
promotionKind?: PagePromotionType;
|
|
70748
71785
|
/**
|
|
70749
|
-
*
|
|
71786
|
+
* Reactions information for the page.
|
|
70750
71787
|
*/
|
|
70751
71788
|
reactions?: ReactionsFacet;
|
|
70752
71789
|
/**
|
|
70753
|
-
*
|
|
71790
|
+
* Determines whether or not to show comments at the bottom of the page.
|
|
70754
71791
|
*/
|
|
70755
71792
|
showComments?: boolean;
|
|
70756
71793
|
/**
|
|
70757
|
-
*
|
|
71794
|
+
* Determines whether or not to show recommended pages at the bottom of the page.
|
|
70758
71795
|
*/
|
|
70759
71796
|
showRecommendedPages?: boolean;
|
|
70760
71797
|
/**
|
|
70761
|
-
*
|
|
71798
|
+
* Url of the sitePage's thumbnail image
|
|
70762
71799
|
*/
|
|
70763
71800
|
thumbnailWebUrl?: string;
|
|
70764
71801
|
/**
|
|
70765
|
-
*
|
|
71802
|
+
* Title area on the SharePoint page.
|
|
70766
71803
|
*/
|
|
70767
71804
|
titleArea?: TitleArea;
|
|
70768
71805
|
/**
|
|
70769
|
-
*
|
|
71806
|
+
* Collection of webparts on the SharePoint page.
|
|
70770
71807
|
*/
|
|
70771
71808
|
webParts?: WebPart[];
|
|
70772
71809
|
}
|
|
@@ -71075,15 +72112,15 @@ export interface StandardTimeZoneOffset extends AdditionalDataHolder, BackedMode
|
|
|
71075
72112
|
}
|
|
71076
72113
|
export interface StandardWebPart extends Parsable, WebPart {
|
|
71077
72114
|
/**
|
|
71078
|
-
* The
|
|
72115
|
+
* The instance identifier of the container text webPart. It only works for inline standard webPart in rich text webParts.
|
|
71079
72116
|
*/
|
|
71080
72117
|
containerTextWebPartId?: string;
|
|
71081
72118
|
/**
|
|
71082
|
-
*
|
|
72119
|
+
* Data of the webPart.
|
|
71083
72120
|
*/
|
|
71084
72121
|
data?: WebPartData;
|
|
71085
72122
|
/**
|
|
71086
|
-
*
|
|
72123
|
+
* A Guid that indicates the webPart type.
|
|
71087
72124
|
*/
|
|
71088
72125
|
webPartType?: string;
|
|
71089
72126
|
}
|
|
@@ -72312,6 +73349,8 @@ export interface TargetResource extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
72312
73349
|
userPrincipalName?: string;
|
|
72313
73350
|
}
|
|
72314
73351
|
export type TargettedUserType = (typeof TargettedUserTypeObject)[keyof typeof TargettedUserTypeObject];
|
|
73352
|
+
export interface TargetUserSponsors extends Parsable, SubjectSet {
|
|
73353
|
+
}
|
|
72315
73354
|
export interface TaskFileAttachment extends AttachmentBase, Parsable {
|
|
72316
73355
|
/**
|
|
72317
73356
|
* The base64-encoded contents of the file.
|
|
@@ -72906,6 +73945,12 @@ export interface TeamsAsyncOperationCollectionResponse extends BaseCollectionPag
|
|
|
72906
73945
|
}
|
|
72907
73946
|
export type TeamsAsyncOperationStatus = (typeof TeamsAsyncOperationStatusObject)[keyof typeof TeamsAsyncOperationStatusObject];
|
|
72908
73947
|
export type TeamsAsyncOperationType = (typeof TeamsAsyncOperationTypeObject)[keyof typeof TeamsAsyncOperationTypeObject];
|
|
73948
|
+
export interface TeamsLicensingDetails extends Entity, Parsable {
|
|
73949
|
+
/**
|
|
73950
|
+
* Indicates whether the user has a valid license to use Microsoft Teams.
|
|
73951
|
+
*/
|
|
73952
|
+
hasTeamsLicense?: boolean;
|
|
73953
|
+
}
|
|
72909
73954
|
export type TeamSpecialization = (typeof TeamSpecializationObject)[keyof typeof TeamSpecializationObject];
|
|
72910
73955
|
export interface TeamsTab extends Entity, Parsable {
|
|
72911
73956
|
/**
|
|
@@ -73015,6 +74060,14 @@ export interface Teamwork extends Entity, Parsable {
|
|
|
73015
74060
|
* The deleted team.
|
|
73016
74061
|
*/
|
|
73017
74062
|
deletedTeams?: DeletedTeam[];
|
|
74063
|
+
/**
|
|
74064
|
+
* Indicates whether Microsoft Teams is enabled for the organization.
|
|
74065
|
+
*/
|
|
74066
|
+
isTeamsEnabled?: boolean;
|
|
74067
|
+
/**
|
|
74068
|
+
* Represents the region of the organization. > The region property contains the organization's or the user's region. The property contains the user's region (if available) for users who have a valid multigeo license. For users without multigeo licenses, the region property contains the organization's region.
|
|
74069
|
+
*/
|
|
74070
|
+
region?: string;
|
|
73018
74071
|
/**
|
|
73019
74072
|
* Represents tenant-wide settings for all Teams apps in the tenant.
|
|
73020
74073
|
*/
|
|
@@ -73385,6 +74438,7 @@ export interface TeleconferenceDeviceVideoQuality extends Parsable, Teleconferen
|
|
|
73385
74438
|
*/
|
|
73386
74439
|
averageOutboundFrameRate?: number;
|
|
73387
74440
|
}
|
|
74441
|
+
export type TemplateApplicationLevel = (typeof TemplateApplicationLevelObject)[keyof typeof TemplateApplicationLevelObject];
|
|
73388
74442
|
export type TemplateScenarios = (typeof TemplateScenariosObject)[keyof typeof TemplateScenariosObject];
|
|
73389
74443
|
export interface TemporaryAccessPassAuthenticationMethod extends AuthenticationMethod, Parsable {
|
|
73390
74444
|
/**
|
|
@@ -73509,6 +74563,10 @@ export interface TenantRelationship extends AdditionalDataHolder, BackedModel, P
|
|
|
73509
74563
|
* The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant.
|
|
73510
74564
|
*/
|
|
73511
74565
|
delegatedAdminRelationships?: DelegatedAdminRelationship[];
|
|
74566
|
+
/**
|
|
74567
|
+
* Defines an organization with more than one instance of Microsoft Entra ID.
|
|
74568
|
+
*/
|
|
74569
|
+
multiTenantOrganization?: MultiTenantOrganization;
|
|
73512
74570
|
/**
|
|
73513
74571
|
* The OdataType property
|
|
73514
74572
|
*/
|
|
@@ -73709,7 +74767,7 @@ export interface TextColumn extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
73709
74767
|
}
|
|
73710
74768
|
export interface TextWebPart extends Parsable, WebPart {
|
|
73711
74769
|
/**
|
|
73712
|
-
* The
|
|
74770
|
+
* The HTML string in text web part.
|
|
73713
74771
|
*/
|
|
73714
74772
|
innerHtml?: string;
|
|
73715
74773
|
}
|
|
@@ -74052,7 +75110,7 @@ export interface TitleArea extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
74052
75110
|
*/
|
|
74053
75111
|
additionalData?: Record<string, unknown>;
|
|
74054
75112
|
/**
|
|
74055
|
-
*
|
|
75113
|
+
* Alternative text on the title area.
|
|
74056
75114
|
*/
|
|
74057
75115
|
alternativeText?: string;
|
|
74058
75116
|
/**
|
|
@@ -74060,15 +75118,15 @@ export interface TitleArea extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
74060
75118
|
*/
|
|
74061
75119
|
backingStoreEnabled?: boolean;
|
|
74062
75120
|
/**
|
|
74063
|
-
*
|
|
75121
|
+
* Indicates whether the title area has a gradient effect enabled.
|
|
74064
75122
|
*/
|
|
74065
75123
|
enableGradientEffect?: boolean;
|
|
74066
75124
|
/**
|
|
74067
|
-
*
|
|
75125
|
+
* URL of the image in the title area.
|
|
74068
75126
|
*/
|
|
74069
75127
|
imageWebUrl?: string;
|
|
74070
75128
|
/**
|
|
74071
|
-
*
|
|
75129
|
+
* Enumeration value that indicates the layout of the title area. The possible values are: imageAndTitle, plain, colorBlock, overlap, unknownFutureValue.
|
|
74072
75130
|
*/
|
|
74073
75131
|
layout?: TitleAreaLayoutType;
|
|
74074
75132
|
/**
|
|
@@ -74076,27 +75134,27 @@ export interface TitleArea extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
74076
75134
|
*/
|
|
74077
75135
|
odataType?: string;
|
|
74078
75136
|
/**
|
|
74079
|
-
*
|
|
75137
|
+
* Contains collections of data that can be processed by server side services like search index and link fixup.
|
|
74080
75138
|
*/
|
|
74081
75139
|
serverProcessedContent?: ServerProcessedContent;
|
|
74082
75140
|
/**
|
|
74083
|
-
*
|
|
75141
|
+
* Indicates whether the author should be shown in title area.
|
|
74084
75142
|
*/
|
|
74085
75143
|
showAuthor?: boolean;
|
|
74086
75144
|
/**
|
|
74087
|
-
*
|
|
75145
|
+
* Indicates whether the published date should be shown in title area.
|
|
74088
75146
|
*/
|
|
74089
75147
|
showPublishedDate?: boolean;
|
|
74090
75148
|
/**
|
|
74091
|
-
*
|
|
75149
|
+
* Indicates whether the text block above title should be shown in title area.
|
|
74092
75150
|
*/
|
|
74093
75151
|
showTextBlockAboveTitle?: boolean;
|
|
74094
75152
|
/**
|
|
74095
|
-
* The
|
|
75153
|
+
* The text above title line.
|
|
74096
75154
|
*/
|
|
74097
75155
|
textAboveTitle?: string;
|
|
74098
75156
|
/**
|
|
74099
|
-
* The
|
|
75157
|
+
* Enumeration value that indicates the text alignment of the title area. The possible values are: left, center, unknownFutureValue.
|
|
74100
75158
|
*/
|
|
74101
75159
|
textAlignment?: TitleAreaTextAlignmentType;
|
|
74102
75160
|
}
|
|
@@ -75850,7 +76908,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
75850
76908
|
*/
|
|
75851
76909
|
skills?: string[];
|
|
75852
76910
|
/**
|
|
75853
|
-
* The
|
|
76911
|
+
* The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand.
|
|
75854
76912
|
*/
|
|
75855
76913
|
sponsors?: DirectoryObject[];
|
|
75856
76914
|
/**
|
|
@@ -75886,7 +76944,7 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
75886
76944
|
*/
|
|
75887
76945
|
userPrincipalName?: string;
|
|
75888
76946
|
/**
|
|
75889
|
-
* A string value that can be used to classify user types in your directory
|
|
76947
|
+
* A string value that can be used to classify user types in your directory. The possible values are Member and Guest. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for member and guest users, see What are the default user permissions in Microsoft Entra ID?
|
|
75890
76948
|
*/
|
|
75891
76949
|
userType?: string;
|
|
75892
76950
|
}
|
|
@@ -77808,6 +78866,14 @@ export interface UserTeamwork extends Entity, Parsable {
|
|
|
77808
78866
|
* The apps installed in the personal scope of this user.
|
|
77809
78867
|
*/
|
|
77810
78868
|
installedApps?: UserScopeTeamsAppInstallation[];
|
|
78869
|
+
/**
|
|
78870
|
+
* The chosen locale of a user in Microsoft Teams.
|
|
78871
|
+
*/
|
|
78872
|
+
locale?: string;
|
|
78873
|
+
/**
|
|
78874
|
+
* The region of the user in Microsoft Teams.
|
|
78875
|
+
*/
|
|
78876
|
+
region?: string;
|
|
77811
78877
|
}
|
|
77812
78878
|
export interface UserTrainingContentEventInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
77813
78879
|
/**
|
|
@@ -77929,7 +78995,7 @@ export interface VerifiedDomain extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
77929
78995
|
*/
|
|
77930
78996
|
isInitial?: boolean;
|
|
77931
78997
|
/**
|
|
77932
|
-
* The domain name; for example, contoso.com
|
|
78998
|
+
* The domain name; for example, contoso.com.
|
|
77933
78999
|
*/
|
|
77934
79000
|
name?: string;
|
|
77935
79001
|
/**
|
|
@@ -77969,11 +79035,11 @@ export interface VerifiedPublisher extends AdditionalDataHolder, BackedModel, Pa
|
|
|
77969
79035
|
}
|
|
77970
79036
|
export interface VerticalSection extends Entity, Parsable {
|
|
77971
79037
|
/**
|
|
77972
|
-
*
|
|
79038
|
+
* Enumeration value that indicates the emphasis of the section background. The possible values are: none, netural, soft, strong, unknownFutureValue.
|
|
77973
79039
|
*/
|
|
77974
79040
|
emphasis?: SectionEmphasisType;
|
|
77975
79041
|
/**
|
|
77976
|
-
* The
|
|
79042
|
+
* The set of web parts in this section.
|
|
77977
79043
|
*/
|
|
77978
79044
|
webparts?: WebPart[];
|
|
77979
79045
|
}
|
|
@@ -78076,7 +79142,7 @@ export interface VirtualEvent extends Entity, Parsable {
|
|
|
78076
79142
|
*/
|
|
78077
79143
|
displayName?: string;
|
|
78078
79144
|
/**
|
|
78079
|
-
* End time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows.
|
|
79145
|
+
* End time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
|
|
78080
79146
|
*/
|
|
78081
79147
|
endDateTime?: DateTimeTimeZone;
|
|
78082
79148
|
/**
|
|
@@ -78084,7 +79150,7 @@ export interface VirtualEvent extends Entity, Parsable {
|
|
|
78084
79150
|
*/
|
|
78085
79151
|
sessions?: VirtualEventSession[];
|
|
78086
79152
|
/**
|
|
78087
|
-
* Start time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows.
|
|
79153
|
+
* Start time of the virtual event. The timeZone property can be set to any of the time zones currently supported by Windows. For details on how to get all available time zones using PowerShell, see Get-TimeZone.
|
|
78088
79154
|
*/
|
|
78089
79155
|
startDateTime?: DateTimeTimeZone;
|
|
78090
79156
|
/**
|
|
@@ -78464,11 +79530,11 @@ export interface WebPartData extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
78464
79530
|
*/
|
|
78465
79531
|
backingStoreEnabled?: boolean;
|
|
78466
79532
|
/**
|
|
78467
|
-
* The
|
|
79533
|
+
* Data version of the web part. The value is defined by the web part developer. Different dataVersions usually refers to a different property structure.
|
|
78468
79534
|
*/
|
|
78469
79535
|
dataVersion?: string;
|
|
78470
79536
|
/**
|
|
78471
|
-
*
|
|
79537
|
+
* Description of the web part.
|
|
78472
79538
|
*/
|
|
78473
79539
|
description?: string;
|
|
78474
79540
|
/**
|
|
@@ -78476,15 +79542,15 @@ export interface WebPartData extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
78476
79542
|
*/
|
|
78477
79543
|
odataType?: string;
|
|
78478
79544
|
/**
|
|
78479
|
-
*
|
|
79545
|
+
* Properties bag of the web part.
|
|
78480
79546
|
*/
|
|
78481
79547
|
properties?: Json;
|
|
78482
79548
|
/**
|
|
78483
|
-
*
|
|
79549
|
+
* Contains collections of data that can be processed by server side services like search index and link fixup.
|
|
78484
79550
|
*/
|
|
78485
79551
|
serverProcessedContent?: ServerProcessedContent;
|
|
78486
79552
|
/**
|
|
78487
|
-
*
|
|
79553
|
+
* Title of the web part.
|
|
78488
79554
|
*/
|
|
78489
79555
|
title?: string;
|
|
78490
79556
|
}
|
|
@@ -78498,15 +79564,15 @@ export interface WebPartPosition extends AdditionalDataHolder, BackedModel, Pars
|
|
|
78498
79564
|
*/
|
|
78499
79565
|
backingStoreEnabled?: boolean;
|
|
78500
79566
|
/**
|
|
78501
|
-
*
|
|
79567
|
+
* Indicates the identifier of the column where the web part is located.
|
|
78502
79568
|
*/
|
|
78503
79569
|
columnId?: number;
|
|
78504
79570
|
/**
|
|
78505
|
-
*
|
|
79571
|
+
* Indicates the horizontal section where the web part is located.
|
|
78506
79572
|
*/
|
|
78507
79573
|
horizontalSectionId?: number;
|
|
78508
79574
|
/**
|
|
78509
|
-
*
|
|
79575
|
+
* Indicates whether the web part is located in the vertical section.
|
|
78510
79576
|
*/
|
|
78511
79577
|
isInVerticalSection?: boolean;
|
|
78512
79578
|
/**
|
|
@@ -78514,7 +79580,7 @@ export interface WebPartPosition extends AdditionalDataHolder, BackedModel, Pars
|
|
|
78514
79580
|
*/
|
|
78515
79581
|
odataType?: string;
|
|
78516
79582
|
/**
|
|
78517
|
-
*
|
|
79583
|
+
* Index of the current web part. Represents the order of the web part in this column or section.
|
|
78518
79584
|
*/
|
|
78519
79585
|
webPartIndex?: number;
|
|
78520
79586
|
}
|
|
@@ -83843,6 +84909,15 @@ export declare const AutoRestartNotificationDismissalMethodObject: {
|
|
|
83843
84909
|
/** Evolvable enum member */
|
|
83844
84910
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83845
84911
|
};
|
|
84912
|
+
export declare const B2bIdentityProvidersTypeObject: {
|
|
84913
|
+
readonly AzureActiveDirectory: "azureActiveDirectory";
|
|
84914
|
+
readonly ExternalFederation: "externalFederation";
|
|
84915
|
+
readonly SocialIdentityProviders: "socialIdentityProviders";
|
|
84916
|
+
readonly EmailOneTimePasscode: "emailOneTimePasscode";
|
|
84917
|
+
readonly MicrosoftAccount: "microsoftAccount";
|
|
84918
|
+
readonly DefaultConfiguredIdp: "defaultConfiguredIdp";
|
|
84919
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84920
|
+
};
|
|
83846
84921
|
export declare const BaseAuthenticationMethodObject: {
|
|
83847
84922
|
readonly Password: "password";
|
|
83848
84923
|
readonly Voice: "voice";
|
|
@@ -83914,6 +84989,12 @@ export declare const BookingsAvailabilityStatusObject: {
|
|
|
83914
84989
|
readonly OutOfOffice: "outOfOffice";
|
|
83915
84990
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83916
84991
|
};
|
|
84992
|
+
export declare const BookingStaffMembershipStatusObject: {
|
|
84993
|
+
readonly Active: "active";
|
|
84994
|
+
readonly PendingAcceptance: "pendingAcceptance";
|
|
84995
|
+
readonly RejectedByStaff: "rejectedByStaff";
|
|
84996
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84997
|
+
};
|
|
83917
84998
|
export declare const BookingStaffRoleObject: {
|
|
83918
84999
|
readonly Guest: "guest";
|
|
83919
85000
|
readonly Administrator: "administrator";
|
|
@@ -85133,6 +86214,7 @@ export declare const EducationAssignmentStatusObject: {
|
|
|
85133
86214
|
readonly Published: "published";
|
|
85134
86215
|
readonly Assigned: "assigned";
|
|
85135
86216
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86217
|
+
readonly Inactive: "inactive";
|
|
85136
86218
|
};
|
|
85137
86219
|
export declare const EducationExternalSourceObject: {
|
|
85138
86220
|
readonly Sis: "sis";
|
|
@@ -85535,6 +86617,12 @@ export declare const LayoutTemplateTypeObject: {
|
|
|
85535
86617
|
readonly VerticalSplit: "verticalSplit";
|
|
85536
86618
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85537
86619
|
};
|
|
86620
|
+
export declare const LevelObject: {
|
|
86621
|
+
readonly Beginner: "beginner";
|
|
86622
|
+
readonly Intermediate: "intermediate";
|
|
86623
|
+
readonly Advanced: "advanced";
|
|
86624
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86625
|
+
};
|
|
85538
86626
|
export declare const LobbyBypassScopeObject: {
|
|
85539
86627
|
readonly Organizer: "organizer";
|
|
85540
86628
|
readonly Organization: "organization";
|
|
@@ -85991,6 +87079,29 @@ export declare const MultiFactorAuthConfigurationObject: {
|
|
|
85991
87079
|
readonly Required: "required";
|
|
85992
87080
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85993
87081
|
};
|
|
87082
|
+
export declare const MultiTenantOrganizationMemberProcessingStatusObject: {
|
|
87083
|
+
readonly NotStarted: "notStarted";
|
|
87084
|
+
readonly Running: "running";
|
|
87085
|
+
readonly Succeeded: "succeeded";
|
|
87086
|
+
readonly Failed: "failed";
|
|
87087
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87088
|
+
};
|
|
87089
|
+
export declare const MultiTenantOrganizationMemberRoleObject: {
|
|
87090
|
+
readonly Owner: "owner";
|
|
87091
|
+
readonly Member: "member";
|
|
87092
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87093
|
+
};
|
|
87094
|
+
export declare const MultiTenantOrganizationMemberStateObject: {
|
|
87095
|
+
readonly Pending: "pending";
|
|
87096
|
+
readonly Active: "active";
|
|
87097
|
+
readonly Removed: "removed";
|
|
87098
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87099
|
+
};
|
|
87100
|
+
export declare const MultiTenantOrganizationStateObject: {
|
|
87101
|
+
readonly Active: "active";
|
|
87102
|
+
readonly Inactive: "inactive";
|
|
87103
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87104
|
+
};
|
|
85994
87105
|
export declare const MutabilityObject: {
|
|
85995
87106
|
readonly ReadWrite: "ReadWrite";
|
|
85996
87107
|
readonly ReadOnly: "ReadOnly";
|
|
@@ -88471,6 +89582,12 @@ export declare const TeamworkUserIdentityTypeObject: {
|
|
|
88471
89582
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88472
89583
|
readonly EmailUser: "emailUser";
|
|
88473
89584
|
};
|
|
89585
|
+
export declare const TemplateApplicationLevelObject: {
|
|
89586
|
+
readonly None: "none";
|
|
89587
|
+
readonly NewPartners: "newPartners";
|
|
89588
|
+
readonly ExistingPartners: "existingPartners";
|
|
89589
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
89590
|
+
};
|
|
88474
89591
|
export declare const TemplateScenariosObject: {
|
|
88475
89592
|
readonly NewEscaped: "new";
|
|
88476
89593
|
readonly SecureFoundation: "secureFoundation";
|