@microsoft/msgraph-sdk 1.0.0-preview.20 → 1.0.0-preview.22
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/index.d.ts +996 -35
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1054 -141
- package/models/security/index.d.ts +7 -5
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +2 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -2129,7 +2129,7 @@ export interface Album extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
2129
2129
|
*/
|
|
2130
2130
|
backingStoreEnabled?: boolean;
|
|
2131
2131
|
/**
|
|
2132
|
-
* Unique identifier of the
|
|
2132
|
+
* Unique identifier of the driveItem that is the cover of the album.
|
|
2133
2133
|
*/
|
|
2134
2134
|
coverImageItemId?: string;
|
|
2135
2135
|
/**
|
|
@@ -2159,7 +2159,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
2159
2159
|
*/
|
|
2160
2160
|
azureTenantId?: string;
|
|
2161
2161
|
/**
|
|
2162
|
-
* Category of the alert (for example, credentialTheft, ransomware
|
|
2162
|
+
* Category of the alert (for example, credentialTheft, ransomware).
|
|
2163
2163
|
*/
|
|
2164
2164
|
category?: string;
|
|
2165
2165
|
/**
|
|
@@ -2191,11 +2191,11 @@ export interface Alert extends Entity, Parsable {
|
|
|
2191
2191
|
*/
|
|
2192
2192
|
detectionIds?: string[];
|
|
2193
2193
|
/**
|
|
2194
|
-
* 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.
|
|
2195
2195
|
*/
|
|
2196
2196
|
eventDateTime?: Date;
|
|
2197
2197
|
/**
|
|
2198
|
-
* 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.
|
|
2199
2199
|
*/
|
|
2200
2200
|
feedback?: AlertFeedback;
|
|
2201
2201
|
/**
|
|
@@ -2259,7 +2259,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
2259
2259
|
*/
|
|
2260
2260
|
severity?: AlertSeverity;
|
|
2261
2261
|
/**
|
|
2262
|
-
* 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.
|
|
2263
2263
|
*/
|
|
2264
2264
|
sourceMaterials?: string[];
|
|
2265
2265
|
/**
|
|
@@ -2267,7 +2267,7 @@ export interface Alert extends Entity, Parsable {
|
|
|
2267
2267
|
*/
|
|
2268
2268
|
status?: AlertStatus;
|
|
2269
2269
|
/**
|
|
2270
|
-
* 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).
|
|
2271
2271
|
*/
|
|
2272
2272
|
tags?: string[];
|
|
2273
2273
|
/**
|
|
@@ -3542,7 +3542,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3542
3542
|
*/
|
|
3543
3543
|
homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[];
|
|
3544
3544
|
/**
|
|
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://<
|
|
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).
|
|
3546
3546
|
*/
|
|
3547
3547
|
identifierUris?: string[];
|
|
3548
3548
|
/**
|
|
@@ -5339,6 +5339,82 @@ export interface AuthenticationCombinationConfigurationCollectionResponse extend
|
|
|
5339
5339
|
*/
|
|
5340
5340
|
value?: AuthenticationCombinationConfiguration[];
|
|
5341
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
|
+
}
|
|
5342
5418
|
export interface AuthenticationContextClassReference extends Entity, Parsable {
|
|
5343
5419
|
/**
|
|
5344
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.
|
|
@@ -5359,6 +5435,22 @@ export interface AuthenticationContextClassReferenceCollectionResponse extends B
|
|
|
5359
5435
|
*/
|
|
5360
5436
|
value?: AuthenticationContextClassReference[];
|
|
5361
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
|
+
}
|
|
5362
5454
|
export interface AuthenticationFlowsPolicy extends Entity, Parsable {
|
|
5363
5455
|
/**
|
|
5364
5456
|
* Inherited property. A description of the policy. Optional. Read-only.
|
|
@@ -5883,6 +5975,12 @@ export interface AzureADRegistrationPolicy extends AdditionalDataHolder, BackedM
|
|
|
5883
5975
|
*/
|
|
5884
5976
|
odataType?: string;
|
|
5885
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
|
+
}
|
|
5886
5984
|
export interface AzureCommunicationServicesUserConversationMember extends ConversationMember, Parsable {
|
|
5887
5985
|
/**
|
|
5888
5986
|
* Azure Communication Services ID of the user.
|
|
@@ -6153,6 +6251,22 @@ export interface BookingAppointment extends Entity, Parsable {
|
|
|
6153
6251
|
* The URL of the meeting to join anonymously.
|
|
6154
6252
|
*/
|
|
6155
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;
|
|
6156
6270
|
/**
|
|
6157
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.
|
|
6158
6272
|
*/
|
|
@@ -6694,6 +6808,10 @@ export interface BookingStaffMember extends BookingStaffMemberBase, Parsable {
|
|
|
6694
6808
|
* True indicates that a staff member will be notified via email when a booking assigned to them is created or changed.
|
|
6695
6809
|
*/
|
|
6696
6810
|
isEmailNotificationEnabled?: boolean;
|
|
6811
|
+
/**
|
|
6812
|
+
* The membershipStatus property
|
|
6813
|
+
*/
|
|
6814
|
+
membershipStatus?: BookingStaffMembershipStatus;
|
|
6697
6815
|
/**
|
|
6698
6816
|
* The role property
|
|
6699
6817
|
*/
|
|
@@ -6722,6 +6840,7 @@ export interface BookingStaffMemberBaseCollectionResponse extends BaseCollection
|
|
|
6722
6840
|
*/
|
|
6723
6841
|
value?: BookingStaffMemberBase[];
|
|
6724
6842
|
}
|
|
6843
|
+
export type BookingStaffMembershipStatus = (typeof BookingStaffMembershipStatusObject)[keyof typeof BookingStaffMembershipStatusObject];
|
|
6725
6844
|
export type BookingStaffRole = (typeof BookingStaffRoleObject)[keyof typeof BookingStaffRoleObject];
|
|
6726
6845
|
export type BookingType = (typeof BookingTypeObject)[keyof typeof BookingTypeObject];
|
|
6727
6846
|
/**
|
|
@@ -7185,7 +7304,7 @@ export interface Bundle extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
7185
7304
|
*/
|
|
7186
7305
|
additionalData?: Record<string, unknown>;
|
|
7187
7306
|
/**
|
|
7188
|
-
* If the bundle is an
|
|
7307
|
+
* If the bundle is an album, then the album property is included
|
|
7189
7308
|
*/
|
|
7190
7309
|
album?: Album;
|
|
7191
7310
|
/**
|
|
@@ -9636,7 +9755,7 @@ export interface ColumnDefinition extends Entity, Parsable {
|
|
|
9636
9755
|
*/
|
|
9637
9756
|
lookup?: LookupColumn;
|
|
9638
9757
|
/**
|
|
9639
|
-
* 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.
|
|
9640
9759
|
*/
|
|
9641
9760
|
name?: string;
|
|
9642
9761
|
/**
|
|
@@ -9819,6 +9938,62 @@ export interface CommunicationsUserIdentity extends Identity, Parsable {
|
|
|
9819
9938
|
*/
|
|
9820
9939
|
tenantId?: string;
|
|
9821
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
|
+
}
|
|
9822
9997
|
export interface Compliance extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9823
9998
|
/**
|
|
9824
9999
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -12546,6 +12721,30 @@ export declare function createAuthenticationCombinationConfigurationCollectionRe
|
|
|
12546
12721
|
* @returns {AuthenticationCombinationConfiguration}
|
|
12547
12722
|
*/
|
|
12548
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>);
|
|
12549
12748
|
/**
|
|
12550
12749
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12551
12750
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12558,6 +12757,18 @@ export declare function createAuthenticationContextClassReferenceCollectionRespo
|
|
|
12558
12757
|
* @returns {AuthenticationContextClassReference}
|
|
12559
12758
|
*/
|
|
12560
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>);
|
|
12561
12772
|
/**
|
|
12562
12773
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12563
12774
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12738,6 +12949,12 @@ export declare function createAzureAdPopTokenAuthenticationFromDiscriminatorValu
|
|
|
12738
12949
|
* @returns {AzureADRegistrationPolicy}
|
|
12739
12950
|
*/
|
|
12740
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>);
|
|
12741
12958
|
/**
|
|
12742
12959
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12743
12960
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13812,6 +14029,18 @@ export declare function createCommunicationsPhoneIdentityFromDiscriminatorValue(
|
|
|
13812
14029
|
* @returns {CommunicationsUserIdentity}
|
|
13813
14030
|
*/
|
|
13814
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>);
|
|
13815
14044
|
/**
|
|
13816
14045
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13817
14046
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14226,6 +14455,18 @@ export declare function createCrossTenantUserSyncInboundFromDiscriminatorValue(p
|
|
|
14226
14455
|
* @returns {CurrencyColumn}
|
|
14227
14456
|
*/
|
|
14228
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>);
|
|
14229
14470
|
/**
|
|
14230
14471
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14231
14472
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -14274,6 +14515,12 @@ export declare function createCustomExtensionDataFromDiscriminatorValue(parseNod
|
|
|
14274
14515
|
* @returns {CustomExtensionEndpointConfiguration}
|
|
14275
14516
|
*/
|
|
14276
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>);
|
|
14277
14524
|
/**
|
|
14278
14525
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
14279
14526
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16290,6 +16537,12 @@ export declare function createHorizontalSectionFromDiscriminatorValue(parseNode:
|
|
|
16290
16537
|
* @returns {HostSecurityState}
|
|
16291
16538
|
*/
|
|
16292
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>);
|
|
16293
16546
|
/**
|
|
16294
16547
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16295
16548
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18102,6 +18355,54 @@ export declare function createMobileThreatDefenseConnectorFromDiscriminatorValue
|
|
|
18102
18355
|
* @returns {ModifiedProperty}
|
|
18103
18356
|
*/
|
|
18104
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>);
|
|
18105
18406
|
/**
|
|
18106
18407
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18107
18408
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18474,6 +18775,36 @@ export declare function createOnPremisesExtensionAttributesFromDiscriminatorValu
|
|
|
18474
18775
|
* @returns {OnPremisesProvisioningError}
|
|
18475
18776
|
*/
|
|
18476
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>);
|
|
18477
18808
|
/**
|
|
18478
18809
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18479
18810
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19062,6 +19393,12 @@ export declare function createPolicyBaseFromDiscriminatorValue(parseNode: ParseN
|
|
|
19062
19393
|
* @returns {PolicyRoot}
|
|
19063
19394
|
*/
|
|
19064
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>);
|
|
19065
19402
|
/**
|
|
19066
19403
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19067
19404
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23985,6 +24322,10 @@ export interface CrossTenantAccessPolicy extends Parsable, PolicyBase {
|
|
|
23985
24322
|
* Defines partner-specific configurations for external Microsoft Entra organizations.
|
|
23986
24323
|
*/
|
|
23987
24324
|
partners?: CrossTenantAccessPolicyConfigurationPartner[];
|
|
24325
|
+
/**
|
|
24326
|
+
* Represents the base policy in the directory for multitenant organization settings.
|
|
24327
|
+
*/
|
|
24328
|
+
templates?: PolicyTemplate;
|
|
23988
24329
|
}
|
|
23989
24330
|
export interface CrossTenantAccessPolicyB2BSetting extends AdditionalDataHolder, BackedModel, Parsable {
|
|
23990
24331
|
/**
|
|
@@ -24079,6 +24420,10 @@ export interface CrossTenantAccessPolicyConfigurationPartner extends AdditionalD
|
|
|
24079
24420
|
* Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
|
|
24080
24421
|
*/
|
|
24081
24422
|
inboundTrust?: CrossTenantAccessPolicyInboundTrust;
|
|
24423
|
+
/**
|
|
24424
|
+
* Identifies whether a tenant is a member of a multitenant organization.
|
|
24425
|
+
*/
|
|
24426
|
+
isInMultiTenantOrganization?: boolean;
|
|
24082
24427
|
/**
|
|
24083
24428
|
* Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
|
|
24084
24429
|
*/
|
|
@@ -24232,6 +24577,14 @@ export interface CurrencyColumn extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
24232
24577
|
*/
|
|
24233
24578
|
odataType?: string;
|
|
24234
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
|
+
}
|
|
24235
24588
|
export interface CustomCalloutExtension extends Entity, Parsable {
|
|
24236
24589
|
/**
|
|
24237
24590
|
* Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow.
|
|
@@ -24336,6 +24689,10 @@ export interface CustomExtensionClientConfiguration extends AdditionalDataHolder
|
|
|
24336
24689
|
* Stores model information.
|
|
24337
24690
|
*/
|
|
24338
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;
|
|
24339
24696
|
/**
|
|
24340
24697
|
* The OdataType property
|
|
24341
24698
|
*/
|
|
@@ -24373,6 +24730,24 @@ export interface CustomExtensionEndpointConfiguration extends AdditionalDataHold
|
|
|
24373
24730
|
*/
|
|
24374
24731
|
odataType?: string;
|
|
24375
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
|
+
}
|
|
24376
24751
|
export interface CustomExtensionStageSetting extends Entity, Parsable {
|
|
24377
24752
|
/**
|
|
24378
24753
|
* Indicates the custom workflow extension that will be executed at this stage. Nullable. Supports $expand.
|
|
@@ -26225,6 +26600,26 @@ export declare function deserializeIntoAuthenticationCombinationConfiguration(au
|
|
|
26225
26600
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26226
26601
|
*/
|
|
26227
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>;
|
|
26228
26623
|
/**
|
|
26229
26624
|
* The deserialization information for the current model
|
|
26230
26625
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -26235,6 +26630,16 @@ export declare function deserializeIntoAuthenticationContextClassReference(authe
|
|
|
26235
26630
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26236
26631
|
*/
|
|
26237
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>;
|
|
26238
26643
|
/**
|
|
26239
26644
|
* The deserialization information for the current model
|
|
26240
26645
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -26380,6 +26785,11 @@ export declare function deserializeIntoAzureAdPopTokenAuthentication(azureAdPopT
|
|
|
26380
26785
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26381
26786
|
*/
|
|
26382
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>;
|
|
26383
26793
|
/**
|
|
26384
26794
|
* The deserialization information for the current model
|
|
26385
26795
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27275,6 +27685,16 @@ export declare function deserializeIntoCommunicationsPhoneIdentity(communication
|
|
|
27275
27685
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27276
27686
|
*/
|
|
27277
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>;
|
|
27278
27698
|
/**
|
|
27279
27699
|
* The deserialization information for the current model
|
|
27280
27700
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27620,6 +28040,16 @@ export declare function deserializeIntoCrossTenantUserSyncInbound(crossTenantUse
|
|
|
27620
28040
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27621
28041
|
*/
|
|
27622
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>;
|
|
27623
28053
|
/**
|
|
27624
28054
|
* The deserialization information for the current model
|
|
27625
28055
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27660,6 +28090,11 @@ export declare function deserializeIntoCustomExtensionData(customExtensionData?:
|
|
|
27660
28090
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27661
28091
|
*/
|
|
27662
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>;
|
|
27663
28098
|
/**
|
|
27664
28099
|
* The deserialization information for the current model
|
|
27665
28100
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29340,6 +29775,11 @@ export declare function deserializeIntoHorizontalSectionColumnCollectionResponse
|
|
|
29340
29775
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29341
29776
|
*/
|
|
29342
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>;
|
|
29343
29783
|
/**
|
|
29344
29784
|
* The deserialization information for the current model
|
|
29345
29785
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -30850,6 +31290,46 @@ export declare function deserializeIntoMobileThreatDefenseConnectorCollectionRes
|
|
|
30850
31290
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30851
31291
|
*/
|
|
30852
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>;
|
|
30853
31333
|
/**
|
|
30854
31334
|
* The deserialization information for the current model
|
|
30855
31335
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31160,6 +31640,31 @@ export declare function deserializeIntoOnPremisesExtensionAttributes(onPremisesE
|
|
|
31160
31640
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31161
31641
|
*/
|
|
31162
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>;
|
|
31163
31668
|
/**
|
|
31164
31669
|
* The deserialization information for the current model
|
|
31165
31670
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31650,6 +32155,11 @@ export declare function deserializeIntoPolicyBase(policyBase?: Partial<PolicyBas
|
|
|
31650
32155
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31651
32156
|
*/
|
|
31652
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>;
|
|
31653
32163
|
/**
|
|
31654
32164
|
* The deserialization information for the current model
|
|
31655
32165
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -38209,6 +38719,10 @@ export interface Directory extends Entity, Parsable {
|
|
|
38209
38719
|
* A container for on-premises directory synchronization functionalities that are available for the organization.
|
|
38210
38720
|
*/
|
|
38211
38721
|
onPremisesSynchronization?: OnPremisesDirectorySynchronization[];
|
|
38722
|
+
/**
|
|
38723
|
+
* The subscriptions property
|
|
38724
|
+
*/
|
|
38725
|
+
subscriptions?: CompanySubscription[];
|
|
38212
38726
|
}
|
|
38213
38727
|
export interface DirectoryAudit extends Entity, Parsable {
|
|
38214
38728
|
/**
|
|
@@ -38518,7 +39032,7 @@ export interface DocumentSetVersionItem extends AdditionalDataHolder, BackedMode
|
|
|
38518
39032
|
}
|
|
38519
39033
|
export interface Domain extends Entity, Parsable {
|
|
38520
39034
|
/**
|
|
38521
|
-
* 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.
|
|
38522
39036
|
*/
|
|
38523
39037
|
authenticationType?: string;
|
|
38524
39038
|
/**
|
|
@@ -38526,7 +39040,7 @@ export interface Domain extends Entity, Parsable {
|
|
|
38526
39040
|
*/
|
|
38527
39041
|
availabilityStatus?: string;
|
|
38528
39042
|
/**
|
|
38529
|
-
* 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.
|
|
38530
39044
|
*/
|
|
38531
39045
|
domainNameReferences?: DirectoryObject[];
|
|
38532
39046
|
/**
|
|
@@ -38534,15 +39048,15 @@ export interface Domain extends Entity, Parsable {
|
|
|
38534
39048
|
*/
|
|
38535
39049
|
federationConfiguration?: InternalDomainFederation[];
|
|
38536
39050
|
/**
|
|
38537
|
-
* 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
|
|
38538
39052
|
*/
|
|
38539
39053
|
isAdminManaged?: boolean;
|
|
38540
39054
|
/**
|
|
38541
|
-
* 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
|
|
38542
39056
|
*/
|
|
38543
39057
|
isDefault?: boolean;
|
|
38544
39058
|
/**
|
|
38545
|
-
* 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
|
|
38546
39060
|
*/
|
|
38547
39061
|
isInitial?: boolean;
|
|
38548
39062
|
/**
|
|
@@ -38562,11 +39076,11 @@ export interface Domain extends Entity, Parsable {
|
|
|
38562
39076
|
*/
|
|
38563
39077
|
model?: string;
|
|
38564
39078
|
/**
|
|
38565
|
-
* 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.
|
|
38566
39080
|
*/
|
|
38567
39081
|
passwordNotificationWindowInDays?: number;
|
|
38568
39082
|
/**
|
|
38569
|
-
* 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.
|
|
38570
39084
|
*/
|
|
38571
39085
|
passwordValidityPeriodInDays?: number;
|
|
38572
39086
|
/**
|
|
@@ -38578,7 +39092,7 @@ export interface Domain extends Entity, Parsable {
|
|
|
38578
39092
|
*/
|
|
38579
39093
|
state?: DomainState;
|
|
38580
39094
|
/**
|
|
38581
|
-
* 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.
|
|
38582
39096
|
*/
|
|
38583
39097
|
supportedServices?: string[];
|
|
38584
39098
|
/**
|
|
@@ -38610,7 +39124,7 @@ export interface DomainDnsMxRecord extends DomainDnsRecord, Parsable {
|
|
|
38610
39124
|
}
|
|
38611
39125
|
export interface DomainDnsRecord extends Entity, Parsable {
|
|
38612
39126
|
/**
|
|
38613
|
-
* 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.
|
|
38614
39128
|
*/
|
|
38615
39129
|
isOptional?: boolean;
|
|
38616
39130
|
/**
|
|
@@ -38702,17 +39216,17 @@ export interface DomainState extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
38702
39216
|
*/
|
|
38703
39217
|
odataType?: string;
|
|
38704
39218
|
/**
|
|
38705
|
-
* Type of asynchronous operation. The values can be ForceDelete or Verification
|
|
39219
|
+
* Type of asynchronous operation. The values can be ForceDelete or Verification.
|
|
38706
39220
|
*/
|
|
38707
39221
|
operation?: string;
|
|
38708
39222
|
/**
|
|
38709
|
-
* 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.
|
|
38710
39224
|
*/
|
|
38711
39225
|
status?: string;
|
|
38712
39226
|
}
|
|
38713
39227
|
export interface Drive extends BaseItem, Parsable {
|
|
38714
39228
|
/**
|
|
38715
|
-
* Collection of
|
|
39229
|
+
* Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive.
|
|
38716
39230
|
*/
|
|
38717
39231
|
bundles?: DriveItem[];
|
|
38718
39232
|
/**
|
|
@@ -38876,11 +39390,11 @@ export interface DriveItem extends BaseItem, Parsable {
|
|
|
38876
39390
|
*/
|
|
38877
39391
|
subscriptions?: Subscription[];
|
|
38878
39392
|
/**
|
|
38879
|
-
* Collection of
|
|
39393
|
+
* Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable.
|
|
38880
39394
|
*/
|
|
38881
39395
|
thumbnails?: ThumbnailSet[];
|
|
38882
39396
|
/**
|
|
38883
|
-
* 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.
|
|
38884
39398
|
*/
|
|
38885
39399
|
versions?: DriveItemVersion[];
|
|
38886
39400
|
/**
|
|
@@ -39963,6 +40477,14 @@ export interface EducationStudent extends AdditionalDataHolder, BackedModel, Par
|
|
|
39963
40477
|
studentNumber?: string;
|
|
39964
40478
|
}
|
|
39965
40479
|
export interface EducationSubmission extends Entity, Parsable {
|
|
40480
|
+
/**
|
|
40481
|
+
* The excusedBy property
|
|
40482
|
+
*/
|
|
40483
|
+
excusedBy?: IdentitySet;
|
|
40484
|
+
/**
|
|
40485
|
+
* The excusedDateTime property
|
|
40486
|
+
*/
|
|
40487
|
+
excusedDateTime?: Date;
|
|
39966
40488
|
/**
|
|
39967
40489
|
* The outcomes property
|
|
39968
40490
|
*/
|
|
@@ -41208,7 +41730,7 @@ export interface ExtensionSchemaProperty extends AdditionalDataHolder, BackedMod
|
|
|
41208
41730
|
*/
|
|
41209
41731
|
odataType?: string;
|
|
41210
41732
|
/**
|
|
41211
|
-
* The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer or String.
|
|
41733
|
+
* 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.
|
|
41212
41734
|
*/
|
|
41213
41735
|
type?: string;
|
|
41214
41736
|
}
|
|
@@ -41270,7 +41792,7 @@ export interface ExtractSensitivityLabelsResult extends AdditionalDataHolder, Ba
|
|
|
41270
41792
|
}
|
|
41271
41793
|
export interface FeatureRolloutPolicy extends Entity, Parsable {
|
|
41272
41794
|
/**
|
|
41273
|
-
* Nullable. Specifies a list of
|
|
41795
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
41274
41796
|
*/
|
|
41275
41797
|
appliesTo?: DirectoryObject[];
|
|
41276
41798
|
/**
|
|
@@ -42405,6 +42927,12 @@ export interface HostSecurityState extends AdditionalDataHolder, BackedModel, Pa
|
|
|
42405
42927
|
*/
|
|
42406
42928
|
riskScore?: string;
|
|
42407
42929
|
}
|
|
42930
|
+
export interface HttpRequestEndpoint extends CustomExtensionEndpointConfiguration, Parsable {
|
|
42931
|
+
/**
|
|
42932
|
+
* The HTTP endpoint that a custom extension calls.
|
|
42933
|
+
*/
|
|
42934
|
+
targetUrl?: string;
|
|
42935
|
+
}
|
|
42408
42936
|
export interface HyperlinkOrPictureColumn extends AdditionalDataHolder, BackedModel, Parsable {
|
|
42409
42937
|
/**
|
|
42410
42938
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -42472,6 +43000,10 @@ export interface IdentityContainer extends Entity, Parsable {
|
|
|
42472
43000
|
* Represents entry point for API connectors.
|
|
42473
43001
|
*/
|
|
42474
43002
|
apiConnectors?: IdentityApiConnector[];
|
|
43003
|
+
/**
|
|
43004
|
+
* Represents listeners for custom authentication extension events in Azure AD for workforce and customers.
|
|
43005
|
+
*/
|
|
43006
|
+
authenticationEventListeners?: AuthenticationEventListener[];
|
|
42475
43007
|
/**
|
|
42476
43008
|
* Represents entry point for B2X/self-service sign-up identity userflows.
|
|
42477
43009
|
*/
|
|
@@ -42480,6 +43012,10 @@ export interface IdentityContainer extends Entity, Parsable {
|
|
|
42480
43012
|
* the entry point for the Conditional Access (CA) object model.
|
|
42481
43013
|
*/
|
|
42482
43014
|
conditionalAccess?: ConditionalAccessRoot;
|
|
43015
|
+
/**
|
|
43016
|
+
* Represents custom extensions to authentication flows in Azure AD for workforce and customers.
|
|
43017
|
+
*/
|
|
43018
|
+
customAuthenticationExtensions?: CustomAuthenticationExtension[];
|
|
42483
43019
|
/**
|
|
42484
43020
|
* The identityProviders property
|
|
42485
43021
|
*/
|
|
@@ -44917,11 +45453,11 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44917
45453
|
*/
|
|
44918
45454
|
backingStoreEnabled?: boolean;
|
|
44919
45455
|
/**
|
|
44920
|
-
* Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a
|
|
45456
|
+
* Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only.
|
|
44921
45457
|
*/
|
|
44922
45458
|
driveId?: string;
|
|
44923
45459
|
/**
|
|
44924
|
-
* Identifies the type of drive. Only returned if the item is located in a
|
|
45460
|
+
* Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values.
|
|
44925
45461
|
*/
|
|
44926
45462
|
driveType?: string;
|
|
44927
45463
|
/**
|
|
@@ -44941,7 +45477,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44941
45477
|
*/
|
|
44942
45478
|
path?: string;
|
|
44943
45479
|
/**
|
|
44944
|
-
* A unique identifier for a shared resource that can be accessed via the
|
|
45480
|
+
* A unique identifier for a shared resource that can be accessed via the Shares API.
|
|
44945
45481
|
*/
|
|
44946
45482
|
shareId?: string;
|
|
44947
45483
|
/**
|
|
@@ -44949,7 +45485,7 @@ export interface ItemReference extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
44949
45485
|
*/
|
|
44950
45486
|
sharepointIds?: SharepointIds;
|
|
44951
45487
|
/**
|
|
44952
|
-
* 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
|
|
45488
|
+
* 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.
|
|
44953
45489
|
*/
|
|
44954
45490
|
siteId?: string;
|
|
44955
45491
|
}
|
|
@@ -45290,7 +45826,7 @@ export interface LearningContent extends Entity, Parsable {
|
|
|
45290
45826
|
*/
|
|
45291
45827
|
lastModifiedDateTime?: Date;
|
|
45292
45828
|
/**
|
|
45293
|
-
* The level
|
|
45829
|
+
* The difficulty level of the learning content. Possible values are: Beginner, Intermediate, Advanced, unknownFutureValue. Optional.
|
|
45294
45830
|
*/
|
|
45295
45831
|
level?: Level;
|
|
45296
45832
|
/**
|
|
@@ -45625,7 +46161,7 @@ export interface ListItem extends BaseItem, Parsable {
|
|
|
45625
46161
|
*/
|
|
45626
46162
|
documentSetVersions?: DocumentSetVersion[];
|
|
45627
46163
|
/**
|
|
45628
|
-
* For document libraries, the driveItem relationship exposes the listItem as a
|
|
46164
|
+
* For document libraries, the driveItem relationship exposes the listItem as a driveItem
|
|
45629
46165
|
*/
|
|
45630
46166
|
driveItem?: DriveItem;
|
|
45631
46167
|
/**
|
|
@@ -49421,6 +49957,190 @@ export interface ModifiedProperty extends AdditionalDataHolder, BackedModel, Par
|
|
|
49421
49957
|
oldValue?: string;
|
|
49422
49958
|
}
|
|
49423
49959
|
export type MultiFactorAuthConfiguration = (typeof MultiFactorAuthConfigurationObject)[keyof typeof MultiFactorAuthConfigurationObject];
|
|
49960
|
+
export interface MultiTenantOrganization extends Entity, Parsable {
|
|
49961
|
+
/**
|
|
49962
|
+
* Date when multitenant organization was created. Read-only.
|
|
49963
|
+
*/
|
|
49964
|
+
createdDateTime?: Date;
|
|
49965
|
+
/**
|
|
49966
|
+
* Description of the multitenant organization.
|
|
49967
|
+
*/
|
|
49968
|
+
description?: string;
|
|
49969
|
+
/**
|
|
49970
|
+
* Display name of the multitenant organization.
|
|
49971
|
+
*/
|
|
49972
|
+
displayName?: string;
|
|
49973
|
+
/**
|
|
49974
|
+
* Defines the status of a tenant joining a multitenant organization.
|
|
49975
|
+
*/
|
|
49976
|
+
joinRequest?: MultiTenantOrganizationJoinRequestRecord;
|
|
49977
|
+
/**
|
|
49978
|
+
* 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.
|
|
49979
|
+
*/
|
|
49980
|
+
state?: MultiTenantOrganizationState;
|
|
49981
|
+
/**
|
|
49982
|
+
* Defines tenants added to a multitenant organization.
|
|
49983
|
+
*/
|
|
49984
|
+
tenants?: MultiTenantOrganizationMember[];
|
|
49985
|
+
}
|
|
49986
|
+
export interface MultiTenantOrganizationIdentitySyncPolicyTemplate extends Entity, Parsable {
|
|
49987
|
+
/**
|
|
49988
|
+
* The templateApplicationLevel property
|
|
49989
|
+
*/
|
|
49990
|
+
templateApplicationLevel?: TemplateApplicationLevel[];
|
|
49991
|
+
/**
|
|
49992
|
+
* Defines whether users can be synchronized from the partner tenant.
|
|
49993
|
+
*/
|
|
49994
|
+
userSyncInbound?: CrossTenantUserSyncInbound;
|
|
49995
|
+
}
|
|
49996
|
+
export interface MultiTenantOrganizationJoinRequestRecord extends Entity, Parsable {
|
|
49997
|
+
/**
|
|
49998
|
+
* 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.
|
|
49999
|
+
*/
|
|
50000
|
+
addedByTenantId?: string;
|
|
50001
|
+
/**
|
|
50002
|
+
* 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.
|
|
50003
|
+
*/
|
|
50004
|
+
memberState?: MultiTenantOrganizationMemberState;
|
|
50005
|
+
/**
|
|
50006
|
+
* 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.
|
|
50007
|
+
*/
|
|
50008
|
+
role?: MultiTenantOrganizationMemberRole;
|
|
50009
|
+
/**
|
|
50010
|
+
* Details of the processing status for a tenant joining a multitenant organization. Read-only.
|
|
50011
|
+
*/
|
|
50012
|
+
transitionDetails?: MultiTenantOrganizationJoinRequestTransitionDetails;
|
|
50013
|
+
}
|
|
50014
|
+
export interface MultiTenantOrganizationJoinRequestTransitionDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50015
|
+
/**
|
|
50016
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
50017
|
+
*/
|
|
50018
|
+
additionalData?: Record<string, unknown>;
|
|
50019
|
+
/**
|
|
50020
|
+
* Stores model information.
|
|
50021
|
+
*/
|
|
50022
|
+
backingStoreEnabled?: boolean;
|
|
50023
|
+
/**
|
|
50024
|
+
* State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
|
|
50025
|
+
*/
|
|
50026
|
+
desiredMemberState?: MultiTenantOrganizationMemberState;
|
|
50027
|
+
/**
|
|
50028
|
+
* Details that explain the processing status if any. Read-only.
|
|
50029
|
+
*/
|
|
50030
|
+
details?: string;
|
|
50031
|
+
/**
|
|
50032
|
+
* The OdataType property
|
|
50033
|
+
*/
|
|
50034
|
+
odataType?: string;
|
|
50035
|
+
/**
|
|
50036
|
+
* Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
|
|
50037
|
+
*/
|
|
50038
|
+
status?: MultiTenantOrganizationMemberProcessingStatus;
|
|
50039
|
+
}
|
|
50040
|
+
export interface MultiTenantOrganizationMember extends DirectoryObject, Parsable {
|
|
50041
|
+
/**
|
|
50042
|
+
* Tenant ID of the tenant that added the tenant to the multitenant organization. Read-only.
|
|
50043
|
+
*/
|
|
50044
|
+
addedByTenantId?: Guid;
|
|
50045
|
+
/**
|
|
50046
|
+
* Date and time when the tenant was added to the multitenant organization. Read-only.
|
|
50047
|
+
*/
|
|
50048
|
+
addedDateTime?: Date;
|
|
50049
|
+
/**
|
|
50050
|
+
* Display name of the tenant added to the multitenant organization.
|
|
50051
|
+
*/
|
|
50052
|
+
displayName?: string;
|
|
50053
|
+
/**
|
|
50054
|
+
* Date and time when the tenant joined the multitenant organization. Read-only.
|
|
50055
|
+
*/
|
|
50056
|
+
joinedDateTime?: Date;
|
|
50057
|
+
/**
|
|
50058
|
+
* 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.
|
|
50059
|
+
*/
|
|
50060
|
+
role?: MultiTenantOrganizationMemberRole;
|
|
50061
|
+
/**
|
|
50062
|
+
* 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.
|
|
50063
|
+
*/
|
|
50064
|
+
state?: MultiTenantOrganizationMemberState;
|
|
50065
|
+
/**
|
|
50066
|
+
* Tenant ID of the Microsoft Entra tenant added to the multitenant organization. Set at the time tenant is added.Supports $filter. Key.
|
|
50067
|
+
*/
|
|
50068
|
+
tenantId?: string;
|
|
50069
|
+
/**
|
|
50070
|
+
* Details of the processing status for a tenant in a multitenant organization. Read-only. Nullable.
|
|
50071
|
+
*/
|
|
50072
|
+
transitionDetails?: MultiTenantOrganizationMemberTransitionDetails;
|
|
50073
|
+
}
|
|
50074
|
+
export interface MultiTenantOrganizationMemberCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
50075
|
+
/**
|
|
50076
|
+
* The value property
|
|
50077
|
+
*/
|
|
50078
|
+
value?: MultiTenantOrganizationMember[];
|
|
50079
|
+
}
|
|
50080
|
+
export type MultiTenantOrganizationMemberProcessingStatus = (typeof MultiTenantOrganizationMemberProcessingStatusObject)[keyof typeof MultiTenantOrganizationMemberProcessingStatusObject];
|
|
50081
|
+
export type MultiTenantOrganizationMemberRole = (typeof MultiTenantOrganizationMemberRoleObject)[keyof typeof MultiTenantOrganizationMemberRoleObject];
|
|
50082
|
+
export type MultiTenantOrganizationMemberState = (typeof MultiTenantOrganizationMemberStateObject)[keyof typeof MultiTenantOrganizationMemberStateObject];
|
|
50083
|
+
export interface MultiTenantOrganizationMemberTransitionDetails extends AdditionalDataHolder, BackedModel, Parsable {
|
|
50084
|
+
/**
|
|
50085
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
50086
|
+
*/
|
|
50087
|
+
additionalData?: Record<string, unknown>;
|
|
50088
|
+
/**
|
|
50089
|
+
* Stores model information.
|
|
50090
|
+
*/
|
|
50091
|
+
backingStoreEnabled?: boolean;
|
|
50092
|
+
/**
|
|
50093
|
+
* Role of the tenant in the multitenant organization. The possible values are: owner, member, unknownFutureValue.
|
|
50094
|
+
*/
|
|
50095
|
+
desiredRole?: MultiTenantOrganizationMemberRole;
|
|
50096
|
+
/**
|
|
50097
|
+
* State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
|
|
50098
|
+
*/
|
|
50099
|
+
desiredState?: MultiTenantOrganizationMemberState;
|
|
50100
|
+
/**
|
|
50101
|
+
* Details that explain the processing status if any. Read-only.
|
|
50102
|
+
*/
|
|
50103
|
+
details?: string;
|
|
50104
|
+
/**
|
|
50105
|
+
* The OdataType property
|
|
50106
|
+
*/
|
|
50107
|
+
odataType?: string;
|
|
50108
|
+
/**
|
|
50109
|
+
* Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
|
|
50110
|
+
*/
|
|
50111
|
+
status?: MultiTenantOrganizationMemberProcessingStatus;
|
|
50112
|
+
}
|
|
50113
|
+
export interface MultiTenantOrganizationPartnerConfigurationTemplate extends Entity, Parsable {
|
|
50114
|
+
/**
|
|
50115
|
+
* 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.
|
|
50116
|
+
*/
|
|
50117
|
+
automaticUserConsentSettings?: InboundOutboundPolicyConfiguration;
|
|
50118
|
+
/**
|
|
50119
|
+
* Defines your partner-specific configuration for users from other organizations accessing your resources via Microsoft Entra B2B collaboration.
|
|
50120
|
+
*/
|
|
50121
|
+
b2bCollaborationInbound?: 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 collaboration.
|
|
50124
|
+
*/
|
|
50125
|
+
b2bCollaborationOutbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50126
|
+
/**
|
|
50127
|
+
* Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
|
|
50128
|
+
*/
|
|
50129
|
+
b2bDirectConnectInbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50130
|
+
/**
|
|
50131
|
+
* Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B direct connect.
|
|
50132
|
+
*/
|
|
50133
|
+
b2bDirectConnectOutbound?: CrossTenantAccessPolicyB2BSetting;
|
|
50134
|
+
/**
|
|
50135
|
+
* Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
|
|
50136
|
+
*/
|
|
50137
|
+
inboundTrust?: CrossTenantAccessPolicyInboundTrust;
|
|
50138
|
+
/**
|
|
50139
|
+
* The templateApplicationLevel property
|
|
50140
|
+
*/
|
|
50141
|
+
templateApplicationLevel?: TemplateApplicationLevel[];
|
|
50142
|
+
}
|
|
50143
|
+
export type MultiTenantOrganizationState = (typeof MultiTenantOrganizationStateObject)[keyof typeof MultiTenantOrganizationStateObject];
|
|
49424
50144
|
export interface MultiValueLegacyExtendedProperty extends Entity, Parsable {
|
|
49425
50145
|
/**
|
|
49426
50146
|
* A collection of property values.
|
|
@@ -50765,6 +51485,60 @@ export interface OnPremisesProvisioningError extends AdditionalDataHolder, Backe
|
|
|
50765
51485
|
*/
|
|
50766
51486
|
value?: string;
|
|
50767
51487
|
}
|
|
51488
|
+
export interface OnTokenIssuanceStartCustomExtension extends CustomAuthenticationExtension, Parsable {
|
|
51489
|
+
/**
|
|
51490
|
+
* 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.
|
|
51491
|
+
*/
|
|
51492
|
+
claimsForTokenConfiguration?: OnTokenIssuanceStartReturnClaim[];
|
|
51493
|
+
}
|
|
51494
|
+
export interface OnTokenIssuanceStartCustomExtensionHandler extends OnTokenIssuanceStartHandler, Parsable {
|
|
51495
|
+
/**
|
|
51496
|
+
* The configuration property
|
|
51497
|
+
*/
|
|
51498
|
+
configuration?: CustomExtensionOverwriteConfiguration;
|
|
51499
|
+
/**
|
|
51500
|
+
* The customExtension property
|
|
51501
|
+
*/
|
|
51502
|
+
customExtension?: OnTokenIssuanceStartCustomExtension;
|
|
51503
|
+
}
|
|
51504
|
+
export interface OnTokenIssuanceStartHandler extends AdditionalDataHolder, BackedModel, Parsable {
|
|
51505
|
+
/**
|
|
51506
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
51507
|
+
*/
|
|
51508
|
+
additionalData?: Record<string, unknown>;
|
|
51509
|
+
/**
|
|
51510
|
+
* Stores model information.
|
|
51511
|
+
*/
|
|
51512
|
+
backingStoreEnabled?: boolean;
|
|
51513
|
+
/**
|
|
51514
|
+
* The OdataType property
|
|
51515
|
+
*/
|
|
51516
|
+
odataType?: string;
|
|
51517
|
+
}
|
|
51518
|
+
export interface OnTokenIssuanceStartListener extends AuthenticationEventListener, Parsable {
|
|
51519
|
+
/**
|
|
51520
|
+
* The handler to invoke when conditions are met for this onTokenIssuanceStartListener.
|
|
51521
|
+
*/
|
|
51522
|
+
handler?: OnTokenIssuanceStartHandler;
|
|
51523
|
+
}
|
|
51524
|
+
export interface OnTokenIssuanceStartReturnClaim extends AdditionalDataHolder, BackedModel, Parsable {
|
|
51525
|
+
/**
|
|
51526
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
51527
|
+
*/
|
|
51528
|
+
additionalData?: Record<string, unknown>;
|
|
51529
|
+
/**
|
|
51530
|
+
* Stores model information.
|
|
51531
|
+
*/
|
|
51532
|
+
backingStoreEnabled?: boolean;
|
|
51533
|
+
/**
|
|
51534
|
+
* The identifier of the claim returned by an API that is to be add to a token being issued.
|
|
51535
|
+
*/
|
|
51536
|
+
claimIdInApiResponse?: string;
|
|
51537
|
+
/**
|
|
51538
|
+
* The OdataType property
|
|
51539
|
+
*/
|
|
51540
|
+
odataType?: string;
|
|
51541
|
+
}
|
|
50768
51542
|
export interface OpenShift extends ChangeTrackedEntity, Parsable {
|
|
50769
51543
|
/**
|
|
50770
51544
|
* An unpublished open shift.
|
|
@@ -52012,11 +52786,11 @@ export interface PermissionGrantConditionSetCollectionResponse extends BaseColle
|
|
|
52012
52786
|
}
|
|
52013
52787
|
export interface PermissionGrantPolicy extends Parsable, PolicyBase {
|
|
52014
52788
|
/**
|
|
52015
|
-
* Condition sets
|
|
52789
|
+
* Condition sets that are excluded in this permission grant policy. Automatically expanded on GET.
|
|
52016
52790
|
*/
|
|
52017
52791
|
excludes?: PermissionGrantConditionSet[];
|
|
52018
52792
|
/**
|
|
52019
|
-
* Condition sets
|
|
52793
|
+
* Condition sets that are included in this permission grant policy. Automatically expanded on GET.
|
|
52020
52794
|
*/
|
|
52021
52795
|
includes?: PermissionGrantConditionSet[];
|
|
52022
52796
|
}
|
|
@@ -53032,6 +53806,16 @@ export interface PolicyRoot extends Entity, Parsable {
|
|
|
53032
53806
|
*/
|
|
53033
53807
|
tokenLifetimePolicies?: TokenLifetimePolicy[];
|
|
53034
53808
|
}
|
|
53809
|
+
export interface PolicyTemplate extends Entity, Parsable {
|
|
53810
|
+
/**
|
|
53811
|
+
* Defines an optional cross-tenant access policy template with user synchronization settings for a multitenant organization.
|
|
53812
|
+
*/
|
|
53813
|
+
multiTenantOrganizationIdentitySynchronization?: MultiTenantOrganizationIdentitySyncPolicyTemplate;
|
|
53814
|
+
/**
|
|
53815
|
+
* Defines an optional cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
53816
|
+
*/
|
|
53817
|
+
multiTenantOrganizationPartnerConfiguration?: MultiTenantOrganizationPartnerConfigurationTemplate;
|
|
53818
|
+
}
|
|
53035
53819
|
export interface PositiveReinforcementNotification extends BaseEndUserNotification, Parsable {
|
|
53036
53820
|
/**
|
|
53037
53821
|
* Delivery preference. Possible values are: unknown, deliverImmedietly, deliverAfterCampaignEnd, unknownFutureValue.
|
|
@@ -56461,7 +57245,7 @@ export interface RiskDetection extends Entity, Parsable {
|
|
|
56461
57245
|
*/
|
|
56462
57246
|
riskDetail?: RiskDetail;
|
|
56463
57247
|
/**
|
|
56464
|
-
* 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.
|
|
57248
|
+
* 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.
|
|
56465
57249
|
*/
|
|
56466
57250
|
riskEventType?: string;
|
|
56467
57251
|
/**
|
|
@@ -59265,6 +60049,26 @@ export declare function serializeAuthenticationCombinationConfiguration(writer:
|
|
|
59265
60049
|
* @param writer Serialization writer to use to serialize this model
|
|
59266
60050
|
*/
|
|
59267
60051
|
export declare function serializeAuthenticationCombinationConfigurationCollectionResponse(writer: SerializationWriter, authenticationCombinationConfigurationCollectionResponse?: Partial<AuthenticationCombinationConfigurationCollectionResponse> | undefined): void;
|
|
60052
|
+
/**
|
|
60053
|
+
* Serializes information the current object
|
|
60054
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60055
|
+
*/
|
|
60056
|
+
export declare function serializeAuthenticationConditionApplication(writer: SerializationWriter, authenticationConditionApplication?: Partial<AuthenticationConditionApplication> | undefined): void;
|
|
60057
|
+
/**
|
|
60058
|
+
* Serializes information the current object
|
|
60059
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60060
|
+
*/
|
|
60061
|
+
export declare function serializeAuthenticationConditions(writer: SerializationWriter, authenticationConditions?: Partial<AuthenticationConditions> | undefined): void;
|
|
60062
|
+
/**
|
|
60063
|
+
* Serializes information the current object
|
|
60064
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60065
|
+
*/
|
|
60066
|
+
export declare function serializeAuthenticationConditionsApplications(writer: SerializationWriter, authenticationConditionsApplications?: Partial<AuthenticationConditionsApplications> | undefined): void;
|
|
60067
|
+
/**
|
|
60068
|
+
* Serializes information the current object
|
|
60069
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60070
|
+
*/
|
|
60071
|
+
export declare function serializeAuthenticationConfigurationValidation(writer: SerializationWriter, authenticationConfigurationValidation?: Partial<AuthenticationConfigurationValidation> | undefined): void;
|
|
59268
60072
|
/**
|
|
59269
60073
|
* Serializes information the current object
|
|
59270
60074
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -59275,6 +60079,16 @@ export declare function serializeAuthenticationContextClassReference(writer: Ser
|
|
|
59275
60079
|
* @param writer Serialization writer to use to serialize this model
|
|
59276
60080
|
*/
|
|
59277
60081
|
export declare function serializeAuthenticationContextClassReferenceCollectionResponse(writer: SerializationWriter, authenticationContextClassReferenceCollectionResponse?: Partial<AuthenticationContextClassReferenceCollectionResponse> | undefined): void;
|
|
60082
|
+
/**
|
|
60083
|
+
* Serializes information the current object
|
|
60084
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60085
|
+
*/
|
|
60086
|
+
export declare function serializeAuthenticationEventListener(writer: SerializationWriter, authenticationEventListener?: Partial<AuthenticationEventListener> | undefined): void;
|
|
60087
|
+
/**
|
|
60088
|
+
* Serializes information the current object
|
|
60089
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60090
|
+
*/
|
|
60091
|
+
export declare function serializeAuthenticationEventListenerCollectionResponse(writer: SerializationWriter, authenticationEventListenerCollectionResponse?: Partial<AuthenticationEventListenerCollectionResponse> | undefined): void;
|
|
59278
60092
|
/**
|
|
59279
60093
|
* Serializes information the current object
|
|
59280
60094
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -59420,6 +60234,11 @@ export declare function serializeAzureAdPopTokenAuthentication(writer: Serializa
|
|
|
59420
60234
|
* @param writer Serialization writer to use to serialize this model
|
|
59421
60235
|
*/
|
|
59422
60236
|
export declare function serializeAzureADRegistrationPolicy(writer: SerializationWriter, azureADRegistrationPolicy?: Partial<AzureADRegistrationPolicy> | undefined): void;
|
|
60237
|
+
/**
|
|
60238
|
+
* Serializes information the current object
|
|
60239
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60240
|
+
*/
|
|
60241
|
+
export declare function serializeAzureAdTokenAuthentication(writer: SerializationWriter, azureAdTokenAuthentication?: Partial<AzureAdTokenAuthentication> | undefined): void;
|
|
59423
60242
|
/**
|
|
59424
60243
|
* Serializes information the current object
|
|
59425
60244
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60315,6 +61134,16 @@ export declare function serializeCommunicationsPhoneIdentity(writer: Serializati
|
|
|
60315
61134
|
* @param writer Serialization writer to use to serialize this model
|
|
60316
61135
|
*/
|
|
60317
61136
|
export declare function serializeCommunicationsUserIdentity(writer: SerializationWriter, communicationsUserIdentity?: Partial<CommunicationsUserIdentity> | undefined): void;
|
|
61137
|
+
/**
|
|
61138
|
+
* Serializes information the current object
|
|
61139
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61140
|
+
*/
|
|
61141
|
+
export declare function serializeCompanySubscription(writer: SerializationWriter, companySubscription?: Partial<CompanySubscription> | undefined): void;
|
|
61142
|
+
/**
|
|
61143
|
+
* Serializes information the current object
|
|
61144
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61145
|
+
*/
|
|
61146
|
+
export declare function serializeCompanySubscriptionCollectionResponse(writer: SerializationWriter, companySubscriptionCollectionResponse?: Partial<CompanySubscriptionCollectionResponse> | undefined): void;
|
|
60318
61147
|
/**
|
|
60319
61148
|
* Serializes information the current object
|
|
60320
61149
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60660,6 +61489,16 @@ export declare function serializeCrossTenantUserSyncInbound(writer: Serializatio
|
|
|
60660
61489
|
* @param writer Serialization writer to use to serialize this model
|
|
60661
61490
|
*/
|
|
60662
61491
|
export declare function serializeCurrencyColumn(writer: SerializationWriter, currencyColumn?: Partial<CurrencyColumn> | undefined): void;
|
|
61492
|
+
/**
|
|
61493
|
+
* Serializes information the current object
|
|
61494
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61495
|
+
*/
|
|
61496
|
+
export declare function serializeCustomAuthenticationExtension(writer: SerializationWriter, customAuthenticationExtension?: Partial<CustomAuthenticationExtension> | undefined): void;
|
|
61497
|
+
/**
|
|
61498
|
+
* Serializes information the current object
|
|
61499
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61500
|
+
*/
|
|
61501
|
+
export declare function serializeCustomAuthenticationExtensionCollectionResponse(writer: SerializationWriter, customAuthenticationExtensionCollectionResponse?: Partial<CustomAuthenticationExtensionCollectionResponse> | undefined): void;
|
|
60663
61502
|
/**
|
|
60664
61503
|
* Serializes information the current object
|
|
60665
61504
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60700,6 +61539,11 @@ export declare function serializeCustomExtensionData(writer: SerializationWriter
|
|
|
60700
61539
|
* @param writer Serialization writer to use to serialize this model
|
|
60701
61540
|
*/
|
|
60702
61541
|
export declare function serializeCustomExtensionEndpointConfiguration(writer: SerializationWriter, customExtensionEndpointConfiguration?: Partial<CustomExtensionEndpointConfiguration> | undefined): void;
|
|
61542
|
+
/**
|
|
61543
|
+
* Serializes information the current object
|
|
61544
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61545
|
+
*/
|
|
61546
|
+
export declare function serializeCustomExtensionOverwriteConfiguration(writer: SerializationWriter, customExtensionOverwriteConfiguration?: Partial<CustomExtensionOverwriteConfiguration> | undefined): void;
|
|
60703
61547
|
/**
|
|
60704
61548
|
* Serializes information the current object
|
|
60705
61549
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -62380,6 +63224,11 @@ export declare function serializeHorizontalSectionColumnCollectionResponse(write
|
|
|
62380
63224
|
* @param writer Serialization writer to use to serialize this model
|
|
62381
63225
|
*/
|
|
62382
63226
|
export declare function serializeHostSecurityState(writer: SerializationWriter, hostSecurityState?: Partial<HostSecurityState> | undefined): void;
|
|
63227
|
+
/**
|
|
63228
|
+
* Serializes information the current object
|
|
63229
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63230
|
+
*/
|
|
63231
|
+
export declare function serializeHttpRequestEndpoint(writer: SerializationWriter, httpRequestEndpoint?: Partial<HttpRequestEndpoint> | undefined): void;
|
|
62383
63232
|
/**
|
|
62384
63233
|
* Serializes information the current object
|
|
62385
63234
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63890,6 +64739,46 @@ export declare function serializeMobileThreatDefenseConnectorCollectionResponse(
|
|
|
63890
64739
|
* @param writer Serialization writer to use to serialize this model
|
|
63891
64740
|
*/
|
|
63892
64741
|
export declare function serializeModifiedProperty(writer: SerializationWriter, modifiedProperty?: Partial<ModifiedProperty> | undefined): void;
|
|
64742
|
+
/**
|
|
64743
|
+
* Serializes information the current object
|
|
64744
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64745
|
+
*/
|
|
64746
|
+
export declare function serializeMultiTenantOrganization(writer: SerializationWriter, multiTenantOrganization?: Partial<MultiTenantOrganization> | undefined): void;
|
|
64747
|
+
/**
|
|
64748
|
+
* Serializes information the current object
|
|
64749
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64750
|
+
*/
|
|
64751
|
+
export declare function serializeMultiTenantOrganizationIdentitySyncPolicyTemplate(writer: SerializationWriter, multiTenantOrganizationIdentitySyncPolicyTemplate?: Partial<MultiTenantOrganizationIdentitySyncPolicyTemplate> | undefined): void;
|
|
64752
|
+
/**
|
|
64753
|
+
* Serializes information the current object
|
|
64754
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64755
|
+
*/
|
|
64756
|
+
export declare function serializeMultiTenantOrganizationJoinRequestRecord(writer: SerializationWriter, multiTenantOrganizationJoinRequestRecord?: Partial<MultiTenantOrganizationJoinRequestRecord> | undefined): void;
|
|
64757
|
+
/**
|
|
64758
|
+
* Serializes information the current object
|
|
64759
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64760
|
+
*/
|
|
64761
|
+
export declare function serializeMultiTenantOrganizationJoinRequestTransitionDetails(writer: SerializationWriter, multiTenantOrganizationJoinRequestTransitionDetails?: Partial<MultiTenantOrganizationJoinRequestTransitionDetails> | undefined): void;
|
|
64762
|
+
/**
|
|
64763
|
+
* Serializes information the current object
|
|
64764
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64765
|
+
*/
|
|
64766
|
+
export declare function serializeMultiTenantOrganizationMember(writer: SerializationWriter, multiTenantOrganizationMember?: Partial<MultiTenantOrganizationMember> | undefined): void;
|
|
64767
|
+
/**
|
|
64768
|
+
* Serializes information the current object
|
|
64769
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64770
|
+
*/
|
|
64771
|
+
export declare function serializeMultiTenantOrganizationMemberCollectionResponse(writer: SerializationWriter, multiTenantOrganizationMemberCollectionResponse?: Partial<MultiTenantOrganizationMemberCollectionResponse> | undefined): void;
|
|
64772
|
+
/**
|
|
64773
|
+
* Serializes information the current object
|
|
64774
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64775
|
+
*/
|
|
64776
|
+
export declare function serializeMultiTenantOrganizationMemberTransitionDetails(writer: SerializationWriter, multiTenantOrganizationMemberTransitionDetails?: Partial<MultiTenantOrganizationMemberTransitionDetails> | undefined): void;
|
|
64777
|
+
/**
|
|
64778
|
+
* Serializes information the current object
|
|
64779
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64780
|
+
*/
|
|
64781
|
+
export declare function serializeMultiTenantOrganizationPartnerConfigurationTemplate(writer: SerializationWriter, multiTenantOrganizationPartnerConfigurationTemplate?: Partial<MultiTenantOrganizationPartnerConfigurationTemplate> | undefined): void;
|
|
63893
64782
|
/**
|
|
63894
64783
|
* Serializes information the current object
|
|
63895
64784
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64200,6 +65089,31 @@ export declare function serializeOnPremisesExtensionAttributes(writer: Serializa
|
|
|
64200
65089
|
* @param writer Serialization writer to use to serialize this model
|
|
64201
65090
|
*/
|
|
64202
65091
|
export declare function serializeOnPremisesProvisioningError(writer: SerializationWriter, onPremisesProvisioningError?: Partial<OnPremisesProvisioningError> | undefined): void;
|
|
65092
|
+
/**
|
|
65093
|
+
* Serializes information the current object
|
|
65094
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65095
|
+
*/
|
|
65096
|
+
export declare function serializeOnTokenIssuanceStartCustomExtension(writer: SerializationWriter, onTokenIssuanceStartCustomExtension?: Partial<OnTokenIssuanceStartCustomExtension> | undefined): void;
|
|
65097
|
+
/**
|
|
65098
|
+
* Serializes information the current object
|
|
65099
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65100
|
+
*/
|
|
65101
|
+
export declare function serializeOnTokenIssuanceStartCustomExtensionHandler(writer: SerializationWriter, onTokenIssuanceStartCustomExtensionHandler?: Partial<OnTokenIssuanceStartCustomExtensionHandler> | undefined): void;
|
|
65102
|
+
/**
|
|
65103
|
+
* Serializes information the current object
|
|
65104
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65105
|
+
*/
|
|
65106
|
+
export declare function serializeOnTokenIssuanceStartHandler(writer: SerializationWriter, onTokenIssuanceStartHandler?: Partial<OnTokenIssuanceStartHandler> | undefined): void;
|
|
65107
|
+
/**
|
|
65108
|
+
* Serializes information the current object
|
|
65109
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65110
|
+
*/
|
|
65111
|
+
export declare function serializeOnTokenIssuanceStartListener(writer: SerializationWriter, onTokenIssuanceStartListener?: Partial<OnTokenIssuanceStartListener> | undefined): void;
|
|
65112
|
+
/**
|
|
65113
|
+
* Serializes information the current object
|
|
65114
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65115
|
+
*/
|
|
65116
|
+
export declare function serializeOnTokenIssuanceStartReturnClaim(writer: SerializationWriter, onTokenIssuanceStartReturnClaim?: Partial<OnTokenIssuanceStartReturnClaim> | undefined): void;
|
|
64203
65117
|
/**
|
|
64204
65118
|
* Serializes information the current object
|
|
64205
65119
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64690,6 +65604,11 @@ export declare function serializePolicyBase(writer: SerializationWriter, policyB
|
|
|
64690
65604
|
* @param writer Serialization writer to use to serialize this model
|
|
64691
65605
|
*/
|
|
64692
65606
|
export declare function serializePolicyRoot(writer: SerializationWriter, policyRoot?: Partial<PolicyRoot> | undefined): void;
|
|
65607
|
+
/**
|
|
65608
|
+
* Serializes information the current object
|
|
65609
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65610
|
+
*/
|
|
65611
|
+
export declare function serializePolicyTemplate(writer: SerializationWriter, policyTemplate?: Partial<PolicyTemplate> | undefined): void;
|
|
64693
65612
|
/**
|
|
64694
65613
|
* Serializes information the current object
|
|
64695
65614
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -73527,6 +74446,7 @@ export interface TeleconferenceDeviceVideoQuality extends Parsable, Teleconferen
|
|
|
73527
74446
|
*/
|
|
73528
74447
|
averageOutboundFrameRate?: number;
|
|
73529
74448
|
}
|
|
74449
|
+
export type TemplateApplicationLevel = (typeof TemplateApplicationLevelObject)[keyof typeof TemplateApplicationLevelObject];
|
|
73530
74450
|
export type TemplateScenarios = (typeof TemplateScenariosObject)[keyof typeof TemplateScenariosObject];
|
|
73531
74451
|
export interface TemporaryAccessPassAuthenticationMethod extends AuthenticationMethod, Parsable {
|
|
73532
74452
|
/**
|
|
@@ -73651,6 +74571,10 @@ export interface TenantRelationship extends AdditionalDataHolder, BackedModel, P
|
|
|
73651
74571
|
* The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant.
|
|
73652
74572
|
*/
|
|
73653
74573
|
delegatedAdminRelationships?: DelegatedAdminRelationship[];
|
|
74574
|
+
/**
|
|
74575
|
+
* Defines an organization with more than one instance of Microsoft Entra ID.
|
|
74576
|
+
*/
|
|
74577
|
+
multiTenantOrganization?: MultiTenantOrganization;
|
|
73654
74578
|
/**
|
|
73655
74579
|
* The OdataType property
|
|
73656
74580
|
*/
|
|
@@ -78079,7 +79003,7 @@ export interface VerifiedDomain extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
78079
79003
|
*/
|
|
78080
79004
|
isInitial?: boolean;
|
|
78081
79005
|
/**
|
|
78082
|
-
* The domain name; for example, contoso.com
|
|
79006
|
+
* The domain name; for example, contoso.com.
|
|
78083
79007
|
*/
|
|
78084
79008
|
name?: string;
|
|
78085
79009
|
/**
|
|
@@ -84073,6 +84997,12 @@ export declare const BookingsAvailabilityStatusObject: {
|
|
|
84073
84997
|
readonly OutOfOffice: "outOfOffice";
|
|
84074
84998
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84075
84999
|
};
|
|
85000
|
+
export declare const BookingStaffMembershipStatusObject: {
|
|
85001
|
+
readonly Active: "active";
|
|
85002
|
+
readonly PendingAcceptance: "pendingAcceptance";
|
|
85003
|
+
readonly RejectedByStaff: "rejectedByStaff";
|
|
85004
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85005
|
+
};
|
|
84076
85006
|
export declare const BookingStaffRoleObject: {
|
|
84077
85007
|
readonly Guest: "guest";
|
|
84078
85008
|
readonly Administrator: "administrator";
|
|
@@ -84813,6 +85743,7 @@ export declare const DelegatedAdminAccessContainerTypeObject: {
|
|
|
84813
85743
|
export declare const DelegatedAdminRelationshipOperationTypeObject: {
|
|
84814
85744
|
readonly DelegatedAdminAccessAssignmentUpdate: "delegatedAdminAccessAssignmentUpdate";
|
|
84815
85745
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85746
|
+
readonly DelegatedAdminRelationshipUpdate: "delegatedAdminRelationshipUpdate";
|
|
84816
85747
|
};
|
|
84817
85748
|
export declare const DelegatedAdminRelationshipRequestActionObject: {
|
|
84818
85749
|
readonly LockForApproval: "lockForApproval";
|
|
@@ -85324,6 +86255,7 @@ export declare const EducationSubmissionStatusObject: {
|
|
|
85324
86255
|
readonly Returned: "returned";
|
|
85325
86256
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85326
86257
|
readonly Reassigned: "reassigned";
|
|
86258
|
+
readonly Excused: "excused";
|
|
85327
86259
|
};
|
|
85328
86260
|
export declare const EducationUserRoleObject: {
|
|
85329
86261
|
readonly Student: "student";
|
|
@@ -86157,6 +87089,29 @@ export declare const MultiFactorAuthConfigurationObject: {
|
|
|
86157
87089
|
readonly Required: "required";
|
|
86158
87090
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86159
87091
|
};
|
|
87092
|
+
export declare const MultiTenantOrganizationMemberProcessingStatusObject: {
|
|
87093
|
+
readonly NotStarted: "notStarted";
|
|
87094
|
+
readonly Running: "running";
|
|
87095
|
+
readonly Succeeded: "succeeded";
|
|
87096
|
+
readonly Failed: "failed";
|
|
87097
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87098
|
+
};
|
|
87099
|
+
export declare const MultiTenantOrganizationMemberRoleObject: {
|
|
87100
|
+
readonly Owner: "owner";
|
|
87101
|
+
readonly Member: "member";
|
|
87102
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87103
|
+
};
|
|
87104
|
+
export declare const MultiTenantOrganizationMemberStateObject: {
|
|
87105
|
+
readonly Pending: "pending";
|
|
87106
|
+
readonly Active: "active";
|
|
87107
|
+
readonly Removed: "removed";
|
|
87108
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87109
|
+
};
|
|
87110
|
+
export declare const MultiTenantOrganizationStateObject: {
|
|
87111
|
+
readonly Active: "active";
|
|
87112
|
+
readonly Inactive: "inactive";
|
|
87113
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87114
|
+
};
|
|
86160
87115
|
export declare const MutabilityObject: {
|
|
86161
87116
|
readonly ReadWrite: "ReadWrite";
|
|
86162
87117
|
readonly ReadOnly: "ReadOnly";
|
|
@@ -88637,6 +89592,12 @@ export declare const TeamworkUserIdentityTypeObject: {
|
|
|
88637
89592
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88638
89593
|
readonly EmailUser: "emailUser";
|
|
88639
89594
|
};
|
|
89595
|
+
export declare const TemplateApplicationLevelObject: {
|
|
89596
|
+
readonly None: "none";
|
|
89597
|
+
readonly NewPartners: "newPartners";
|
|
89598
|
+
readonly ExistingPartners: "existingPartners";
|
|
89599
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
89600
|
+
};
|
|
88640
89601
|
export declare const TemplateScenariosObject: {
|
|
88641
89602
|
readonly NewEscaped: "new";
|
|
88642
89603
|
readonly SecureFoundation: "secureFoundation";
|