@microsoft/msgraph-sdk 1.0.0-preview.16 → 1.0.0-preview.18
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 +4 -4
- package/models/identityGovernance/index.d.ts +3 -3
- package/models/index.d.ts +2663 -206
- package/models/index.d.ts.map +1 -1
- package/models/index.js +2340 -173
- package/models/partners/billing/index.d.ts +44 -0
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +54 -2
- package/models/search/index.d.ts +428 -0
- package/models/search/index.d.ts.map +1 -0
- package/models/search/index.js +380 -0
- package/models/security/index.d.ts +102 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +90 -13
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type CallRecord } from './callRecords/';
|
|
2
2
|
import { type LifecycleWorkflowsContainer, type Workflow } from './identityGovernance/';
|
|
3
3
|
import { type Billing } from './partners/billing/';
|
|
4
|
+
import { type Acronym, type Bookmark, type Qna } from './search/';
|
|
4
5
|
import { BehaviorDuringRetentionPeriod, type CasesRoot, type Incident, type ThreatIntelligence, type TriggersRoot, type TriggerTypesRoot } from './security/';
|
|
5
6
|
import { type Set, type Store, type Term } from './termStore/';
|
|
6
7
|
import { type AdditionalDataHolder, type BackedModel, type DateOnly, type Duration, type Parsable, type ParseNode, type SerializationWriter, type TimeOnly } from '@microsoft/kiota-abstractions';
|
|
@@ -846,7 +847,7 @@ export interface AccessPackageResourceCollectionResponse extends BaseCollectionP
|
|
|
846
847
|
}
|
|
847
848
|
export interface AccessPackageResourceEnvironment extends Entity, Parsable {
|
|
848
849
|
/**
|
|
849
|
-
*
|
|
850
|
+
* Connection information of an environment used to connect to a resource.
|
|
850
851
|
*/
|
|
851
852
|
connectionInfo?: ConnectionInfo;
|
|
852
853
|
/**
|
|
@@ -1823,6 +1824,10 @@ export interface Admin extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
1823
1824
|
* A container for Microsoft Edge resources. Read-only.
|
|
1824
1825
|
*/
|
|
1825
1826
|
edge?: Edge;
|
|
1827
|
+
/**
|
|
1828
|
+
* A container for the Microsoft 365 apps admin functionality.
|
|
1829
|
+
*/
|
|
1830
|
+
microsoft365Apps?: AdminMicrosoft365Apps;
|
|
1826
1831
|
/**
|
|
1827
1832
|
* The OdataType property
|
|
1828
1833
|
*/
|
|
@@ -1898,6 +1903,12 @@ export interface AdministrativeUnitCollectionResponse extends BaseCollectionPagi
|
|
|
1898
1903
|
*/
|
|
1899
1904
|
value?: AdministrativeUnit[];
|
|
1900
1905
|
}
|
|
1906
|
+
export interface AdminMicrosoft365Apps extends Entity, Parsable {
|
|
1907
|
+
/**
|
|
1908
|
+
* A container for tenant-level settings for Microsoft 365 applications.
|
|
1909
|
+
*/
|
|
1910
|
+
installationOptions?: M365AppsInstallationOptions;
|
|
1911
|
+
}
|
|
1901
1912
|
export type AdvancedConfigState = (typeof AdvancedConfigStateObject)[keyof typeof AdvancedConfigStateObject];
|
|
1902
1913
|
export interface AggregationOption extends AdditionalDataHolder, BackedModel, Parsable {
|
|
1903
1914
|
/**
|
|
@@ -1913,7 +1924,7 @@ export interface AggregationOption extends AdditionalDataHolder, BackedModel, Pa
|
|
|
1913
1924
|
*/
|
|
1914
1925
|
bucketDefinition?: BucketAggregationDefinition;
|
|
1915
1926
|
/**
|
|
1916
|
-
* Computes aggregation on the field while the field exists in current entity type. Required.
|
|
1927
|
+
* Computes aggregation on the field while the field exists in the current entity type. Required.
|
|
1917
1928
|
*/
|
|
1918
1929
|
field?: string;
|
|
1919
1930
|
/**
|
|
@@ -1921,7 +1932,7 @@ export interface AggregationOption extends AdditionalDataHolder, BackedModel, Pa
|
|
|
1921
1932
|
*/
|
|
1922
1933
|
odataType?: string;
|
|
1923
1934
|
/**
|
|
1924
|
-
* The number of searchBucket resources to be returned. This isn't required when the range is provided manually in the search request. Optional.
|
|
1935
|
+
* The number of searchBucket resources to be returned. This isn't required when the range is provided manually in the search request. The minimum accepted size is 1, and the maximum is 65535. Optional.
|
|
1925
1936
|
*/
|
|
1926
1937
|
size?: number;
|
|
1927
1938
|
}
|
|
@@ -3455,7 +3466,7 @@ export interface ApplePushNotificationCertificate extends Entity, Parsable {
|
|
|
3455
3466
|
}
|
|
3456
3467
|
export interface Application extends DirectoryObject, Parsable {
|
|
3457
3468
|
/**
|
|
3458
|
-
* Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams
|
|
3469
|
+
* Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams can set the addIns property for its 'FileHandler' functionality. This lets services like Microsoft 365 call the application in the context of a document the user is working on.
|
|
3459
3470
|
*/
|
|
3460
3471
|
addIns?: AddIn[];
|
|
3461
3472
|
/**
|
|
@@ -3467,7 +3478,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3467
3478
|
*/
|
|
3468
3479
|
appId?: string;
|
|
3469
3480
|
/**
|
|
3470
|
-
* Unique identifier of the applicationTemplate. Supports $filter (eq, not, ne).
|
|
3481
|
+
* Unique identifier of the applicationTemplate. Supports $filter (eq, not, ne). Read-only. null if the app wasn't created from an application template.
|
|
3471
3482
|
*/
|
|
3472
3483
|
applicationTemplateId?: string;
|
|
3473
3484
|
/**
|
|
@@ -3495,11 +3506,11 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3495
3506
|
*/
|
|
3496
3507
|
defaultRedirectUri?: string;
|
|
3497
3508
|
/**
|
|
3498
|
-
* Free text field to provide a description of the application object to end users. The maximum allowed size is
|
|
3509
|
+
* Free text field to provide a description of the application object to end users. The maximum allowed size is 1,024 characters. Supports $filter (eq, ne, not, ge, le, startsWith) and $search.
|
|
3499
3510
|
*/
|
|
3500
3511
|
description?: string;
|
|
3501
3512
|
/**
|
|
3502
|
-
* Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons
|
|
3513
|
+
* Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, not).
|
|
3503
3514
|
*/
|
|
3504
3515
|
disabledByMicrosoftStatus?: string;
|
|
3505
3516
|
/**
|
|
@@ -3523,7 +3534,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3523
3534
|
*/
|
|
3524
3535
|
homeRealmDiscoveryPolicies?: HomeRealmDiscoveryPolicy[];
|
|
3525
3536
|
/**
|
|
3526
|
-
* 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
|
|
3537
|
+
* Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://<application-client-id>, 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).
|
|
3527
3538
|
*/
|
|
3528
3539
|
identifierUris?: string[];
|
|
3529
3540
|
/**
|
|
@@ -3535,7 +3546,7 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3535
3546
|
*/
|
|
3536
3547
|
isDeviceOnlyAuthSupported?: boolean;
|
|
3537
3548
|
/**
|
|
3538
|
-
* Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Microsoft Entra ID
|
|
3549
|
+
* Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false, which means the fallback application type is confidential client such as a web app. There are certain scenarios where Microsoft Entra ID can't determine the client application type. For example, the ROPC flow where it's configured without specifying a redirect URI. In those cases, Microsoft Entra ID interprets the application type based on the value of this property.
|
|
3539
3550
|
*/
|
|
3540
3551
|
isFallbackPublicClient?: boolean;
|
|
3541
3552
|
/**
|
|
@@ -3595,11 +3606,11 @@ export interface Application extends DirectoryObject, Parsable {
|
|
|
3595
3606
|
*/
|
|
3596
3607
|
serviceManagementReference?: string;
|
|
3597
3608
|
/**
|
|
3598
|
-
* Specifies whether sensitive properties of a
|
|
3609
|
+
* Specifies whether sensitive properties of a multitenant application should be locked for editing after the application is provisioned in a tenant. Nullable. null by default.
|
|
3599
3610
|
*/
|
|
3600
3611
|
servicePrincipalLockConfiguration?: ServicePrincipalLockConfiguration;
|
|
3601
3612
|
/**
|
|
3602
|
-
* Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount (default), and PersonalMicrosoftAccount. See more in the table. The value of this object also limits the number of permissions an app can request. For more information, see Limits on requested permissions per app. The value for this property has implications on other app object properties. As a result, if you change this property, you
|
|
3613
|
+
* Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount (default), and PersonalMicrosoftAccount. See more in the table. The value of this object also limits the number of permissions an app can request. For more information, see Limits on requested permissions per app. The value for this property has implications on other app object properties. As a result, if you change this property, you might need to change other properties first. For more information, see Validation differences for signInAudience.Supports $filter (eq, ne, not).
|
|
3603
3614
|
*/
|
|
3604
3615
|
signInAudience?: string;
|
|
3605
3616
|
/**
|
|
@@ -4049,6 +4060,59 @@ export interface AppScope extends Entity, Parsable {
|
|
|
4049
4060
|
*/
|
|
4050
4061
|
type?: string;
|
|
4051
4062
|
}
|
|
4063
|
+
export interface AppsInstallationOptionsForMac extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4064
|
+
/**
|
|
4065
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4066
|
+
*/
|
|
4067
|
+
additionalData?: Record<string, unknown>;
|
|
4068
|
+
/**
|
|
4069
|
+
* Stores model information.
|
|
4070
|
+
*/
|
|
4071
|
+
backingStoreEnabled?: boolean;
|
|
4072
|
+
/**
|
|
4073
|
+
* Specifies whether users can install Microsoft 365 apps on their MAC devices. The default value is true.
|
|
4074
|
+
*/
|
|
4075
|
+
isMicrosoft365AppsEnabled?: boolean;
|
|
4076
|
+
/**
|
|
4077
|
+
* Specifies whether users can install Skype for Business on their MAC devices running OS X El Capitan 10.11 or later. The default value is true.
|
|
4078
|
+
*/
|
|
4079
|
+
isSkypeForBusinessEnabled?: boolean;
|
|
4080
|
+
/**
|
|
4081
|
+
* The OdataType property
|
|
4082
|
+
*/
|
|
4083
|
+
odataType?: string;
|
|
4084
|
+
}
|
|
4085
|
+
export interface AppsInstallationOptionsForWindows extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4086
|
+
/**
|
|
4087
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
4088
|
+
*/
|
|
4089
|
+
additionalData?: Record<string, unknown>;
|
|
4090
|
+
/**
|
|
4091
|
+
* Stores model information.
|
|
4092
|
+
*/
|
|
4093
|
+
backingStoreEnabled?: boolean;
|
|
4094
|
+
/**
|
|
4095
|
+
* Specifies whether users can install Microsoft 365 apps, including Skype for Business, on their Windows devices. The default value is true.
|
|
4096
|
+
*/
|
|
4097
|
+
isMicrosoft365AppsEnabled?: boolean;
|
|
4098
|
+
/**
|
|
4099
|
+
* Specifies whether users can install Microsoft Project on their Windows devices. The default value is true.
|
|
4100
|
+
*/
|
|
4101
|
+
isProjectEnabled?: boolean;
|
|
4102
|
+
/**
|
|
4103
|
+
* Specifies whether users can install Skype for Business (standalone) on their Windows devices. The default value is true.
|
|
4104
|
+
*/
|
|
4105
|
+
isSkypeForBusinessEnabled?: boolean;
|
|
4106
|
+
/**
|
|
4107
|
+
* Specifies whether users can install Visio on their Windows devices. The default value is true.
|
|
4108
|
+
*/
|
|
4109
|
+
isVisioEnabled?: boolean;
|
|
4110
|
+
/**
|
|
4111
|
+
* The OdataType property
|
|
4112
|
+
*/
|
|
4113
|
+
odataType?: string;
|
|
4114
|
+
}
|
|
4115
|
+
export type AppsUpdateChannelType = (typeof AppsUpdateChannelTypeObject)[keyof typeof AppsUpdateChannelTypeObject];
|
|
4052
4116
|
export interface ArchivedPrintJob extends AdditionalDataHolder, BackedModel, Parsable {
|
|
4053
4117
|
/**
|
|
4054
4118
|
* True if the job was acquired by a printer; false otherwise. Read-only.
|
|
@@ -5604,7 +5668,7 @@ export interface AuthorizationPolicy extends Parsable, PolicyBase {
|
|
|
5604
5668
|
*/
|
|
5605
5669
|
allowedToSignUpEmailBasedSubscriptions?: boolean;
|
|
5606
5670
|
/**
|
|
5607
|
-
* Indicates whether
|
|
5671
|
+
* Indicates whether administrators of the tenant can use the Self-Service Password Reset (SSPR). For more information, see Self-service password reset for administrators.
|
|
5608
5672
|
*/
|
|
5609
5673
|
allowedToUseSSPR?: boolean;
|
|
5610
5674
|
/**
|
|
@@ -5612,7 +5676,7 @@ export interface AuthorizationPolicy extends Parsable, PolicyBase {
|
|
|
5612
5676
|
*/
|
|
5613
5677
|
allowEmailVerifiedUsersToJoinOrganization?: boolean;
|
|
5614
5678
|
/**
|
|
5615
|
-
* Indicates who can invite
|
|
5679
|
+
* Indicates who can invite guests to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. For more information, see allowInvitesFrom values.
|
|
5616
5680
|
*/
|
|
5617
5681
|
allowInvitesFrom?: AllowInvitesFrom;
|
|
5618
5682
|
/**
|
|
@@ -5628,7 +5692,7 @@ export interface AuthorizationPolicy extends Parsable, PolicyBase {
|
|
|
5628
5692
|
*/
|
|
5629
5693
|
defaultUserRolePermissions?: DefaultUserRolePermissions;
|
|
5630
5694
|
/**
|
|
5631
|
-
* Represents role templateId for the role that should be granted to
|
|
5695
|
+
* Represents role templateId for the role that should be granted to guests. Currently following roles are supported: User (a0b1b346-4d3e-4e8b-98f8-753987be4970), Guest User (10dae51f-b6af-4016-8d66-8c2a99b929b3), and Restricted Guest User (2af84b1e-32c8-42b7-82bc-daa82404023b).
|
|
5632
5696
|
*/
|
|
5633
5697
|
guestUserRoleId?: Guid;
|
|
5634
5698
|
}
|
|
@@ -5976,6 +6040,26 @@ export interface BaseItemVersion extends Entity, Parsable {
|
|
|
5976
6040
|
*/
|
|
5977
6041
|
publication?: PublicationFacet;
|
|
5978
6042
|
}
|
|
6043
|
+
export interface BaseSitePage extends BaseItem, Parsable {
|
|
6044
|
+
/**
|
|
6045
|
+
* The pageLayout property
|
|
6046
|
+
*/
|
|
6047
|
+
pageLayout?: PageLayoutType;
|
|
6048
|
+
/**
|
|
6049
|
+
* The publishingState property
|
|
6050
|
+
*/
|
|
6051
|
+
publishingState?: PublicationFacet;
|
|
6052
|
+
/**
|
|
6053
|
+
* The title property
|
|
6054
|
+
*/
|
|
6055
|
+
title?: string;
|
|
6056
|
+
}
|
|
6057
|
+
export interface BaseSitePageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
6058
|
+
/**
|
|
6059
|
+
* The value property
|
|
6060
|
+
*/
|
|
6061
|
+
value?: BaseSitePage[];
|
|
6062
|
+
}
|
|
5979
6063
|
export interface BasicAuthentication extends ApiAuthenticationConfigurationBase, Parsable {
|
|
5980
6064
|
/**
|
|
5981
6065
|
* The password. It isn't returned in the responses.
|
|
@@ -7671,6 +7755,16 @@ export interface CallTranscriptionInfo extends AdditionalDataHolder, BackedModel
|
|
|
7671
7755
|
export type CallTranscriptionState = (typeof CallTranscriptionStateObject)[keyof typeof CallTranscriptionStateObject];
|
|
7672
7756
|
export interface CancelMediaProcessingOperation extends CommsOperation, Parsable {
|
|
7673
7757
|
}
|
|
7758
|
+
export interface CanvasLayout extends Entity, Parsable {
|
|
7759
|
+
/**
|
|
7760
|
+
* The horizontalSections property
|
|
7761
|
+
*/
|
|
7762
|
+
horizontalSections?: HorizontalSection[];
|
|
7763
|
+
/**
|
|
7764
|
+
* The verticalSection property
|
|
7765
|
+
*/
|
|
7766
|
+
verticalSection?: VerticalSection;
|
|
7767
|
+
}
|
|
7674
7768
|
export type CategoryColor = (typeof CategoryColorObject)[keyof typeof CategoryColorObject];
|
|
7675
7769
|
export interface CertificateAuthority extends AdditionalDataHolder, BackedModel, Parsable {
|
|
7676
7770
|
/**
|
|
@@ -8010,11 +8104,11 @@ export interface Chat extends Entity, Parsable {
|
|
|
8010
8104
|
*/
|
|
8011
8105
|
installedApps?: TeamsAppInstallation[];
|
|
8012
8106
|
/**
|
|
8013
|
-
* Preview of the last message sent in the chat. Null if no messages
|
|
8107
|
+
* Preview of the last message sent in the chat. Null if no messages were sent in the chat. Currently, only the list chats operation supports this property.
|
|
8014
8108
|
*/
|
|
8015
8109
|
lastMessagePreview?: ChatMessageInfo;
|
|
8016
8110
|
/**
|
|
8017
|
-
* Date and time at which the chat was renamed or list of members
|
|
8111
|
+
* Date and time at which the chat was renamed or the list of members was last changed. Read-only.
|
|
8018
8112
|
*/
|
|
8019
8113
|
lastUpdatedDateTime?: Date;
|
|
8020
8114
|
/**
|
|
@@ -8050,7 +8144,7 @@ export interface Chat extends Entity, Parsable {
|
|
|
8050
8144
|
*/
|
|
8051
8145
|
topic?: string;
|
|
8052
8146
|
/**
|
|
8053
|
-
* Represents caller-specific information about the chat, such as last message read date and time. This property is populated only when the request is made in a delegated context.
|
|
8147
|
+
* Represents caller-specific information about the chat, such as the last message read date and time. This property is populated only when the request is made in a delegated context.
|
|
8054
8148
|
*/
|
|
8055
8149
|
viewpoint?: ChatViewpoint;
|
|
8056
8150
|
/**
|
|
@@ -8477,11 +8571,11 @@ export interface ChecklistItem extends Entity, Parsable {
|
|
|
8477
8571
|
*/
|
|
8478
8572
|
createdDateTime?: Date;
|
|
8479
8573
|
/**
|
|
8480
|
-
*
|
|
8574
|
+
* Indicates the title of the checklistItem.
|
|
8481
8575
|
*/
|
|
8482
8576
|
displayName?: string;
|
|
8483
8577
|
/**
|
|
8484
|
-
* State
|
|
8578
|
+
* State that indicates whether the item is checked off or not.
|
|
8485
8579
|
*/
|
|
8486
8580
|
isChecked?: boolean;
|
|
8487
8581
|
}
|
|
@@ -8567,19 +8661,19 @@ export interface CloudAppSecurityState extends AdditionalDataHolder, BackedModel
|
|
|
8567
8661
|
}
|
|
8568
8662
|
export interface CloudClipboardItem extends Entity, Parsable {
|
|
8569
8663
|
/**
|
|
8570
|
-
*
|
|
8664
|
+
* Set by the server. DateTime in UTC when the object was created on the server.
|
|
8571
8665
|
*/
|
|
8572
8666
|
createdDateTime?: Date;
|
|
8573
8667
|
/**
|
|
8574
|
-
* The
|
|
8668
|
+
* Set by the server. DateTime in UTC when the object expires and after that the object is no longer available. The default and also maximum TTL is 12 hours after the creation, but it might change for performance optimization.
|
|
8575
8669
|
*/
|
|
8576
8670
|
expirationDateTime?: Date;
|
|
8577
8671
|
/**
|
|
8578
|
-
*
|
|
8672
|
+
* Set by the server if not provided in the client's request. DateTime in UTC when the object was modified by the client.
|
|
8579
8673
|
*/
|
|
8580
8674
|
lastModifiedDateTime?: Date;
|
|
8581
8675
|
/**
|
|
8582
|
-
*
|
|
8676
|
+
* A cloudClipboardItem can have multiple cloudClipboardItemPayload objects in the payloads. A window can place more than one clipboard object on the clipboard. Each one represents the same information in a different clipboard format.
|
|
8583
8677
|
*/
|
|
8584
8678
|
payloads?: CloudClipboardItemPayload[];
|
|
8585
8679
|
}
|
|
@@ -8599,11 +8693,11 @@ export interface CloudClipboardItemPayload extends AdditionalDataHolder, BackedM
|
|
|
8599
8693
|
*/
|
|
8600
8694
|
backingStoreEnabled?: boolean;
|
|
8601
8695
|
/**
|
|
8602
|
-
* The
|
|
8696
|
+
* The formatName version of the value of a cloud clipboard encoded in base64.
|
|
8603
8697
|
*/
|
|
8604
8698
|
content?: string;
|
|
8605
8699
|
/**
|
|
8606
|
-
*
|
|
8700
|
+
* For a list of possible values see formatName values.
|
|
8607
8701
|
*/
|
|
8608
8702
|
formatName?: string;
|
|
8609
8703
|
/**
|
|
@@ -8613,7 +8707,7 @@ export interface CloudClipboardItemPayload extends AdditionalDataHolder, BackedM
|
|
|
8613
8707
|
}
|
|
8614
8708
|
export interface CloudClipboardRoot extends Entity, Parsable {
|
|
8615
8709
|
/**
|
|
8616
|
-
*
|
|
8710
|
+
* Represents a collection of Cloud Clipboard items.
|
|
8617
8711
|
*/
|
|
8618
8712
|
items?: CloudClipboardItem[];
|
|
8619
8713
|
}
|
|
@@ -8647,6 +8741,765 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
|
|
|
8647
8741
|
*/
|
|
8648
8742
|
presences?: Presence[];
|
|
8649
8743
|
}
|
|
8744
|
+
export interface CloudPC extends Entity, Parsable {
|
|
8745
|
+
/**
|
|
8746
|
+
* The aadDeviceId property
|
|
8747
|
+
*/
|
|
8748
|
+
aadDeviceId?: string;
|
|
8749
|
+
/**
|
|
8750
|
+
* The displayName property
|
|
8751
|
+
*/
|
|
8752
|
+
displayName?: string;
|
|
8753
|
+
/**
|
|
8754
|
+
* The gracePeriodEndDateTime property
|
|
8755
|
+
*/
|
|
8756
|
+
gracePeriodEndDateTime?: Date;
|
|
8757
|
+
/**
|
|
8758
|
+
* The imageDisplayName property
|
|
8759
|
+
*/
|
|
8760
|
+
imageDisplayName?: string;
|
|
8761
|
+
/**
|
|
8762
|
+
* The lastModifiedDateTime property
|
|
8763
|
+
*/
|
|
8764
|
+
lastModifiedDateTime?: Date;
|
|
8765
|
+
/**
|
|
8766
|
+
* The managedDeviceId property
|
|
8767
|
+
*/
|
|
8768
|
+
managedDeviceId?: string;
|
|
8769
|
+
/**
|
|
8770
|
+
* The managedDeviceName property
|
|
8771
|
+
*/
|
|
8772
|
+
managedDeviceName?: string;
|
|
8773
|
+
/**
|
|
8774
|
+
* The onPremisesConnectionName property
|
|
8775
|
+
*/
|
|
8776
|
+
onPremisesConnectionName?: string;
|
|
8777
|
+
/**
|
|
8778
|
+
* The provisioningPolicyId property
|
|
8779
|
+
*/
|
|
8780
|
+
provisioningPolicyId?: string;
|
|
8781
|
+
/**
|
|
8782
|
+
* The provisioningPolicyName property
|
|
8783
|
+
*/
|
|
8784
|
+
provisioningPolicyName?: string;
|
|
8785
|
+
/**
|
|
8786
|
+
* The provisioningType property
|
|
8787
|
+
*/
|
|
8788
|
+
provisioningType?: CloudPcProvisioningType;
|
|
8789
|
+
/**
|
|
8790
|
+
* The servicePlanId property
|
|
8791
|
+
*/
|
|
8792
|
+
servicePlanId?: string;
|
|
8793
|
+
/**
|
|
8794
|
+
* The servicePlanName property
|
|
8795
|
+
*/
|
|
8796
|
+
servicePlanName?: string;
|
|
8797
|
+
/**
|
|
8798
|
+
* The userPrincipalName property
|
|
8799
|
+
*/
|
|
8800
|
+
userPrincipalName?: string;
|
|
8801
|
+
}
|
|
8802
|
+
export type CloudPcAuditActivityOperationType = (typeof CloudPcAuditActivityOperationTypeObject)[keyof typeof CloudPcAuditActivityOperationTypeObject];
|
|
8803
|
+
export type CloudPcAuditActivityResult = (typeof CloudPcAuditActivityResultObject)[keyof typeof CloudPcAuditActivityResultObject];
|
|
8804
|
+
export interface CloudPcAuditActor extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8805
|
+
/**
|
|
8806
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8807
|
+
*/
|
|
8808
|
+
additionalData?: Record<string, unknown>;
|
|
8809
|
+
/**
|
|
8810
|
+
* The applicationDisplayName property
|
|
8811
|
+
*/
|
|
8812
|
+
applicationDisplayName?: string;
|
|
8813
|
+
/**
|
|
8814
|
+
* The applicationId property
|
|
8815
|
+
*/
|
|
8816
|
+
applicationId?: string;
|
|
8817
|
+
/**
|
|
8818
|
+
* Stores model information.
|
|
8819
|
+
*/
|
|
8820
|
+
backingStoreEnabled?: boolean;
|
|
8821
|
+
/**
|
|
8822
|
+
* The ipAddress property
|
|
8823
|
+
*/
|
|
8824
|
+
ipAddress?: string;
|
|
8825
|
+
/**
|
|
8826
|
+
* The OdataType property
|
|
8827
|
+
*/
|
|
8828
|
+
odataType?: string;
|
|
8829
|
+
/**
|
|
8830
|
+
* The remoteTenantId property
|
|
8831
|
+
*/
|
|
8832
|
+
remoteTenantId?: string;
|
|
8833
|
+
/**
|
|
8834
|
+
* The remoteUserId property
|
|
8835
|
+
*/
|
|
8836
|
+
remoteUserId?: string;
|
|
8837
|
+
/**
|
|
8838
|
+
* The servicePrincipalName property
|
|
8839
|
+
*/
|
|
8840
|
+
servicePrincipalName?: string;
|
|
8841
|
+
/**
|
|
8842
|
+
* The userId property
|
|
8843
|
+
*/
|
|
8844
|
+
userId?: string;
|
|
8845
|
+
/**
|
|
8846
|
+
* The userPermissions property
|
|
8847
|
+
*/
|
|
8848
|
+
userPermissions?: string[];
|
|
8849
|
+
/**
|
|
8850
|
+
* The userPrincipalName property
|
|
8851
|
+
*/
|
|
8852
|
+
userPrincipalName?: string;
|
|
8853
|
+
/**
|
|
8854
|
+
* The userRoleScopeTags property
|
|
8855
|
+
*/
|
|
8856
|
+
userRoleScopeTags?: CloudPcUserRoleScopeTagInfo[];
|
|
8857
|
+
}
|
|
8858
|
+
export type CloudPcAuditCategory = (typeof CloudPcAuditCategoryObject)[keyof typeof CloudPcAuditCategoryObject];
|
|
8859
|
+
export interface CloudPcAuditEvent extends Entity, Parsable {
|
|
8860
|
+
/**
|
|
8861
|
+
* The activity property
|
|
8862
|
+
*/
|
|
8863
|
+
activity?: string;
|
|
8864
|
+
/**
|
|
8865
|
+
* The activityDateTime property
|
|
8866
|
+
*/
|
|
8867
|
+
activityDateTime?: Date;
|
|
8868
|
+
/**
|
|
8869
|
+
* The activityOperationType property
|
|
8870
|
+
*/
|
|
8871
|
+
activityOperationType?: CloudPcAuditActivityOperationType;
|
|
8872
|
+
/**
|
|
8873
|
+
* The activityResult property
|
|
8874
|
+
*/
|
|
8875
|
+
activityResult?: CloudPcAuditActivityResult;
|
|
8876
|
+
/**
|
|
8877
|
+
* The activityType property
|
|
8878
|
+
*/
|
|
8879
|
+
activityType?: string;
|
|
8880
|
+
/**
|
|
8881
|
+
* The actor property
|
|
8882
|
+
*/
|
|
8883
|
+
actor?: CloudPcAuditActor;
|
|
8884
|
+
/**
|
|
8885
|
+
* The category property
|
|
8886
|
+
*/
|
|
8887
|
+
category?: CloudPcAuditCategory;
|
|
8888
|
+
/**
|
|
8889
|
+
* The componentName property
|
|
8890
|
+
*/
|
|
8891
|
+
componentName?: string;
|
|
8892
|
+
/**
|
|
8893
|
+
* The correlationId property
|
|
8894
|
+
*/
|
|
8895
|
+
correlationId?: string;
|
|
8896
|
+
/**
|
|
8897
|
+
* The displayName property
|
|
8898
|
+
*/
|
|
8899
|
+
displayName?: string;
|
|
8900
|
+
/**
|
|
8901
|
+
* The resources property
|
|
8902
|
+
*/
|
|
8903
|
+
resources?: CloudPcAuditResource[];
|
|
8904
|
+
}
|
|
8905
|
+
export interface CloudPcAuditEventCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8906
|
+
/**
|
|
8907
|
+
* The value property
|
|
8908
|
+
*/
|
|
8909
|
+
value?: CloudPcAuditEvent[];
|
|
8910
|
+
}
|
|
8911
|
+
export interface CloudPcAuditProperty extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8912
|
+
/**
|
|
8913
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8914
|
+
*/
|
|
8915
|
+
additionalData?: Record<string, unknown>;
|
|
8916
|
+
/**
|
|
8917
|
+
* Stores model information.
|
|
8918
|
+
*/
|
|
8919
|
+
backingStoreEnabled?: boolean;
|
|
8920
|
+
/**
|
|
8921
|
+
* The displayName property
|
|
8922
|
+
*/
|
|
8923
|
+
displayName?: string;
|
|
8924
|
+
/**
|
|
8925
|
+
* The newValue property
|
|
8926
|
+
*/
|
|
8927
|
+
newValue?: string;
|
|
8928
|
+
/**
|
|
8929
|
+
* The OdataType property
|
|
8930
|
+
*/
|
|
8931
|
+
odataType?: string;
|
|
8932
|
+
/**
|
|
8933
|
+
* The oldValue property
|
|
8934
|
+
*/
|
|
8935
|
+
oldValue?: string;
|
|
8936
|
+
}
|
|
8937
|
+
export interface CloudPcAuditResource extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8938
|
+
/**
|
|
8939
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8940
|
+
*/
|
|
8941
|
+
additionalData?: Record<string, unknown>;
|
|
8942
|
+
/**
|
|
8943
|
+
* Stores model information.
|
|
8944
|
+
*/
|
|
8945
|
+
backingStoreEnabled?: boolean;
|
|
8946
|
+
/**
|
|
8947
|
+
* The displayName property
|
|
8948
|
+
*/
|
|
8949
|
+
displayName?: string;
|
|
8950
|
+
/**
|
|
8951
|
+
* The modifiedProperties property
|
|
8952
|
+
*/
|
|
8953
|
+
modifiedProperties?: CloudPcAuditProperty[];
|
|
8954
|
+
/**
|
|
8955
|
+
* The OdataType property
|
|
8956
|
+
*/
|
|
8957
|
+
odataType?: string;
|
|
8958
|
+
/**
|
|
8959
|
+
* The resourceId property
|
|
8960
|
+
*/
|
|
8961
|
+
resourceId?: string;
|
|
8962
|
+
}
|
|
8963
|
+
export interface CloudPCCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8964
|
+
/**
|
|
8965
|
+
* The value property
|
|
8966
|
+
*/
|
|
8967
|
+
value?: CloudPC[];
|
|
8968
|
+
}
|
|
8969
|
+
export interface CloudPcDeviceImage extends Entity, Parsable {
|
|
8970
|
+
/**
|
|
8971
|
+
* The displayName property
|
|
8972
|
+
*/
|
|
8973
|
+
displayName?: string;
|
|
8974
|
+
/**
|
|
8975
|
+
* The errorCode property
|
|
8976
|
+
*/
|
|
8977
|
+
errorCode?: CloudPcDeviceImageErrorCode;
|
|
8978
|
+
/**
|
|
8979
|
+
* The expirationDate property
|
|
8980
|
+
*/
|
|
8981
|
+
expirationDate?: DateOnly;
|
|
8982
|
+
/**
|
|
8983
|
+
* The lastModifiedDateTime property
|
|
8984
|
+
*/
|
|
8985
|
+
lastModifiedDateTime?: Date;
|
|
8986
|
+
/**
|
|
8987
|
+
* The operatingSystem property
|
|
8988
|
+
*/
|
|
8989
|
+
operatingSystem?: string;
|
|
8990
|
+
/**
|
|
8991
|
+
* The osBuildNumber property
|
|
8992
|
+
*/
|
|
8993
|
+
osBuildNumber?: string;
|
|
8994
|
+
/**
|
|
8995
|
+
* The osStatus property
|
|
8996
|
+
*/
|
|
8997
|
+
osStatus?: CloudPcDeviceImageOsStatus;
|
|
8998
|
+
/**
|
|
8999
|
+
* The sourceImageResourceId property
|
|
9000
|
+
*/
|
|
9001
|
+
sourceImageResourceId?: string;
|
|
9002
|
+
/**
|
|
9003
|
+
* The status property
|
|
9004
|
+
*/
|
|
9005
|
+
status?: CloudPcDeviceImageStatus;
|
|
9006
|
+
/**
|
|
9007
|
+
* The version property
|
|
9008
|
+
*/
|
|
9009
|
+
version?: string;
|
|
9010
|
+
}
|
|
9011
|
+
export interface CloudPcDeviceImageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9012
|
+
/**
|
|
9013
|
+
* The value property
|
|
9014
|
+
*/
|
|
9015
|
+
value?: CloudPcDeviceImage[];
|
|
9016
|
+
}
|
|
9017
|
+
export type CloudPcDeviceImageErrorCode = (typeof CloudPcDeviceImageErrorCodeObject)[keyof typeof CloudPcDeviceImageErrorCodeObject];
|
|
9018
|
+
export type CloudPcDeviceImageOsStatus = (typeof CloudPcDeviceImageOsStatusObject)[keyof typeof CloudPcDeviceImageOsStatusObject];
|
|
9019
|
+
export type CloudPcDeviceImageStatus = (typeof CloudPcDeviceImageStatusObject)[keyof typeof CloudPcDeviceImageStatusObject];
|
|
9020
|
+
export interface CloudPcDomainJoinConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9021
|
+
/**
|
|
9022
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9023
|
+
*/
|
|
9024
|
+
additionalData?: Record<string, unknown>;
|
|
9025
|
+
/**
|
|
9026
|
+
* Stores model information.
|
|
9027
|
+
*/
|
|
9028
|
+
backingStoreEnabled?: boolean;
|
|
9029
|
+
/**
|
|
9030
|
+
* The domainJoinType property
|
|
9031
|
+
*/
|
|
9032
|
+
domainJoinType?: CloudPcDomainJoinType;
|
|
9033
|
+
/**
|
|
9034
|
+
* The OdataType property
|
|
9035
|
+
*/
|
|
9036
|
+
odataType?: string;
|
|
9037
|
+
/**
|
|
9038
|
+
* The onPremisesConnectionId property
|
|
9039
|
+
*/
|
|
9040
|
+
onPremisesConnectionId?: string;
|
|
9041
|
+
/**
|
|
9042
|
+
* The regionGroup property
|
|
9043
|
+
*/
|
|
9044
|
+
regionGroup?: CloudPcRegionGroup;
|
|
9045
|
+
/**
|
|
9046
|
+
* The regionName property
|
|
9047
|
+
*/
|
|
9048
|
+
regionName?: string;
|
|
9049
|
+
}
|
|
9050
|
+
export type CloudPcDomainJoinType = (typeof CloudPcDomainJoinTypeObject)[keyof typeof CloudPcDomainJoinTypeObject];
|
|
9051
|
+
export interface CloudPcGalleryImage extends Entity, Parsable {
|
|
9052
|
+
/**
|
|
9053
|
+
* The displayName property
|
|
9054
|
+
*/
|
|
9055
|
+
displayName?: string;
|
|
9056
|
+
/**
|
|
9057
|
+
* The endDate property
|
|
9058
|
+
*/
|
|
9059
|
+
endDate?: DateOnly;
|
|
9060
|
+
/**
|
|
9061
|
+
* The expirationDate property
|
|
9062
|
+
*/
|
|
9063
|
+
expirationDate?: DateOnly;
|
|
9064
|
+
/**
|
|
9065
|
+
* The offerName property
|
|
9066
|
+
*/
|
|
9067
|
+
offerName?: string;
|
|
9068
|
+
/**
|
|
9069
|
+
* The publisherName property
|
|
9070
|
+
*/
|
|
9071
|
+
publisherName?: string;
|
|
9072
|
+
/**
|
|
9073
|
+
* The sizeInGB property
|
|
9074
|
+
*/
|
|
9075
|
+
sizeInGB?: number;
|
|
9076
|
+
/**
|
|
9077
|
+
* The skuName property
|
|
9078
|
+
*/
|
|
9079
|
+
skuName?: string;
|
|
9080
|
+
/**
|
|
9081
|
+
* The startDate property
|
|
9082
|
+
*/
|
|
9083
|
+
startDate?: DateOnly;
|
|
9084
|
+
/**
|
|
9085
|
+
* The status property
|
|
9086
|
+
*/
|
|
9087
|
+
status?: CloudPcGalleryImageStatus;
|
|
9088
|
+
}
|
|
9089
|
+
export interface CloudPcGalleryImageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9090
|
+
/**
|
|
9091
|
+
* The value property
|
|
9092
|
+
*/
|
|
9093
|
+
value?: CloudPcGalleryImage[];
|
|
9094
|
+
}
|
|
9095
|
+
export type CloudPcGalleryImageStatus = (typeof CloudPcGalleryImageStatusObject)[keyof typeof CloudPcGalleryImageStatusObject];
|
|
9096
|
+
export interface CloudPcManagementAssignmentTarget extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9097
|
+
/**
|
|
9098
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9099
|
+
*/
|
|
9100
|
+
additionalData?: Record<string, unknown>;
|
|
9101
|
+
/**
|
|
9102
|
+
* Stores model information.
|
|
9103
|
+
*/
|
|
9104
|
+
backingStoreEnabled?: boolean;
|
|
9105
|
+
/**
|
|
9106
|
+
* The OdataType property
|
|
9107
|
+
*/
|
|
9108
|
+
odataType?: string;
|
|
9109
|
+
}
|
|
9110
|
+
export interface CloudPcManagementGroupAssignmentTarget extends CloudPcManagementAssignmentTarget, Parsable {
|
|
9111
|
+
/**
|
|
9112
|
+
* The groupId property
|
|
9113
|
+
*/
|
|
9114
|
+
groupId?: string;
|
|
9115
|
+
/**
|
|
9116
|
+
* The servicePlanId property
|
|
9117
|
+
*/
|
|
9118
|
+
servicePlanId?: string;
|
|
9119
|
+
}
|
|
9120
|
+
export interface CloudPcOnPremisesConnection extends Entity, Parsable {
|
|
9121
|
+
/**
|
|
9122
|
+
* The adDomainName property
|
|
9123
|
+
*/
|
|
9124
|
+
adDomainName?: string;
|
|
9125
|
+
/**
|
|
9126
|
+
* The adDomainPassword property
|
|
9127
|
+
*/
|
|
9128
|
+
adDomainPassword?: string;
|
|
9129
|
+
/**
|
|
9130
|
+
* The adDomainUsername property
|
|
9131
|
+
*/
|
|
9132
|
+
adDomainUsername?: string;
|
|
9133
|
+
/**
|
|
9134
|
+
* The alternateResourceUrl property
|
|
9135
|
+
*/
|
|
9136
|
+
alternateResourceUrl?: string;
|
|
9137
|
+
/**
|
|
9138
|
+
* The connectionType property
|
|
9139
|
+
*/
|
|
9140
|
+
connectionType?: CloudPcOnPremisesConnectionType;
|
|
9141
|
+
/**
|
|
9142
|
+
* The displayName property
|
|
9143
|
+
*/
|
|
9144
|
+
displayName?: string;
|
|
9145
|
+
/**
|
|
9146
|
+
* The healthCheckStatus property
|
|
9147
|
+
*/
|
|
9148
|
+
healthCheckStatus?: CloudPcOnPremisesConnectionStatus;
|
|
9149
|
+
/**
|
|
9150
|
+
* The healthCheckStatusDetail property
|
|
9151
|
+
*/
|
|
9152
|
+
healthCheckStatusDetail?: CloudPcOnPremisesConnectionStatusDetail;
|
|
9153
|
+
/**
|
|
9154
|
+
* The inUse property
|
|
9155
|
+
*/
|
|
9156
|
+
inUse?: boolean;
|
|
9157
|
+
/**
|
|
9158
|
+
* The organizationalUnit property
|
|
9159
|
+
*/
|
|
9160
|
+
organizationalUnit?: string;
|
|
9161
|
+
/**
|
|
9162
|
+
* The resourceGroupId property
|
|
9163
|
+
*/
|
|
9164
|
+
resourceGroupId?: string;
|
|
9165
|
+
/**
|
|
9166
|
+
* The subnetId property
|
|
9167
|
+
*/
|
|
9168
|
+
subnetId?: string;
|
|
9169
|
+
/**
|
|
9170
|
+
* The subscriptionId property
|
|
9171
|
+
*/
|
|
9172
|
+
subscriptionId?: string;
|
|
9173
|
+
/**
|
|
9174
|
+
* The subscriptionName property
|
|
9175
|
+
*/
|
|
9176
|
+
subscriptionName?: string;
|
|
9177
|
+
/**
|
|
9178
|
+
* The virtualNetworkId property
|
|
9179
|
+
*/
|
|
9180
|
+
virtualNetworkId?: string;
|
|
9181
|
+
/**
|
|
9182
|
+
* The virtualNetworkLocation property
|
|
9183
|
+
*/
|
|
9184
|
+
virtualNetworkLocation?: string;
|
|
9185
|
+
}
|
|
9186
|
+
export interface CloudPcOnPremisesConnectionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9187
|
+
/**
|
|
9188
|
+
* The value property
|
|
9189
|
+
*/
|
|
9190
|
+
value?: CloudPcOnPremisesConnection[];
|
|
9191
|
+
}
|
|
9192
|
+
export interface CloudPcOnPremisesConnectionHealthCheck extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9193
|
+
/**
|
|
9194
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9195
|
+
*/
|
|
9196
|
+
additionalData?: Record<string, unknown>;
|
|
9197
|
+
/**
|
|
9198
|
+
* The additionalDetail property
|
|
9199
|
+
*/
|
|
9200
|
+
additionalDetail?: string;
|
|
9201
|
+
/**
|
|
9202
|
+
* Stores model information.
|
|
9203
|
+
*/
|
|
9204
|
+
backingStoreEnabled?: boolean;
|
|
9205
|
+
/**
|
|
9206
|
+
* The correlationId property
|
|
9207
|
+
*/
|
|
9208
|
+
correlationId?: string;
|
|
9209
|
+
/**
|
|
9210
|
+
* The displayName property
|
|
9211
|
+
*/
|
|
9212
|
+
displayName?: string;
|
|
9213
|
+
/**
|
|
9214
|
+
* The endDateTime property
|
|
9215
|
+
*/
|
|
9216
|
+
endDateTime?: Date;
|
|
9217
|
+
/**
|
|
9218
|
+
* The errorType property
|
|
9219
|
+
*/
|
|
9220
|
+
errorType?: CloudPcOnPremisesConnectionHealthCheckErrorType;
|
|
9221
|
+
/**
|
|
9222
|
+
* The OdataType property
|
|
9223
|
+
*/
|
|
9224
|
+
odataType?: string;
|
|
9225
|
+
/**
|
|
9226
|
+
* The recommendedAction property
|
|
9227
|
+
*/
|
|
9228
|
+
recommendedAction?: string;
|
|
9229
|
+
/**
|
|
9230
|
+
* The startDateTime property
|
|
9231
|
+
*/
|
|
9232
|
+
startDateTime?: Date;
|
|
9233
|
+
/**
|
|
9234
|
+
* The status property
|
|
9235
|
+
*/
|
|
9236
|
+
status?: CloudPcOnPremisesConnectionStatus;
|
|
9237
|
+
}
|
|
9238
|
+
export type CloudPcOnPremisesConnectionHealthCheckErrorType = (typeof CloudPcOnPremisesConnectionHealthCheckErrorTypeObject)[keyof typeof CloudPcOnPremisesConnectionHealthCheckErrorTypeObject];
|
|
9239
|
+
export type CloudPcOnPremisesConnectionStatus = (typeof CloudPcOnPremisesConnectionStatusObject)[keyof typeof CloudPcOnPremisesConnectionStatusObject];
|
|
9240
|
+
export interface CloudPcOnPremisesConnectionStatusDetail extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9241
|
+
/**
|
|
9242
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9243
|
+
*/
|
|
9244
|
+
additionalData?: Record<string, unknown>;
|
|
9245
|
+
/**
|
|
9246
|
+
* Stores model information.
|
|
9247
|
+
*/
|
|
9248
|
+
backingStoreEnabled?: boolean;
|
|
9249
|
+
/**
|
|
9250
|
+
* The endDateTime property
|
|
9251
|
+
*/
|
|
9252
|
+
endDateTime?: Date;
|
|
9253
|
+
/**
|
|
9254
|
+
* The healthChecks property
|
|
9255
|
+
*/
|
|
9256
|
+
healthChecks?: CloudPcOnPremisesConnectionHealthCheck[];
|
|
9257
|
+
/**
|
|
9258
|
+
* The OdataType property
|
|
9259
|
+
*/
|
|
9260
|
+
odataType?: string;
|
|
9261
|
+
/**
|
|
9262
|
+
* The startDateTime property
|
|
9263
|
+
*/
|
|
9264
|
+
startDateTime?: Date;
|
|
9265
|
+
}
|
|
9266
|
+
export type CloudPcOnPremisesConnectionType = (typeof CloudPcOnPremisesConnectionTypeObject)[keyof typeof CloudPcOnPremisesConnectionTypeObject];
|
|
9267
|
+
export interface CloudPcProvisioningPolicy extends Entity, Parsable {
|
|
9268
|
+
/**
|
|
9269
|
+
* The alternateResourceUrl property
|
|
9270
|
+
*/
|
|
9271
|
+
alternateResourceUrl?: string;
|
|
9272
|
+
/**
|
|
9273
|
+
* The assignments property
|
|
9274
|
+
*/
|
|
9275
|
+
assignments?: CloudPcProvisioningPolicyAssignment[];
|
|
9276
|
+
/**
|
|
9277
|
+
* The cloudPcGroupDisplayName property
|
|
9278
|
+
*/
|
|
9279
|
+
cloudPcGroupDisplayName?: string;
|
|
9280
|
+
/**
|
|
9281
|
+
* The cloudPcNamingTemplate property
|
|
9282
|
+
*/
|
|
9283
|
+
cloudPcNamingTemplate?: string;
|
|
9284
|
+
/**
|
|
9285
|
+
* The description property
|
|
9286
|
+
*/
|
|
9287
|
+
description?: string;
|
|
9288
|
+
/**
|
|
9289
|
+
* The displayName property
|
|
9290
|
+
*/
|
|
9291
|
+
displayName?: string;
|
|
9292
|
+
/**
|
|
9293
|
+
* The domainJoinConfigurations property
|
|
9294
|
+
*/
|
|
9295
|
+
domainJoinConfigurations?: CloudPcDomainJoinConfiguration[];
|
|
9296
|
+
/**
|
|
9297
|
+
* The enableSingleSignOn property
|
|
9298
|
+
*/
|
|
9299
|
+
enableSingleSignOn?: boolean;
|
|
9300
|
+
/**
|
|
9301
|
+
* The gracePeriodInHours property
|
|
9302
|
+
*/
|
|
9303
|
+
gracePeriodInHours?: number;
|
|
9304
|
+
/**
|
|
9305
|
+
* The imageDisplayName property
|
|
9306
|
+
*/
|
|
9307
|
+
imageDisplayName?: string;
|
|
9308
|
+
/**
|
|
9309
|
+
* The imageId property
|
|
9310
|
+
*/
|
|
9311
|
+
imageId?: string;
|
|
9312
|
+
/**
|
|
9313
|
+
* The imageType property
|
|
9314
|
+
*/
|
|
9315
|
+
imageType?: CloudPcProvisioningPolicyImageType;
|
|
9316
|
+
/**
|
|
9317
|
+
* The localAdminEnabled property
|
|
9318
|
+
*/
|
|
9319
|
+
localAdminEnabled?: boolean;
|
|
9320
|
+
/**
|
|
9321
|
+
* The microsoftManagedDesktop property
|
|
9322
|
+
*/
|
|
9323
|
+
microsoftManagedDesktop?: MicrosoftManagedDesktop;
|
|
9324
|
+
/**
|
|
9325
|
+
* The provisioningType property
|
|
9326
|
+
*/
|
|
9327
|
+
provisioningType?: CloudPcProvisioningType;
|
|
9328
|
+
/**
|
|
9329
|
+
* The windowsSetting property
|
|
9330
|
+
*/
|
|
9331
|
+
windowsSetting?: CloudPcWindowsSetting;
|
|
9332
|
+
}
|
|
9333
|
+
export interface CloudPcProvisioningPolicyAssignment extends Entity, Parsable {
|
|
9334
|
+
/**
|
|
9335
|
+
* The assignedUsers property
|
|
9336
|
+
*/
|
|
9337
|
+
assignedUsers?: User[];
|
|
9338
|
+
/**
|
|
9339
|
+
* The target property
|
|
9340
|
+
*/
|
|
9341
|
+
target?: CloudPcManagementAssignmentTarget;
|
|
9342
|
+
}
|
|
9343
|
+
export interface CloudPcProvisioningPolicyAssignmentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9344
|
+
/**
|
|
9345
|
+
* The value property
|
|
9346
|
+
*/
|
|
9347
|
+
value?: CloudPcProvisioningPolicyAssignment[];
|
|
9348
|
+
}
|
|
9349
|
+
export interface CloudPcProvisioningPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9350
|
+
/**
|
|
9351
|
+
* The value property
|
|
9352
|
+
*/
|
|
9353
|
+
value?: CloudPcProvisioningPolicy[];
|
|
9354
|
+
}
|
|
9355
|
+
export type CloudPcProvisioningPolicyImageType = (typeof CloudPcProvisioningPolicyImageTypeObject)[keyof typeof CloudPcProvisioningPolicyImageTypeObject];
|
|
9356
|
+
export type CloudPcProvisioningType = (typeof CloudPcProvisioningTypeObject)[keyof typeof CloudPcProvisioningTypeObject];
|
|
9357
|
+
export type CloudPcRegionGroup = (typeof CloudPcRegionGroupObject)[keyof typeof CloudPcRegionGroupObject];
|
|
9358
|
+
export type CloudPcRestorePointFrequencyType = (typeof CloudPcRestorePointFrequencyTypeObject)[keyof typeof CloudPcRestorePointFrequencyTypeObject];
|
|
9359
|
+
export interface CloudPcRestorePointSetting extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9360
|
+
/**
|
|
9361
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9362
|
+
*/
|
|
9363
|
+
additionalData?: Record<string, unknown>;
|
|
9364
|
+
/**
|
|
9365
|
+
* Stores model information.
|
|
9366
|
+
*/
|
|
9367
|
+
backingStoreEnabled?: boolean;
|
|
9368
|
+
/**
|
|
9369
|
+
* The frequencyType property
|
|
9370
|
+
*/
|
|
9371
|
+
frequencyType?: CloudPcRestorePointFrequencyType;
|
|
9372
|
+
/**
|
|
9373
|
+
* The OdataType property
|
|
9374
|
+
*/
|
|
9375
|
+
odataType?: string;
|
|
9376
|
+
/**
|
|
9377
|
+
* The userRestoreEnabled property
|
|
9378
|
+
*/
|
|
9379
|
+
userRestoreEnabled?: boolean;
|
|
9380
|
+
}
|
|
9381
|
+
export interface CloudPcSourceDeviceImage extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9382
|
+
/**
|
|
9383
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9384
|
+
*/
|
|
9385
|
+
additionalData?: Record<string, unknown>;
|
|
9386
|
+
/**
|
|
9387
|
+
* Stores model information.
|
|
9388
|
+
*/
|
|
9389
|
+
backingStoreEnabled?: boolean;
|
|
9390
|
+
/**
|
|
9391
|
+
* The displayName property
|
|
9392
|
+
*/
|
|
9393
|
+
displayName?: string;
|
|
9394
|
+
/**
|
|
9395
|
+
* The OdataType property
|
|
9396
|
+
*/
|
|
9397
|
+
odataType?: string;
|
|
9398
|
+
/**
|
|
9399
|
+
* The resourceId property
|
|
9400
|
+
*/
|
|
9401
|
+
resourceId?: string;
|
|
9402
|
+
/**
|
|
9403
|
+
* The subscriptionDisplayName property
|
|
9404
|
+
*/
|
|
9405
|
+
subscriptionDisplayName?: string;
|
|
9406
|
+
/**
|
|
9407
|
+
* The subscriptionId property
|
|
9408
|
+
*/
|
|
9409
|
+
subscriptionId?: string;
|
|
9410
|
+
}
|
|
9411
|
+
export interface CloudPcUserRoleScopeTagInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9412
|
+
/**
|
|
9413
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9414
|
+
*/
|
|
9415
|
+
additionalData?: Record<string, unknown>;
|
|
9416
|
+
/**
|
|
9417
|
+
* Stores model information.
|
|
9418
|
+
*/
|
|
9419
|
+
backingStoreEnabled?: boolean;
|
|
9420
|
+
/**
|
|
9421
|
+
* The displayName property
|
|
9422
|
+
*/
|
|
9423
|
+
displayName?: string;
|
|
9424
|
+
/**
|
|
9425
|
+
* The OdataType property
|
|
9426
|
+
*/
|
|
9427
|
+
odataType?: string;
|
|
9428
|
+
/**
|
|
9429
|
+
* The roleScopeTagId property
|
|
9430
|
+
*/
|
|
9431
|
+
roleScopeTagId?: string;
|
|
9432
|
+
}
|
|
9433
|
+
export interface CloudPcUserSetting extends Entity, Parsable {
|
|
9434
|
+
/**
|
|
9435
|
+
* The assignments property
|
|
9436
|
+
*/
|
|
9437
|
+
assignments?: CloudPcUserSettingAssignment[];
|
|
9438
|
+
/**
|
|
9439
|
+
* The createdDateTime property
|
|
9440
|
+
*/
|
|
9441
|
+
createdDateTime?: Date;
|
|
9442
|
+
/**
|
|
9443
|
+
* The displayName property
|
|
9444
|
+
*/
|
|
9445
|
+
displayName?: string;
|
|
9446
|
+
/**
|
|
9447
|
+
* The lastModifiedDateTime property
|
|
9448
|
+
*/
|
|
9449
|
+
lastModifiedDateTime?: Date;
|
|
9450
|
+
/**
|
|
9451
|
+
* The localAdminEnabled property
|
|
9452
|
+
*/
|
|
9453
|
+
localAdminEnabled?: boolean;
|
|
9454
|
+
/**
|
|
9455
|
+
* The resetEnabled property
|
|
9456
|
+
*/
|
|
9457
|
+
resetEnabled?: boolean;
|
|
9458
|
+
/**
|
|
9459
|
+
* The restorePointSetting property
|
|
9460
|
+
*/
|
|
9461
|
+
restorePointSetting?: CloudPcRestorePointSetting;
|
|
9462
|
+
}
|
|
9463
|
+
export interface CloudPcUserSettingAssignment extends Entity, Parsable {
|
|
9464
|
+
/**
|
|
9465
|
+
* The createdDateTime property
|
|
9466
|
+
*/
|
|
9467
|
+
createdDateTime?: Date;
|
|
9468
|
+
/**
|
|
9469
|
+
* The target property
|
|
9470
|
+
*/
|
|
9471
|
+
target?: CloudPcManagementAssignmentTarget;
|
|
9472
|
+
}
|
|
9473
|
+
export interface CloudPcUserSettingAssignmentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9474
|
+
/**
|
|
9475
|
+
* The value property
|
|
9476
|
+
*/
|
|
9477
|
+
value?: CloudPcUserSettingAssignment[];
|
|
9478
|
+
}
|
|
9479
|
+
export interface CloudPcUserSettingCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9480
|
+
/**
|
|
9481
|
+
* The value property
|
|
9482
|
+
*/
|
|
9483
|
+
value?: CloudPcUserSetting[];
|
|
9484
|
+
}
|
|
9485
|
+
export interface CloudPcWindowsSetting extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9486
|
+
/**
|
|
9487
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9488
|
+
*/
|
|
9489
|
+
additionalData?: Record<string, unknown>;
|
|
9490
|
+
/**
|
|
9491
|
+
* Stores model information.
|
|
9492
|
+
*/
|
|
9493
|
+
backingStoreEnabled?: boolean;
|
|
9494
|
+
/**
|
|
9495
|
+
* The locale property
|
|
9496
|
+
*/
|
|
9497
|
+
locale?: string;
|
|
9498
|
+
/**
|
|
9499
|
+
* The OdataType property
|
|
9500
|
+
*/
|
|
9501
|
+
odataType?: string;
|
|
9502
|
+
}
|
|
8650
9503
|
export interface CoachmarkLocation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8651
9504
|
/**
|
|
8652
9505
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -9079,11 +9932,11 @@ export interface ConditionalAccessApplications extends AdditionalDataHolder, Bac
|
|
|
9079
9932
|
*/
|
|
9080
9933
|
backingStoreEnabled?: boolean;
|
|
9081
9934
|
/**
|
|
9082
|
-
* Can be one of the following: The list of client IDs (appId) explicitly excluded from the policy. Office365 - For the list of apps included in Office365, see Apps included in Conditional Access Office 365 app suite
|
|
9935
|
+
* Can be one of the following: The list of client IDs (appId) explicitly excluded from the policy. Office365 - For the list of apps included in Office365, see Apps included in Conditional Access Office 365 app suite MicrosoftAdminPortals - For more information, see Conditional Access Target resources: Microsoft Admin Portals
|
|
9083
9936
|
*/
|
|
9084
9937
|
excludeApplications?: string[];
|
|
9085
9938
|
/**
|
|
9086
|
-
* Can be one of the following: The list of client IDs (appId) the policy applies to, unless explicitly excluded (in excludeApplications) All Office365 - For the list of apps included in Office365, see Apps included in Conditional Access Office 365 app suite
|
|
9939
|
+
* Can be one of the following: The list of client IDs (appId) the policy applies to, unless explicitly excluded (in excludeApplications) All Office365 - For the list of apps included in Office365, see Apps included in Conditional Access Office 365 app suite MicrosoftAdminPortals - For more information, see Conditional Access Target resources: Microsoft Admin Portals
|
|
9087
9940
|
*/
|
|
9088
9941
|
includeApplications?: string[];
|
|
9089
9942
|
/**
|
|
@@ -9751,27 +10604,27 @@ export interface Contact extends OutlookItem, Parsable {
|
|
|
9751
10604
|
*/
|
|
9752
10605
|
homePhones?: string[];
|
|
9753
10606
|
/**
|
|
9754
|
-
* The
|
|
10607
|
+
* The contact's instant messaging (IM) addresses.
|
|
9755
10608
|
*/
|
|
9756
10609
|
imAddresses?: string[];
|
|
9757
10610
|
/**
|
|
9758
|
-
* The initials
|
|
10611
|
+
* The contact's initials.
|
|
9759
10612
|
*/
|
|
9760
10613
|
initials?: string;
|
|
9761
10614
|
/**
|
|
9762
|
-
* The
|
|
10615
|
+
* The contact’s job title.
|
|
9763
10616
|
*/
|
|
9764
10617
|
jobTitle?: string;
|
|
9765
10618
|
/**
|
|
9766
|
-
* The manager
|
|
10619
|
+
* The name of the contact's manager.
|
|
9767
10620
|
*/
|
|
9768
10621
|
manager?: string;
|
|
9769
10622
|
/**
|
|
9770
|
-
* The
|
|
10623
|
+
* The contact's middle name.
|
|
9771
10624
|
*/
|
|
9772
10625
|
middleName?: string;
|
|
9773
10626
|
/**
|
|
9774
|
-
* The
|
|
10627
|
+
* The contact's mobile phone number.
|
|
9775
10628
|
*/
|
|
9776
10629
|
mobilePhone?: string;
|
|
9777
10630
|
/**
|
|
@@ -9779,23 +10632,23 @@ export interface Contact extends OutlookItem, Parsable {
|
|
|
9779
10632
|
*/
|
|
9780
10633
|
multiValueExtendedProperties?: MultiValueLegacyExtendedProperty[];
|
|
9781
10634
|
/**
|
|
9782
|
-
* The
|
|
10635
|
+
* The contact's nickname.
|
|
9783
10636
|
*/
|
|
9784
10637
|
nickName?: string;
|
|
9785
10638
|
/**
|
|
9786
|
-
* The
|
|
10639
|
+
* The location of the contact's office.
|
|
9787
10640
|
*/
|
|
9788
10641
|
officeLocation?: string;
|
|
9789
10642
|
/**
|
|
9790
|
-
*
|
|
10643
|
+
* Other addresses for the contact.
|
|
9791
10644
|
*/
|
|
9792
10645
|
otherAddress?: PhysicalAddress;
|
|
9793
10646
|
/**
|
|
9794
|
-
* The
|
|
10647
|
+
* The ID of the contact's parent folder.
|
|
9795
10648
|
*/
|
|
9796
10649
|
parentFolderId?: string;
|
|
9797
10650
|
/**
|
|
9798
|
-
* The
|
|
10651
|
+
* The user's notes about the contact.
|
|
9799
10652
|
*/
|
|
9800
10653
|
personalNotes?: string;
|
|
9801
10654
|
/**
|
|
@@ -9803,7 +10656,7 @@ export interface Contact extends OutlookItem, Parsable {
|
|
|
9803
10656
|
*/
|
|
9804
10657
|
photo?: ProfilePhoto;
|
|
9805
10658
|
/**
|
|
9806
|
-
* The profession
|
|
10659
|
+
* The contact's profession.
|
|
9807
10660
|
*/
|
|
9808
10661
|
profession?: string;
|
|
9809
10662
|
/**
|
|
@@ -9811,27 +10664,27 @@ export interface Contact extends OutlookItem, Parsable {
|
|
|
9811
10664
|
*/
|
|
9812
10665
|
singleValueExtendedProperties?: SingleValueLegacyExtendedProperty[];
|
|
9813
10666
|
/**
|
|
9814
|
-
* The
|
|
10667
|
+
* The name of the contact's spouse/partner.
|
|
9815
10668
|
*/
|
|
9816
10669
|
spouseName?: string;
|
|
9817
10670
|
/**
|
|
9818
|
-
* The surname
|
|
10671
|
+
* The contact's surname.
|
|
9819
10672
|
*/
|
|
9820
10673
|
surname?: string;
|
|
9821
10674
|
/**
|
|
9822
|
-
* The title
|
|
10675
|
+
* The contact's title.
|
|
9823
10676
|
*/
|
|
9824
10677
|
title?: string;
|
|
9825
10678
|
/**
|
|
9826
|
-
* The
|
|
10679
|
+
* The phonetic Japanese company name of the contact.
|
|
9827
10680
|
*/
|
|
9828
10681
|
yomiCompanyName?: string;
|
|
9829
10682
|
/**
|
|
9830
|
-
* The
|
|
10683
|
+
* The phonetic Japanese given name (first name) of the contact.
|
|
9831
10684
|
*/
|
|
9832
10685
|
yomiGivenName?: string;
|
|
9833
10686
|
/**
|
|
9834
|
-
* The
|
|
10687
|
+
* The phonetic Japanese surname (last name) of the contact.
|
|
9835
10688
|
*/
|
|
9836
10689
|
yomiSurname?: string;
|
|
9837
10690
|
}
|
|
@@ -10880,6 +11733,12 @@ export declare function createAdministrativeUnitCollectionResponseFromDiscrimina
|
|
|
10880
11733
|
* @returns {AdministrativeUnit}
|
|
10881
11734
|
*/
|
|
10882
11735
|
export declare function createAdministrativeUnitFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
11736
|
+
/**
|
|
11737
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
11738
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
11739
|
+
* @returns {AdminMicrosoft365Apps}
|
|
11740
|
+
*/
|
|
11741
|
+
export declare function createAdminMicrosoft365AppsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
10883
11742
|
/**
|
|
10884
11743
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
10885
11744
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -11348,6 +12207,18 @@ export declare function createApprovalStageFromDiscriminatorValue(parseNode: Par
|
|
|
11348
12207
|
* @returns {AppScope}
|
|
11349
12208
|
*/
|
|
11350
12209
|
export declare function createAppScopeFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12210
|
+
/**
|
|
12211
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12212
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12213
|
+
* @returns {AppsInstallationOptionsForMac}
|
|
12214
|
+
*/
|
|
12215
|
+
export declare function createAppsInstallationOptionsForMacFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12216
|
+
/**
|
|
12217
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12218
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12219
|
+
* @returns {AppsInstallationOptionsForWindows}
|
|
12220
|
+
*/
|
|
12221
|
+
export declare function createAppsInstallationOptionsForWindowsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
11351
12222
|
/**
|
|
11352
12223
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
11353
12224
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -11918,6 +12789,18 @@ export declare function createBaseItemFromDiscriminatorValue(parseNode: ParseNod
|
|
|
11918
12789
|
* @returns {BaseItemVersion}
|
|
11919
12790
|
*/
|
|
11920
12791
|
export declare function createBaseItemVersionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12792
|
+
/**
|
|
12793
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12794
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12795
|
+
* @returns {BaseSitePageCollectionResponse}
|
|
12796
|
+
*/
|
|
12797
|
+
export declare function createBaseSitePageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12798
|
+
/**
|
|
12799
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12800
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12801
|
+
* @returns {BaseSitePage}
|
|
12802
|
+
*/
|
|
12803
|
+
export declare function createBaseSitePageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
11921
12804
|
/**
|
|
11922
12805
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
11923
12806
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12338,6 +13221,12 @@ export declare function createCallTranscriptionInfoFromDiscriminatorValue(parseN
|
|
|
12338
13221
|
* @returns {CancelMediaProcessingOperation}
|
|
12339
13222
|
*/
|
|
12340
13223
|
export declare function createCancelMediaProcessingOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13224
|
+
/**
|
|
13225
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13226
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13227
|
+
* @returns {CanvasLayout}
|
|
13228
|
+
*/
|
|
13229
|
+
export declare function createCanvasLayoutFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12341
13230
|
/**
|
|
12342
13231
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12343
13232
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12638,6 +13527,186 @@ export declare function createCloudClipboardRootFromDiscriminatorValue(parseNode
|
|
|
12638
13527
|
* @returns {CloudCommunications}
|
|
12639
13528
|
*/
|
|
12640
13529
|
export declare function createCloudCommunicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13530
|
+
/**
|
|
13531
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13532
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13533
|
+
* @returns {CloudPcAuditActor}
|
|
13534
|
+
*/
|
|
13535
|
+
export declare function createCloudPcAuditActorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13536
|
+
/**
|
|
13537
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13538
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13539
|
+
* @returns {CloudPcAuditEventCollectionResponse}
|
|
13540
|
+
*/
|
|
13541
|
+
export declare function createCloudPcAuditEventCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13542
|
+
/**
|
|
13543
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13544
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13545
|
+
* @returns {CloudPcAuditEvent}
|
|
13546
|
+
*/
|
|
13547
|
+
export declare function createCloudPcAuditEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13548
|
+
/**
|
|
13549
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13550
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13551
|
+
* @returns {CloudPcAuditProperty}
|
|
13552
|
+
*/
|
|
13553
|
+
export declare function createCloudPcAuditPropertyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13554
|
+
/**
|
|
13555
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13556
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13557
|
+
* @returns {CloudPcAuditResource}
|
|
13558
|
+
*/
|
|
13559
|
+
export declare function createCloudPcAuditResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13560
|
+
/**
|
|
13561
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13562
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13563
|
+
* @returns {CloudPCCollectionResponse}
|
|
13564
|
+
*/
|
|
13565
|
+
export declare function createCloudPCCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13566
|
+
/**
|
|
13567
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13568
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13569
|
+
* @returns {CloudPcDeviceImageCollectionResponse}
|
|
13570
|
+
*/
|
|
13571
|
+
export declare function createCloudPcDeviceImageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13572
|
+
/**
|
|
13573
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13574
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13575
|
+
* @returns {CloudPcDeviceImage}
|
|
13576
|
+
*/
|
|
13577
|
+
export declare function createCloudPcDeviceImageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13578
|
+
/**
|
|
13579
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13580
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13581
|
+
* @returns {CloudPcDomainJoinConfiguration}
|
|
13582
|
+
*/
|
|
13583
|
+
export declare function createCloudPcDomainJoinConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13584
|
+
/**
|
|
13585
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13586
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13587
|
+
* @returns {CloudPC}
|
|
13588
|
+
*/
|
|
13589
|
+
export declare function createCloudPCFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13590
|
+
/**
|
|
13591
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13592
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13593
|
+
* @returns {CloudPcGalleryImageCollectionResponse}
|
|
13594
|
+
*/
|
|
13595
|
+
export declare function createCloudPcGalleryImageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13596
|
+
/**
|
|
13597
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13598
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13599
|
+
* @returns {CloudPcGalleryImage}
|
|
13600
|
+
*/
|
|
13601
|
+
export declare function createCloudPcGalleryImageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13602
|
+
/**
|
|
13603
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13604
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13605
|
+
* @returns {CloudPcManagementAssignmentTarget}
|
|
13606
|
+
*/
|
|
13607
|
+
export declare function createCloudPcManagementAssignmentTargetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13608
|
+
/**
|
|
13609
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13610
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13611
|
+
* @returns {CloudPcManagementGroupAssignmentTarget}
|
|
13612
|
+
*/
|
|
13613
|
+
export declare function createCloudPcManagementGroupAssignmentTargetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13614
|
+
/**
|
|
13615
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13616
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13617
|
+
* @returns {CloudPcOnPremisesConnectionCollectionResponse}
|
|
13618
|
+
*/
|
|
13619
|
+
export declare function createCloudPcOnPremisesConnectionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13620
|
+
/**
|
|
13621
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13622
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13623
|
+
* @returns {CloudPcOnPremisesConnection}
|
|
13624
|
+
*/
|
|
13625
|
+
export declare function createCloudPcOnPremisesConnectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13626
|
+
/**
|
|
13627
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13628
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13629
|
+
* @returns {CloudPcOnPremisesConnectionHealthCheck}
|
|
13630
|
+
*/
|
|
13631
|
+
export declare function createCloudPcOnPremisesConnectionHealthCheckFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13632
|
+
/**
|
|
13633
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13634
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13635
|
+
* @returns {CloudPcOnPremisesConnectionStatusDetail}
|
|
13636
|
+
*/
|
|
13637
|
+
export declare function createCloudPcOnPremisesConnectionStatusDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13638
|
+
/**
|
|
13639
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13640
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13641
|
+
* @returns {CloudPcProvisioningPolicyAssignmentCollectionResponse}
|
|
13642
|
+
*/
|
|
13643
|
+
export declare function createCloudPcProvisioningPolicyAssignmentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13644
|
+
/**
|
|
13645
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13646
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13647
|
+
* @returns {CloudPcProvisioningPolicyAssignment}
|
|
13648
|
+
*/
|
|
13649
|
+
export declare function createCloudPcProvisioningPolicyAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13650
|
+
/**
|
|
13651
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13652
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13653
|
+
* @returns {CloudPcProvisioningPolicyCollectionResponse}
|
|
13654
|
+
*/
|
|
13655
|
+
export declare function createCloudPcProvisioningPolicyCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13656
|
+
/**
|
|
13657
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13658
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13659
|
+
* @returns {CloudPcProvisioningPolicy}
|
|
13660
|
+
*/
|
|
13661
|
+
export declare function createCloudPcProvisioningPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13662
|
+
/**
|
|
13663
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13664
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13665
|
+
* @returns {CloudPcRestorePointSetting}
|
|
13666
|
+
*/
|
|
13667
|
+
export declare function createCloudPcRestorePointSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13668
|
+
/**
|
|
13669
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13670
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13671
|
+
* @returns {CloudPcSourceDeviceImage}
|
|
13672
|
+
*/
|
|
13673
|
+
export declare function createCloudPcSourceDeviceImageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13674
|
+
/**
|
|
13675
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13676
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13677
|
+
* @returns {CloudPcUserRoleScopeTagInfo}
|
|
13678
|
+
*/
|
|
13679
|
+
export declare function createCloudPcUserRoleScopeTagInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13680
|
+
/**
|
|
13681
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13682
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13683
|
+
* @returns {CloudPcUserSettingAssignmentCollectionResponse}
|
|
13684
|
+
*/
|
|
13685
|
+
export declare function createCloudPcUserSettingAssignmentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13686
|
+
/**
|
|
13687
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13688
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13689
|
+
* @returns {CloudPcUserSettingAssignment}
|
|
13690
|
+
*/
|
|
13691
|
+
export declare function createCloudPcUserSettingAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13692
|
+
/**
|
|
13693
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13694
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13695
|
+
* @returns {CloudPcUserSettingCollectionResponse}
|
|
13696
|
+
*/
|
|
13697
|
+
export declare function createCloudPcUserSettingCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13698
|
+
/**
|
|
13699
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13700
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13701
|
+
* @returns {CloudPcUserSetting}
|
|
13702
|
+
*/
|
|
13703
|
+
export declare function createCloudPcUserSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13704
|
+
/**
|
|
13705
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13706
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13707
|
+
* @returns {CloudPcWindowsSetting}
|
|
13708
|
+
*/
|
|
13709
|
+
export declare function createCloudPcWindowsSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12641
13710
|
/**
|
|
12642
13711
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12643
13712
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -13856,6 +14925,12 @@ export declare function createDeviceLogCollectionResponseCollectionResponseFromD
|
|
|
13856
14925
|
* @returns {DeviceLogCollectionResponse}
|
|
13857
14926
|
*/
|
|
13858
14927
|
export declare function createDeviceLogCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
14928
|
+
/**
|
|
14929
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
14930
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
14931
|
+
* @returns {DeviceManagementCachedReportConfiguration}
|
|
14932
|
+
*/
|
|
14933
|
+
export declare function createDeviceManagementCachedReportConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13859
14934
|
/**
|
|
13860
14935
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
13861
14936
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15170,6 +16245,30 @@ export declare function createHomeRealmDiscoveryPolicyCollectionResponseFromDisc
|
|
|
15170
16245
|
* @returns {HomeRealmDiscoveryPolicy}
|
|
15171
16246
|
*/
|
|
15172
16247
|
export declare function createHomeRealmDiscoveryPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16248
|
+
/**
|
|
16249
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16250
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16251
|
+
* @returns {HorizontalSectionCollectionResponse}
|
|
16252
|
+
*/
|
|
16253
|
+
export declare function createHorizontalSectionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16254
|
+
/**
|
|
16255
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16256
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16257
|
+
* @returns {HorizontalSectionColumnCollectionResponse}
|
|
16258
|
+
*/
|
|
16259
|
+
export declare function createHorizontalSectionColumnCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16260
|
+
/**
|
|
16261
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16262
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16263
|
+
* @returns {HorizontalSectionColumn}
|
|
16264
|
+
*/
|
|
16265
|
+
export declare function createHorizontalSectionColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16266
|
+
/**
|
|
16267
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
16268
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
16269
|
+
* @returns {HorizontalSection}
|
|
16270
|
+
*/
|
|
16271
|
+
export declare function createHorizontalSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15173
16272
|
/**
|
|
15174
16273
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15175
16274
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16124,6 +17223,12 @@ export declare function createLongRunningOperationFromDiscriminatorValue(parseNo
|
|
|
16124
17223
|
* @returns {LookupColumn}
|
|
16125
17224
|
*/
|
|
16126
17225
|
export declare function createLookupColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17226
|
+
/**
|
|
17227
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17228
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17229
|
+
* @returns {M365AppsInstallationOptions}
|
|
17230
|
+
*/
|
|
17231
|
+
export declare function createM365AppsInstallationOptionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16127
17232
|
/**
|
|
16128
17233
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16129
17234
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16760,6 +17865,12 @@ export declare function createMessageSecurityStateFromDiscriminatorValue(parseNo
|
|
|
16760
17865
|
* @returns {MessageUnpinnedEventMessageDetail}
|
|
16761
17866
|
*/
|
|
16762
17867
|
export declare function createMessageUnpinnedEventMessageDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17868
|
+
/**
|
|
17869
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17870
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17871
|
+
* @returns {MetaDataKeyStringPair}
|
|
17872
|
+
*/
|
|
17873
|
+
export declare function createMetaDataKeyStringPairFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16763
17874
|
/**
|
|
16764
17875
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16765
17876
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16802,6 +17913,12 @@ export declare function createMicrosoftAuthenticatorFeatureSettingsFromDiscrimin
|
|
|
16802
17913
|
* @returns {MicrosoftCustomTrainingSetting}
|
|
16803
17914
|
*/
|
|
16804
17915
|
export declare function createMicrosoftCustomTrainingSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17916
|
+
/**
|
|
17917
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17918
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17919
|
+
* @returns {MicrosoftManagedDesktop}
|
|
17920
|
+
*/
|
|
17921
|
+
export declare function createMicrosoftManagedDesktopFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16805
17922
|
/**
|
|
16806
17923
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16807
17924
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18500,6 +19617,12 @@ export declare function createQuotaFromDiscriminatorValue(parseNode: ParseNode |
|
|
|
18500
19617
|
* @returns {RbacApplication}
|
|
18501
19618
|
*/
|
|
18502
19619
|
export declare function createRbacApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19620
|
+
/**
|
|
19621
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19622
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19623
|
+
* @returns {ReactionsFacet}
|
|
19624
|
+
*/
|
|
19625
|
+
export declare function createReactionsFacetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18503
19626
|
/**
|
|
18504
19627
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18505
19628
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19232,6 +20355,12 @@ export declare function createSendDtmfTonesOperationFromDiscriminatorValue(parse
|
|
|
19232
20355
|
* @returns {SensitivityLabelAssignment}
|
|
19233
20356
|
*/
|
|
19234
20357
|
export declare function createSensitivityLabelAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20358
|
+
/**
|
|
20359
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20360
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20361
|
+
* @returns {ServerProcessedContent}
|
|
20362
|
+
*/
|
|
20363
|
+
export declare function createServerProcessedContentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19235
20364
|
/**
|
|
19236
20365
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19237
20366
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19688,6 +20817,18 @@ export declare function createSiteCollectionResponseFromDiscriminatorValue(parse
|
|
|
19688
20817
|
* @returns {Site}
|
|
19689
20818
|
*/
|
|
19690
20819
|
export declare function createSiteFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20820
|
+
/**
|
|
20821
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20822
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20823
|
+
* @returns {SitePageCollectionResponse}
|
|
20824
|
+
*/
|
|
20825
|
+
export declare function createSitePageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20826
|
+
/**
|
|
20827
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20828
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20829
|
+
* @returns {SitePage}
|
|
20830
|
+
*/
|
|
20831
|
+
export declare function createSitePageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19691
20832
|
/**
|
|
19692
20833
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19693
20834
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19790,6 +20931,12 @@ export declare function createStaffAvailabilityItemFromDiscriminatorValue(parseN
|
|
|
19790
20931
|
* @returns {StandardTimeZoneOffset}
|
|
19791
20932
|
*/
|
|
19792
20933
|
export declare function createStandardTimeZoneOffsetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20934
|
+
/**
|
|
20935
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20936
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20937
|
+
* @returns {StandardWebPart}
|
|
20938
|
+
*/
|
|
20939
|
+
export declare function createStandardWebPartFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19793
20940
|
/**
|
|
19794
20941
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19795
20942
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20588,6 +21735,12 @@ export declare function createTermsOfUseContainerFromDiscriminatorValue(parseNod
|
|
|
20588
21735
|
* @returns {TextColumn}
|
|
20589
21736
|
*/
|
|
20590
21737
|
export declare function createTextColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21738
|
+
/**
|
|
21739
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21740
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21741
|
+
* @returns {TextWebPart}
|
|
21742
|
+
*/
|
|
21743
|
+
export declare function createTextWebPartFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20591
21744
|
/**
|
|
20592
21745
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20593
21746
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20714,6 +21867,12 @@ export declare function createTimeZoneBaseFromDiscriminatorValue(parseNode: Pars
|
|
|
20714
21867
|
* @returns {TimeZoneInformation}
|
|
20715
21868
|
*/
|
|
20716
21869
|
export declare function createTimeZoneInformationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21870
|
+
/**
|
|
21871
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21872
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21873
|
+
* @returns {TitleArea}
|
|
21874
|
+
*/
|
|
21875
|
+
export declare function createTitleAreaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20717
21876
|
/**
|
|
20718
21877
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20719
21878
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21662,6 +22821,12 @@ export declare function createVerifiedDomainFromDiscriminatorValue(parseNode: Pa
|
|
|
21662
22821
|
* @returns {VerifiedPublisher}
|
|
21663
22822
|
*/
|
|
21664
22823
|
export declare function createVerifiedPublisherFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22824
|
+
/**
|
|
22825
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22826
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22827
|
+
* @returns {VerticalSection}
|
|
22828
|
+
*/
|
|
22829
|
+
export declare function createVerticalSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21665
22830
|
/**
|
|
21666
22831
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21667
22832
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21788,6 +22953,30 @@ export declare function createWebAppFromDiscriminatorValue(parseNode: ParseNode
|
|
|
21788
22953
|
* @returns {WebApplication}
|
|
21789
22954
|
*/
|
|
21790
22955
|
export declare function createWebApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22956
|
+
/**
|
|
22957
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22958
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22959
|
+
* @returns {WebPartCollectionResponse}
|
|
22960
|
+
*/
|
|
22961
|
+
export declare function createWebPartCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22962
|
+
/**
|
|
22963
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22964
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22965
|
+
* @returns {WebPartData}
|
|
22966
|
+
*/
|
|
22967
|
+
export declare function createWebPartDataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22968
|
+
/**
|
|
22969
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22970
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22971
|
+
* @returns {WebPart}
|
|
22972
|
+
*/
|
|
22973
|
+
export declare function createWebPartFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22974
|
+
/**
|
|
22975
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22976
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22977
|
+
* @returns {WebPartPosition}
|
|
22978
|
+
*/
|
|
22979
|
+
export declare function createWebPartPositionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21791
22980
|
/**
|
|
21792
22981
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21793
22982
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21884,6 +23073,12 @@ export declare function createWindows10CustomConfigurationFromDiscriminatorValue
|
|
|
21884
23073
|
* @returns {Windows10EndpointProtectionConfiguration}
|
|
21885
23074
|
*/
|
|
21886
23075
|
export declare function createWindows10EndpointProtectionConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
23076
|
+
/**
|
|
23077
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23078
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
23079
|
+
* @returns {Windows10EnrollmentCompletionPageConfiguration}
|
|
23080
|
+
*/
|
|
23081
|
+
export declare function createWindows10EnrollmentCompletionPageConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21887
23082
|
/**
|
|
21888
23083
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21889
23084
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23769,7 +24964,7 @@ export interface DelegatedAdminServiceManagementDetailCollectionResponse extends
|
|
|
23769
24964
|
}
|
|
23770
24965
|
export interface DelegatedPermissionClassification extends Entity, Parsable {
|
|
23771
24966
|
/**
|
|
23772
|
-
* The classification value
|
|
24967
|
+
* The classification value. Possible values: low, medium (preview), high (preview). Doesn't support $filter.
|
|
23773
24968
|
*/
|
|
23774
24969
|
classification?: PermissionClassificationType;
|
|
23775
24970
|
/**
|
|
@@ -24316,6 +25511,11 @@ export declare function deserializeIntoAdministrativeUnit(administrativeUnit?: P
|
|
|
24316
25511
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
24317
25512
|
*/
|
|
24318
25513
|
export declare function deserializeIntoAdministrativeUnitCollectionResponse(administrativeUnitCollectionResponse?: Partial<AdministrativeUnitCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25514
|
+
/**
|
|
25515
|
+
* The deserialization information for the current model
|
|
25516
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25517
|
+
*/
|
|
25518
|
+
export declare function deserializeIntoAdminMicrosoft365Apps(adminMicrosoft365Apps?: Partial<AdminMicrosoft365Apps> | undefined): Record<string, (node: ParseNode) => void>;
|
|
24319
25519
|
/**
|
|
24320
25520
|
* The deserialization information for the current model
|
|
24321
25521
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -24706,6 +25906,16 @@ export declare function deserializeIntoApprovalStageCollectionResponse(approvalS
|
|
|
24706
25906
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
24707
25907
|
*/
|
|
24708
25908
|
export declare function deserializeIntoAppScope(appScope?: Partial<AppScope> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25909
|
+
/**
|
|
25910
|
+
* The deserialization information for the current model
|
|
25911
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25912
|
+
*/
|
|
25913
|
+
export declare function deserializeIntoAppsInstallationOptionsForMac(appsInstallationOptionsForMac?: Partial<AppsInstallationOptionsForMac> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25914
|
+
/**
|
|
25915
|
+
* The deserialization information for the current model
|
|
25916
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25917
|
+
*/
|
|
25918
|
+
export declare function deserializeIntoAppsInstallationOptionsForWindows(appsInstallationOptionsForWindows?: Partial<AppsInstallationOptionsForWindows> | undefined): Record<string, (node: ParseNode) => void>;
|
|
24709
25919
|
/**
|
|
24710
25920
|
* The deserialization information for the current model
|
|
24711
25921
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -25181,6 +26391,16 @@ export declare function deserializeIntoBaseItemCollectionResponse(baseItemCollec
|
|
|
25181
26391
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25182
26392
|
*/
|
|
25183
26393
|
export declare function deserializeIntoBaseItemVersion(baseItemVersion?: Partial<BaseItemVersion> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26394
|
+
/**
|
|
26395
|
+
* The deserialization information for the current model
|
|
26396
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26397
|
+
*/
|
|
26398
|
+
export declare function deserializeIntoBaseSitePage(baseSitePage?: Partial<BaseSitePage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26399
|
+
/**
|
|
26400
|
+
* The deserialization information for the current model
|
|
26401
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26402
|
+
*/
|
|
26403
|
+
export declare function deserializeIntoBaseSitePageCollectionResponse(baseSitePageCollectionResponse?: Partial<BaseSitePageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25184
26404
|
/**
|
|
25185
26405
|
* The deserialization information for the current model
|
|
25186
26406
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -25531,6 +26751,11 @@ export declare function deserializeIntoCallTranscriptionInfo(callTranscriptionIn
|
|
|
25531
26751
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25532
26752
|
*/
|
|
25533
26753
|
export declare function deserializeIntoCancelMediaProcessingOperation(cancelMediaProcessingOperation?: Partial<CancelMediaProcessingOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26754
|
+
/**
|
|
26755
|
+
* The deserialization information for the current model
|
|
26756
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26757
|
+
*/
|
|
26758
|
+
export declare function deserializeIntoCanvasLayout(canvasLayout?: Partial<CanvasLayout> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25534
26759
|
/**
|
|
25535
26760
|
* The deserialization information for the current model
|
|
25536
26761
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -25781,6 +27006,156 @@ export declare function deserializeIntoCloudClipboardRoot(cloudClipboardRoot?: P
|
|
|
25781
27006
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25782
27007
|
*/
|
|
25783
27008
|
export declare function deserializeIntoCloudCommunications(cloudCommunications?: Partial<CloudCommunications> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27009
|
+
/**
|
|
27010
|
+
* The deserialization information for the current model
|
|
27011
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27012
|
+
*/
|
|
27013
|
+
export declare function deserializeIntoCloudPC(cloudPC?: Partial<CloudPC> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27014
|
+
/**
|
|
27015
|
+
* The deserialization information for the current model
|
|
27016
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27017
|
+
*/
|
|
27018
|
+
export declare function deserializeIntoCloudPcAuditActor(cloudPcAuditActor?: Partial<CloudPcAuditActor> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27019
|
+
/**
|
|
27020
|
+
* The deserialization information for the current model
|
|
27021
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27022
|
+
*/
|
|
27023
|
+
export declare function deserializeIntoCloudPcAuditEvent(cloudPcAuditEvent?: Partial<CloudPcAuditEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27024
|
+
/**
|
|
27025
|
+
* The deserialization information for the current model
|
|
27026
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27027
|
+
*/
|
|
27028
|
+
export declare function deserializeIntoCloudPcAuditEventCollectionResponse(cloudPcAuditEventCollectionResponse?: Partial<CloudPcAuditEventCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27029
|
+
/**
|
|
27030
|
+
* The deserialization information for the current model
|
|
27031
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27032
|
+
*/
|
|
27033
|
+
export declare function deserializeIntoCloudPcAuditProperty(cloudPcAuditProperty?: Partial<CloudPcAuditProperty> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27034
|
+
/**
|
|
27035
|
+
* The deserialization information for the current model
|
|
27036
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27037
|
+
*/
|
|
27038
|
+
export declare function deserializeIntoCloudPcAuditResource(cloudPcAuditResource?: Partial<CloudPcAuditResource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27039
|
+
/**
|
|
27040
|
+
* The deserialization information for the current model
|
|
27041
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27042
|
+
*/
|
|
27043
|
+
export declare function deserializeIntoCloudPCCollectionResponse(cloudPCCollectionResponse?: Partial<CloudPCCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27044
|
+
/**
|
|
27045
|
+
* The deserialization information for the current model
|
|
27046
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27047
|
+
*/
|
|
27048
|
+
export declare function deserializeIntoCloudPcDeviceImage(cloudPcDeviceImage?: Partial<CloudPcDeviceImage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27049
|
+
/**
|
|
27050
|
+
* The deserialization information for the current model
|
|
27051
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27052
|
+
*/
|
|
27053
|
+
export declare function deserializeIntoCloudPcDeviceImageCollectionResponse(cloudPcDeviceImageCollectionResponse?: Partial<CloudPcDeviceImageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27054
|
+
/**
|
|
27055
|
+
* The deserialization information for the current model
|
|
27056
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27057
|
+
*/
|
|
27058
|
+
export declare function deserializeIntoCloudPcDomainJoinConfiguration(cloudPcDomainJoinConfiguration?: Partial<CloudPcDomainJoinConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27059
|
+
/**
|
|
27060
|
+
* The deserialization information for the current model
|
|
27061
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27062
|
+
*/
|
|
27063
|
+
export declare function deserializeIntoCloudPcGalleryImage(cloudPcGalleryImage?: Partial<CloudPcGalleryImage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27064
|
+
/**
|
|
27065
|
+
* The deserialization information for the current model
|
|
27066
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27067
|
+
*/
|
|
27068
|
+
export declare function deserializeIntoCloudPcGalleryImageCollectionResponse(cloudPcGalleryImageCollectionResponse?: Partial<CloudPcGalleryImageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27069
|
+
/**
|
|
27070
|
+
* The deserialization information for the current model
|
|
27071
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27072
|
+
*/
|
|
27073
|
+
export declare function deserializeIntoCloudPcManagementAssignmentTarget(cloudPcManagementAssignmentTarget?: Partial<CloudPcManagementAssignmentTarget> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27074
|
+
/**
|
|
27075
|
+
* The deserialization information for the current model
|
|
27076
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27077
|
+
*/
|
|
27078
|
+
export declare function deserializeIntoCloudPcManagementGroupAssignmentTarget(cloudPcManagementGroupAssignmentTarget?: Partial<CloudPcManagementGroupAssignmentTarget> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27079
|
+
/**
|
|
27080
|
+
* The deserialization information for the current model
|
|
27081
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27082
|
+
*/
|
|
27083
|
+
export declare function deserializeIntoCloudPcOnPremisesConnection(cloudPcOnPremisesConnection?: Partial<CloudPcOnPremisesConnection> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27084
|
+
/**
|
|
27085
|
+
* The deserialization information for the current model
|
|
27086
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27087
|
+
*/
|
|
27088
|
+
export declare function deserializeIntoCloudPcOnPremisesConnectionCollectionResponse(cloudPcOnPremisesConnectionCollectionResponse?: Partial<CloudPcOnPremisesConnectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27089
|
+
/**
|
|
27090
|
+
* The deserialization information for the current model
|
|
27091
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27092
|
+
*/
|
|
27093
|
+
export declare function deserializeIntoCloudPcOnPremisesConnectionHealthCheck(cloudPcOnPremisesConnectionHealthCheck?: Partial<CloudPcOnPremisesConnectionHealthCheck> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27094
|
+
/**
|
|
27095
|
+
* The deserialization information for the current model
|
|
27096
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27097
|
+
*/
|
|
27098
|
+
export declare function deserializeIntoCloudPcOnPremisesConnectionStatusDetail(cloudPcOnPremisesConnectionStatusDetail?: Partial<CloudPcOnPremisesConnectionStatusDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27099
|
+
/**
|
|
27100
|
+
* The deserialization information for the current model
|
|
27101
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27102
|
+
*/
|
|
27103
|
+
export declare function deserializeIntoCloudPcProvisioningPolicy(cloudPcProvisioningPolicy?: Partial<CloudPcProvisioningPolicy> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27104
|
+
/**
|
|
27105
|
+
* The deserialization information for the current model
|
|
27106
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27107
|
+
*/
|
|
27108
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyAssignment(cloudPcProvisioningPolicyAssignment?: Partial<CloudPcProvisioningPolicyAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27109
|
+
/**
|
|
27110
|
+
* The deserialization information for the current model
|
|
27111
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27112
|
+
*/
|
|
27113
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyAssignmentCollectionResponse(cloudPcProvisioningPolicyAssignmentCollectionResponse?: Partial<CloudPcProvisioningPolicyAssignmentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27114
|
+
/**
|
|
27115
|
+
* The deserialization information for the current model
|
|
27116
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27117
|
+
*/
|
|
27118
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyCollectionResponse(cloudPcProvisioningPolicyCollectionResponse?: Partial<CloudPcProvisioningPolicyCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27119
|
+
/**
|
|
27120
|
+
* The deserialization information for the current model
|
|
27121
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27122
|
+
*/
|
|
27123
|
+
export declare function deserializeIntoCloudPcRestorePointSetting(cloudPcRestorePointSetting?: Partial<CloudPcRestorePointSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27124
|
+
/**
|
|
27125
|
+
* The deserialization information for the current model
|
|
27126
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27127
|
+
*/
|
|
27128
|
+
export declare function deserializeIntoCloudPcSourceDeviceImage(cloudPcSourceDeviceImage?: Partial<CloudPcSourceDeviceImage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27129
|
+
/**
|
|
27130
|
+
* The deserialization information for the current model
|
|
27131
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27132
|
+
*/
|
|
27133
|
+
export declare function deserializeIntoCloudPcUserRoleScopeTagInfo(cloudPcUserRoleScopeTagInfo?: Partial<CloudPcUserRoleScopeTagInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27134
|
+
/**
|
|
27135
|
+
* The deserialization information for the current model
|
|
27136
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27137
|
+
*/
|
|
27138
|
+
export declare function deserializeIntoCloudPcUserSetting(cloudPcUserSetting?: Partial<CloudPcUserSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27139
|
+
/**
|
|
27140
|
+
* The deserialization information for the current model
|
|
27141
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27142
|
+
*/
|
|
27143
|
+
export declare function deserializeIntoCloudPcUserSettingAssignment(cloudPcUserSettingAssignment?: Partial<CloudPcUserSettingAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27144
|
+
/**
|
|
27145
|
+
* The deserialization information for the current model
|
|
27146
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27147
|
+
*/
|
|
27148
|
+
export declare function deserializeIntoCloudPcUserSettingAssignmentCollectionResponse(cloudPcUserSettingAssignmentCollectionResponse?: Partial<CloudPcUserSettingAssignmentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27149
|
+
/**
|
|
27150
|
+
* The deserialization information for the current model
|
|
27151
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27152
|
+
*/
|
|
27153
|
+
export declare function deserializeIntoCloudPcUserSettingCollectionResponse(cloudPcUserSettingCollectionResponse?: Partial<CloudPcUserSettingCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27154
|
+
/**
|
|
27155
|
+
* The deserialization information for the current model
|
|
27156
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27157
|
+
*/
|
|
27158
|
+
export declare function deserializeIntoCloudPcWindowsSetting(cloudPcWindowsSetting?: Partial<CloudPcWindowsSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25784
27159
|
/**
|
|
25785
27160
|
* The deserialization information for the current model
|
|
25786
27161
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -26801,6 +28176,11 @@ export declare function deserializeIntoDeviceLogCollectionResponseCollectionResp
|
|
|
26801
28176
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26802
28177
|
*/
|
|
26803
28178
|
export declare function deserializeIntoDeviceManagement(deviceManagement?: Partial<DeviceManagement> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28179
|
+
/**
|
|
28180
|
+
* The deserialization information for the current model
|
|
28181
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28182
|
+
*/
|
|
28183
|
+
export declare function deserializeIntoDeviceManagementCachedReportConfiguration(deviceManagementCachedReportConfiguration?: Partial<DeviceManagementCachedReportConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26804
28184
|
/**
|
|
26805
28185
|
* The deserialization information for the current model
|
|
26806
28186
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27891,6 +29271,26 @@ export declare function deserializeIntoHomeRealmDiscoveryPolicy(homeRealmDiscove
|
|
|
27891
29271
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27892
29272
|
*/
|
|
27893
29273
|
export declare function deserializeIntoHomeRealmDiscoveryPolicyCollectionResponse(homeRealmDiscoveryPolicyCollectionResponse?: Partial<HomeRealmDiscoveryPolicyCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29274
|
+
/**
|
|
29275
|
+
* The deserialization information for the current model
|
|
29276
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29277
|
+
*/
|
|
29278
|
+
export declare function deserializeIntoHorizontalSection(horizontalSection?: Partial<HorizontalSection> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29279
|
+
/**
|
|
29280
|
+
* The deserialization information for the current model
|
|
29281
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29282
|
+
*/
|
|
29283
|
+
export declare function deserializeIntoHorizontalSectionCollectionResponse(horizontalSectionCollectionResponse?: Partial<HorizontalSectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29284
|
+
/**
|
|
29285
|
+
* The deserialization information for the current model
|
|
29286
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29287
|
+
*/
|
|
29288
|
+
export declare function deserializeIntoHorizontalSectionColumn(horizontalSectionColumn?: Partial<HorizontalSectionColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29289
|
+
/**
|
|
29290
|
+
* The deserialization information for the current model
|
|
29291
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29292
|
+
*/
|
|
29293
|
+
export declare function deserializeIntoHorizontalSectionColumnCollectionResponse(horizontalSectionColumnCollectionResponse?: Partial<HorizontalSectionColumnCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27894
29294
|
/**
|
|
27895
29295
|
* The deserialization information for the current model
|
|
27896
29296
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -28686,6 +30086,11 @@ export declare function deserializeIntoLongRunningOperationCollectionResponse(lo
|
|
|
28686
30086
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28687
30087
|
*/
|
|
28688
30088
|
export declare function deserializeIntoLookupColumn(lookupColumn?: Partial<LookupColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30089
|
+
/**
|
|
30090
|
+
* The deserialization information for the current model
|
|
30091
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30092
|
+
*/
|
|
30093
|
+
export declare function deserializeIntoM365AppsInstallationOptions(m365AppsInstallationOptions?: Partial<M365AppsInstallationOptions> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28689
30094
|
/**
|
|
28690
30095
|
* The deserialization information for the current model
|
|
28691
30096
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29216,6 +30621,11 @@ export declare function deserializeIntoMessageSecurityState(messageSecurityState
|
|
|
29216
30621
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29217
30622
|
*/
|
|
29218
30623
|
export declare function deserializeIntoMessageUnpinnedEventMessageDetail(messageUnpinnedEventMessageDetail?: Partial<MessageUnpinnedEventMessageDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30624
|
+
/**
|
|
30625
|
+
* The deserialization information for the current model
|
|
30626
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30627
|
+
*/
|
|
30628
|
+
export declare function deserializeIntoMetaDataKeyStringPair(metaDataKeyStringPair?: Partial<MetaDataKeyStringPair> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29219
30629
|
/**
|
|
29220
30630
|
* The deserialization information for the current model
|
|
29221
30631
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29251,6 +30661,11 @@ export declare function deserializeIntoMicrosoftAuthenticatorFeatureSettings(mic
|
|
|
29251
30661
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29252
30662
|
*/
|
|
29253
30663
|
export declare function deserializeIntoMicrosoftCustomTrainingSetting(microsoftCustomTrainingSetting?: Partial<MicrosoftCustomTrainingSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30664
|
+
/**
|
|
30665
|
+
* The deserialization information for the current model
|
|
30666
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30667
|
+
*/
|
|
30668
|
+
export declare function deserializeIntoMicrosoftManagedDesktop(microsoftManagedDesktop?: Partial<MicrosoftManagedDesktop> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29254
30669
|
/**
|
|
29255
30670
|
* The deserialization information for the current model
|
|
29256
30671
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -30666,6 +32081,11 @@ export declare function deserializeIntoQuota(quota?: Partial<Quota> | undefined)
|
|
|
30666
32081
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30667
32082
|
*/
|
|
30668
32083
|
export declare function deserializeIntoRbacApplication(rbacApplication?: Partial<RbacApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32084
|
+
/**
|
|
32085
|
+
* The deserialization information for the current model
|
|
32086
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32087
|
+
*/
|
|
32088
|
+
export declare function deserializeIntoReactionsFacet(reactionsFacet?: Partial<ReactionsFacet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30669
32089
|
/**
|
|
30670
32090
|
* The deserialization information for the current model
|
|
30671
32091
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31276,6 +32696,11 @@ export declare function deserializeIntoSendDtmfTonesOperation(sendDtmfTonesOpera
|
|
|
31276
32696
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31277
32697
|
*/
|
|
31278
32698
|
export declare function deserializeIntoSensitivityLabelAssignment(sensitivityLabelAssignment?: Partial<SensitivityLabelAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32699
|
+
/**
|
|
32700
|
+
* The deserialization information for the current model
|
|
32701
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32702
|
+
*/
|
|
32703
|
+
export declare function deserializeIntoServerProcessedContent(serverProcessedContent?: Partial<ServerProcessedContent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31279
32704
|
/**
|
|
31280
32705
|
* The deserialization information for the current model
|
|
31281
32706
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31656,6 +33081,16 @@ export declare function deserializeIntoSiteCollection(siteCollection?: Partial<S
|
|
|
31656
33081
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31657
33082
|
*/
|
|
31658
33083
|
export declare function deserializeIntoSiteCollectionResponse(siteCollectionResponse?: Partial<SiteCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33084
|
+
/**
|
|
33085
|
+
* The deserialization information for the current model
|
|
33086
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33087
|
+
*/
|
|
33088
|
+
export declare function deserializeIntoSitePage(sitePage?: Partial<SitePage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33089
|
+
/**
|
|
33090
|
+
* The deserialization information for the current model
|
|
33091
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33092
|
+
*/
|
|
33093
|
+
export declare function deserializeIntoSitePageCollectionResponse(sitePageCollectionResponse?: Partial<SitePageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31659
33094
|
/**
|
|
31660
33095
|
* The deserialization information for the current model
|
|
31661
33096
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31741,6 +33176,11 @@ export declare function deserializeIntoStaffAvailabilityItem(staffAvailabilityIt
|
|
|
31741
33176
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31742
33177
|
*/
|
|
31743
33178
|
export declare function deserializeIntoStandardTimeZoneOffset(standardTimeZoneOffset?: Partial<StandardTimeZoneOffset> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33179
|
+
/**
|
|
33180
|
+
* The deserialization information for the current model
|
|
33181
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33182
|
+
*/
|
|
33183
|
+
export declare function deserializeIntoStandardWebPart(standardWebPart?: Partial<StandardWebPart> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31744
33184
|
/**
|
|
31745
33185
|
* The deserialization information for the current model
|
|
31746
33186
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -32406,6 +33846,11 @@ export declare function deserializeIntoTermsOfUseContainer(termsOfUseContainer?:
|
|
|
32406
33846
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32407
33847
|
*/
|
|
32408
33848
|
export declare function deserializeIntoTextColumn(textColumn?: Partial<TextColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33849
|
+
/**
|
|
33850
|
+
* The deserialization information for the current model
|
|
33851
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33852
|
+
*/
|
|
33853
|
+
export declare function deserializeIntoTextWebPart(textWebPart?: Partial<TextWebPart> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32409
33854
|
/**
|
|
32410
33855
|
* The deserialization information for the current model
|
|
32411
33856
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -32511,6 +33956,11 @@ export declare function deserializeIntoTimeZoneBase(timeZoneBase?: Partial<TimeZ
|
|
|
32511
33956
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32512
33957
|
*/
|
|
32513
33958
|
export declare function deserializeIntoTimeZoneInformation(timeZoneInformation?: Partial<TimeZoneInformation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33959
|
+
/**
|
|
33960
|
+
* The deserialization information for the current model
|
|
33961
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33962
|
+
*/
|
|
33963
|
+
export declare function deserializeIntoTitleArea(titleArea?: Partial<TitleArea> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32514
33964
|
/**
|
|
32515
33965
|
* The deserialization information for the current model
|
|
32516
33966
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33301,6 +34751,11 @@ export declare function deserializeIntoVerifiedDomain(verifiedDomain?: Partial<V
|
|
|
33301
34751
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33302
34752
|
*/
|
|
33303
34753
|
export declare function deserializeIntoVerifiedPublisher(verifiedPublisher?: Partial<VerifiedPublisher> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34754
|
+
/**
|
|
34755
|
+
* The deserialization information for the current model
|
|
34756
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34757
|
+
*/
|
|
34758
|
+
export declare function deserializeIntoVerticalSection(verticalSection?: Partial<VerticalSection> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33304
34759
|
/**
|
|
33305
34760
|
* The deserialization information for the current model
|
|
33306
34761
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33406,6 +34861,26 @@ export declare function deserializeIntoWebApp(webApp?: Partial<WebApp> | undefin
|
|
|
33406
34861
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33407
34862
|
*/
|
|
33408
34863
|
export declare function deserializeIntoWebApplication(webApplication?: Partial<WebApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34864
|
+
/**
|
|
34865
|
+
* The deserialization information for the current model
|
|
34866
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34867
|
+
*/
|
|
34868
|
+
export declare function deserializeIntoWebPart(webPart?: Partial<WebPart> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34869
|
+
/**
|
|
34870
|
+
* The deserialization information for the current model
|
|
34871
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34872
|
+
*/
|
|
34873
|
+
export declare function deserializeIntoWebPartCollectionResponse(webPartCollectionResponse?: Partial<WebPartCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34874
|
+
/**
|
|
34875
|
+
* The deserialization information for the current model
|
|
34876
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34877
|
+
*/
|
|
34878
|
+
export declare function deserializeIntoWebPartData(webPartData?: Partial<WebPartData> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34879
|
+
/**
|
|
34880
|
+
* The deserialization information for the current model
|
|
34881
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34882
|
+
*/
|
|
34883
|
+
export declare function deserializeIntoWebPartPosition(webPartPosition?: Partial<WebPartPosition> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33409
34884
|
/**
|
|
33410
34885
|
* The deserialization information for the current model
|
|
33411
34886
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33486,6 +34961,11 @@ export declare function deserializeIntoWindows10CustomConfiguration(windows10Cus
|
|
|
33486
34961
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33487
34962
|
*/
|
|
33488
34963
|
export declare function deserializeIntoWindows10EndpointProtectionConfiguration(windows10EndpointProtectionConfiguration?: Partial<Windows10EndpointProtectionConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34964
|
+
/**
|
|
34965
|
+
* The deserialization information for the current model
|
|
34966
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34967
|
+
*/
|
|
34968
|
+
export declare function deserializeIntoWindows10EnrollmentCompletionPageConfiguration(windows10EnrollmentCompletionPageConfiguration?: Partial<Windows10EnrollmentCompletionPageConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33489
34969
|
/**
|
|
33490
34970
|
* The deserialization information for the current model
|
|
33491
34971
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -34290,6 +35770,10 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
34290
35770
|
* Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. This property is set by Intune.
|
|
34291
35771
|
*/
|
|
34292
35772
|
enrollmentProfileName?: string;
|
|
35773
|
+
/**
|
|
35774
|
+
* The enrollmentType property
|
|
35775
|
+
*/
|
|
35776
|
+
enrollmentType?: string;
|
|
34293
35777
|
/**
|
|
34294
35778
|
* The collection of open extensions defined for the device. Read-only. Nullable.
|
|
34295
35779
|
*/
|
|
@@ -34302,6 +35786,14 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
34302
35786
|
* true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not).
|
|
34303
35787
|
*/
|
|
34304
35788
|
isManaged?: boolean;
|
|
35789
|
+
/**
|
|
35790
|
+
* The isRooted property
|
|
35791
|
+
*/
|
|
35792
|
+
isRooted?: boolean;
|
|
35793
|
+
/**
|
|
35794
|
+
* The managementType property
|
|
35795
|
+
*/
|
|
35796
|
+
managementType?: string;
|
|
34305
35797
|
/**
|
|
34306
35798
|
* Manufacturer of the device. Read-only.
|
|
34307
35799
|
*/
|
|
@@ -36205,6 +37697,11 @@ export interface DeviceManagement extends Entity, Parsable {
|
|
|
36205
37697
|
*/
|
|
36206
37698
|
windowsMalwareOverview?: WindowsMalwareOverview;
|
|
36207
37699
|
}
|
|
37700
|
+
/**
|
|
37701
|
+
* Entity representing the configuration of a cached report.
|
|
37702
|
+
*/
|
|
37703
|
+
export interface DeviceManagementCachedReportConfiguration extends Entity, Parsable {
|
|
37704
|
+
}
|
|
36208
37705
|
export type DeviceManagementExchangeAccessState = (typeof DeviceManagementExchangeAccessStateObject)[keyof typeof DeviceManagementExchangeAccessStateObject];
|
|
36209
37706
|
export type DeviceManagementExchangeAccessStateReason = (typeof DeviceManagementExchangeAccessStateReasonObject)[keyof typeof DeviceManagementExchangeAccessStateReasonObject];
|
|
36210
37707
|
/**
|
|
@@ -36258,7 +37755,7 @@ export type DeviceManagementExchangeConnectorStatus = (typeof DeviceManagementEx
|
|
|
36258
37755
|
export type DeviceManagementExchangeConnectorSyncType = (typeof DeviceManagementExchangeConnectorSyncTypeObject)[keyof typeof DeviceManagementExchangeConnectorSyncTypeObject];
|
|
36259
37756
|
export type DeviceManagementExchangeConnectorType = (typeof DeviceManagementExchangeConnectorTypeObject)[keyof typeof DeviceManagementExchangeConnectorTypeObject];
|
|
36260
37757
|
/**
|
|
36261
|
-
* Entity representing a job to export a report
|
|
37758
|
+
* Entity representing a job to export a report.
|
|
36262
37759
|
*/
|
|
36263
37760
|
export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
36264
37761
|
/**
|
|
@@ -36270,11 +37767,11 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
|
36270
37767
|
*/
|
|
36271
37768
|
filter?: string;
|
|
36272
37769
|
/**
|
|
36273
|
-
* Possible values for the file format of a report
|
|
37770
|
+
* Possible values for the file format of a report.
|
|
36274
37771
|
*/
|
|
36275
37772
|
format?: DeviceManagementReportFileFormat;
|
|
36276
37773
|
/**
|
|
36277
|
-
* Configures how the requested export job is localized
|
|
37774
|
+
* Configures how the requested export job is localized.
|
|
36278
37775
|
*/
|
|
36279
37776
|
localizationType?: DeviceManagementExportJobLocalizationType;
|
|
36280
37777
|
/**
|
|
@@ -36294,7 +37791,7 @@ export interface DeviceManagementExportJob extends Entity, Parsable {
|
|
|
36294
37791
|
*/
|
|
36295
37792
|
snapshotId?: string;
|
|
36296
37793
|
/**
|
|
36297
|
-
* Possible statuses associated with a generated report
|
|
37794
|
+
* Possible statuses associated with a generated report.
|
|
36298
37795
|
*/
|
|
36299
37796
|
status?: DeviceManagementReportStatus;
|
|
36300
37797
|
/**
|
|
@@ -36501,6 +37998,7 @@ export interface DeviceOperatingSystemSummary extends AdditionalDataHolder, Back
|
|
|
36501
37998
|
*/
|
|
36502
37999
|
windowsMobileCount?: number;
|
|
36503
38000
|
}
|
|
38001
|
+
export type DevicePlatformType = (typeof DevicePlatformTypeObject)[keyof typeof DevicePlatformTypeObject];
|
|
36504
38002
|
/**
|
|
36505
38003
|
* Hardware information of a given device.
|
|
36506
38004
|
*/
|
|
@@ -37680,7 +39178,7 @@ export interface EducationAssignmentDefaults extends Entity, Parsable {
|
|
|
37680
39178
|
*/
|
|
37681
39179
|
dueTime?: TimeOnly;
|
|
37682
39180
|
/**
|
|
37683
|
-
* Default Teams channel to which notifications
|
|
39181
|
+
* Default Teams channel to which notifications are sent. Default value is null.
|
|
37684
39182
|
*/
|
|
37685
39183
|
notificationChannelUrl?: string;
|
|
37686
39184
|
}
|
|
@@ -39293,7 +40791,7 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
39293
40791
|
*/
|
|
39294
40792
|
iCalUId?: string;
|
|
39295
40793
|
/**
|
|
39296
|
-
* The importance
|
|
40794
|
+
* The importance of the event. The possible values are: low, normal, high.
|
|
39297
40795
|
*/
|
|
39298
40796
|
importance?: Importance;
|
|
39299
40797
|
/**
|
|
@@ -39301,35 +40799,35 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
39301
40799
|
*/
|
|
39302
40800
|
instances?: Event[];
|
|
39303
40801
|
/**
|
|
39304
|
-
*
|
|
40802
|
+
* Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start and end time must be set to midnight and be in the same time zone.
|
|
39305
40803
|
*/
|
|
39306
40804
|
isAllDay?: boolean;
|
|
39307
40805
|
/**
|
|
39308
|
-
*
|
|
40806
|
+
* Set to true if the event has been canceled.
|
|
39309
40807
|
*/
|
|
39310
40808
|
isCancelled?: boolean;
|
|
39311
40809
|
/**
|
|
39312
|
-
*
|
|
40810
|
+
* Set to true if the user has updated the meeting in Outlook but has not sent the updates to attendees. Set to false if all changes have been sent, or if the event is an appointment without any attendees.
|
|
39313
40811
|
*/
|
|
39314
40812
|
isDraft?: boolean;
|
|
39315
40813
|
/**
|
|
39316
|
-
*
|
|
40814
|
+
* True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
|
|
39317
40815
|
*/
|
|
39318
40816
|
isOnlineMeeting?: boolean;
|
|
39319
40817
|
/**
|
|
39320
|
-
*
|
|
40818
|
+
* Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). This also applies if a delegate organized the event on behalf of the owner.
|
|
39321
40819
|
*/
|
|
39322
40820
|
isOrganizer?: boolean;
|
|
39323
40821
|
/**
|
|
39324
|
-
*
|
|
40822
|
+
* Set to true if an alert is set to remind the user of the event.
|
|
39325
40823
|
*/
|
|
39326
40824
|
isReminderOn?: boolean;
|
|
39327
40825
|
/**
|
|
39328
|
-
* The location
|
|
40826
|
+
* The location of the event.
|
|
39329
40827
|
*/
|
|
39330
40828
|
location?: Location;
|
|
39331
40829
|
/**
|
|
39332
|
-
* The locations property
|
|
40830
|
+
* The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection would be removed and replaced by the new location value.
|
|
39333
40831
|
*/
|
|
39334
40832
|
locations?: Location[];
|
|
39335
40833
|
/**
|
|
@@ -39337,59 +40835,59 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
39337
40835
|
*/
|
|
39338
40836
|
multiValueExtendedProperties?: MultiValueLegacyExtendedProperty[];
|
|
39339
40837
|
/**
|
|
39340
|
-
*
|
|
40838
|
+
* Details for an attendee to join the meeting online. Default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you cannot change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
|
|
39341
40839
|
*/
|
|
39342
40840
|
onlineMeeting?: OnlineMeetingInfo;
|
|
39343
40841
|
/**
|
|
39344
|
-
* The onlineMeetingProvider
|
|
40842
|
+
* Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently you cannot change onlineMeetingProvider again, and the meeting remains available online.
|
|
39345
40843
|
*/
|
|
39346
40844
|
onlineMeetingProvider?: OnlineMeetingProviderType;
|
|
39347
40845
|
/**
|
|
39348
|
-
* The onlineMeetingUrl property
|
|
40846
|
+
* A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future.
|
|
39349
40847
|
*/
|
|
39350
40848
|
onlineMeetingUrl?: string;
|
|
39351
40849
|
/**
|
|
39352
|
-
* The organizer
|
|
40850
|
+
* The organizer of the event.
|
|
39353
40851
|
*/
|
|
39354
40852
|
organizer?: Recipient;
|
|
39355
40853
|
/**
|
|
39356
|
-
* The
|
|
40854
|
+
* The end time zone that was set when the event was created. A value of tzone://Microsoft/Custom indicates that a legacy custom time zone was set in desktop Outlook.
|
|
39357
40855
|
*/
|
|
39358
40856
|
originalEndTimeZone?: string;
|
|
39359
40857
|
/**
|
|
39360
|
-
*
|
|
40858
|
+
* Represents the start time of an event when it is initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
39361
40859
|
*/
|
|
39362
40860
|
originalStart?: Date;
|
|
39363
40861
|
/**
|
|
39364
|
-
* The
|
|
40862
|
+
* The start time zone that was set when the event was created. A value of tzone://Microsoft/Custom indicates that a legacy custom time zone was set in desktop Outlook.
|
|
39365
40863
|
*/
|
|
39366
40864
|
originalStartTimeZone?: string;
|
|
39367
40865
|
/**
|
|
39368
|
-
* The recurrence
|
|
40866
|
+
* The recurrence pattern for the event.
|
|
39369
40867
|
*/
|
|
39370
40868
|
recurrence?: PatternedRecurrence;
|
|
39371
40869
|
/**
|
|
39372
|
-
* The
|
|
40870
|
+
* The number of minutes before the event start time that the reminder alert occurs.
|
|
39373
40871
|
*/
|
|
39374
40872
|
reminderMinutesBeforeStart?: number;
|
|
39375
40873
|
/**
|
|
39376
|
-
*
|
|
40874
|
+
* Default is true, which represents the organizer would like an invitee to send a response to the event.
|
|
39377
40875
|
*/
|
|
39378
40876
|
responseRequested?: boolean;
|
|
39379
40877
|
/**
|
|
39380
|
-
*
|
|
40878
|
+
* Indicates the type of response sent in response to an event message.
|
|
39381
40879
|
*/
|
|
39382
40880
|
responseStatus?: ResponseStatus;
|
|
39383
40881
|
/**
|
|
39384
|
-
*
|
|
40882
|
+
* Possible values are: normal, personal, private, confidential.
|
|
39385
40883
|
*/
|
|
39386
40884
|
sensitivity?: Sensitivity;
|
|
39387
40885
|
/**
|
|
39388
|
-
* The
|
|
40886
|
+
* The ID for the recurring series master item, if this event is part of a recurring series.
|
|
39389
40887
|
*/
|
|
39390
40888
|
seriesMasterId?: string;
|
|
39391
40889
|
/**
|
|
39392
|
-
* The
|
|
40890
|
+
* The status to show. Possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
|
|
39393
40891
|
*/
|
|
39394
40892
|
showAs?: FreeBusyStatus;
|
|
39395
40893
|
/**
|
|
@@ -39397,23 +40895,23 @@ export interface Event extends OutlookItem, Parsable {
|
|
|
39397
40895
|
*/
|
|
39398
40896
|
singleValueExtendedProperties?: SingleValueLegacyExtendedProperty[];
|
|
39399
40897
|
/**
|
|
39400
|
-
* The start
|
|
40898
|
+
* The start date, time, and time zone of the event. By default, the start time is in UTC.
|
|
39401
40899
|
*/
|
|
39402
40900
|
start?: DateTimeTimeZone;
|
|
39403
40901
|
/**
|
|
39404
|
-
* The subject
|
|
40902
|
+
* The text of the event's subject line.
|
|
39405
40903
|
*/
|
|
39406
40904
|
subject?: string;
|
|
39407
40905
|
/**
|
|
39408
|
-
*
|
|
40906
|
+
* A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. This is useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you cannot change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
|
|
39409
40907
|
*/
|
|
39410
40908
|
transactionId?: string;
|
|
39411
40909
|
/**
|
|
39412
|
-
* The type
|
|
40910
|
+
* The event type. Possible values are: singleInstance, occurrence, exception, seriesMaster. Read-only
|
|
39413
40911
|
*/
|
|
39414
40912
|
type?: EventType;
|
|
39415
40913
|
/**
|
|
39416
|
-
* The
|
|
40914
|
+
* The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL cannot be accessed from within an iFrame.
|
|
39417
40915
|
*/
|
|
39418
40916
|
webLink?: string;
|
|
39419
40917
|
}
|
|
@@ -39437,7 +40935,7 @@ export interface EventMessage extends Message, Parsable {
|
|
|
39437
40935
|
*/
|
|
39438
40936
|
isAllDay?: boolean;
|
|
39439
40937
|
/**
|
|
39440
|
-
*
|
|
40938
|
+
* True if this meeting request is accessible to a delegate, false otherwise. Default is false.
|
|
39441
40939
|
*/
|
|
39442
40940
|
isDelegated?: boolean;
|
|
39443
40941
|
/**
|
|
@@ -39449,7 +40947,7 @@ export interface EventMessage extends Message, Parsable {
|
|
|
39449
40947
|
*/
|
|
39450
40948
|
location?: Location;
|
|
39451
40949
|
/**
|
|
39452
|
-
* The
|
|
40950
|
+
* The type of event message: none, meetingRequest, meetingCancelled, meetingAccepted, meetingTenativelyAccepted, meetingDeclined.
|
|
39453
40951
|
*/
|
|
39454
40952
|
meetingMessageType?: MeetingMessageType;
|
|
39455
40953
|
/**
|
|
@@ -39507,11 +41005,11 @@ export interface EventMessageRequest extends EventMessage, Parsable {
|
|
|
39507
41005
|
}
|
|
39508
41006
|
export interface EventMessageResponse extends EventMessage, Parsable {
|
|
39509
41007
|
/**
|
|
39510
|
-
*
|
|
41008
|
+
* An alternate date/time proposed by an invitee for a meeting request to start and end. Read-only. Not filterable.
|
|
39511
41009
|
*/
|
|
39512
41010
|
proposedNewTime?: TimeSlot;
|
|
39513
41011
|
/**
|
|
39514
|
-
*
|
|
41012
|
+
* Specifies the type of response to a meeting request. Possible values are: tentativelyAccepted, accepted, declined. For the eventMessageResponse type, none, organizer, and notResponded are not supported. Read-only. Not filterable.
|
|
39515
41013
|
*/
|
|
39516
41014
|
responseType?: ResponseType;
|
|
39517
41015
|
}
|
|
@@ -40761,6 +42259,43 @@ export interface HomeRealmDiscoveryPolicyCollectionResponse extends BaseCollecti
|
|
|
40761
42259
|
*/
|
|
40762
42260
|
value?: HomeRealmDiscoveryPolicy[];
|
|
40763
42261
|
}
|
|
42262
|
+
export interface HorizontalSection extends Entity, Parsable {
|
|
42263
|
+
/**
|
|
42264
|
+
* The columns property
|
|
42265
|
+
*/
|
|
42266
|
+
columns?: HorizontalSectionColumn[];
|
|
42267
|
+
/**
|
|
42268
|
+
* The emphasis property
|
|
42269
|
+
*/
|
|
42270
|
+
emphasis?: SectionEmphasisType;
|
|
42271
|
+
/**
|
|
42272
|
+
* The layout property
|
|
42273
|
+
*/
|
|
42274
|
+
layout?: HorizontalSectionLayoutType;
|
|
42275
|
+
}
|
|
42276
|
+
export interface HorizontalSectionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
42277
|
+
/**
|
|
42278
|
+
* The value property
|
|
42279
|
+
*/
|
|
42280
|
+
value?: HorizontalSection[];
|
|
42281
|
+
}
|
|
42282
|
+
export interface HorizontalSectionColumn extends Entity, Parsable {
|
|
42283
|
+
/**
|
|
42284
|
+
* The webparts property
|
|
42285
|
+
*/
|
|
42286
|
+
webparts?: WebPart[];
|
|
42287
|
+
/**
|
|
42288
|
+
* The width property
|
|
42289
|
+
*/
|
|
42290
|
+
width?: number;
|
|
42291
|
+
}
|
|
42292
|
+
export interface HorizontalSectionColumnCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
42293
|
+
/**
|
|
42294
|
+
* The value property
|
|
42295
|
+
*/
|
|
42296
|
+
value?: HorizontalSectionColumn[];
|
|
42297
|
+
}
|
|
42298
|
+
export type HorizontalSectionLayoutType = (typeof HorizontalSectionLayoutTypeObject)[keyof typeof HorizontalSectionLayoutTypeObject];
|
|
40764
42299
|
export interface HostSecurityState extends AdditionalDataHolder, BackedModel, Parsable {
|
|
40765
42300
|
/**
|
|
40766
42301
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -44411,6 +45946,20 @@ export interface LookupColumn extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
44411
45946
|
*/
|
|
44412
45947
|
primaryLookupColumnId?: string;
|
|
44413
45948
|
}
|
|
45949
|
+
export interface M365AppsInstallationOptions extends Entity, Parsable {
|
|
45950
|
+
/**
|
|
45951
|
+
* The appsForMac property
|
|
45952
|
+
*/
|
|
45953
|
+
appsForMac?: AppsInstallationOptionsForMac;
|
|
45954
|
+
/**
|
|
45955
|
+
* The appsForWindows property
|
|
45956
|
+
*/
|
|
45957
|
+
appsForWindows?: AppsInstallationOptionsForWindows;
|
|
45958
|
+
/**
|
|
45959
|
+
* The updateChannel property
|
|
45960
|
+
*/
|
|
45961
|
+
updateChannel?: AppsUpdateChannelType;
|
|
45962
|
+
}
|
|
44414
45963
|
/**
|
|
44415
45964
|
* This class contains compliance settings for Mac OS.
|
|
44416
45965
|
*/
|
|
@@ -44515,7 +46064,7 @@ export interface MacOSDmgApp extends MobileLobApp, Parsable {
|
|
|
44515
46064
|
*/
|
|
44516
46065
|
ignoreVersionDetection?: boolean;
|
|
44517
46066
|
/**
|
|
44518
|
-
* The list of .apps expected to be installed by the DMG (Apple Disk Image)
|
|
46067
|
+
* The list of .apps expected to be installed by the DMG (Apple Disk Image). This collection can contain a maximum of 500 elements.
|
|
44519
46068
|
*/
|
|
44520
46069
|
includedApps?: MacOSIncludedApp[];
|
|
44521
46070
|
/**
|
|
@@ -46776,35 +48325,35 @@ export interface Message extends OutlookItem, Parsable {
|
|
|
46776
48325
|
*/
|
|
46777
48326
|
hasAttachments?: boolean;
|
|
46778
48327
|
/**
|
|
46779
|
-
* The importance
|
|
48328
|
+
* The importance of the message. The possible values are: low, normal, and high.
|
|
46780
48329
|
*/
|
|
46781
48330
|
importance?: Importance;
|
|
46782
48331
|
/**
|
|
46783
|
-
* The
|
|
48332
|
+
* The classification of the message for the user, based on inferred relevance or importance, or on an explicit override. The possible values are: focused or other.
|
|
46784
48333
|
*/
|
|
46785
48334
|
inferenceClassification?: InferenceClassificationType;
|
|
46786
48335
|
/**
|
|
46787
|
-
* The
|
|
48336
|
+
* A collection of message headers defined by RFC5322. The set includes message headers indicating the network path taken by a message from the sender to the recipient. It can also contain custom message headers that hold app data for the message. Returned only on applying a $select query option. Read-only.
|
|
46788
48337
|
*/
|
|
46789
48338
|
internetMessageHeaders?: InternetMessageHeader[];
|
|
46790
48339
|
/**
|
|
46791
|
-
* The
|
|
48340
|
+
* The message ID in the format specified by RFC2822.
|
|
46792
48341
|
*/
|
|
46793
48342
|
internetMessageId?: string;
|
|
46794
48343
|
/**
|
|
46795
|
-
*
|
|
48344
|
+
* Indicates whether a read receipt is requested for the message.
|
|
46796
48345
|
*/
|
|
46797
48346
|
isDeliveryReceiptRequested?: boolean;
|
|
46798
48347
|
/**
|
|
46799
|
-
*
|
|
48348
|
+
* Indicates whether the message is a draft. A message is a draft if it hasn't been sent yet.
|
|
46800
48349
|
*/
|
|
46801
48350
|
isDraft?: boolean;
|
|
46802
48351
|
/**
|
|
46803
|
-
*
|
|
48352
|
+
* Indicates whether the message has been read.
|
|
46804
48353
|
*/
|
|
46805
48354
|
isRead?: boolean;
|
|
46806
48355
|
/**
|
|
46807
|
-
*
|
|
48356
|
+
* Indicates whether a read receipt is requested for the message.
|
|
46808
48357
|
*/
|
|
46809
48358
|
isReadReceiptRequested?: boolean;
|
|
46810
48359
|
/**
|
|
@@ -46812,23 +48361,23 @@ export interface Message extends OutlookItem, Parsable {
|
|
|
46812
48361
|
*/
|
|
46813
48362
|
multiValueExtendedProperties?: MultiValueLegacyExtendedProperty[];
|
|
46814
48363
|
/**
|
|
46815
|
-
* The
|
|
48364
|
+
* The unique identifier for the message's parent mailFolder.
|
|
46816
48365
|
*/
|
|
46817
48366
|
parentFolderId?: string;
|
|
46818
48367
|
/**
|
|
46819
|
-
* The
|
|
48368
|
+
* The date and time the message was received. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
46820
48369
|
*/
|
|
46821
48370
|
receivedDateTime?: Date;
|
|
46822
48371
|
/**
|
|
46823
|
-
* The
|
|
48372
|
+
* The email addresses to use when replying.
|
|
46824
48373
|
*/
|
|
46825
48374
|
replyTo?: Recipient[];
|
|
46826
48375
|
/**
|
|
46827
|
-
* The sender
|
|
48376
|
+
* The account that is actually used to generate the message. In most cases, this value is the same as the from property. You can set this property to a different value when sending a message from a shared mailbox, for a shared calendar, or as a delegate. In any case, the value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
|
|
46828
48377
|
*/
|
|
46829
48378
|
sender?: Recipient;
|
|
46830
48379
|
/**
|
|
46831
|
-
* The
|
|
48380
|
+
* The date and time the message was sent. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
46832
48381
|
*/
|
|
46833
48382
|
sentDateTime?: Date;
|
|
46834
48383
|
/**
|
|
@@ -46836,19 +48385,19 @@ export interface Message extends OutlookItem, Parsable {
|
|
|
46836
48385
|
*/
|
|
46837
48386
|
singleValueExtendedProperties?: SingleValueLegacyExtendedProperty[];
|
|
46838
48387
|
/**
|
|
46839
|
-
* The subject
|
|
48388
|
+
* The subject of the message.
|
|
46840
48389
|
*/
|
|
46841
48390
|
subject?: string;
|
|
46842
48391
|
/**
|
|
46843
|
-
* The
|
|
48392
|
+
* The To: recipients for the message.
|
|
46844
48393
|
*/
|
|
46845
48394
|
toRecipients?: Recipient[];
|
|
46846
48395
|
/**
|
|
46847
|
-
* The uniqueBody
|
|
48396
|
+
* The part of the body of the message that is unique to the current message. uniqueBody is not returned by default but can be retrieved for a given message by use of the ?$select=uniqueBody query. It can be in HTML or text format.
|
|
46848
48397
|
*/
|
|
46849
48398
|
uniqueBody?: ItemBody;
|
|
46850
48399
|
/**
|
|
46851
|
-
* The
|
|
48400
|
+
* The URL to open the message in Outlook on the web.You can append an ispopout argument to the end of the URL to change how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout window. If ispopout is set to 0, the browser shows the message in the Outlook on the web review pane.The message opens in the browser if you are signed in to your mailbox via Outlook on the web. You are prompted to sign in if you are not already signed in with the browser.This URL cannot be accessed from within an iFrame.
|
|
46852
48401
|
*/
|
|
46853
48402
|
webLink?: string;
|
|
46854
48403
|
}
|
|
@@ -47161,6 +48710,28 @@ export interface MessageUnpinnedEventMessageDetail extends EventMessageDetail, P
|
|
|
47161
48710
|
*/
|
|
47162
48711
|
initiator?: IdentitySet;
|
|
47163
48712
|
}
|
|
48713
|
+
export interface MetaDataKeyStringPair extends AdditionalDataHolder, BackedModel, Parsable {
|
|
48714
|
+
/**
|
|
48715
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
48716
|
+
*/
|
|
48717
|
+
additionalData?: Record<string, unknown>;
|
|
48718
|
+
/**
|
|
48719
|
+
* Stores model information.
|
|
48720
|
+
*/
|
|
48721
|
+
backingStoreEnabled?: boolean;
|
|
48722
|
+
/**
|
|
48723
|
+
* The key property
|
|
48724
|
+
*/
|
|
48725
|
+
key?: string;
|
|
48726
|
+
/**
|
|
48727
|
+
* The OdataType property
|
|
48728
|
+
*/
|
|
48729
|
+
odataType?: string;
|
|
48730
|
+
/**
|
|
48731
|
+
* The value property
|
|
48732
|
+
*/
|
|
48733
|
+
value?: string;
|
|
48734
|
+
}
|
|
47164
48735
|
export interface MicrosoftAccountUserConversationMember extends ConversationMember, Parsable {
|
|
47165
48736
|
/**
|
|
47166
48737
|
* Microsoft Account ID of the user.
|
|
@@ -47253,6 +48824,29 @@ export interface MicrosoftCustomTrainingSetting extends Parsable, TrainingSettin
|
|
|
47253
48824
|
trainingCompletionDuration?: TrainingCompletionDuration;
|
|
47254
48825
|
}
|
|
47255
48826
|
export type MicrosoftEdgeChannel = (typeof MicrosoftEdgeChannelObject)[keyof typeof MicrosoftEdgeChannelObject];
|
|
48827
|
+
export interface MicrosoftManagedDesktop extends AdditionalDataHolder, BackedModel, Parsable {
|
|
48828
|
+
/**
|
|
48829
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
48830
|
+
*/
|
|
48831
|
+
additionalData?: Record<string, unknown>;
|
|
48832
|
+
/**
|
|
48833
|
+
* Stores model information.
|
|
48834
|
+
*/
|
|
48835
|
+
backingStoreEnabled?: boolean;
|
|
48836
|
+
/**
|
|
48837
|
+
* The managedType property
|
|
48838
|
+
*/
|
|
48839
|
+
managedType?: MicrosoftManagedDesktopType;
|
|
48840
|
+
/**
|
|
48841
|
+
* The OdataType property
|
|
48842
|
+
*/
|
|
48843
|
+
odataType?: string;
|
|
48844
|
+
/**
|
|
48845
|
+
* The profile property
|
|
48846
|
+
*/
|
|
48847
|
+
profile?: string;
|
|
48848
|
+
}
|
|
48849
|
+
export type MicrosoftManagedDesktopType = (typeof MicrosoftManagedDesktopTypeObject)[keyof typeof MicrosoftManagedDesktopTypeObject];
|
|
47256
48850
|
export interface MicrosoftManagedTrainingSetting extends Parsable, TrainingSetting {
|
|
47257
48851
|
/**
|
|
47258
48852
|
* The completion date for the training. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
@@ -48111,7 +49705,7 @@ export interface ObjectIdentity extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
48111
49705
|
*/
|
|
48112
49706
|
backingStoreEnabled?: boolean;
|
|
48113
49707
|
/**
|
|
48114
|
-
* Specifies the issuer of the identity, for example facebook.com. 512 character limit. For local accounts (where signInType isn't federated), this property is the local default domain name for the tenant, for example contoso.com
|
|
49708
|
+
* Specifies the issuer of the identity, for example facebook.com. 512 character limit. For local accounts (where signInType isn't federated), this property is the local default domain name for the tenant, for example contoso.com. For guests from other Microsoft Entra organizations, this is the domain of the federated organization, for example contoso.com. For more information about filtering behavior for this property, see Filtering on the identities property of a user.
|
|
48115
49709
|
*/
|
|
48116
49710
|
issuer?: string;
|
|
48117
49711
|
/**
|
|
@@ -49222,7 +50816,7 @@ export interface Organization extends DirectoryObject, Parsable {
|
|
|
49222
50816
|
*/
|
|
49223
50817
|
branding?: OrganizationalBranding;
|
|
49224
50818
|
/**
|
|
49225
|
-
* Telephone number for the organization. Although this is a string collection, only one number can be set
|
|
50819
|
+
* Telephone number for the organization. Although this property is a string collection, only one number can be set.
|
|
49226
50820
|
*/
|
|
49227
50821
|
businessPhones?: string[];
|
|
49228
50822
|
/**
|
|
@@ -49234,7 +50828,7 @@ export interface Organization extends DirectoryObject, Parsable {
|
|
|
49234
50828
|
*/
|
|
49235
50829
|
city?: string;
|
|
49236
50830
|
/**
|
|
49237
|
-
* Country
|
|
50831
|
+
* Country or region name of the address for the organization.
|
|
49238
50832
|
*/
|
|
49239
50833
|
country?: string;
|
|
49240
50834
|
/**
|
|
@@ -49242,7 +50836,7 @@ export interface Organization extends DirectoryObject, Parsable {
|
|
|
49242
50836
|
*/
|
|
49243
50837
|
countryLetterCode?: string;
|
|
49244
50838
|
/**
|
|
49245
|
-
* Timestamp of when the organization was created. The value
|
|
50839
|
+
* Timestamp of when the organization was created. The value can't be modified and is automatically populated when the organization is created. 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. Read-only.
|
|
49246
50840
|
*/
|
|
49247
50841
|
createdDateTime?: Date;
|
|
49248
50842
|
/**
|
|
@@ -49270,7 +50864,7 @@ export interface Organization extends DirectoryObject, Parsable {
|
|
|
49270
50864
|
*/
|
|
49271
50865
|
onPremisesLastSyncDateTime?: Date;
|
|
49272
50866
|
/**
|
|
49273
|
-
* true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object
|
|
50867
|
+
* true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object isn't synced from on-premises active directory (default).
|
|
49274
50868
|
*/
|
|
49275
50869
|
onPremisesSyncEnabled?: boolean;
|
|
49276
50870
|
/**
|
|
@@ -49314,7 +50908,7 @@ export interface Organization extends DirectoryObject, Parsable {
|
|
|
49314
50908
|
*/
|
|
49315
50909
|
technicalNotificationMails?: string[];
|
|
49316
50910
|
/**
|
|
49317
|
-
* Not nullable.
|
|
50911
|
+
* Not nullable. Can be one of the following types: AAD - An enterprise identity access management (IAM) service that serves business-to-employee and business-to-business (B2B) scenarios. AAD B2C An identity access management (IAM) service that serves business-to-consumer (B2C) scenarios. CIAM - A customer identity & access management (CIAM) solution that provides an integrated platform to serve consumers, partners, and citizen scenarios.
|
|
49318
50912
|
*/
|
|
49319
50913
|
tenantType?: string;
|
|
49320
50914
|
/**
|
|
@@ -49679,6 +51273,7 @@ export interface PackageEscaped extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
49679
51273
|
*/
|
|
49680
51274
|
type?: string;
|
|
49681
51275
|
}
|
|
51276
|
+
export type PageLayoutType = (typeof PageLayoutTypeObject)[keyof typeof PageLayoutTypeObject];
|
|
49682
51277
|
export interface PageLinks extends AdditionalDataHolder, BackedModel, Parsable {
|
|
49683
51278
|
/**
|
|
49684
51279
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -49701,6 +51296,7 @@ export interface PageLinks extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
49701
51296
|
*/
|
|
49702
51297
|
oneNoteWebUrl?: ExternalLink;
|
|
49703
51298
|
}
|
|
51299
|
+
export type PagePromotionType = (typeof PagePromotionTypeObject)[keyof typeof PagePromotionTypeObject];
|
|
49704
51300
|
export interface ParentalControlSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
49705
51301
|
/**
|
|
49706
51302
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -49956,11 +51552,11 @@ export interface PasswordProfile extends AdditionalDataHolder, BackedModel, Pars
|
|
|
49956
51552
|
*/
|
|
49957
51553
|
backingStoreEnabled?: boolean;
|
|
49958
51554
|
/**
|
|
49959
|
-
* true if the user must change
|
|
51555
|
+
* true if the user must change their password on the next sign-in; otherwise false.
|
|
49960
51556
|
*/
|
|
49961
51557
|
forceChangePasswordNextSignIn?: boolean;
|
|
49962
51558
|
/**
|
|
49963
|
-
* If true, at next sign-in, the user must perform a
|
|
51559
|
+
* If true, at next sign-in, the user must perform a multifactor authentication (MFA) before being forced to change their password. The behavior is identical to forceChangePasswordNextSignIn except that the user is required to first perform a multifactor authentication before password change. After a password change, this property will be automatically reset to false. If not set, default is false.
|
|
49964
51560
|
*/
|
|
49965
51561
|
forceChangePasswordNextSignInWithMfa?: boolean;
|
|
49966
51562
|
/**
|
|
@@ -49968,7 +51564,7 @@ export interface PasswordProfile extends AdditionalDataHolder, BackedModel, Pars
|
|
|
49968
51564
|
*/
|
|
49969
51565
|
odataType?: string;
|
|
49970
51566
|
/**
|
|
49971
|
-
* The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next
|
|
51567
|
+
* The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next sign-in. The password must satisfy minimum requirements as specified by the user's passwordPolicies property. By default, a strong password is required.
|
|
49972
51568
|
*/
|
|
49973
51569
|
password?: string;
|
|
49974
51570
|
}
|
|
@@ -52585,11 +54181,11 @@ export interface PrivilegedAccessGroup extends Entity, Parsable {
|
|
|
52585
54181
|
}
|
|
52586
54182
|
export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, PrivilegedAccessSchedule {
|
|
52587
54183
|
/**
|
|
52588
|
-
* The identifier of the membership or ownership assignment to the group that is governed
|
|
54184
|
+
* The identifier of the membership or ownership assignment to the group that is governed through PIM. Required. The possible values are: owner, member, unknownFutureValue. Supports $filter (eq).
|
|
52589
54185
|
*/
|
|
52590
54186
|
accessId?: PrivilegedAccessGroupRelationships;
|
|
52591
54187
|
/**
|
|
52592
|
-
* When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it
|
|
54188
|
+
* When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it's null. Supports $expand.
|
|
52593
54189
|
*/
|
|
52594
54190
|
activatedUsing?: PrivilegedAccessGroupEligibilitySchedule;
|
|
52595
54191
|
/**
|
|
@@ -52597,7 +54193,7 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
52597
54193
|
*/
|
|
52598
54194
|
assignmentType?: PrivilegedAccessGroupAssignmentType;
|
|
52599
54195
|
/**
|
|
52600
|
-
* References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand.
|
|
54196
|
+
* References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
|
|
52601
54197
|
*/
|
|
52602
54198
|
group?: Group;
|
|
52603
54199
|
/**
|
|
@@ -52609,7 +54205,7 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
52609
54205
|
*/
|
|
52610
54206
|
memberType?: PrivilegedAccessGroupMemberType;
|
|
52611
54207
|
/**
|
|
52612
|
-
* References the principal that's in the scope of this membership or ownership assignment request to the group that's governed
|
|
54208
|
+
* References the principal that's in the scope of this membership or ownership assignment request to the group that's governed through PIM. Supports $expand and $select nested in $expand for id only.
|
|
52613
54209
|
*/
|
|
52614
54210
|
principal?: DirectoryObject;
|
|
52615
54211
|
/**
|
|
@@ -52677,7 +54273,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleRequest extends Parsable
|
|
|
52677
54273
|
*/
|
|
52678
54274
|
activatedUsing?: PrivilegedAccessGroupEligibilitySchedule;
|
|
52679
54275
|
/**
|
|
52680
|
-
* References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand.
|
|
54276
|
+
* References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
|
|
52681
54277
|
*/
|
|
52682
54278
|
group?: Group;
|
|
52683
54279
|
/**
|
|
@@ -52685,7 +54281,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleRequest extends Parsable
|
|
|
52685
54281
|
*/
|
|
52686
54282
|
groupId?: string;
|
|
52687
54283
|
/**
|
|
52688
|
-
* References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand.
|
|
54284
|
+
* References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
|
|
52689
54285
|
*/
|
|
52690
54286
|
principal?: DirectoryObject;
|
|
52691
54287
|
/**
|
|
@@ -52782,7 +54378,7 @@ export interface PrivilegedAccessGroupEligibilityScheduleRequest extends Parsabl
|
|
|
52782
54378
|
*/
|
|
52783
54379
|
accessId?: PrivilegedAccessGroupRelationships;
|
|
52784
54380
|
/**
|
|
52785
|
-
* References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand.
|
|
54381
|
+
* References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
|
|
52786
54382
|
*/
|
|
52787
54383
|
group?: Group;
|
|
52788
54384
|
/**
|
|
@@ -52790,7 +54386,7 @@ export interface PrivilegedAccessGroupEligibilityScheduleRequest extends Parsabl
|
|
|
52790
54386
|
*/
|
|
52791
54387
|
groupId?: string;
|
|
52792
54388
|
/**
|
|
52793
|
-
* References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand.
|
|
54389
|
+
* References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
|
|
52794
54390
|
*/
|
|
52795
54391
|
principal?: DirectoryObject;
|
|
52796
54392
|
/**
|
|
@@ -53495,6 +55091,32 @@ export interface RbacApplication extends Entity, Parsable {
|
|
|
53495
55091
|
*/
|
|
53496
55092
|
roleEligibilitySchedules?: UnifiedRoleEligibilitySchedule[];
|
|
53497
55093
|
}
|
|
55094
|
+
export interface ReactionsFacet extends AdditionalDataHolder, BackedModel, Parsable {
|
|
55095
|
+
/**
|
|
55096
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
55097
|
+
*/
|
|
55098
|
+
additionalData?: Record<string, unknown>;
|
|
55099
|
+
/**
|
|
55100
|
+
* Stores model information.
|
|
55101
|
+
*/
|
|
55102
|
+
backingStoreEnabled?: boolean;
|
|
55103
|
+
/**
|
|
55104
|
+
* The commentCount property
|
|
55105
|
+
*/
|
|
55106
|
+
commentCount?: number;
|
|
55107
|
+
/**
|
|
55108
|
+
* The likeCount property
|
|
55109
|
+
*/
|
|
55110
|
+
likeCount?: number;
|
|
55111
|
+
/**
|
|
55112
|
+
* The OdataType property
|
|
55113
|
+
*/
|
|
55114
|
+
odataType?: string;
|
|
55115
|
+
/**
|
|
55116
|
+
* The shareCount property
|
|
55117
|
+
*/
|
|
55118
|
+
shareCount?: number;
|
|
55119
|
+
}
|
|
53498
55120
|
export interface RecentNotebook extends AdditionalDataHolder, BackedModel, Parsable {
|
|
53499
55121
|
/**
|
|
53500
55122
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -54897,23 +56519,23 @@ export interface RiskyUser extends Entity, Parsable {
|
|
|
54897
56519
|
*/
|
|
54898
56520
|
isDeleted?: boolean;
|
|
54899
56521
|
/**
|
|
54900
|
-
* Indicates whether a user's risky state
|
|
56522
|
+
* Indicates whether the backend is processing a user's risky state.
|
|
54901
56523
|
*/
|
|
54902
56524
|
isProcessing?: boolean;
|
|
54903
56525
|
/**
|
|
54904
|
-
*
|
|
56526
|
+
* The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe. You must use the Prefer: include-unknown-enum-members request header to get the following value or values in this evolvable enum: adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe.
|
|
54905
56527
|
*/
|
|
54906
56528
|
riskDetail?: RiskDetail;
|
|
54907
56529
|
/**
|
|
54908
|
-
* The date and time that the risky user was last updated.
|
|
56530
|
+
* The date and time that the risky user was last updated. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
54909
56531
|
*/
|
|
54910
56532
|
riskLastUpdatedDateTime?: Date;
|
|
54911
56533
|
/**
|
|
54912
|
-
* Level of the detected risky user. Possible values are: low, medium, high, hidden, none, unknownFutureValue.
|
|
56534
|
+
* Level of the detected risky user. Possible values are: low, medium, high, hidden, none, unknownFutureValue.
|
|
54913
56535
|
*/
|
|
54914
56536
|
riskLevel?: RiskLevel;
|
|
54915
56537
|
/**
|
|
54916
|
-
* State of the user's risk. Possible values are: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, unknownFutureValue.
|
|
56538
|
+
* State of the user's risk. Possible values are: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, unknownFutureValue.
|
|
54917
56539
|
*/
|
|
54918
56540
|
riskState?: RiskState;
|
|
54919
56541
|
/**
|
|
@@ -55741,6 +57363,18 @@ export interface SearchBucket extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
55741
57363
|
}
|
|
55742
57364
|
export type SearchContent = (typeof SearchContentObject)[keyof typeof SearchContentObject];
|
|
55743
57365
|
export interface SearchEntity extends Entity, Parsable {
|
|
57366
|
+
/**
|
|
57367
|
+
* Administrative answer in Microsoft Search results to define common acronyms in an organization.
|
|
57368
|
+
*/
|
|
57369
|
+
acronyms?: Acronym[];
|
|
57370
|
+
/**
|
|
57371
|
+
* Administrative answer in Microsoft Search results for common search queries in an organization.
|
|
57372
|
+
*/
|
|
57373
|
+
bookmarks?: Bookmark[];
|
|
57374
|
+
/**
|
|
57375
|
+
* Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization.
|
|
57376
|
+
*/
|
|
57377
|
+
qnas?: Qna[];
|
|
55744
57378
|
}
|
|
55745
57379
|
export interface SearchHit extends AdditionalDataHolder, BackedModel, Parsable {
|
|
55746
57380
|
/**
|
|
@@ -55958,6 +57592,7 @@ export interface SearchResult extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
55958
57592
|
*/
|
|
55959
57593
|
onClickTelemetryUrl?: string;
|
|
55960
57594
|
}
|
|
57595
|
+
export type SectionEmphasisType = (typeof SectionEmphasisTypeObject)[keyof typeof SectionEmphasisTypeObject];
|
|
55961
57596
|
export interface SectionGroup extends OnenoteEntityHierarchyModel, Parsable {
|
|
55962
57597
|
/**
|
|
55963
57598
|
* The notebook that contains the section group. Read-only.
|
|
@@ -56849,6 +58484,11 @@ export declare function serializeAdministrativeUnit(writer: SerializationWriter,
|
|
|
56849
58484
|
* @param writer Serialization writer to use to serialize this model
|
|
56850
58485
|
*/
|
|
56851
58486
|
export declare function serializeAdministrativeUnitCollectionResponse(writer: SerializationWriter, administrativeUnitCollectionResponse?: Partial<AdministrativeUnitCollectionResponse> | undefined): void;
|
|
58487
|
+
/**
|
|
58488
|
+
* Serializes information the current object
|
|
58489
|
+
* @param writer Serialization writer to use to serialize this model
|
|
58490
|
+
*/
|
|
58491
|
+
export declare function serializeAdminMicrosoft365Apps(writer: SerializationWriter, adminMicrosoft365Apps?: Partial<AdminMicrosoft365Apps> | undefined): void;
|
|
56852
58492
|
/**
|
|
56853
58493
|
* Serializes information the current object
|
|
56854
58494
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -57239,6 +58879,16 @@ export declare function serializeApprovalStageCollectionResponse(writer: Seriali
|
|
|
57239
58879
|
* @param writer Serialization writer to use to serialize this model
|
|
57240
58880
|
*/
|
|
57241
58881
|
export declare function serializeAppScope(writer: SerializationWriter, appScope?: Partial<AppScope> | undefined): void;
|
|
58882
|
+
/**
|
|
58883
|
+
* Serializes information the current object
|
|
58884
|
+
* @param writer Serialization writer to use to serialize this model
|
|
58885
|
+
*/
|
|
58886
|
+
export declare function serializeAppsInstallationOptionsForMac(writer: SerializationWriter, appsInstallationOptionsForMac?: Partial<AppsInstallationOptionsForMac> | undefined): void;
|
|
58887
|
+
/**
|
|
58888
|
+
* Serializes information the current object
|
|
58889
|
+
* @param writer Serialization writer to use to serialize this model
|
|
58890
|
+
*/
|
|
58891
|
+
export declare function serializeAppsInstallationOptionsForWindows(writer: SerializationWriter, appsInstallationOptionsForWindows?: Partial<AppsInstallationOptionsForWindows> | undefined): void;
|
|
57242
58892
|
/**
|
|
57243
58893
|
* Serializes information the current object
|
|
57244
58894
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -57714,6 +59364,16 @@ export declare function serializeBaseItemCollectionResponse(writer: Serializatio
|
|
|
57714
59364
|
* @param writer Serialization writer to use to serialize this model
|
|
57715
59365
|
*/
|
|
57716
59366
|
export declare function serializeBaseItemVersion(writer: SerializationWriter, baseItemVersion?: Partial<BaseItemVersion> | undefined): void;
|
|
59367
|
+
/**
|
|
59368
|
+
* Serializes information the current object
|
|
59369
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59370
|
+
*/
|
|
59371
|
+
export declare function serializeBaseSitePage(writer: SerializationWriter, baseSitePage?: Partial<BaseSitePage> | undefined): void;
|
|
59372
|
+
/**
|
|
59373
|
+
* Serializes information the current object
|
|
59374
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59375
|
+
*/
|
|
59376
|
+
export declare function serializeBaseSitePageCollectionResponse(writer: SerializationWriter, baseSitePageCollectionResponse?: Partial<BaseSitePageCollectionResponse> | undefined): void;
|
|
57717
59377
|
/**
|
|
57718
59378
|
* Serializes information the current object
|
|
57719
59379
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -58064,6 +59724,11 @@ export declare function serializeCallTranscriptionInfo(writer: SerializationWrit
|
|
|
58064
59724
|
* @param writer Serialization writer to use to serialize this model
|
|
58065
59725
|
*/
|
|
58066
59726
|
export declare function serializeCancelMediaProcessingOperation(writer: SerializationWriter, cancelMediaProcessingOperation?: Partial<CancelMediaProcessingOperation> | undefined): void;
|
|
59727
|
+
/**
|
|
59728
|
+
* Serializes information the current object
|
|
59729
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59730
|
+
*/
|
|
59731
|
+
export declare function serializeCanvasLayout(writer: SerializationWriter, canvasLayout?: Partial<CanvasLayout> | undefined): void;
|
|
58067
59732
|
/**
|
|
58068
59733
|
* Serializes information the current object
|
|
58069
59734
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -58314,6 +59979,156 @@ export declare function serializeCloudClipboardRoot(writer: SerializationWriter,
|
|
|
58314
59979
|
* @param writer Serialization writer to use to serialize this model
|
|
58315
59980
|
*/
|
|
58316
59981
|
export declare function serializeCloudCommunications(writer: SerializationWriter, cloudCommunications?: Partial<CloudCommunications> | undefined): void;
|
|
59982
|
+
/**
|
|
59983
|
+
* Serializes information the current object
|
|
59984
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59985
|
+
*/
|
|
59986
|
+
export declare function serializeCloudPC(writer: SerializationWriter, cloudPC?: Partial<CloudPC> | undefined): void;
|
|
59987
|
+
/**
|
|
59988
|
+
* Serializes information the current object
|
|
59989
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59990
|
+
*/
|
|
59991
|
+
export declare function serializeCloudPcAuditActor(writer: SerializationWriter, cloudPcAuditActor?: Partial<CloudPcAuditActor> | undefined): void;
|
|
59992
|
+
/**
|
|
59993
|
+
* Serializes information the current object
|
|
59994
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59995
|
+
*/
|
|
59996
|
+
export declare function serializeCloudPcAuditEvent(writer: SerializationWriter, cloudPcAuditEvent?: Partial<CloudPcAuditEvent> | undefined): void;
|
|
59997
|
+
/**
|
|
59998
|
+
* Serializes information the current object
|
|
59999
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60000
|
+
*/
|
|
60001
|
+
export declare function serializeCloudPcAuditEventCollectionResponse(writer: SerializationWriter, cloudPcAuditEventCollectionResponse?: Partial<CloudPcAuditEventCollectionResponse> | undefined): void;
|
|
60002
|
+
/**
|
|
60003
|
+
* Serializes information the current object
|
|
60004
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60005
|
+
*/
|
|
60006
|
+
export declare function serializeCloudPcAuditProperty(writer: SerializationWriter, cloudPcAuditProperty?: Partial<CloudPcAuditProperty> | undefined): void;
|
|
60007
|
+
/**
|
|
60008
|
+
* Serializes information the current object
|
|
60009
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60010
|
+
*/
|
|
60011
|
+
export declare function serializeCloudPcAuditResource(writer: SerializationWriter, cloudPcAuditResource?: Partial<CloudPcAuditResource> | undefined): void;
|
|
60012
|
+
/**
|
|
60013
|
+
* Serializes information the current object
|
|
60014
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60015
|
+
*/
|
|
60016
|
+
export declare function serializeCloudPCCollectionResponse(writer: SerializationWriter, cloudPCCollectionResponse?: Partial<CloudPCCollectionResponse> | undefined): void;
|
|
60017
|
+
/**
|
|
60018
|
+
* Serializes information the current object
|
|
60019
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60020
|
+
*/
|
|
60021
|
+
export declare function serializeCloudPcDeviceImage(writer: SerializationWriter, cloudPcDeviceImage?: Partial<CloudPcDeviceImage> | undefined): void;
|
|
60022
|
+
/**
|
|
60023
|
+
* Serializes information the current object
|
|
60024
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60025
|
+
*/
|
|
60026
|
+
export declare function serializeCloudPcDeviceImageCollectionResponse(writer: SerializationWriter, cloudPcDeviceImageCollectionResponse?: Partial<CloudPcDeviceImageCollectionResponse> | undefined): void;
|
|
60027
|
+
/**
|
|
60028
|
+
* Serializes information the current object
|
|
60029
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60030
|
+
*/
|
|
60031
|
+
export declare function serializeCloudPcDomainJoinConfiguration(writer: SerializationWriter, cloudPcDomainJoinConfiguration?: Partial<CloudPcDomainJoinConfiguration> | undefined): void;
|
|
60032
|
+
/**
|
|
60033
|
+
* Serializes information the current object
|
|
60034
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60035
|
+
*/
|
|
60036
|
+
export declare function serializeCloudPcGalleryImage(writer: SerializationWriter, cloudPcGalleryImage?: Partial<CloudPcGalleryImage> | undefined): void;
|
|
60037
|
+
/**
|
|
60038
|
+
* Serializes information the current object
|
|
60039
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60040
|
+
*/
|
|
60041
|
+
export declare function serializeCloudPcGalleryImageCollectionResponse(writer: SerializationWriter, cloudPcGalleryImageCollectionResponse?: Partial<CloudPcGalleryImageCollectionResponse> | undefined): void;
|
|
60042
|
+
/**
|
|
60043
|
+
* Serializes information the current object
|
|
60044
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60045
|
+
*/
|
|
60046
|
+
export declare function serializeCloudPcManagementAssignmentTarget(writer: SerializationWriter, cloudPcManagementAssignmentTarget?: Partial<CloudPcManagementAssignmentTarget> | undefined): void;
|
|
60047
|
+
/**
|
|
60048
|
+
* Serializes information the current object
|
|
60049
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60050
|
+
*/
|
|
60051
|
+
export declare function serializeCloudPcManagementGroupAssignmentTarget(writer: SerializationWriter, cloudPcManagementGroupAssignmentTarget?: Partial<CloudPcManagementGroupAssignmentTarget> | 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 serializeCloudPcOnPremisesConnection(writer: SerializationWriter, cloudPcOnPremisesConnection?: Partial<CloudPcOnPremisesConnection> | 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 serializeCloudPcOnPremisesConnectionCollectionResponse(writer: SerializationWriter, cloudPcOnPremisesConnectionCollectionResponse?: Partial<CloudPcOnPremisesConnectionCollectionResponse> | 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 serializeCloudPcOnPremisesConnectionHealthCheck(writer: SerializationWriter, cloudPcOnPremisesConnectionHealthCheck?: Partial<CloudPcOnPremisesConnectionHealthCheck> | 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 serializeCloudPcOnPremisesConnectionStatusDetail(writer: SerializationWriter, cloudPcOnPremisesConnectionStatusDetail?: Partial<CloudPcOnPremisesConnectionStatusDetail> | undefined): void;
|
|
60072
|
+
/**
|
|
60073
|
+
* Serializes information the current object
|
|
60074
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60075
|
+
*/
|
|
60076
|
+
export declare function serializeCloudPcProvisioningPolicy(writer: SerializationWriter, cloudPcProvisioningPolicy?: Partial<CloudPcProvisioningPolicy> | undefined): void;
|
|
60077
|
+
/**
|
|
60078
|
+
* Serializes information the current object
|
|
60079
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60080
|
+
*/
|
|
60081
|
+
export declare function serializeCloudPcProvisioningPolicyAssignment(writer: SerializationWriter, cloudPcProvisioningPolicyAssignment?: Partial<CloudPcProvisioningPolicyAssignment> | 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 serializeCloudPcProvisioningPolicyAssignmentCollectionResponse(writer: SerializationWriter, cloudPcProvisioningPolicyAssignmentCollectionResponse?: Partial<CloudPcProvisioningPolicyAssignmentCollectionResponse> | 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 serializeCloudPcProvisioningPolicyCollectionResponse(writer: SerializationWriter, cloudPcProvisioningPolicyCollectionResponse?: Partial<CloudPcProvisioningPolicyCollectionResponse> | undefined): void;
|
|
60092
|
+
/**
|
|
60093
|
+
* Serializes information the current object
|
|
60094
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60095
|
+
*/
|
|
60096
|
+
export declare function serializeCloudPcRestorePointSetting(writer: SerializationWriter, cloudPcRestorePointSetting?: Partial<CloudPcRestorePointSetting> | undefined): void;
|
|
60097
|
+
/**
|
|
60098
|
+
* Serializes information the current object
|
|
60099
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60100
|
+
*/
|
|
60101
|
+
export declare function serializeCloudPcSourceDeviceImage(writer: SerializationWriter, cloudPcSourceDeviceImage?: Partial<CloudPcSourceDeviceImage> | undefined): void;
|
|
60102
|
+
/**
|
|
60103
|
+
* Serializes information the current object
|
|
60104
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60105
|
+
*/
|
|
60106
|
+
export declare function serializeCloudPcUserRoleScopeTagInfo(writer: SerializationWriter, cloudPcUserRoleScopeTagInfo?: Partial<CloudPcUserRoleScopeTagInfo> | undefined): void;
|
|
60107
|
+
/**
|
|
60108
|
+
* Serializes information the current object
|
|
60109
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60110
|
+
*/
|
|
60111
|
+
export declare function serializeCloudPcUserSetting(writer: SerializationWriter, cloudPcUserSetting?: Partial<CloudPcUserSetting> | undefined): void;
|
|
60112
|
+
/**
|
|
60113
|
+
* Serializes information the current object
|
|
60114
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60115
|
+
*/
|
|
60116
|
+
export declare function serializeCloudPcUserSettingAssignment(writer: SerializationWriter, cloudPcUserSettingAssignment?: Partial<CloudPcUserSettingAssignment> | undefined): void;
|
|
60117
|
+
/**
|
|
60118
|
+
* Serializes information the current object
|
|
60119
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60120
|
+
*/
|
|
60121
|
+
export declare function serializeCloudPcUserSettingAssignmentCollectionResponse(writer: SerializationWriter, cloudPcUserSettingAssignmentCollectionResponse?: Partial<CloudPcUserSettingAssignmentCollectionResponse> | undefined): void;
|
|
60122
|
+
/**
|
|
60123
|
+
* Serializes information the current object
|
|
60124
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60125
|
+
*/
|
|
60126
|
+
export declare function serializeCloudPcUserSettingCollectionResponse(writer: SerializationWriter, cloudPcUserSettingCollectionResponse?: Partial<CloudPcUserSettingCollectionResponse> | undefined): void;
|
|
60127
|
+
/**
|
|
60128
|
+
* Serializes information the current object
|
|
60129
|
+
* @param writer Serialization writer to use to serialize this model
|
|
60130
|
+
*/
|
|
60131
|
+
export declare function serializeCloudPcWindowsSetting(writer: SerializationWriter, cloudPcWindowsSetting?: Partial<CloudPcWindowsSetting> | undefined): void;
|
|
58317
60132
|
/**
|
|
58318
60133
|
* Serializes information the current object
|
|
58319
60134
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -59334,6 +61149,11 @@ export declare function serializeDeviceLogCollectionResponseCollectionResponse(w
|
|
|
59334
61149
|
* @param writer Serialization writer to use to serialize this model
|
|
59335
61150
|
*/
|
|
59336
61151
|
export declare function serializeDeviceManagement(writer: SerializationWriter, deviceManagement?: Partial<DeviceManagement> | undefined): void;
|
|
61152
|
+
/**
|
|
61153
|
+
* Serializes information the current object
|
|
61154
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61155
|
+
*/
|
|
61156
|
+
export declare function serializeDeviceManagementCachedReportConfiguration(writer: SerializationWriter, deviceManagementCachedReportConfiguration?: Partial<DeviceManagementCachedReportConfiguration> | undefined): void;
|
|
59337
61157
|
/**
|
|
59338
61158
|
* Serializes information the current object
|
|
59339
61159
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60424,6 +62244,26 @@ export declare function serializeHomeRealmDiscoveryPolicy(writer: SerializationW
|
|
|
60424
62244
|
* @param writer Serialization writer to use to serialize this model
|
|
60425
62245
|
*/
|
|
60426
62246
|
export declare function serializeHomeRealmDiscoveryPolicyCollectionResponse(writer: SerializationWriter, homeRealmDiscoveryPolicyCollectionResponse?: Partial<HomeRealmDiscoveryPolicyCollectionResponse> | undefined): void;
|
|
62247
|
+
/**
|
|
62248
|
+
* Serializes information the current object
|
|
62249
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62250
|
+
*/
|
|
62251
|
+
export declare function serializeHorizontalSection(writer: SerializationWriter, horizontalSection?: Partial<HorizontalSection> | undefined): void;
|
|
62252
|
+
/**
|
|
62253
|
+
* Serializes information the current object
|
|
62254
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62255
|
+
*/
|
|
62256
|
+
export declare function serializeHorizontalSectionCollectionResponse(writer: SerializationWriter, horizontalSectionCollectionResponse?: Partial<HorizontalSectionCollectionResponse> | undefined): void;
|
|
62257
|
+
/**
|
|
62258
|
+
* Serializes information the current object
|
|
62259
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62260
|
+
*/
|
|
62261
|
+
export declare function serializeHorizontalSectionColumn(writer: SerializationWriter, horizontalSectionColumn?: Partial<HorizontalSectionColumn> | undefined): void;
|
|
62262
|
+
/**
|
|
62263
|
+
* Serializes information the current object
|
|
62264
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62265
|
+
*/
|
|
62266
|
+
export declare function serializeHorizontalSectionColumnCollectionResponse(writer: SerializationWriter, horizontalSectionColumnCollectionResponse?: Partial<HorizontalSectionColumnCollectionResponse> | undefined): void;
|
|
60427
62267
|
/**
|
|
60428
62268
|
* Serializes information the current object
|
|
60429
62269
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61219,6 +63059,11 @@ export declare function serializeLongRunningOperationCollectionResponse(writer:
|
|
|
61219
63059
|
* @param writer Serialization writer to use to serialize this model
|
|
61220
63060
|
*/
|
|
61221
63061
|
export declare function serializeLookupColumn(writer: SerializationWriter, lookupColumn?: Partial<LookupColumn> | undefined): void;
|
|
63062
|
+
/**
|
|
63063
|
+
* Serializes information the current object
|
|
63064
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63065
|
+
*/
|
|
63066
|
+
export declare function serializeM365AppsInstallationOptions(writer: SerializationWriter, m365AppsInstallationOptions?: Partial<M365AppsInstallationOptions> | undefined): void;
|
|
61222
63067
|
/**
|
|
61223
63068
|
* Serializes information the current object
|
|
61224
63069
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61749,6 +63594,11 @@ export declare function serializeMessageSecurityState(writer: SerializationWrite
|
|
|
61749
63594
|
* @param writer Serialization writer to use to serialize this model
|
|
61750
63595
|
*/
|
|
61751
63596
|
export declare function serializeMessageUnpinnedEventMessageDetail(writer: SerializationWriter, messageUnpinnedEventMessageDetail?: Partial<MessageUnpinnedEventMessageDetail> | undefined): void;
|
|
63597
|
+
/**
|
|
63598
|
+
* Serializes information the current object
|
|
63599
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63600
|
+
*/
|
|
63601
|
+
export declare function serializeMetaDataKeyStringPair(writer: SerializationWriter, metaDataKeyStringPair?: Partial<MetaDataKeyStringPair> | undefined): void;
|
|
61752
63602
|
/**
|
|
61753
63603
|
* Serializes information the current object
|
|
61754
63604
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61784,6 +63634,11 @@ export declare function serializeMicrosoftAuthenticatorFeatureSettings(writer: S
|
|
|
61784
63634
|
* @param writer Serialization writer to use to serialize this model
|
|
61785
63635
|
*/
|
|
61786
63636
|
export declare function serializeMicrosoftCustomTrainingSetting(writer: SerializationWriter, microsoftCustomTrainingSetting?: Partial<MicrosoftCustomTrainingSetting> | undefined): void;
|
|
63637
|
+
/**
|
|
63638
|
+
* Serializes information the current object
|
|
63639
|
+
* @param writer Serialization writer to use to serialize this model
|
|
63640
|
+
*/
|
|
63641
|
+
export declare function serializeMicrosoftManagedDesktop(writer: SerializationWriter, microsoftManagedDesktop?: Partial<MicrosoftManagedDesktop> | undefined): void;
|
|
61787
63642
|
/**
|
|
61788
63643
|
* Serializes information the current object
|
|
61789
63644
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63199,6 +65054,11 @@ export declare function serializeQuota(writer: SerializationWriter, quota?: Part
|
|
|
63199
65054
|
* @param writer Serialization writer to use to serialize this model
|
|
63200
65055
|
*/
|
|
63201
65056
|
export declare function serializeRbacApplication(writer: SerializationWriter, rbacApplication?: Partial<RbacApplication> | undefined): void;
|
|
65057
|
+
/**
|
|
65058
|
+
* Serializes information the current object
|
|
65059
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65060
|
+
*/
|
|
65061
|
+
export declare function serializeReactionsFacet(writer: SerializationWriter, reactionsFacet?: Partial<ReactionsFacet> | undefined): void;
|
|
63202
65062
|
/**
|
|
63203
65063
|
* Serializes information the current object
|
|
63204
65064
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63809,6 +65669,11 @@ export declare function serializeSendDtmfTonesOperation(writer: SerializationWri
|
|
|
63809
65669
|
* @param writer Serialization writer to use to serialize this model
|
|
63810
65670
|
*/
|
|
63811
65671
|
export declare function serializeSensitivityLabelAssignment(writer: SerializationWriter, sensitivityLabelAssignment?: Partial<SensitivityLabelAssignment> | undefined): void;
|
|
65672
|
+
/**
|
|
65673
|
+
* Serializes information the current object
|
|
65674
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65675
|
+
*/
|
|
65676
|
+
export declare function serializeServerProcessedContent(writer: SerializationWriter, serverProcessedContent?: Partial<ServerProcessedContent> | undefined): void;
|
|
63812
65677
|
/**
|
|
63813
65678
|
* Serializes information the current object
|
|
63814
65679
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64189,6 +66054,16 @@ export declare function serializeSiteCollection(writer: SerializationWriter, sit
|
|
|
64189
66054
|
* @param writer Serialization writer to use to serialize this model
|
|
64190
66055
|
*/
|
|
64191
66056
|
export declare function serializeSiteCollectionResponse(writer: SerializationWriter, siteCollectionResponse?: Partial<SiteCollectionResponse> | undefined): void;
|
|
66057
|
+
/**
|
|
66058
|
+
* Serializes information the current object
|
|
66059
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66060
|
+
*/
|
|
66061
|
+
export declare function serializeSitePage(writer: SerializationWriter, sitePage?: Partial<SitePage> | undefined): void;
|
|
66062
|
+
/**
|
|
66063
|
+
* Serializes information the current object
|
|
66064
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66065
|
+
*/
|
|
66066
|
+
export declare function serializeSitePageCollectionResponse(writer: SerializationWriter, sitePageCollectionResponse?: Partial<SitePageCollectionResponse> | undefined): void;
|
|
64192
66067
|
/**
|
|
64193
66068
|
* Serializes information the current object
|
|
64194
66069
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64274,6 +66149,11 @@ export declare function serializeStaffAvailabilityItem(writer: SerializationWrit
|
|
|
64274
66149
|
* @param writer Serialization writer to use to serialize this model
|
|
64275
66150
|
*/
|
|
64276
66151
|
export declare function serializeStandardTimeZoneOffset(writer: SerializationWriter, standardTimeZoneOffset?: Partial<StandardTimeZoneOffset> | undefined): void;
|
|
66152
|
+
/**
|
|
66153
|
+
* Serializes information the current object
|
|
66154
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66155
|
+
*/
|
|
66156
|
+
export declare function serializeStandardWebPart(writer: SerializationWriter, standardWebPart?: Partial<StandardWebPart> | undefined): void;
|
|
64277
66157
|
/**
|
|
64278
66158
|
* Serializes information the current object
|
|
64279
66159
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64939,6 +66819,11 @@ export declare function serializeTermsOfUseContainer(writer: SerializationWriter
|
|
|
64939
66819
|
* @param writer Serialization writer to use to serialize this model
|
|
64940
66820
|
*/
|
|
64941
66821
|
export declare function serializeTextColumn(writer: SerializationWriter, textColumn?: Partial<TextColumn> | undefined): void;
|
|
66822
|
+
/**
|
|
66823
|
+
* Serializes information the current object
|
|
66824
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66825
|
+
*/
|
|
66826
|
+
export declare function serializeTextWebPart(writer: SerializationWriter, textWebPart?: Partial<TextWebPart> | undefined): void;
|
|
64942
66827
|
/**
|
|
64943
66828
|
* Serializes information the current object
|
|
64944
66829
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65044,6 +66929,11 @@ export declare function serializeTimeZoneBase(writer: SerializationWriter, timeZ
|
|
|
65044
66929
|
* @param writer Serialization writer to use to serialize this model
|
|
65045
66930
|
*/
|
|
65046
66931
|
export declare function serializeTimeZoneInformation(writer: SerializationWriter, timeZoneInformation?: Partial<TimeZoneInformation> | undefined): void;
|
|
66932
|
+
/**
|
|
66933
|
+
* Serializes information the current object
|
|
66934
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66935
|
+
*/
|
|
66936
|
+
export declare function serializeTitleArea(writer: SerializationWriter, titleArea?: Partial<TitleArea> | undefined): void;
|
|
65047
66937
|
/**
|
|
65048
66938
|
* Serializes information the current object
|
|
65049
66939
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65834,6 +67724,11 @@ export declare function serializeVerifiedDomain(writer: SerializationWriter, ver
|
|
|
65834
67724
|
* @param writer Serialization writer to use to serialize this model
|
|
65835
67725
|
*/
|
|
65836
67726
|
export declare function serializeVerifiedPublisher(writer: SerializationWriter, verifiedPublisher?: Partial<VerifiedPublisher> | undefined): void;
|
|
67727
|
+
/**
|
|
67728
|
+
* Serializes information the current object
|
|
67729
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67730
|
+
*/
|
|
67731
|
+
export declare function serializeVerticalSection(writer: SerializationWriter, verticalSection?: Partial<VerticalSection> | undefined): void;
|
|
65837
67732
|
/**
|
|
65838
67733
|
* Serializes information the current object
|
|
65839
67734
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65939,6 +67834,26 @@ export declare function serializeWebApp(writer: SerializationWriter, webApp?: Pa
|
|
|
65939
67834
|
* @param writer Serialization writer to use to serialize this model
|
|
65940
67835
|
*/
|
|
65941
67836
|
export declare function serializeWebApplication(writer: SerializationWriter, webApplication?: Partial<WebApplication> | undefined): void;
|
|
67837
|
+
/**
|
|
67838
|
+
* Serializes information the current object
|
|
67839
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67840
|
+
*/
|
|
67841
|
+
export declare function serializeWebPart(writer: SerializationWriter, webPart?: Partial<WebPart> | undefined): void;
|
|
67842
|
+
/**
|
|
67843
|
+
* Serializes information the current object
|
|
67844
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67845
|
+
*/
|
|
67846
|
+
export declare function serializeWebPartCollectionResponse(writer: SerializationWriter, webPartCollectionResponse?: Partial<WebPartCollectionResponse> | undefined): void;
|
|
67847
|
+
/**
|
|
67848
|
+
* Serializes information the current object
|
|
67849
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67850
|
+
*/
|
|
67851
|
+
export declare function serializeWebPartData(writer: SerializationWriter, webPartData?: Partial<WebPartData> | undefined): void;
|
|
67852
|
+
/**
|
|
67853
|
+
* Serializes information the current object
|
|
67854
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67855
|
+
*/
|
|
67856
|
+
export declare function serializeWebPartPosition(writer: SerializationWriter, webPartPosition?: Partial<WebPartPosition> | undefined): void;
|
|
65942
67857
|
/**
|
|
65943
67858
|
* Serializes information the current object
|
|
65944
67859
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -66019,6 +67934,11 @@ export declare function serializeWindows10CustomConfiguration(writer: Serializat
|
|
|
66019
67934
|
* @param writer Serialization writer to use to serialize this model
|
|
66020
67935
|
*/
|
|
66021
67936
|
export declare function serializeWindows10EndpointProtectionConfiguration(writer: SerializationWriter, windows10EndpointProtectionConfiguration?: Partial<Windows10EndpointProtectionConfiguration> | undefined): void;
|
|
67937
|
+
/**
|
|
67938
|
+
* Serializes information the current object
|
|
67939
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67940
|
+
*/
|
|
67941
|
+
export declare function serializeWindows10EnrollmentCompletionPageConfiguration(writer: SerializationWriter, windows10EnrollmentCompletionPageConfiguration?: Partial<Windows10EnrollmentCompletionPageConfiguration> | undefined): void;
|
|
66022
67942
|
/**
|
|
66023
67943
|
* Serializes information the current object
|
|
66024
67944
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -66724,6 +68644,36 @@ export declare function serializeX509CertificateRule(writer: SerializationWriter
|
|
|
66724
68644
|
* @param writer Serialization writer to use to serialize this model
|
|
66725
68645
|
*/
|
|
66726
68646
|
export declare function serializeX509CertificateUserBinding(writer: SerializationWriter, x509CertificateUserBinding?: Partial<X509CertificateUserBinding> | undefined): void;
|
|
68647
|
+
export interface ServerProcessedContent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
68648
|
+
/**
|
|
68649
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
68650
|
+
*/
|
|
68651
|
+
additionalData?: Record<string, unknown>;
|
|
68652
|
+
/**
|
|
68653
|
+
* Stores model information.
|
|
68654
|
+
*/
|
|
68655
|
+
backingStoreEnabled?: boolean;
|
|
68656
|
+
/**
|
|
68657
|
+
* The htmlStrings property
|
|
68658
|
+
*/
|
|
68659
|
+
htmlStrings?: MetaDataKeyStringPair[];
|
|
68660
|
+
/**
|
|
68661
|
+
* The imageSources property
|
|
68662
|
+
*/
|
|
68663
|
+
imageSources?: MetaDataKeyStringPair[];
|
|
68664
|
+
/**
|
|
68665
|
+
* The links property
|
|
68666
|
+
*/
|
|
68667
|
+
links?: MetaDataKeyStringPair[];
|
|
68668
|
+
/**
|
|
68669
|
+
* The OdataType property
|
|
68670
|
+
*/
|
|
68671
|
+
odataType?: string;
|
|
68672
|
+
/**
|
|
68673
|
+
* The searchablePlainTexts property
|
|
68674
|
+
*/
|
|
68675
|
+
searchablePlainTexts?: MetaDataKeyStringPair[];
|
|
68676
|
+
}
|
|
66727
68677
|
export interface ServiceAnnouncement extends Entity, Parsable {
|
|
66728
68678
|
/**
|
|
66729
68679
|
* A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
|
|
@@ -66919,15 +68869,15 @@ export interface ServicePlanInfo extends AdditionalDataHolder, BackedModel, Pars
|
|
|
66919
68869
|
}
|
|
66920
68870
|
export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
66921
68871
|
/**
|
|
66922
|
-
* true if the service principal account is enabled; otherwise, false. If set to false, then no users
|
|
68872
|
+
* true if the service principal account is enabled; otherwise, false. If set to false, then no users are able to sign in to this app, even if they're assigned to it. Supports $filter (eq, ne, not, in).
|
|
66923
68873
|
*/
|
|
66924
68874
|
accountEnabled?: boolean;
|
|
66925
68875
|
/**
|
|
66926
|
-
* Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This
|
|
68876
|
+
* Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This lets services like Microsoft 365 call the application in the context of a document the user is working on.
|
|
66927
68877
|
*/
|
|
66928
68878
|
addIns?: AddIn[];
|
|
66929
68879
|
/**
|
|
66930
|
-
* Used to retrieve service principals by subscription, identify resource group and full resource
|
|
68880
|
+
* Used to retrieve service principals by subscription, identify resource group and full resource IDs for managed identities. Supports $filter (eq, not, ge, le, startsWith).
|
|
66931
68881
|
*/
|
|
66932
68882
|
alternativeNames?: string[];
|
|
66933
68883
|
/**
|
|
@@ -66943,7 +68893,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
66943
68893
|
*/
|
|
66944
68894
|
appId?: string;
|
|
66945
68895
|
/**
|
|
66946
|
-
* Unique identifier of the applicationTemplate
|
|
68896
|
+
* Unique identifier of the applicationTemplate. Supports $filter (eq, not, ne). Read-only. null if the service principal wasn't created from an application template.
|
|
66947
68897
|
*/
|
|
66948
68898
|
applicationTemplateId?: string;
|
|
66949
68899
|
/**
|
|
@@ -66951,7 +68901,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
66951
68901
|
*/
|
|
66952
68902
|
appManagementPolicies?: AppManagementPolicy[];
|
|
66953
68903
|
/**
|
|
66954
|
-
* Contains the tenant
|
|
68904
|
+
* Contains the tenant ID where the application is registered. This is applicable only to service principals backed by applications. Supports $filter (eq, ne, NOT, ge, le).
|
|
66955
68905
|
*/
|
|
66956
68906
|
appOwnerOrganizationId?: Guid;
|
|
66957
68907
|
/**
|
|
@@ -66967,7 +68917,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
66967
68917
|
*/
|
|
66968
68918
|
appRoleAssignments?: AppRoleAssignment[];
|
|
66969
68919
|
/**
|
|
66970
|
-
* The roles exposed by the application
|
|
68920
|
+
* The roles exposed by the application that's linked to this service principal. For more information, see the appRoles property definition on the application entity. Not nullable.
|
|
66971
68921
|
*/
|
|
66972
68922
|
appRoles?: AppRole[];
|
|
66973
68923
|
/**
|
|
@@ -66987,11 +68937,11 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
66987
68937
|
*/
|
|
66988
68938
|
delegatedPermissionClassifications?: DelegatedPermissionClassification[];
|
|
66989
68939
|
/**
|
|
66990
|
-
* Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps
|
|
68940
|
+
* Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps displays the application description in this field. The maximum allowed size is 1,024 characters. Supports $filter (eq, ne, not, ge, le, startsWith) and $search.
|
|
66991
68941
|
*/
|
|
66992
68942
|
description?: string;
|
|
66993
68943
|
/**
|
|
66994
|
-
* Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons
|
|
68944
|
+
* Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, not).
|
|
66995
68945
|
*/
|
|
66996
68946
|
disabledByMicrosoftStatus?: string;
|
|
66997
68947
|
/**
|
|
@@ -67027,7 +68977,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
67027
68977
|
*/
|
|
67028
68978
|
loginUrl?: string;
|
|
67029
68979
|
/**
|
|
67030
|
-
* Specifies the URL that
|
|
68980
|
+
* Specifies the URL that the Microsoft's authorization service uses to sign out a user using OpenID Connect front-channel, back-channel, or SAML sign out protocols.
|
|
67031
68981
|
*/
|
|
67032
68982
|
logoutUrl?: string;
|
|
67033
68983
|
/**
|
|
@@ -67035,7 +68985,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
67035
68985
|
*/
|
|
67036
68986
|
memberOf?: DirectoryObject[];
|
|
67037
68987
|
/**
|
|
67038
|
-
* Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is
|
|
68988
|
+
* Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1,024 characters.
|
|
67039
68989
|
*/
|
|
67040
68990
|
notes?: string;
|
|
67041
68991
|
/**
|
|
@@ -67047,15 +68997,15 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
67047
68997
|
*/
|
|
67048
68998
|
oauth2PermissionGrants?: OAuth2PermissionGrant[];
|
|
67049
68999
|
/**
|
|
67050
|
-
* The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable.
|
|
69000
|
+
* The delegated permissions exposed by the application. For more information, see the oauth2PermissionScopes property on the application entity's api property. Not nullable.
|
|
67051
69001
|
*/
|
|
67052
69002
|
oauth2PermissionScopes?: PermissionScope[];
|
|
67053
69003
|
/**
|
|
67054
|
-
* Directory objects that
|
|
69004
|
+
* Directory objects that this service principal owns. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
|
|
67055
69005
|
*/
|
|
67056
69006
|
ownedObjects?: DirectoryObject[];
|
|
67057
69007
|
/**
|
|
67058
|
-
* Directory objects that are owners of this servicePrincipal. The owners are a set of
|
|
69008
|
+
* Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand.
|
|
67059
69009
|
*/
|
|
67060
69010
|
owners?: DirectoryObject[];
|
|
67061
69011
|
/**
|
|
@@ -67067,7 +69017,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
67067
69017
|
*/
|
|
67068
69018
|
preferredSingleSignOnMode?: string;
|
|
67069
69019
|
/**
|
|
67070
|
-
* This property can be used on SAML applications (apps that have preferredSingleSignOnMode set to saml) to control which certificate is used to sign the SAML responses. For applications that
|
|
69020
|
+
* This property can be used on SAML applications (apps that have preferredSingleSignOnMode set to saml) to control which certificate is used to sign the SAML responses. For applications that aren't SAML, don't write or otherwise rely on this property.
|
|
67071
69021
|
*/
|
|
67072
69022
|
preferredTokenSigningKeyThumbprint?: string;
|
|
67073
69023
|
/**
|
|
@@ -67087,15 +69037,15 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
67087
69037
|
*/
|
|
67088
69038
|
samlSingleSignOnSettings?: SamlSingleSignOnSettings;
|
|
67089
69039
|
/**
|
|
67090
|
-
* Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Microsoft Entra ID. For example,Client apps can specify a resource URI
|
|
69040
|
+
* Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Microsoft Entra ID. For example,Client apps can specify a resource URI that is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, not, ge, le, startsWith).
|
|
67091
69041
|
*/
|
|
67092
69042
|
servicePrincipalNames?: string[];
|
|
67093
69043
|
/**
|
|
67094
|
-
* Identifies whether the service principal represents an application, a managed identity, or a legacy application. This is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens
|
|
69044
|
+
* Identifies whether the service principal represents an application, a managed identity, or a legacy application. This is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens aren't issued for the service principal.ManagedIdentity - A service principal that represents a managed identity. Service principals representing managed identities can be granted access and permissions, but can't be updated or modified directly.Legacy - A service principal that represents an app created before app registrations, or through legacy experiences. A legacy service principal can have credentials, service principal names, reply URLs, and other properties that are editable by an authorized user, but doesn't have an associated app registration. The appId value doesn't associate the service principal with an app registration. The service principal can only be used in the tenant where it was created.SocialIdp - For internal use.
|
|
67095
69045
|
*/
|
|
67096
69046
|
servicePrincipalType?: string;
|
|
67097
69047
|
/**
|
|
67098
|
-
* Specifies the Microsoft accounts that are supported for the current application. Read-only. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization's Microsoft Entra tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization's Microsoft Entra tenant (
|
|
69048
|
+
* Specifies the Microsoft accounts that are supported for the current application. Read-only. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization's Microsoft Entra tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization's Microsoft Entra tenant (multitenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization's Microsoft Entra tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only.
|
|
67099
69049
|
*/
|
|
67100
69050
|
signInAudience?: string;
|
|
67101
69051
|
/**
|
|
@@ -67123,7 +69073,7 @@ export interface ServicePrincipal extends DirectoryObject, Parsable {
|
|
|
67123
69073
|
*/
|
|
67124
69074
|
transitiveMemberOf?: DirectoryObject[];
|
|
67125
69075
|
/**
|
|
67126
|
-
* Specifies the verified publisher of the application
|
|
69076
|
+
* Specifies the verified publisher of the application that's linked to this service principal.
|
|
67127
69077
|
*/
|
|
67128
69078
|
verifiedPublisher?: VerifiedPublisher;
|
|
67129
69079
|
}
|
|
@@ -68133,11 +70083,11 @@ export interface SignIn extends Entity, Parsable {
|
|
|
68133
70083
|
*/
|
|
68134
70084
|
appDisplayName?: string;
|
|
68135
70085
|
/**
|
|
68136
|
-
* Unique GUID
|
|
70086
|
+
* Unique GUID that represents the app ID in the Microsoft Entra ID. Supports $filter (eq).
|
|
68137
70087
|
*/
|
|
68138
70088
|
appId?: string;
|
|
68139
70089
|
/**
|
|
68140
|
-
* Provides a list of conditional access policies that
|
|
70090
|
+
* Provides a list of conditional access policies that the corresponding sign-in activity triggers. Apps need more Conditional Access-related privileges to read the details of this property. For more information, see Viewing applied conditional access (CA) policies in sign-ins.
|
|
68141
70091
|
*/
|
|
68142
70092
|
appliedConditionalAccessPolicies?: AppliedConditionalAccessPolicy[];
|
|
68143
70093
|
/**
|
|
@@ -68149,7 +70099,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
68149
70099
|
*/
|
|
68150
70100
|
conditionalAccessStatus?: ConditionalAccessStatus;
|
|
68151
70101
|
/**
|
|
68152
|
-
* The request ID sent from the client when the sign-in is initiated
|
|
70102
|
+
* The request ID sent from the client when the sign-in is initiated. Used to troubleshoot sign-in activity. Supports $filter (eq).
|
|
68153
70103
|
*/
|
|
68154
70104
|
correlationId?: string;
|
|
68155
70105
|
/**
|
|
@@ -68165,7 +70115,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
68165
70115
|
*/
|
|
68166
70116
|
ipAddress?: string;
|
|
68167
70117
|
/**
|
|
68168
|
-
* Indicates
|
|
70118
|
+
* Indicates whether a sign-in is interactive.
|
|
68169
70119
|
*/
|
|
68170
70120
|
isInteractive?: boolean;
|
|
68171
70121
|
/**
|
|
@@ -68181,15 +70131,15 @@ export interface SignIn extends Entity, Parsable {
|
|
|
68181
70131
|
*/
|
|
68182
70132
|
resourceId?: string;
|
|
68183
70133
|
/**
|
|
68184
|
-
*
|
|
70134
|
+
* The reason behind a specific state of a risky user, sign-in, or a risk event. The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue, adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe. You must use the Prefer: include-unknown-enum-members request header to get the following value or values in this evolvable enum: adminConfirmedServicePrincipalCompromised, adminDismissedAllRiskForServicePrincipal, m365DAdminDismissedDetection, userChangedPasswordOnPremises, adminDismissedRiskForSignIn, adminConfirmedAccountSafe.The value none means that Microsoft Entra risk detection did not flag the user or the sign-in as a risky event so far. Supports $filter (eq). Note: Details for this property are only available for Microsoft Entra ID P2 customers. All other customers are returned hidden.
|
|
68185
70135
|
*/
|
|
68186
70136
|
riskDetail?: RiskDetail;
|
|
68187
70137
|
/**
|
|
68188
|
-
*
|
|
70138
|
+
* The riskEventTypes property
|
|
68189
70139
|
*/
|
|
68190
70140
|
riskEventTypes?: RiskEventType[];
|
|
68191
70141
|
/**
|
|
68192
|
-
* The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence,
|
|
70142
|
+
* The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq, startsWith).
|
|
68193
70143
|
*/
|
|
68194
70144
|
riskEventTypes_v2?: string[];
|
|
68195
70145
|
/**
|
|
@@ -68197,7 +70147,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
68197
70147
|
*/
|
|
68198
70148
|
riskLevelAggregated?: RiskLevel;
|
|
68199
70149
|
/**
|
|
68200
|
-
* Risk level during sign-in. The possible values are: none, low, medium, high, hidden, and unknownFutureValue. The value hidden means the user or sign-in wasn't enabled for Microsoft Entra ID Protection. Supports $filter (eq).
|
|
70150
|
+
* Risk level during sign-in. The possible values are: none, low, medium, high, hidden, and unknownFutureValue. The value hidden means the user or sign-in wasn't enabled for Microsoft Entra ID Protection. Supports $filter (eq). Note: Details for this property are only available for Microsoft Entra ID P2 customers. All other customers are returned hidden.
|
|
68201
70151
|
*/
|
|
68202
70152
|
riskLevelDuringSignIn?: RiskLevel;
|
|
68203
70153
|
/**
|
|
@@ -68205,7 +70155,7 @@ export interface SignIn extends Entity, Parsable {
|
|
|
68205
70155
|
*/
|
|
68206
70156
|
riskState?: RiskState;
|
|
68207
70157
|
/**
|
|
68208
|
-
* Sign-in status. Includes the error code and description of the error (if
|
|
70158
|
+
* Sign-in status. Includes the error code and description of the error (if a sign-in failure occurs). Supports $filter (eq) on errorCode property.
|
|
68209
70159
|
*/
|
|
68210
70160
|
status?: SignInStatus;
|
|
68211
70161
|
/**
|
|
@@ -68721,6 +70671,10 @@ export interface Site extends BaseItem, Parsable {
|
|
|
68721
70671
|
* The collection of long-running operations on the site.
|
|
68722
70672
|
*/
|
|
68723
70673
|
operations?: RichLongRunningOperation[];
|
|
70674
|
+
/**
|
|
70675
|
+
* The pages property
|
|
70676
|
+
*/
|
|
70677
|
+
pages?: BaseSitePage[];
|
|
68724
70678
|
/**
|
|
68725
70679
|
* The permissions associated with the site. Nullable.
|
|
68726
70680
|
*/
|
|
@@ -68782,6 +70736,46 @@ export interface SiteCollectionResponse extends BaseCollectionPaginationCountRes
|
|
|
68782
70736
|
*/
|
|
68783
70737
|
value?: Site[];
|
|
68784
70738
|
}
|
|
70739
|
+
export interface SitePage extends BaseSitePage, Parsable {
|
|
70740
|
+
/**
|
|
70741
|
+
* The canvasLayout property
|
|
70742
|
+
*/
|
|
70743
|
+
canvasLayout?: CanvasLayout;
|
|
70744
|
+
/**
|
|
70745
|
+
* The promotionKind property
|
|
70746
|
+
*/
|
|
70747
|
+
promotionKind?: PagePromotionType;
|
|
70748
|
+
/**
|
|
70749
|
+
* The reactions property
|
|
70750
|
+
*/
|
|
70751
|
+
reactions?: ReactionsFacet;
|
|
70752
|
+
/**
|
|
70753
|
+
* The showComments property
|
|
70754
|
+
*/
|
|
70755
|
+
showComments?: boolean;
|
|
70756
|
+
/**
|
|
70757
|
+
* The showRecommendedPages property
|
|
70758
|
+
*/
|
|
70759
|
+
showRecommendedPages?: boolean;
|
|
70760
|
+
/**
|
|
70761
|
+
* The thumbnailWebUrl property
|
|
70762
|
+
*/
|
|
70763
|
+
thumbnailWebUrl?: string;
|
|
70764
|
+
/**
|
|
70765
|
+
* The titleArea property
|
|
70766
|
+
*/
|
|
70767
|
+
titleArea?: TitleArea;
|
|
70768
|
+
/**
|
|
70769
|
+
* The webParts property
|
|
70770
|
+
*/
|
|
70771
|
+
webParts?: WebPart[];
|
|
70772
|
+
}
|
|
70773
|
+
export interface SitePageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
70774
|
+
/**
|
|
70775
|
+
* The value property
|
|
70776
|
+
*/
|
|
70777
|
+
value?: SitePage[];
|
|
70778
|
+
}
|
|
68785
70779
|
export type SiteSecurityLevel = (typeof SiteSecurityLevelObject)[keyof typeof SiteSecurityLevelObject];
|
|
68786
70780
|
export interface SizeRange extends AdditionalDataHolder, BackedModel, Parsable {
|
|
68787
70781
|
/**
|
|
@@ -69079,6 +71073,20 @@ export interface StandardTimeZoneOffset extends AdditionalDataHolder, BackedMode
|
|
|
69079
71073
|
*/
|
|
69080
71074
|
year?: number;
|
|
69081
71075
|
}
|
|
71076
|
+
export interface StandardWebPart extends Parsable, WebPart {
|
|
71077
|
+
/**
|
|
71078
|
+
* The containerTextWebPartId property
|
|
71079
|
+
*/
|
|
71080
|
+
containerTextWebPartId?: string;
|
|
71081
|
+
/**
|
|
71082
|
+
* The data property
|
|
71083
|
+
*/
|
|
71084
|
+
data?: WebPartData;
|
|
71085
|
+
/**
|
|
71086
|
+
* The webPartType property
|
|
71087
|
+
*/
|
|
71088
|
+
webPartType?: string;
|
|
71089
|
+
}
|
|
69082
71090
|
export interface StartHoldMusicOperation extends CommsOperation, Parsable {
|
|
69083
71091
|
}
|
|
69084
71092
|
export type StateManagementSetting = (typeof StateManagementSettingObject)[keyof typeof StateManagementSettingObject];
|
|
@@ -69547,7 +71555,7 @@ export interface Subscription extends Entity, Parsable {
|
|
|
69547
71555
|
*/
|
|
69548
71556
|
applicationId?: string;
|
|
69549
71557
|
/**
|
|
69550
|
-
* Required. Indicates the type of change in the subscribed resource that
|
|
71558
|
+
* Required. Indicates the type of change in the subscribed resource that raises a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. Use updated to receive notifications when user or group is created, updated, or soft deleted. Use deleted to receive notifications when user or group is permanently deleted.
|
|
69551
71559
|
*/
|
|
69552
71560
|
changeType?: string;
|
|
69553
71561
|
/**
|
|
@@ -69555,7 +71563,7 @@ export interface Subscription extends Entity, Parsable {
|
|
|
69555
71563
|
*/
|
|
69556
71564
|
clientState?: string;
|
|
69557
71565
|
/**
|
|
69558
|
-
* Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the
|
|
71566
|
+
* Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the ID of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the ID of the service principal corresponding to the app. Read-only.
|
|
69559
71567
|
*/
|
|
69560
71568
|
creatorId?: string;
|
|
69561
71569
|
/**
|
|
@@ -69567,7 +71575,7 @@ export interface Subscription extends Entity, Parsable {
|
|
|
69567
71575
|
*/
|
|
69568
71576
|
encryptionCertificateId?: string;
|
|
69569
71577
|
/**
|
|
69570
|
-
* Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see
|
|
71578
|
+
* Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. For the maximum supported subscription length of time, see Subscription lifetime.
|
|
69571
71579
|
*/
|
|
69572
71580
|
expirationDateTime?: Date;
|
|
69573
71581
|
/**
|
|
@@ -69583,19 +71591,19 @@ export interface Subscription extends Entity, Parsable {
|
|
|
69583
71591
|
*/
|
|
69584
71592
|
lifecycleNotificationUrl?: string;
|
|
69585
71593
|
/**
|
|
69586
|
-
* Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks
|
|
71594
|
+
* Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. Supported only for Universal Print Service. For more information, see Subscribe to change notifications from cloud printing APIs using Microsoft Graph.
|
|
69587
71595
|
*/
|
|
69588
71596
|
notificationQueryOptions?: string;
|
|
69589
71597
|
/**
|
|
69590
|
-
* Required. The URL of the endpoint that
|
|
71598
|
+
* Required. The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Any query string parameter included in the notificationUrl property is included in the HTTP POST request when Microsoft Graph sends the change notifications.
|
|
69591
71599
|
*/
|
|
69592
71600
|
notificationUrl?: string;
|
|
69593
71601
|
/**
|
|
69594
|
-
* Optional. The app ID that the subscription service can use to generate the validation token.
|
|
71602
|
+
* Optional. The app ID that the subscription service can use to generate the validation token. The value allows the client to validate the authenticity of the notification received.
|
|
69595
71603
|
*/
|
|
69596
71604
|
notificationUrlAppId?: string;
|
|
69597
71605
|
/**
|
|
69598
|
-
* Required. Specifies the resource that
|
|
71606
|
+
* Required. Specifies the resource that is monitored for changes. Don't include the base URL (https://graph.microsoft.com/v1.0/). See the possible resource path values for each supported resource.
|
|
69599
71607
|
*/
|
|
69600
71608
|
resource?: string;
|
|
69601
71609
|
}
|
|
@@ -69659,7 +71667,7 @@ export interface SynchronizationError extends AdditionalDataHolder, BackedModel,
|
|
|
69659
71667
|
}
|
|
69660
71668
|
export interface SynchronizationJob extends Entity, Parsable {
|
|
69661
71669
|
/**
|
|
69662
|
-
* The
|
|
71670
|
+
* The bulk upload operation for the job.
|
|
69663
71671
|
*/
|
|
69664
71672
|
bulkUpload?: BulkUpload;
|
|
69665
71673
|
/**
|
|
@@ -71000,7 +73008,7 @@ export interface TeamUnarchivedEventMessageDetail extends EventMessageDetail, Pa
|
|
|
71000
73008
|
export type TeamVisibilityType = (typeof TeamVisibilityTypeObject)[keyof typeof TeamVisibilityTypeObject];
|
|
71001
73009
|
export interface Teamwork extends Entity, Parsable {
|
|
71002
73010
|
/**
|
|
71003
|
-
*
|
|
73011
|
+
* A collection of deleted chats.
|
|
71004
73012
|
*/
|
|
71005
73013
|
deletedChats?: DeletedChat[];
|
|
71006
73014
|
/**
|
|
@@ -71699,6 +73707,12 @@ export interface TextColumn extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
71699
73707
|
*/
|
|
71700
73708
|
textType?: string;
|
|
71701
73709
|
}
|
|
73710
|
+
export interface TextWebPart extends Parsable, WebPart {
|
|
73711
|
+
/**
|
|
73712
|
+
* The innerHtml property
|
|
73713
|
+
*/
|
|
73714
|
+
innerHtml?: string;
|
|
73715
|
+
}
|
|
71702
73716
|
export type ThreatAssessmentContentType = (typeof ThreatAssessmentContentTypeObject)[keyof typeof ThreatAssessmentContentTypeObject];
|
|
71703
73717
|
export interface ThreatAssessmentRequest extends Entity, Parsable {
|
|
71704
73718
|
/**
|
|
@@ -72032,6 +74046,62 @@ export interface TimeZoneInformation extends AdditionalDataHolder, BackedModel,
|
|
|
72032
74046
|
*/
|
|
72033
74047
|
odataType?: string;
|
|
72034
74048
|
}
|
|
74049
|
+
export interface TitleArea extends AdditionalDataHolder, BackedModel, Parsable {
|
|
74050
|
+
/**
|
|
74051
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
74052
|
+
*/
|
|
74053
|
+
additionalData?: Record<string, unknown>;
|
|
74054
|
+
/**
|
|
74055
|
+
* The alternativeText property
|
|
74056
|
+
*/
|
|
74057
|
+
alternativeText?: string;
|
|
74058
|
+
/**
|
|
74059
|
+
* Stores model information.
|
|
74060
|
+
*/
|
|
74061
|
+
backingStoreEnabled?: boolean;
|
|
74062
|
+
/**
|
|
74063
|
+
* The enableGradientEffect property
|
|
74064
|
+
*/
|
|
74065
|
+
enableGradientEffect?: boolean;
|
|
74066
|
+
/**
|
|
74067
|
+
* The imageWebUrl property
|
|
74068
|
+
*/
|
|
74069
|
+
imageWebUrl?: string;
|
|
74070
|
+
/**
|
|
74071
|
+
* The layout property
|
|
74072
|
+
*/
|
|
74073
|
+
layout?: TitleAreaLayoutType;
|
|
74074
|
+
/**
|
|
74075
|
+
* The OdataType property
|
|
74076
|
+
*/
|
|
74077
|
+
odataType?: string;
|
|
74078
|
+
/**
|
|
74079
|
+
* The serverProcessedContent property
|
|
74080
|
+
*/
|
|
74081
|
+
serverProcessedContent?: ServerProcessedContent;
|
|
74082
|
+
/**
|
|
74083
|
+
* The showAuthor property
|
|
74084
|
+
*/
|
|
74085
|
+
showAuthor?: boolean;
|
|
74086
|
+
/**
|
|
74087
|
+
* The showPublishedDate property
|
|
74088
|
+
*/
|
|
74089
|
+
showPublishedDate?: boolean;
|
|
74090
|
+
/**
|
|
74091
|
+
* The showTextBlockAboveTitle property
|
|
74092
|
+
*/
|
|
74093
|
+
showTextBlockAboveTitle?: boolean;
|
|
74094
|
+
/**
|
|
74095
|
+
* The textAboveTitle property
|
|
74096
|
+
*/
|
|
74097
|
+
textAboveTitle?: string;
|
|
74098
|
+
/**
|
|
74099
|
+
* The textAlignment property
|
|
74100
|
+
*/
|
|
74101
|
+
textAlignment?: TitleAreaTextAlignmentType;
|
|
74102
|
+
}
|
|
74103
|
+
export type TitleAreaLayoutType = (typeof TitleAreaLayoutTypeObject)[keyof typeof TitleAreaLayoutTypeObject];
|
|
74104
|
+
export type TitleAreaTextAlignmentType = (typeof TitleAreaTextAlignmentTypeObject)[keyof typeof TitleAreaTextAlignmentTypeObject];
|
|
72035
74105
|
export interface Todo extends Entity, Parsable {
|
|
72036
74106
|
/**
|
|
72037
74107
|
* The task lists in the users mailbox.
|
|
@@ -72552,15 +74622,15 @@ export interface UnifiedRoleAssignmentCollectionResponse extends BaseCollectionP
|
|
|
72552
74622
|
}
|
|
72553
74623
|
export interface UnifiedRoleAssignmentSchedule extends Parsable, UnifiedRoleScheduleBase {
|
|
72554
74624
|
/**
|
|
72555
|
-
* If the request is from an eligible administrator to activate a role, this parameter
|
|
74625
|
+
* If the request is from an eligible administrator to activate a role, this parameter shows the related eligible assignment for that activation. Otherwise, it's null. Supports $expand.
|
|
72556
74626
|
*/
|
|
72557
74627
|
activatedUsing?: UnifiedRoleEligibilitySchedule;
|
|
72558
74628
|
/**
|
|
72559
|
-
*
|
|
74629
|
+
* The type of the assignment that can either be Assigned or Activated. Supports $filter (eq, ne).
|
|
72560
74630
|
*/
|
|
72561
74631
|
assignmentType?: string;
|
|
72562
74632
|
/**
|
|
72563
|
-
* How the
|
|
74633
|
+
* How the assignment is inherited. It can either be Inherited, Direct, or Group. It can further imply whether the unifiedRoleAssignmentSchedule can be managed by the caller. Supports $filter (eq, ne).
|
|
72564
74634
|
*/
|
|
72565
74635
|
memberType?: string;
|
|
72566
74636
|
/**
|
|
@@ -72576,11 +74646,11 @@ export interface UnifiedRoleAssignmentScheduleCollectionResponse extends BaseCol
|
|
|
72576
74646
|
}
|
|
72577
74647
|
export interface UnifiedRoleAssignmentScheduleInstance extends Parsable, UnifiedRoleScheduleInstanceBase {
|
|
72578
74648
|
/**
|
|
72579
|
-
* If the request is from an eligible administrator to activate a role, this parameter
|
|
74649
|
+
* If the request is from an eligible administrator to activate a role, this parameter shows the related eligible assignment for that activation. Otherwise, it's null. Supports $expand and $select nested in $expand.
|
|
72580
74650
|
*/
|
|
72581
74651
|
activatedUsing?: UnifiedRoleEligibilityScheduleInstance;
|
|
72582
74652
|
/**
|
|
72583
|
-
*
|
|
74653
|
+
* The type of the assignment that can either be Assigned or Activated. Supports $filter (eq, ne).
|
|
72584
74654
|
*/
|
|
72585
74655
|
assignmentType?: string;
|
|
72586
74656
|
/**
|
|
@@ -72588,7 +74658,7 @@ export interface UnifiedRoleAssignmentScheduleInstance extends Parsable, Unified
|
|
|
72588
74658
|
*/
|
|
72589
74659
|
endDateTime?: Date;
|
|
72590
74660
|
/**
|
|
72591
|
-
* How the
|
|
74661
|
+
* How the assignment is inherited. It can either be Inherited, Direct, or Group. It can further imply whether the unifiedRoleAssignmentSchedule can be managed by the caller. Supports $filter (eq, ne).
|
|
72592
74662
|
*/
|
|
72593
74663
|
memberType?: string;
|
|
72594
74664
|
/**
|
|
@@ -72616,7 +74686,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72616
74686
|
*/
|
|
72617
74687
|
action?: UnifiedRoleScheduleRequestActions;
|
|
72618
74688
|
/**
|
|
72619
|
-
* If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it's null. Supports $expand.
|
|
74689
|
+
* If the request is from an eligible administrator to activate a role, this parameter will show the related eligible assignment for that activation. Otherwise, it's null. Supports $expand and $select nested in $expand.
|
|
72620
74690
|
*/
|
|
72621
74691
|
activatedUsing?: UnifiedRoleEligibilitySchedule;
|
|
72622
74692
|
/**
|
|
@@ -72644,7 +74714,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72644
74714
|
*/
|
|
72645
74715
|
justification?: string;
|
|
72646
74716
|
/**
|
|
72647
|
-
* The principal that's getting a role assignment through the request. Supports $expand.
|
|
74717
|
+
* The principal that's getting a role assignment through the request. Supports $expand and $select nested in $expand for id only.
|
|
72648
74718
|
*/
|
|
72649
74719
|
principal?: DirectoryObject;
|
|
72650
74720
|
/**
|
|
@@ -72652,7 +74722,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72652
74722
|
*/
|
|
72653
74723
|
principalId?: string;
|
|
72654
74724
|
/**
|
|
72655
|
-
* Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand.
|
|
74725
|
+
* Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand and $select nested in $expand.
|
|
72656
74726
|
*/
|
|
72657
74727
|
roleDefinition?: UnifiedRoleDefinition;
|
|
72658
74728
|
/**
|
|
@@ -72664,7 +74734,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72664
74734
|
*/
|
|
72665
74735
|
scheduleInfo?: RequestSchedule;
|
|
72666
74736
|
/**
|
|
72667
|
-
* The schedule for an eligible role assignment that is referenced through the targetScheduleId property. Supports $expand.
|
|
74737
|
+
* The schedule for an eligible role assignment that is referenced through the targetScheduleId property. Supports $expand and $select nested in $expand.
|
|
72668
74738
|
*/
|
|
72669
74739
|
targetSchedule?: UnifiedRoleAssignmentSchedule;
|
|
72670
74740
|
/**
|
|
@@ -75893,6 +77963,16 @@ export interface VerifiedPublisher extends AdditionalDataHolder, BackedModel, Pa
|
|
|
75893
77963
|
*/
|
|
75894
77964
|
verifiedPublisherId?: string;
|
|
75895
77965
|
}
|
|
77966
|
+
export interface VerticalSection extends Entity, Parsable {
|
|
77967
|
+
/**
|
|
77968
|
+
* The emphasis property
|
|
77969
|
+
*/
|
|
77970
|
+
emphasis?: SectionEmphasisType;
|
|
77971
|
+
/**
|
|
77972
|
+
* The webparts property
|
|
77973
|
+
*/
|
|
77974
|
+
webparts?: WebPart[];
|
|
77975
|
+
}
|
|
75896
77976
|
export interface Video extends AdditionalDataHolder, BackedModel, Parsable {
|
|
75897
77977
|
/**
|
|
75898
77978
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -75949,6 +78029,34 @@ export interface Video extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
75949
78029
|
}
|
|
75950
78030
|
export type VirtualAppointmentMessageType = (typeof VirtualAppointmentMessageTypeObject)[keyof typeof VirtualAppointmentMessageTypeObject];
|
|
75951
78031
|
export interface VirtualEndpoint extends Entity, Parsable {
|
|
78032
|
+
/**
|
|
78033
|
+
* The auditEvents property
|
|
78034
|
+
*/
|
|
78035
|
+
auditEvents?: CloudPcAuditEvent[];
|
|
78036
|
+
/**
|
|
78037
|
+
* The cloudPCs property
|
|
78038
|
+
*/
|
|
78039
|
+
cloudPCs?: CloudPC[];
|
|
78040
|
+
/**
|
|
78041
|
+
* The deviceImages property
|
|
78042
|
+
*/
|
|
78043
|
+
deviceImages?: CloudPcDeviceImage[];
|
|
78044
|
+
/**
|
|
78045
|
+
* The galleryImages property
|
|
78046
|
+
*/
|
|
78047
|
+
galleryImages?: CloudPcGalleryImage[];
|
|
78048
|
+
/**
|
|
78049
|
+
* The onPremisesConnections property
|
|
78050
|
+
*/
|
|
78051
|
+
onPremisesConnections?: CloudPcOnPremisesConnection[];
|
|
78052
|
+
/**
|
|
78053
|
+
* The provisioningPolicies property
|
|
78054
|
+
*/
|
|
78055
|
+
provisioningPolicies?: CloudPcProvisioningPolicy[];
|
|
78056
|
+
/**
|
|
78057
|
+
* The userSettings property
|
|
78058
|
+
*/
|
|
78059
|
+
userSettings?: CloudPcUserSetting[];
|
|
75952
78060
|
}
|
|
75953
78061
|
export interface VirtualEvent extends Entity, Parsable {
|
|
75954
78062
|
/**
|
|
@@ -76334,6 +78442,78 @@ export interface WebApplication extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
76334
78442
|
redirectUriSettings?: RedirectUriSettings[];
|
|
76335
78443
|
}
|
|
76336
78444
|
export type WebBrowserCookieSettings = (typeof WebBrowserCookieSettingsObject)[keyof typeof WebBrowserCookieSettingsObject];
|
|
78445
|
+
export interface WebPart extends Entity, Parsable {
|
|
78446
|
+
}
|
|
78447
|
+
export interface WebPartCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
78448
|
+
/**
|
|
78449
|
+
* The value property
|
|
78450
|
+
*/
|
|
78451
|
+
value?: WebPart[];
|
|
78452
|
+
}
|
|
78453
|
+
export interface WebPartData extends AdditionalDataHolder, BackedModel, Parsable {
|
|
78454
|
+
/**
|
|
78455
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
78456
|
+
*/
|
|
78457
|
+
additionalData?: Record<string, unknown>;
|
|
78458
|
+
/**
|
|
78459
|
+
* Stores model information.
|
|
78460
|
+
*/
|
|
78461
|
+
backingStoreEnabled?: boolean;
|
|
78462
|
+
/**
|
|
78463
|
+
* The dataVersion property
|
|
78464
|
+
*/
|
|
78465
|
+
dataVersion?: string;
|
|
78466
|
+
/**
|
|
78467
|
+
* The description property
|
|
78468
|
+
*/
|
|
78469
|
+
description?: string;
|
|
78470
|
+
/**
|
|
78471
|
+
* The OdataType property
|
|
78472
|
+
*/
|
|
78473
|
+
odataType?: string;
|
|
78474
|
+
/**
|
|
78475
|
+
* The properties property
|
|
78476
|
+
*/
|
|
78477
|
+
properties?: Json;
|
|
78478
|
+
/**
|
|
78479
|
+
* The serverProcessedContent property
|
|
78480
|
+
*/
|
|
78481
|
+
serverProcessedContent?: ServerProcessedContent;
|
|
78482
|
+
/**
|
|
78483
|
+
* The title property
|
|
78484
|
+
*/
|
|
78485
|
+
title?: string;
|
|
78486
|
+
}
|
|
78487
|
+
export interface WebPartPosition extends AdditionalDataHolder, BackedModel, Parsable {
|
|
78488
|
+
/**
|
|
78489
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
78490
|
+
*/
|
|
78491
|
+
additionalData?: Record<string, unknown>;
|
|
78492
|
+
/**
|
|
78493
|
+
* Stores model information.
|
|
78494
|
+
*/
|
|
78495
|
+
backingStoreEnabled?: boolean;
|
|
78496
|
+
/**
|
|
78497
|
+
* The columnId property
|
|
78498
|
+
*/
|
|
78499
|
+
columnId?: number;
|
|
78500
|
+
/**
|
|
78501
|
+
* The horizontalSectionId property
|
|
78502
|
+
*/
|
|
78503
|
+
horizontalSectionId?: number;
|
|
78504
|
+
/**
|
|
78505
|
+
* The isInVerticalSection property
|
|
78506
|
+
*/
|
|
78507
|
+
isInVerticalSection?: boolean;
|
|
78508
|
+
/**
|
|
78509
|
+
* The OdataType property
|
|
78510
|
+
*/
|
|
78511
|
+
odataType?: string;
|
|
78512
|
+
/**
|
|
78513
|
+
* The webPartIndex property
|
|
78514
|
+
*/
|
|
78515
|
+
webPartIndex?: number;
|
|
78516
|
+
}
|
|
76337
78517
|
export interface Website extends AdditionalDataHolder, BackedModel, Parsable {
|
|
76338
78518
|
/**
|
|
76339
78519
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -76468,7 +78648,7 @@ export interface Win32LobAppFileSystemRule extends Parsable, Win32LobAppRule {
|
|
|
76468
78648
|
*/
|
|
76469
78649
|
fileOrFolderName?: string;
|
|
76470
78650
|
/**
|
|
76471
|
-
*
|
|
78651
|
+
* A list of possible operations for rules used to make determinations about an application based on files or folders. Unless noted, can be used with either detection or requirement rules.
|
|
76472
78652
|
*/
|
|
76473
78653
|
operationType?: Win32LobAppFileSystemOperationType;
|
|
76474
78654
|
/**
|
|
@@ -76624,7 +78804,7 @@ export interface Win32LobAppRegistryRule extends Parsable, Win32LobAppRule {
|
|
|
76624
78804
|
*/
|
|
76625
78805
|
keyPath?: string;
|
|
76626
78806
|
/**
|
|
76627
|
-
*
|
|
78807
|
+
* A list of possible operations for rules used to make determinations about an application based on registry keys or values. Unless noted, the values can be used with either detection or requirement rules.
|
|
76628
78808
|
*/
|
|
76629
78809
|
operationType?: Win32LobAppRegistryRuleOperationType;
|
|
76630
78810
|
/**
|
|
@@ -76956,6 +79136,15 @@ export interface Windows10EndpointProtectionConfiguration extends DeviceConfigur
|
|
|
76956
79136
|
*/
|
|
76957
79137
|
smartScreenEnableInShell?: boolean;
|
|
76958
79138
|
}
|
|
79139
|
+
/**
|
|
79140
|
+
* Windows 10 Enrollment Status Page Configuration
|
|
79141
|
+
*/
|
|
79142
|
+
export interface Windows10EnrollmentCompletionPageConfiguration extends DeviceEnrollmentConfiguration, Parsable {
|
|
79143
|
+
/**
|
|
79144
|
+
* When TRUE, ESP (Enrollment Status Page) installs all required apps targeted during technician phase and ignores any failures for non-blocking apps. When FALSE, ESP fails on any error during app install. The default is false.
|
|
79145
|
+
*/
|
|
79146
|
+
allowNonBlockingAppInstallation?: boolean;
|
|
79147
|
+
}
|
|
76959
79148
|
/**
|
|
76960
79149
|
* Windows10 Enterprise Modern App Management Configuration.
|
|
76961
79150
|
*/
|
|
@@ -79496,11 +81685,11 @@ export interface WindowsProtectionState extends Entity, Parsable {
|
|
|
79496
81685
|
}
|
|
79497
81686
|
export interface WindowsSetting extends Entity, Parsable {
|
|
79498
81687
|
/**
|
|
79499
|
-
*
|
|
81688
|
+
* A collection of setting values for a given windowsSetting.
|
|
79500
81689
|
*/
|
|
79501
81690
|
instances?: WindowsSettingInstance[];
|
|
79502
81691
|
/**
|
|
79503
|
-
* The
|
|
81692
|
+
* The type of setting payloads contained in the instances navigation property.
|
|
79504
81693
|
*/
|
|
79505
81694
|
payloadType?: string;
|
|
79506
81695
|
/**
|
|
@@ -79508,7 +81697,7 @@ export interface WindowsSetting extends Entity, Parsable {
|
|
|
79508
81697
|
*/
|
|
79509
81698
|
settingType?: WindowsSettingType;
|
|
79510
81699
|
/**
|
|
79511
|
-
*
|
|
81700
|
+
* A unique identifier for the device the setting might belong to if it is of the settingType backup.
|
|
79512
81701
|
*/
|
|
79513
81702
|
windowsDeviceId?: string;
|
|
79514
81703
|
}
|
|
@@ -79520,19 +81709,19 @@ export interface WindowsSettingCollectionResponse extends BaseCollectionPaginati
|
|
|
79520
81709
|
}
|
|
79521
81710
|
export interface WindowsSettingInstance extends Entity, Parsable {
|
|
79522
81711
|
/**
|
|
79523
|
-
*
|
|
81712
|
+
* Set by the server. Represents the dateTime in UTC when the object was created on the server.
|
|
79524
81713
|
*/
|
|
79525
81714
|
createdDateTime?: Date;
|
|
79526
81715
|
/**
|
|
79527
|
-
* The
|
|
81716
|
+
* Set by the server. The object expires at the specified dateTime in UTC, making it unavailable after that time.
|
|
79528
81717
|
*/
|
|
79529
81718
|
expirationDateTime?: Date;
|
|
79530
81719
|
/**
|
|
79531
|
-
*
|
|
81720
|
+
* Set by the server if not provided in the request from the Windows client device. Refers to the user's Windows device that modified the object at the specified dateTime in UTC.
|
|
79532
81721
|
*/
|
|
79533
81722
|
lastModifiedDateTime?: Date;
|
|
79534
81723
|
/**
|
|
79535
|
-
*
|
|
81724
|
+
* Base64-encoded JSON setting value.
|
|
79536
81725
|
*/
|
|
79537
81726
|
payload?: string;
|
|
79538
81727
|
}
|
|
@@ -81472,6 +83661,12 @@ export declare const AppLogUploadStateObject: {
|
|
|
81472
83661
|
/** Evolvable enumeration sentinel value. Do not use. */
|
|
81473
83662
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
81474
83663
|
};
|
|
83664
|
+
export declare const AppsUpdateChannelTypeObject: {
|
|
83665
|
+
readonly Current: "current";
|
|
83666
|
+
readonly MonthlyEnterprise: "monthlyEnterprise";
|
|
83667
|
+
readonly SemiAnnual: "semiAnnual";
|
|
83668
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83669
|
+
};
|
|
81475
83670
|
export declare const AssignmentTypeObject: {
|
|
81476
83671
|
readonly Required: "required";
|
|
81477
83672
|
readonly Recommended: "recommended";
|
|
@@ -81987,6 +84182,184 @@ export declare const CloudAppSecuritySessionControlTypeObject: {
|
|
|
81987
84182
|
readonly BlockDownloads: "blockDownloads";
|
|
81988
84183
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
81989
84184
|
};
|
|
84185
|
+
export declare const CloudPcAuditActivityOperationTypeObject: {
|
|
84186
|
+
readonly Create: "create";
|
|
84187
|
+
readonly Delete: "delete";
|
|
84188
|
+
readonly Patch: "patch";
|
|
84189
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84190
|
+
};
|
|
84191
|
+
export declare const CloudPcAuditActivityResultObject: {
|
|
84192
|
+
readonly Success: "success";
|
|
84193
|
+
readonly ClientError: "clientError";
|
|
84194
|
+
readonly Failure: "failure";
|
|
84195
|
+
readonly Timeout: "timeout";
|
|
84196
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84197
|
+
};
|
|
84198
|
+
export declare const CloudPcAuditCategoryObject: {
|
|
84199
|
+
readonly CloudPC: "cloudPC";
|
|
84200
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84201
|
+
};
|
|
84202
|
+
export declare const CloudPcDeviceImageErrorCodeObject: {
|
|
84203
|
+
readonly InternalServerError: "internalServerError";
|
|
84204
|
+
readonly SourceImageNotFound: "sourceImageNotFound";
|
|
84205
|
+
readonly OsVersionNotSupported: "osVersionNotSupported";
|
|
84206
|
+
readonly SourceImageInvalid: "sourceImageInvalid";
|
|
84207
|
+
readonly SourceImageNotGeneralized: "sourceImageNotGeneralized";
|
|
84208
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84209
|
+
readonly VmAlreadyAzureAdjoined: "vmAlreadyAzureAdjoined";
|
|
84210
|
+
readonly PaidSourceImageNotSupport: "paidSourceImageNotSupport";
|
|
84211
|
+
readonly SourceImageNotSupportCustomizeVMName: "sourceImageNotSupportCustomizeVMName";
|
|
84212
|
+
readonly SourceImageSizeExceedsLimitation: "sourceImageSizeExceedsLimitation";
|
|
84213
|
+
};
|
|
84214
|
+
export declare const CloudPcDeviceImageOsStatusObject: {
|
|
84215
|
+
readonly Supported: "supported";
|
|
84216
|
+
readonly SupportedWithWarning: "supportedWithWarning";
|
|
84217
|
+
readonly Unknown: "unknown";
|
|
84218
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84219
|
+
};
|
|
84220
|
+
export declare const CloudPcDeviceImageStatusObject: {
|
|
84221
|
+
readonly Pending: "pending";
|
|
84222
|
+
readonly Ready: "ready";
|
|
84223
|
+
readonly Failed: "failed";
|
|
84224
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84225
|
+
};
|
|
84226
|
+
export declare const CloudPcDomainJoinTypeObject: {
|
|
84227
|
+
readonly AzureADJoin: "azureADJoin";
|
|
84228
|
+
readonly HybridAzureADJoin: "hybridAzureADJoin";
|
|
84229
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84230
|
+
};
|
|
84231
|
+
export declare const CloudPcGalleryImageStatusObject: {
|
|
84232
|
+
readonly Supported: "supported";
|
|
84233
|
+
readonly SupportedWithWarning: "supportedWithWarning";
|
|
84234
|
+
readonly NotSupported: "notSupported";
|
|
84235
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84236
|
+
};
|
|
84237
|
+
export declare const CloudPcOnPremisesConnectionHealthCheckErrorTypeObject: {
|
|
84238
|
+
readonly DnsCheckFqdnNotFound: "dnsCheckFqdnNotFound";
|
|
84239
|
+
readonly DnsCheckNameWithInvalidCharacter: "dnsCheckNameWithInvalidCharacter";
|
|
84240
|
+
readonly DnsCheckUnknownError: "dnsCheckUnknownError";
|
|
84241
|
+
readonly AdJoinCheckFqdnNotFound: "adJoinCheckFqdnNotFound";
|
|
84242
|
+
readonly AdJoinCheckIncorrectCredentials: "adJoinCheckIncorrectCredentials";
|
|
84243
|
+
readonly AdJoinCheckOrganizationalUnitNotFound: "adJoinCheckOrganizationalUnitNotFound";
|
|
84244
|
+
readonly AdJoinCheckOrganizationalUnitIncorrectFormat: "adJoinCheckOrganizationalUnitIncorrectFormat";
|
|
84245
|
+
readonly AdJoinCheckComputerObjectAlreadyExists: "adJoinCheckComputerObjectAlreadyExists";
|
|
84246
|
+
readonly AdJoinCheckAccessDenied: "adJoinCheckAccessDenied";
|
|
84247
|
+
readonly AdJoinCheckCredentialsExpired: "adJoinCheckCredentialsExpired";
|
|
84248
|
+
readonly AdJoinCheckAccountLockedOrDisabled: "adJoinCheckAccountLockedOrDisabled";
|
|
84249
|
+
readonly AdJoinCheckAccountQuotaExceeded: "adJoinCheckAccountQuotaExceeded";
|
|
84250
|
+
readonly AdJoinCheckServerNotOperational: "adJoinCheckServerNotOperational";
|
|
84251
|
+
readonly AdJoinCheckUnknownError: "adJoinCheckUnknownError";
|
|
84252
|
+
readonly EndpointConnectivityCheckCloudPcUrlNotAllowListed: "endpointConnectivityCheckCloudPcUrlNotAllowListed";
|
|
84253
|
+
readonly EndpointConnectivityCheckWVDUrlNotAllowListed: "endpointConnectivityCheckWVDUrlNotAllowListed";
|
|
84254
|
+
readonly EndpointConnectivityCheckIntuneUrlNotAllowListed: "endpointConnectivityCheckIntuneUrlNotAllowListed";
|
|
84255
|
+
readonly EndpointConnectivityCheckAzureADUrlNotAllowListed: "endpointConnectivityCheckAzureADUrlNotAllowListed";
|
|
84256
|
+
readonly EndpointConnectivityCheckLocaleUrlNotAllowListed: "endpointConnectivityCheckLocaleUrlNotAllowListed";
|
|
84257
|
+
readonly EndpointConnectivityCheckUnknownError: "endpointConnectivityCheckUnknownError";
|
|
84258
|
+
readonly AzureAdDeviceSyncCheckDeviceNotFound: "azureAdDeviceSyncCheckDeviceNotFound";
|
|
84259
|
+
readonly AzureAdDeviceSyncCheckLongSyncCircle: "azureAdDeviceSyncCheckLongSyncCircle";
|
|
84260
|
+
readonly AzureAdDeviceSyncCheckConnectDisabled: "azureAdDeviceSyncCheckConnectDisabled";
|
|
84261
|
+
readonly AzureAdDeviceSyncCheckDurationExceeded: "azureAdDeviceSyncCheckDurationExceeded";
|
|
84262
|
+
readonly AzureAdDeviceSyncCheckScpNotConfigured: "azureAdDeviceSyncCheckScpNotConfigured";
|
|
84263
|
+
readonly AzureAdDeviceSyncCheckTransientServiceError: "azureAdDeviceSyncCheckTransientServiceError";
|
|
84264
|
+
readonly AzureAdDeviceSyncCheckUnknownError: "azureAdDeviceSyncCheckUnknownError";
|
|
84265
|
+
readonly ResourceAvailabilityCheckNoSubnetIP: "resourceAvailabilityCheckNoSubnetIP";
|
|
84266
|
+
readonly ResourceAvailabilityCheckSubscriptionDisabled: "resourceAvailabilityCheckSubscriptionDisabled";
|
|
84267
|
+
readonly ResourceAvailabilityCheckAzurePolicyViolation: "resourceAvailabilityCheckAzurePolicyViolation";
|
|
84268
|
+
readonly ResourceAvailabilityCheckSubscriptionNotFound: "resourceAvailabilityCheckSubscriptionNotFound";
|
|
84269
|
+
readonly ResourceAvailabilityCheckSubscriptionTransferred: "resourceAvailabilityCheckSubscriptionTransferred";
|
|
84270
|
+
readonly ResourceAvailabilityCheckGeneralSubscriptionError: "resourceAvailabilityCheckGeneralSubscriptionError";
|
|
84271
|
+
readonly ResourceAvailabilityCheckUnsupportedVNetRegion: "resourceAvailabilityCheckUnsupportedVNetRegion";
|
|
84272
|
+
readonly ResourceAvailabilityCheckResourceGroupInvalid: "resourceAvailabilityCheckResourceGroupInvalid";
|
|
84273
|
+
readonly ResourceAvailabilityCheckVNetInvalid: "resourceAvailabilityCheckVNetInvalid";
|
|
84274
|
+
readonly ResourceAvailabilityCheckSubnetInvalid: "resourceAvailabilityCheckSubnetInvalid";
|
|
84275
|
+
readonly ResourceAvailabilityCheckResourceGroupBeingDeleted: "resourceAvailabilityCheckResourceGroupBeingDeleted";
|
|
84276
|
+
readonly ResourceAvailabilityCheckVNetBeingMoved: "resourceAvailabilityCheckVNetBeingMoved";
|
|
84277
|
+
readonly ResourceAvailabilityCheckSubnetDelegationFailed: "resourceAvailabilityCheckSubnetDelegationFailed";
|
|
84278
|
+
readonly ResourceAvailabilityCheckSubnetWithExternalResources: "resourceAvailabilityCheckSubnetWithExternalResources";
|
|
84279
|
+
readonly ResourceAvailabilityCheckResourceGroupLockedForReadonly: "resourceAvailabilityCheckResourceGroupLockedForReadonly";
|
|
84280
|
+
readonly ResourceAvailabilityCheckResourceGroupLockedForDelete: "resourceAvailabilityCheckResourceGroupLockedForDelete";
|
|
84281
|
+
readonly ResourceAvailabilityCheckNoIntuneReaderRoleError: "resourceAvailabilityCheckNoIntuneReaderRoleError";
|
|
84282
|
+
readonly ResourceAvailabilityCheckIntuneDefaultWindowsRestrictionViolation: "resourceAvailabilityCheckIntuneDefaultWindowsRestrictionViolation";
|
|
84283
|
+
readonly ResourceAvailabilityCheckIntuneCustomWindowsRestrictionViolation: "resourceAvailabilityCheckIntuneCustomWindowsRestrictionViolation";
|
|
84284
|
+
readonly ResourceAvailabilityCheckDeploymentQuotaLimitReached: "resourceAvailabilityCheckDeploymentQuotaLimitReached";
|
|
84285
|
+
readonly ResourceAvailabilityCheckTransientServiceError: "resourceAvailabilityCheckTransientServiceError";
|
|
84286
|
+
readonly ResourceAvailabilityCheckUnknownError: "resourceAvailabilityCheckUnknownError";
|
|
84287
|
+
readonly PermissionCheckNoSubscriptionReaderRole: "permissionCheckNoSubscriptionReaderRole";
|
|
84288
|
+
readonly PermissionCheckNoResourceGroupOwnerRole: "permissionCheckNoResourceGroupOwnerRole";
|
|
84289
|
+
readonly PermissionCheckNoVNetContributorRole: "permissionCheckNoVNetContributorRole";
|
|
84290
|
+
readonly PermissionCheckNoResourceGroupNetworkContributorRole: "permissionCheckNoResourceGroupNetworkContributorRole";
|
|
84291
|
+
readonly PermissionCheckNoWindows365NetworkUserRole: "permissionCheckNoWindows365NetworkUserRole";
|
|
84292
|
+
readonly PermissionCheckNoWindows365NetworkInterfaceContributorRole: "permissionCheckNoWindows365NetworkInterfaceContributorRole";
|
|
84293
|
+
readonly PermissionCheckTransientServiceError: "permissionCheckTransientServiceError";
|
|
84294
|
+
readonly PermissionCheckUnknownError: "permissionCheckUnknownError";
|
|
84295
|
+
readonly UdpConnectivityCheckStunUrlNotAllowListed: "udpConnectivityCheckStunUrlNotAllowListed";
|
|
84296
|
+
readonly UdpConnectivityCheckTurnUrlNotAllowListed: "udpConnectivityCheckTurnUrlNotAllowListed";
|
|
84297
|
+
readonly UdpConnectivityCheckUrlsNotAllowListed: "udpConnectivityCheckUrlsNotAllowListed";
|
|
84298
|
+
readonly UdpConnectivityCheckUnknownError: "udpConnectivityCheckUnknownError";
|
|
84299
|
+
readonly InternalServerErrorDeploymentCanceled: "internalServerErrorDeploymentCanceled";
|
|
84300
|
+
readonly InternalServerErrorAllocateResourceFailed: "internalServerErrorAllocateResourceFailed";
|
|
84301
|
+
readonly InternalServerErrorVMDeploymentTimeout: "internalServerErrorVMDeploymentTimeout";
|
|
84302
|
+
readonly InternalServerErrorUnableToRunDscScript: "internalServerErrorUnableToRunDscScript";
|
|
84303
|
+
readonly SsoCheckKerberosConfigurationError: "ssoCheckKerberosConfigurationError";
|
|
84304
|
+
readonly InternalServerUnknownError: "internalServerUnknownError";
|
|
84305
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84306
|
+
};
|
|
84307
|
+
export declare const CloudPcOnPremisesConnectionStatusObject: {
|
|
84308
|
+
readonly Pending: "pending";
|
|
84309
|
+
readonly Running: "running";
|
|
84310
|
+
readonly Passed: "passed";
|
|
84311
|
+
readonly Failed: "failed";
|
|
84312
|
+
readonly Warning: "warning";
|
|
84313
|
+
readonly Informational: "informational";
|
|
84314
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84315
|
+
};
|
|
84316
|
+
export declare const CloudPcOnPremisesConnectionTypeObject: {
|
|
84317
|
+
readonly HybridAzureADJoin: "hybridAzureADJoin";
|
|
84318
|
+
readonly AzureADJoin: "azureADJoin";
|
|
84319
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84320
|
+
};
|
|
84321
|
+
export declare const CloudPcProvisioningPolicyImageTypeObject: {
|
|
84322
|
+
readonly Gallery: "gallery";
|
|
84323
|
+
readonly Custom: "custom";
|
|
84324
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84325
|
+
};
|
|
84326
|
+
export declare const CloudPcProvisioningTypeObject: {
|
|
84327
|
+
readonly Dedicated: "dedicated";
|
|
84328
|
+
readonly Shared: "shared";
|
|
84329
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84330
|
+
};
|
|
84331
|
+
export declare const CloudPcRegionGroupObject: {
|
|
84332
|
+
readonly DefaultEscaped: "default";
|
|
84333
|
+
readonly Australia: "australia";
|
|
84334
|
+
readonly Canada: "canada";
|
|
84335
|
+
readonly UsCentral: "usCentral";
|
|
84336
|
+
readonly UsEast: "usEast";
|
|
84337
|
+
readonly UsWest: "usWest";
|
|
84338
|
+
readonly France: "france";
|
|
84339
|
+
readonly Germany: "germany";
|
|
84340
|
+
readonly EuropeUnion: "europeUnion";
|
|
84341
|
+
readonly UnitedKingdom: "unitedKingdom";
|
|
84342
|
+
readonly Japan: "japan";
|
|
84343
|
+
readonly Asia: "asia";
|
|
84344
|
+
readonly India: "india";
|
|
84345
|
+
readonly SouthAmerica: "southAmerica";
|
|
84346
|
+
readonly Euap: "euap";
|
|
84347
|
+
readonly UsGovernment: "usGovernment";
|
|
84348
|
+
readonly UsGovernmentDOD: "usGovernmentDOD";
|
|
84349
|
+
readonly Norway: "norway";
|
|
84350
|
+
readonly Switzerland: "switzerland";
|
|
84351
|
+
readonly SouthKorea: "southKorea";
|
|
84352
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84353
|
+
};
|
|
84354
|
+
export declare const CloudPcRestorePointFrequencyTypeObject: {
|
|
84355
|
+
readonly DefaultEscaped: "default";
|
|
84356
|
+
readonly FourHours: "fourHours";
|
|
84357
|
+
readonly SixHours: "sixHours";
|
|
84358
|
+
readonly TwelveHours: "twelveHours";
|
|
84359
|
+
readonly SixteenHours: "sixteenHours";
|
|
84360
|
+
readonly TwentyFourHours: "twentyFourHours";
|
|
84361
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84362
|
+
};
|
|
81990
84363
|
export declare const CoachmarkLocationTypeObject: {
|
|
81991
84364
|
readonly Unknown: "unknown";
|
|
81992
84365
|
readonly FromEmail: "fromEmail";
|
|
@@ -82510,12 +84883,12 @@ export declare const DeviceManagementExchangeConnectorTypeObject: {
|
|
|
82510
84883
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
82511
84884
|
};
|
|
82512
84885
|
/**
|
|
82513
|
-
* Configures how the requested export job is localized
|
|
84886
|
+
* Configures how the requested export job is localized.
|
|
82514
84887
|
*/
|
|
82515
84888
|
export declare const DeviceManagementExportJobLocalizationTypeObject: {
|
|
82516
|
-
/** Configures the export job to expose localized values as an additional column */
|
|
84889
|
+
/** Configures the export job to expose localized values as an additional column. */
|
|
82517
84890
|
readonly LocalizedValuesAsAdditionalColumn: "localizedValuesAsAdditionalColumn";
|
|
82518
|
-
/** Configures the export job to replace enumerable values with their localized values */
|
|
84891
|
+
/** Configures the export job to replace enumerable values with their localized values. */
|
|
82519
84892
|
readonly ReplaceLocalizableValues: "replaceLocalizableValues";
|
|
82520
84893
|
};
|
|
82521
84894
|
/**
|
|
@@ -82547,31 +84920,31 @@ export declare const DeviceManagementPartnerTenantStateObject: {
|
|
|
82547
84920
|
readonly Unresponsive: "unresponsive";
|
|
82548
84921
|
};
|
|
82549
84922
|
/**
|
|
82550
|
-
* Possible values for the file format of a report
|
|
84923
|
+
* Possible values for the file format of a report.
|
|
82551
84924
|
*/
|
|
82552
84925
|
export declare const DeviceManagementReportFileFormatObject: {
|
|
82553
|
-
/** CSV Format */
|
|
84926
|
+
/** CSV Format. */
|
|
82554
84927
|
readonly Csv: "csv";
|
|
82555
|
-
/** PDF Format */
|
|
84928
|
+
/** PDF Format (Deprecate later). */
|
|
82556
84929
|
readonly Pdf: "pdf";
|
|
82557
|
-
/** JSON Format */
|
|
84930
|
+
/** JSON Format. */
|
|
82558
84931
|
readonly Json: "json";
|
|
82559
84932
|
/** Evolvable enumeration sentinel value. Do not use. */
|
|
82560
84933
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
82561
84934
|
};
|
|
82562
84935
|
/**
|
|
82563
|
-
* Possible statuses associated with a generated report
|
|
84936
|
+
* Possible statuses associated with a generated report.
|
|
82564
84937
|
*/
|
|
82565
84938
|
export declare const DeviceManagementReportStatusObject: {
|
|
82566
|
-
/** Report generation status is unknown */
|
|
84939
|
+
/** Report generation status is unknown. */
|
|
82567
84940
|
readonly Unknown: "unknown";
|
|
82568
|
-
/** Report generation has not started */
|
|
84941
|
+
/** Report generation has not started. */
|
|
82569
84942
|
readonly NotStarted: "notStarted";
|
|
82570
|
-
/** Report generation is in progress */
|
|
84943
|
+
/** Report generation is in progress. */
|
|
82571
84944
|
readonly InProgress: "inProgress";
|
|
82572
|
-
/** Report generation is completed */
|
|
84945
|
+
/** Report generation is completed. */
|
|
82573
84946
|
readonly Completed: "completed";
|
|
82574
|
-
/** Report generation has failed */
|
|
84947
|
+
/** Report generation has failed. */
|
|
82575
84948
|
readonly Failed: "failed";
|
|
82576
84949
|
};
|
|
82577
84950
|
/**
|
|
@@ -82593,6 +84966,37 @@ export declare const DeviceManagementSubscriptionStateObject: {
|
|
|
82593
84966
|
/** LockedOut */
|
|
82594
84967
|
readonly LockedOut: "lockedOut";
|
|
82595
84968
|
};
|
|
84969
|
+
/**
|
|
84970
|
+
* Supported platform types.
|
|
84971
|
+
*/
|
|
84972
|
+
export declare const DevicePlatformTypeObject: {
|
|
84973
|
+
/** Android. */
|
|
84974
|
+
readonly Android: "android";
|
|
84975
|
+
/** AndroidForWork. */
|
|
84976
|
+
readonly AndroidForWork: "androidForWork";
|
|
84977
|
+
/** iOS. */
|
|
84978
|
+
readonly IOS: "iOS";
|
|
84979
|
+
/** MacOS. */
|
|
84980
|
+
readonly MacOS: "macOS";
|
|
84981
|
+
/** WindowsPhone 8.1. */
|
|
84982
|
+
readonly WindowsPhone81: "windowsPhone81";
|
|
84983
|
+
/** Windows 8.1 and later */
|
|
84984
|
+
readonly Windows81AndLater: "windows81AndLater";
|
|
84985
|
+
/** Windows 10 and later. */
|
|
84986
|
+
readonly Windows10AndLater: "windows10AndLater";
|
|
84987
|
+
/** Android Work Profile. */
|
|
84988
|
+
readonly AndroidWorkProfile: "androidWorkProfile";
|
|
84989
|
+
/** Unknown. */
|
|
84990
|
+
readonly Unknown: "unknown";
|
|
84991
|
+
/** Android AOSP. */
|
|
84992
|
+
readonly AndroidAOSP: "androidAOSP";
|
|
84993
|
+
/** Indicates Mobile Application Management (MAM) for android devices. */
|
|
84994
|
+
readonly AndroidMobileApplicationManagement: "androidMobileApplicationManagement";
|
|
84995
|
+
/** Indicates Mobile Application Management (MAM) for iOS devices */
|
|
84996
|
+
readonly IOSMobileApplicationManagement: "iOSMobileApplicationManagement";
|
|
84997
|
+
/** Evolvable enumeration sentinel value. Do not use */
|
|
84998
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84999
|
+
};
|
|
82596
85000
|
/**
|
|
82597
85001
|
* Device registration status.
|
|
82598
85002
|
*/
|
|
@@ -82958,6 +85362,16 @@ export declare const GroupTypeObject: {
|
|
|
82958
85362
|
readonly AzureAD: "azureAD";
|
|
82959
85363
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
82960
85364
|
};
|
|
85365
|
+
export declare const HorizontalSectionLayoutTypeObject: {
|
|
85366
|
+
readonly None: "none";
|
|
85367
|
+
readonly OneColumn: "oneColumn";
|
|
85368
|
+
readonly TwoColumns: "twoColumns";
|
|
85369
|
+
readonly ThreeColumns: "threeColumns";
|
|
85370
|
+
readonly OneThirdLeftColumn: "oneThirdLeftColumn";
|
|
85371
|
+
readonly OneThirdRightColumn: "oneThirdRightColumn";
|
|
85372
|
+
readonly FullWidth: "fullWidth";
|
|
85373
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85374
|
+
};
|
|
82961
85375
|
export declare const IdentityUserFlowAttributeDataTypeObject: {
|
|
82962
85376
|
readonly String: "string";
|
|
82963
85377
|
readonly Boolean: "boolean";
|
|
@@ -83450,6 +85864,13 @@ export declare const MicrosoftEdgeChannelObject: {
|
|
|
83450
85864
|
/** Evolvable enumeration sentinel value. Do not use. */
|
|
83451
85865
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83452
85866
|
};
|
|
85867
|
+
export declare const MicrosoftManagedDesktopTypeObject: {
|
|
85868
|
+
readonly NotManaged: "notManaged";
|
|
85869
|
+
readonly PremiumManaged: "premiumManaged";
|
|
85870
|
+
readonly StandardManaged: "standardManaged";
|
|
85871
|
+
readonly StarterManaged: "starterManaged";
|
|
85872
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85873
|
+
};
|
|
83453
85874
|
export declare const MicrosoftStoreForBusinessLicenseTypeObject: {
|
|
83454
85875
|
readonly Offline: "offline";
|
|
83455
85876
|
readonly Online: "online";
|
|
@@ -83551,6 +85972,8 @@ export declare const MobileThreatPartnerTenantStateObject: {
|
|
|
83551
85972
|
readonly Enabled: "enabled";
|
|
83552
85973
|
/** Partner is unresponsive. */
|
|
83553
85974
|
readonly Unresponsive: "unresponsive";
|
|
85975
|
+
/** Evolvable enumeration sentinel value. Do not use. */
|
|
85976
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83554
85977
|
};
|
|
83555
85978
|
export declare const ModalityObject: {
|
|
83556
85979
|
readonly Audio: "audio";
|
|
@@ -83728,6 +86151,18 @@ export declare const OutlierMemberTypeObject: {
|
|
|
83728
86151
|
readonly User: "user";
|
|
83729
86152
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83730
86153
|
};
|
|
86154
|
+
export declare const PageLayoutTypeObject: {
|
|
86155
|
+
readonly MicrosoftReserved: "microsoftReserved";
|
|
86156
|
+
readonly Article: "article";
|
|
86157
|
+
readonly Home: "home";
|
|
86158
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86159
|
+
};
|
|
86160
|
+
export declare const PagePromotionTypeObject: {
|
|
86161
|
+
readonly MicrosoftReserved: "microsoftReserved";
|
|
86162
|
+
readonly Page: "page";
|
|
86163
|
+
readonly NewsPost: "newsPost";
|
|
86164
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86165
|
+
};
|
|
83731
86166
|
export declare const PartnerTenantTypeObject: {
|
|
83732
86167
|
readonly MicrosoftSupport: "microsoftSupport";
|
|
83733
86168
|
readonly SyndicatePartner: "syndicatePartner";
|
|
@@ -85399,6 +87834,9 @@ export declare const RiskDetailObject: {
|
|
|
85399
87834
|
readonly M365DAdminDismissedDetection: "m365DAdminDismissedDetection";
|
|
85400
87835
|
readonly AdminConfirmedServicePrincipalCompromised: "adminConfirmedServicePrincipalCompromised";
|
|
85401
87836
|
readonly AdminDismissedAllRiskForServicePrincipal: "adminDismissedAllRiskForServicePrincipal";
|
|
87837
|
+
readonly UserChangedPasswordOnPremises: "userChangedPasswordOnPremises";
|
|
87838
|
+
readonly AdminDismissedRiskForSignIn: "adminDismissedRiskForSignIn";
|
|
87839
|
+
readonly AdminConfirmedAccountSafe: "adminConfirmedAccountSafe";
|
|
85402
87840
|
};
|
|
85403
87841
|
export declare const RiskDetectionTimingTypeObject: {
|
|
85404
87842
|
readonly NotDefined: "notDefined";
|
|
@@ -85534,6 +87972,13 @@ export declare const SearchContentObject: {
|
|
|
85534
87972
|
readonly PrivateContent: "privateContent";
|
|
85535
87973
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85536
87974
|
};
|
|
87975
|
+
export declare const SectionEmphasisTypeObject: {
|
|
87976
|
+
readonly None: "none";
|
|
87977
|
+
readonly Neutral: "neutral";
|
|
87978
|
+
readonly Soft: "soft";
|
|
87979
|
+
readonly Strong: "strong";
|
|
87980
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87981
|
+
};
|
|
85537
87982
|
export declare const SecurityNetworkProtocolObject: {
|
|
85538
87983
|
readonly Unknown: "unknown";
|
|
85539
87984
|
readonly Ip: "ip";
|
|
@@ -86085,6 +88530,18 @@ export declare const TimeOffReasonIconTypeObject: {
|
|
|
86085
88530
|
readonly Sunny: "sunny";
|
|
86086
88531
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86087
88532
|
};
|
|
88533
|
+
export declare const TitleAreaLayoutTypeObject: {
|
|
88534
|
+
readonly ImageAndTitle: "imageAndTitle";
|
|
88535
|
+
readonly Plain: "plain";
|
|
88536
|
+
readonly ColorBlock: "colorBlock";
|
|
88537
|
+
readonly Overlap: "overlap";
|
|
88538
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88539
|
+
};
|
|
88540
|
+
export declare const TitleAreaTextAlignmentTypeObject: {
|
|
88541
|
+
readonly Left: "left";
|
|
88542
|
+
readonly Center: "center";
|
|
88543
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
88544
|
+
};
|
|
86088
88545
|
export declare const TokenIssuerTypeObject: {
|
|
86089
88546
|
readonly AzureAD: "AzureAD";
|
|
86090
88547
|
readonly ADFederationServices: "ADFederationServices";
|
|
@@ -86428,20 +88885,20 @@ export declare const Win32LobAppDeliveryOptimizationPriorityObject: {
|
|
|
86428
88885
|
readonly Foreground: "foreground";
|
|
86429
88886
|
};
|
|
86430
88887
|
/**
|
|
86431
|
-
*
|
|
88888
|
+
* A list of possible operations for rules used to make determinations about an application based on files or folders. Unless noted, can be used with either detection or requirement rules.
|
|
86432
88889
|
*/
|
|
86433
88890
|
export declare const Win32LobAppFileSystemOperationTypeObject: {
|
|
86434
|
-
/**
|
|
88891
|
+
/** Default. Indicates that the rule does not have the operation type configured. */
|
|
86435
88892
|
readonly NotConfigured: "notConfigured";
|
|
86436
|
-
/**
|
|
88893
|
+
/** Indicates that the rule evaluates whether the specified file or folder exists. */
|
|
86437
88894
|
readonly Exists: "exists";
|
|
86438
|
-
/**
|
|
88895
|
+
/** Indicates that the rule compares the modified date of the specified file against a provided comparison value by DateTime comparison. */
|
|
86439
88896
|
readonly ModifiedDate: "modifiedDate";
|
|
86440
|
-
/**
|
|
88897
|
+
/** Indicates that the rule compares the created date of the specified file against a provided comparison value by DateTime comparison. */
|
|
86441
88898
|
readonly CreatedDate: "createdDate";
|
|
86442
|
-
/**
|
|
88899
|
+
/** Indicates that the rule compares the detected version of the specified file against a provided comparison value via version semantics (both operand values will be parsed as versions and directly compared). If the value read at the given registry value is not discovered to be in version-compatible format, a string comparison will be used instead. */
|
|
86443
88900
|
readonly Version: "version";
|
|
86444
|
-
/**
|
|
88901
|
+
/** Indicates that the rule compares the size of the file in MiB (rounded down) against a provided comparison value by integer comparison. */
|
|
86445
88902
|
readonly SizeInMB: "sizeInMB";
|
|
86446
88903
|
};
|
|
86447
88904
|
/**
|
|
@@ -86486,20 +88943,20 @@ export declare const Win32LobAppPowerShellScriptRuleOperationTypeObject: {
|
|
|
86486
88943
|
readonly Boolean: "boolean";
|
|
86487
88944
|
};
|
|
86488
88945
|
/**
|
|
86489
|
-
*
|
|
88946
|
+
* A list of possible operations for rules used to make determinations about an application based on registry keys or values. Unless noted, the values can be used with either detection or requirement rules.
|
|
86490
88947
|
*/
|
|
86491
88948
|
export declare const Win32LobAppRegistryRuleOperationTypeObject: {
|
|
86492
|
-
/**
|
|
88949
|
+
/** Default. Indicates that the rule does not have the operation type configured. */
|
|
86493
88950
|
readonly NotConfigured: "notConfigured";
|
|
86494
|
-
/**
|
|
88951
|
+
/** Indicates that the rule evaluates whether the specified registry key or value exists. */
|
|
86495
88952
|
readonly Exists: "exists";
|
|
86496
|
-
/**
|
|
88953
|
+
/** Indicates that the rule evaluates whether the specified registry key or value does not exist. It is the functional inverse of an equivalent rule that uses operation type `exists`. */
|
|
86497
88954
|
readonly DoesNotExist: "doesNotExist";
|
|
86498
|
-
/**
|
|
88955
|
+
/** Indicates that the rule compares the value read at the given registry value against a provided comparison value by string comparison. */
|
|
86499
88956
|
readonly String: "string";
|
|
86500
|
-
/**
|
|
88957
|
+
/** Indicates that the rule compares the value read at the given registry value against a provided comparison value by integer comparison. */
|
|
86501
88958
|
readonly Integer: "integer";
|
|
86502
|
-
/**
|
|
88959
|
+
/** Indicates that the rule compares the value read at the given registry value against a provided comparison value via version semantics (both operand values will be parsed as versions and directly compared). If the value read at the given registry value is not discovered to be in version-compatible format, a string comparison will be used instead. */
|
|
86503
88960
|
readonly Version: "version";
|
|
86504
88961
|
};
|
|
86505
88962
|
/**
|