@microsoft/msgraph-sdk 1.0.0-preview.15 → 1.0.0-preview.17
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/index.d.ts +1603 -33
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1569 -128
- 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/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';
|
|
@@ -5604,7 +5605,7 @@ export interface AuthorizationPolicy extends Parsable, PolicyBase {
|
|
|
5604
5605
|
*/
|
|
5605
5606
|
allowedToSignUpEmailBasedSubscriptions?: boolean;
|
|
5606
5607
|
/**
|
|
5607
|
-
* Indicates whether
|
|
5608
|
+
* 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
5609
|
*/
|
|
5609
5610
|
allowedToUseSSPR?: boolean;
|
|
5610
5611
|
/**
|
|
@@ -5612,7 +5613,7 @@ export interface AuthorizationPolicy extends Parsable, PolicyBase {
|
|
|
5612
5613
|
*/
|
|
5613
5614
|
allowEmailVerifiedUsersToJoinOrganization?: boolean;
|
|
5614
5615
|
/**
|
|
5615
|
-
* Indicates who can invite
|
|
5616
|
+
* 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
5617
|
*/
|
|
5617
5618
|
allowInvitesFrom?: AllowInvitesFrom;
|
|
5618
5619
|
/**
|
|
@@ -5628,7 +5629,7 @@ export interface AuthorizationPolicy extends Parsable, PolicyBase {
|
|
|
5628
5629
|
*/
|
|
5629
5630
|
defaultUserRolePermissions?: DefaultUserRolePermissions;
|
|
5630
5631
|
/**
|
|
5631
|
-
* Represents role templateId for the role that should be granted to
|
|
5632
|
+
* 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
5633
|
*/
|
|
5633
5634
|
guestUserRoleId?: Guid;
|
|
5634
5635
|
}
|
|
@@ -5976,6 +5977,26 @@ export interface BaseItemVersion extends Entity, Parsable {
|
|
|
5976
5977
|
*/
|
|
5977
5978
|
publication?: PublicationFacet;
|
|
5978
5979
|
}
|
|
5980
|
+
export interface BaseSitePage extends BaseItem, Parsable {
|
|
5981
|
+
/**
|
|
5982
|
+
* The pageLayout property
|
|
5983
|
+
*/
|
|
5984
|
+
pageLayout?: PageLayoutType;
|
|
5985
|
+
/**
|
|
5986
|
+
* The publishingState property
|
|
5987
|
+
*/
|
|
5988
|
+
publishingState?: PublicationFacet;
|
|
5989
|
+
/**
|
|
5990
|
+
* The title property
|
|
5991
|
+
*/
|
|
5992
|
+
title?: string;
|
|
5993
|
+
}
|
|
5994
|
+
export interface BaseSitePageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
5995
|
+
/**
|
|
5996
|
+
* The value property
|
|
5997
|
+
*/
|
|
5998
|
+
value?: BaseSitePage[];
|
|
5999
|
+
}
|
|
5979
6000
|
export interface BasicAuthentication extends ApiAuthenticationConfigurationBase, Parsable {
|
|
5980
6001
|
/**
|
|
5981
6002
|
* The password. It isn't returned in the responses.
|
|
@@ -7671,6 +7692,16 @@ export interface CallTranscriptionInfo extends AdditionalDataHolder, BackedModel
|
|
|
7671
7692
|
export type CallTranscriptionState = (typeof CallTranscriptionStateObject)[keyof typeof CallTranscriptionStateObject];
|
|
7672
7693
|
export interface CancelMediaProcessingOperation extends CommsOperation, Parsable {
|
|
7673
7694
|
}
|
|
7695
|
+
export interface CanvasLayout extends Entity, Parsable {
|
|
7696
|
+
/**
|
|
7697
|
+
* The horizontalSections property
|
|
7698
|
+
*/
|
|
7699
|
+
horizontalSections?: HorizontalSection[];
|
|
7700
|
+
/**
|
|
7701
|
+
* The verticalSection property
|
|
7702
|
+
*/
|
|
7703
|
+
verticalSection?: VerticalSection;
|
|
7704
|
+
}
|
|
7674
7705
|
export type CategoryColor = (typeof CategoryColorObject)[keyof typeof CategoryColorObject];
|
|
7675
7706
|
export interface CertificateAuthority extends AdditionalDataHolder, BackedModel, Parsable {
|
|
7676
7707
|
/**
|
|
@@ -8647,6 +8678,428 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
|
|
|
8647
8678
|
*/
|
|
8648
8679
|
presences?: Presence[];
|
|
8649
8680
|
}
|
|
8681
|
+
export type CloudPcAuditActivityOperationType = (typeof CloudPcAuditActivityOperationTypeObject)[keyof typeof CloudPcAuditActivityOperationTypeObject];
|
|
8682
|
+
export type CloudPcAuditActivityResult = (typeof CloudPcAuditActivityResultObject)[keyof typeof CloudPcAuditActivityResultObject];
|
|
8683
|
+
export interface CloudPcAuditActor extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8684
|
+
/**
|
|
8685
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8686
|
+
*/
|
|
8687
|
+
additionalData?: Record<string, unknown>;
|
|
8688
|
+
/**
|
|
8689
|
+
* The applicationDisplayName property
|
|
8690
|
+
*/
|
|
8691
|
+
applicationDisplayName?: string;
|
|
8692
|
+
/**
|
|
8693
|
+
* The applicationId property
|
|
8694
|
+
*/
|
|
8695
|
+
applicationId?: string;
|
|
8696
|
+
/**
|
|
8697
|
+
* Stores model information.
|
|
8698
|
+
*/
|
|
8699
|
+
backingStoreEnabled?: boolean;
|
|
8700
|
+
/**
|
|
8701
|
+
* The ipAddress property
|
|
8702
|
+
*/
|
|
8703
|
+
ipAddress?: string;
|
|
8704
|
+
/**
|
|
8705
|
+
* The OdataType property
|
|
8706
|
+
*/
|
|
8707
|
+
odataType?: string;
|
|
8708
|
+
/**
|
|
8709
|
+
* The remoteTenantId property
|
|
8710
|
+
*/
|
|
8711
|
+
remoteTenantId?: string;
|
|
8712
|
+
/**
|
|
8713
|
+
* The remoteUserId property
|
|
8714
|
+
*/
|
|
8715
|
+
remoteUserId?: string;
|
|
8716
|
+
/**
|
|
8717
|
+
* The servicePrincipalName property
|
|
8718
|
+
*/
|
|
8719
|
+
servicePrincipalName?: string;
|
|
8720
|
+
/**
|
|
8721
|
+
* The userId property
|
|
8722
|
+
*/
|
|
8723
|
+
userId?: string;
|
|
8724
|
+
/**
|
|
8725
|
+
* The userPermissions property
|
|
8726
|
+
*/
|
|
8727
|
+
userPermissions?: string[];
|
|
8728
|
+
/**
|
|
8729
|
+
* The userPrincipalName property
|
|
8730
|
+
*/
|
|
8731
|
+
userPrincipalName?: string;
|
|
8732
|
+
/**
|
|
8733
|
+
* The userRoleScopeTags property
|
|
8734
|
+
*/
|
|
8735
|
+
userRoleScopeTags?: CloudPcUserRoleScopeTagInfo[];
|
|
8736
|
+
}
|
|
8737
|
+
export type CloudPcAuditCategory = (typeof CloudPcAuditCategoryObject)[keyof typeof CloudPcAuditCategoryObject];
|
|
8738
|
+
export interface CloudPcAuditEvent extends Entity, Parsable {
|
|
8739
|
+
/**
|
|
8740
|
+
* The activity property
|
|
8741
|
+
*/
|
|
8742
|
+
activity?: string;
|
|
8743
|
+
/**
|
|
8744
|
+
* The activityDateTime property
|
|
8745
|
+
*/
|
|
8746
|
+
activityDateTime?: Date;
|
|
8747
|
+
/**
|
|
8748
|
+
* The activityOperationType property
|
|
8749
|
+
*/
|
|
8750
|
+
activityOperationType?: CloudPcAuditActivityOperationType;
|
|
8751
|
+
/**
|
|
8752
|
+
* The activityResult property
|
|
8753
|
+
*/
|
|
8754
|
+
activityResult?: CloudPcAuditActivityResult;
|
|
8755
|
+
/**
|
|
8756
|
+
* The activityType property
|
|
8757
|
+
*/
|
|
8758
|
+
activityType?: string;
|
|
8759
|
+
/**
|
|
8760
|
+
* The actor property
|
|
8761
|
+
*/
|
|
8762
|
+
actor?: CloudPcAuditActor;
|
|
8763
|
+
/**
|
|
8764
|
+
* The category property
|
|
8765
|
+
*/
|
|
8766
|
+
category?: CloudPcAuditCategory;
|
|
8767
|
+
/**
|
|
8768
|
+
* The componentName property
|
|
8769
|
+
*/
|
|
8770
|
+
componentName?: string;
|
|
8771
|
+
/**
|
|
8772
|
+
* The correlationId property
|
|
8773
|
+
*/
|
|
8774
|
+
correlationId?: string;
|
|
8775
|
+
/**
|
|
8776
|
+
* The displayName property
|
|
8777
|
+
*/
|
|
8778
|
+
displayName?: string;
|
|
8779
|
+
/**
|
|
8780
|
+
* The resources property
|
|
8781
|
+
*/
|
|
8782
|
+
resources?: CloudPcAuditResource[];
|
|
8783
|
+
}
|
|
8784
|
+
export interface CloudPcAuditEventCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8785
|
+
/**
|
|
8786
|
+
* The value property
|
|
8787
|
+
*/
|
|
8788
|
+
value?: CloudPcAuditEvent[];
|
|
8789
|
+
}
|
|
8790
|
+
export interface CloudPcAuditProperty extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8791
|
+
/**
|
|
8792
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8793
|
+
*/
|
|
8794
|
+
additionalData?: Record<string, unknown>;
|
|
8795
|
+
/**
|
|
8796
|
+
* Stores model information.
|
|
8797
|
+
*/
|
|
8798
|
+
backingStoreEnabled?: boolean;
|
|
8799
|
+
/**
|
|
8800
|
+
* The displayName property
|
|
8801
|
+
*/
|
|
8802
|
+
displayName?: string;
|
|
8803
|
+
/**
|
|
8804
|
+
* The newValue property
|
|
8805
|
+
*/
|
|
8806
|
+
newValue?: string;
|
|
8807
|
+
/**
|
|
8808
|
+
* The OdataType property
|
|
8809
|
+
*/
|
|
8810
|
+
odataType?: string;
|
|
8811
|
+
/**
|
|
8812
|
+
* The oldValue property
|
|
8813
|
+
*/
|
|
8814
|
+
oldValue?: string;
|
|
8815
|
+
}
|
|
8816
|
+
export interface CloudPcAuditResource extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8817
|
+
/**
|
|
8818
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8819
|
+
*/
|
|
8820
|
+
additionalData?: Record<string, unknown>;
|
|
8821
|
+
/**
|
|
8822
|
+
* Stores model information.
|
|
8823
|
+
*/
|
|
8824
|
+
backingStoreEnabled?: boolean;
|
|
8825
|
+
/**
|
|
8826
|
+
* The displayName property
|
|
8827
|
+
*/
|
|
8828
|
+
displayName?: string;
|
|
8829
|
+
/**
|
|
8830
|
+
* The modifiedProperties property
|
|
8831
|
+
*/
|
|
8832
|
+
modifiedProperties?: CloudPcAuditProperty[];
|
|
8833
|
+
/**
|
|
8834
|
+
* The OdataType property
|
|
8835
|
+
*/
|
|
8836
|
+
odataType?: string;
|
|
8837
|
+
/**
|
|
8838
|
+
* The resourceId property
|
|
8839
|
+
*/
|
|
8840
|
+
resourceId?: string;
|
|
8841
|
+
}
|
|
8842
|
+
export interface CloudPcDomainJoinConfiguration extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8843
|
+
/**
|
|
8844
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8845
|
+
*/
|
|
8846
|
+
additionalData?: Record<string, unknown>;
|
|
8847
|
+
/**
|
|
8848
|
+
* Stores model information.
|
|
8849
|
+
*/
|
|
8850
|
+
backingStoreEnabled?: boolean;
|
|
8851
|
+
/**
|
|
8852
|
+
* The domainJoinType property
|
|
8853
|
+
*/
|
|
8854
|
+
domainJoinType?: CloudPcDomainJoinType;
|
|
8855
|
+
/**
|
|
8856
|
+
* The OdataType property
|
|
8857
|
+
*/
|
|
8858
|
+
odataType?: string;
|
|
8859
|
+
/**
|
|
8860
|
+
* The onPremisesConnectionId property
|
|
8861
|
+
*/
|
|
8862
|
+
onPremisesConnectionId?: string;
|
|
8863
|
+
/**
|
|
8864
|
+
* The regionGroup property
|
|
8865
|
+
*/
|
|
8866
|
+
regionGroup?: CloudPcRegionGroup;
|
|
8867
|
+
/**
|
|
8868
|
+
* The regionName property
|
|
8869
|
+
*/
|
|
8870
|
+
regionName?: string;
|
|
8871
|
+
}
|
|
8872
|
+
export type CloudPcDomainJoinType = (typeof CloudPcDomainJoinTypeObject)[keyof typeof CloudPcDomainJoinTypeObject];
|
|
8873
|
+
export interface CloudPcManagementAssignmentTarget extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8874
|
+
/**
|
|
8875
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8876
|
+
*/
|
|
8877
|
+
additionalData?: Record<string, unknown>;
|
|
8878
|
+
/**
|
|
8879
|
+
* Stores model information.
|
|
8880
|
+
*/
|
|
8881
|
+
backingStoreEnabled?: boolean;
|
|
8882
|
+
/**
|
|
8883
|
+
* The OdataType property
|
|
8884
|
+
*/
|
|
8885
|
+
odataType?: string;
|
|
8886
|
+
}
|
|
8887
|
+
export interface CloudPcManagementGroupAssignmentTarget extends CloudPcManagementAssignmentTarget, Parsable {
|
|
8888
|
+
/**
|
|
8889
|
+
* The groupId property
|
|
8890
|
+
*/
|
|
8891
|
+
groupId?: string;
|
|
8892
|
+
/**
|
|
8893
|
+
* The servicePlanId property
|
|
8894
|
+
*/
|
|
8895
|
+
servicePlanId?: string;
|
|
8896
|
+
}
|
|
8897
|
+
export interface CloudPcProvisioningPolicy extends Entity, Parsable {
|
|
8898
|
+
/**
|
|
8899
|
+
* The alternateResourceUrl property
|
|
8900
|
+
*/
|
|
8901
|
+
alternateResourceUrl?: string;
|
|
8902
|
+
/**
|
|
8903
|
+
* The assignments property
|
|
8904
|
+
*/
|
|
8905
|
+
assignments?: CloudPcProvisioningPolicyAssignment[];
|
|
8906
|
+
/**
|
|
8907
|
+
* The cloudPcGroupDisplayName property
|
|
8908
|
+
*/
|
|
8909
|
+
cloudPcGroupDisplayName?: string;
|
|
8910
|
+
/**
|
|
8911
|
+
* The cloudPcNamingTemplate property
|
|
8912
|
+
*/
|
|
8913
|
+
cloudPcNamingTemplate?: string;
|
|
8914
|
+
/**
|
|
8915
|
+
* The description property
|
|
8916
|
+
*/
|
|
8917
|
+
description?: string;
|
|
8918
|
+
/**
|
|
8919
|
+
* The displayName property
|
|
8920
|
+
*/
|
|
8921
|
+
displayName?: string;
|
|
8922
|
+
/**
|
|
8923
|
+
* The domainJoinConfigurations property
|
|
8924
|
+
*/
|
|
8925
|
+
domainJoinConfigurations?: CloudPcDomainJoinConfiguration[];
|
|
8926
|
+
/**
|
|
8927
|
+
* The enableSingleSignOn property
|
|
8928
|
+
*/
|
|
8929
|
+
enableSingleSignOn?: boolean;
|
|
8930
|
+
/**
|
|
8931
|
+
* The gracePeriodInHours property
|
|
8932
|
+
*/
|
|
8933
|
+
gracePeriodInHours?: number;
|
|
8934
|
+
/**
|
|
8935
|
+
* The imageDisplayName property
|
|
8936
|
+
*/
|
|
8937
|
+
imageDisplayName?: string;
|
|
8938
|
+
/**
|
|
8939
|
+
* The imageId property
|
|
8940
|
+
*/
|
|
8941
|
+
imageId?: string;
|
|
8942
|
+
/**
|
|
8943
|
+
* The imageType property
|
|
8944
|
+
*/
|
|
8945
|
+
imageType?: CloudPcProvisioningPolicyImageType;
|
|
8946
|
+
/**
|
|
8947
|
+
* The localAdminEnabled property
|
|
8948
|
+
*/
|
|
8949
|
+
localAdminEnabled?: boolean;
|
|
8950
|
+
/**
|
|
8951
|
+
* The microsoftManagedDesktop property
|
|
8952
|
+
*/
|
|
8953
|
+
microsoftManagedDesktop?: MicrosoftManagedDesktop;
|
|
8954
|
+
/**
|
|
8955
|
+
* The provisioningType property
|
|
8956
|
+
*/
|
|
8957
|
+
provisioningType?: CloudPcProvisioningType;
|
|
8958
|
+
/**
|
|
8959
|
+
* The windowsSetting property
|
|
8960
|
+
*/
|
|
8961
|
+
windowsSetting?: CloudPcWindowsSetting;
|
|
8962
|
+
}
|
|
8963
|
+
export interface CloudPcProvisioningPolicyAssignment extends Entity, Parsable {
|
|
8964
|
+
/**
|
|
8965
|
+
* The assignedUsers property
|
|
8966
|
+
*/
|
|
8967
|
+
assignedUsers?: User[];
|
|
8968
|
+
/**
|
|
8969
|
+
* The target property
|
|
8970
|
+
*/
|
|
8971
|
+
target?: CloudPcManagementAssignmentTarget;
|
|
8972
|
+
}
|
|
8973
|
+
export interface CloudPcProvisioningPolicyAssignmentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8974
|
+
/**
|
|
8975
|
+
* The value property
|
|
8976
|
+
*/
|
|
8977
|
+
value?: CloudPcProvisioningPolicyAssignment[];
|
|
8978
|
+
}
|
|
8979
|
+
export interface CloudPcProvisioningPolicyCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
8980
|
+
/**
|
|
8981
|
+
* The value property
|
|
8982
|
+
*/
|
|
8983
|
+
value?: CloudPcProvisioningPolicy[];
|
|
8984
|
+
}
|
|
8985
|
+
export type CloudPcProvisioningPolicyImageType = (typeof CloudPcProvisioningPolicyImageTypeObject)[keyof typeof CloudPcProvisioningPolicyImageTypeObject];
|
|
8986
|
+
export type CloudPcProvisioningType = (typeof CloudPcProvisioningTypeObject)[keyof typeof CloudPcProvisioningTypeObject];
|
|
8987
|
+
export type CloudPcRegionGroup = (typeof CloudPcRegionGroupObject)[keyof typeof CloudPcRegionGroupObject];
|
|
8988
|
+
export type CloudPcRestorePointFrequencyType = (typeof CloudPcRestorePointFrequencyTypeObject)[keyof typeof CloudPcRestorePointFrequencyTypeObject];
|
|
8989
|
+
export interface CloudPcRestorePointSetting extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8990
|
+
/**
|
|
8991
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
8992
|
+
*/
|
|
8993
|
+
additionalData?: Record<string, unknown>;
|
|
8994
|
+
/**
|
|
8995
|
+
* Stores model information.
|
|
8996
|
+
*/
|
|
8997
|
+
backingStoreEnabled?: boolean;
|
|
8998
|
+
/**
|
|
8999
|
+
* The frequencyType property
|
|
9000
|
+
*/
|
|
9001
|
+
frequencyType?: CloudPcRestorePointFrequencyType;
|
|
9002
|
+
/**
|
|
9003
|
+
* The OdataType property
|
|
9004
|
+
*/
|
|
9005
|
+
odataType?: string;
|
|
9006
|
+
/**
|
|
9007
|
+
* The userRestoreEnabled property
|
|
9008
|
+
*/
|
|
9009
|
+
userRestoreEnabled?: boolean;
|
|
9010
|
+
}
|
|
9011
|
+
export interface CloudPcUserRoleScopeTagInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9012
|
+
/**
|
|
9013
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9014
|
+
*/
|
|
9015
|
+
additionalData?: Record<string, unknown>;
|
|
9016
|
+
/**
|
|
9017
|
+
* Stores model information.
|
|
9018
|
+
*/
|
|
9019
|
+
backingStoreEnabled?: boolean;
|
|
9020
|
+
/**
|
|
9021
|
+
* The displayName property
|
|
9022
|
+
*/
|
|
9023
|
+
displayName?: string;
|
|
9024
|
+
/**
|
|
9025
|
+
* The OdataType property
|
|
9026
|
+
*/
|
|
9027
|
+
odataType?: string;
|
|
9028
|
+
/**
|
|
9029
|
+
* The roleScopeTagId property
|
|
9030
|
+
*/
|
|
9031
|
+
roleScopeTagId?: string;
|
|
9032
|
+
}
|
|
9033
|
+
export interface CloudPcUserSetting extends Entity, Parsable {
|
|
9034
|
+
/**
|
|
9035
|
+
* The assignments property
|
|
9036
|
+
*/
|
|
9037
|
+
assignments?: CloudPcUserSettingAssignment[];
|
|
9038
|
+
/**
|
|
9039
|
+
* The createdDateTime property
|
|
9040
|
+
*/
|
|
9041
|
+
createdDateTime?: Date;
|
|
9042
|
+
/**
|
|
9043
|
+
* The displayName property
|
|
9044
|
+
*/
|
|
9045
|
+
displayName?: string;
|
|
9046
|
+
/**
|
|
9047
|
+
* The lastModifiedDateTime property
|
|
9048
|
+
*/
|
|
9049
|
+
lastModifiedDateTime?: Date;
|
|
9050
|
+
/**
|
|
9051
|
+
* The localAdminEnabled property
|
|
9052
|
+
*/
|
|
9053
|
+
localAdminEnabled?: boolean;
|
|
9054
|
+
/**
|
|
9055
|
+
* The resetEnabled property
|
|
9056
|
+
*/
|
|
9057
|
+
resetEnabled?: boolean;
|
|
9058
|
+
/**
|
|
9059
|
+
* The restorePointSetting property
|
|
9060
|
+
*/
|
|
9061
|
+
restorePointSetting?: CloudPcRestorePointSetting;
|
|
9062
|
+
}
|
|
9063
|
+
export interface CloudPcUserSettingAssignment extends Entity, Parsable {
|
|
9064
|
+
/**
|
|
9065
|
+
* The createdDateTime property
|
|
9066
|
+
*/
|
|
9067
|
+
createdDateTime?: Date;
|
|
9068
|
+
/**
|
|
9069
|
+
* The target property
|
|
9070
|
+
*/
|
|
9071
|
+
target?: CloudPcManagementAssignmentTarget;
|
|
9072
|
+
}
|
|
9073
|
+
export interface CloudPcUserSettingAssignmentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9074
|
+
/**
|
|
9075
|
+
* The value property
|
|
9076
|
+
*/
|
|
9077
|
+
value?: CloudPcUserSettingAssignment[];
|
|
9078
|
+
}
|
|
9079
|
+
export interface CloudPcUserSettingCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
9080
|
+
/**
|
|
9081
|
+
* The value property
|
|
9082
|
+
*/
|
|
9083
|
+
value?: CloudPcUserSetting[];
|
|
9084
|
+
}
|
|
9085
|
+
export interface CloudPcWindowsSetting extends AdditionalDataHolder, BackedModel, Parsable {
|
|
9086
|
+
/**
|
|
9087
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
9088
|
+
*/
|
|
9089
|
+
additionalData?: Record<string, unknown>;
|
|
9090
|
+
/**
|
|
9091
|
+
* Stores model information.
|
|
9092
|
+
*/
|
|
9093
|
+
backingStoreEnabled?: boolean;
|
|
9094
|
+
/**
|
|
9095
|
+
* The locale property
|
|
9096
|
+
*/
|
|
9097
|
+
locale?: string;
|
|
9098
|
+
/**
|
|
9099
|
+
* The OdataType property
|
|
9100
|
+
*/
|
|
9101
|
+
odataType?: string;
|
|
9102
|
+
}
|
|
8650
9103
|
export interface CoachmarkLocation extends AdditionalDataHolder, BackedModel, Parsable {
|
|
8651
9104
|
/**
|
|
8652
9105
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -11918,6 +12371,18 @@ export declare function createBaseItemFromDiscriminatorValue(parseNode: ParseNod
|
|
|
11918
12371
|
* @returns {BaseItemVersion}
|
|
11919
12372
|
*/
|
|
11920
12373
|
export declare function createBaseItemVersionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12374
|
+
/**
|
|
12375
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12376
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12377
|
+
* @returns {BaseSitePageCollectionResponse}
|
|
12378
|
+
*/
|
|
12379
|
+
export declare function createBaseSitePageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12380
|
+
/**
|
|
12381
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12382
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12383
|
+
* @returns {BaseSitePage}
|
|
12384
|
+
*/
|
|
12385
|
+
export declare function createBaseSitePageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
11921
12386
|
/**
|
|
11922
12387
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
11923
12388
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12338,6 +12803,12 @@ export declare function createCallTranscriptionInfoFromDiscriminatorValue(parseN
|
|
|
12338
12803
|
* @returns {CancelMediaProcessingOperation}
|
|
12339
12804
|
*/
|
|
12340
12805
|
export declare function createCancelMediaProcessingOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12806
|
+
/**
|
|
12807
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
12808
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12809
|
+
* @returns {CanvasLayout}
|
|
12810
|
+
*/
|
|
12811
|
+
export declare function createCanvasLayoutFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12341
12812
|
/**
|
|
12342
12813
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12343
12814
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -12638,6 +13109,120 @@ export declare function createCloudClipboardRootFromDiscriminatorValue(parseNode
|
|
|
12638
13109
|
* @returns {CloudCommunications}
|
|
12639
13110
|
*/
|
|
12640
13111
|
export declare function createCloudCommunicationsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13112
|
+
/**
|
|
13113
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13114
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13115
|
+
* @returns {CloudPcAuditActor}
|
|
13116
|
+
*/
|
|
13117
|
+
export declare function createCloudPcAuditActorFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13118
|
+
/**
|
|
13119
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13120
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13121
|
+
* @returns {CloudPcAuditEventCollectionResponse}
|
|
13122
|
+
*/
|
|
13123
|
+
export declare function createCloudPcAuditEventCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13124
|
+
/**
|
|
13125
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13126
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13127
|
+
* @returns {CloudPcAuditEvent}
|
|
13128
|
+
*/
|
|
13129
|
+
export declare function createCloudPcAuditEventFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13130
|
+
/**
|
|
13131
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13132
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13133
|
+
* @returns {CloudPcAuditProperty}
|
|
13134
|
+
*/
|
|
13135
|
+
export declare function createCloudPcAuditPropertyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13136
|
+
/**
|
|
13137
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13138
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13139
|
+
* @returns {CloudPcAuditResource}
|
|
13140
|
+
*/
|
|
13141
|
+
export declare function createCloudPcAuditResourceFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13142
|
+
/**
|
|
13143
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13144
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13145
|
+
* @returns {CloudPcDomainJoinConfiguration}
|
|
13146
|
+
*/
|
|
13147
|
+
export declare function createCloudPcDomainJoinConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13148
|
+
/**
|
|
13149
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13150
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13151
|
+
* @returns {CloudPcManagementAssignmentTarget}
|
|
13152
|
+
*/
|
|
13153
|
+
export declare function createCloudPcManagementAssignmentTargetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13154
|
+
/**
|
|
13155
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13156
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13157
|
+
* @returns {CloudPcManagementGroupAssignmentTarget}
|
|
13158
|
+
*/
|
|
13159
|
+
export declare function createCloudPcManagementGroupAssignmentTargetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13160
|
+
/**
|
|
13161
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13162
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13163
|
+
* @returns {CloudPcProvisioningPolicyAssignmentCollectionResponse}
|
|
13164
|
+
*/
|
|
13165
|
+
export declare function createCloudPcProvisioningPolicyAssignmentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13166
|
+
/**
|
|
13167
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13168
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13169
|
+
* @returns {CloudPcProvisioningPolicyAssignment}
|
|
13170
|
+
*/
|
|
13171
|
+
export declare function createCloudPcProvisioningPolicyAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13172
|
+
/**
|
|
13173
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13174
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13175
|
+
* @returns {CloudPcProvisioningPolicyCollectionResponse}
|
|
13176
|
+
*/
|
|
13177
|
+
export declare function createCloudPcProvisioningPolicyCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13178
|
+
/**
|
|
13179
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13180
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13181
|
+
* @returns {CloudPcProvisioningPolicy}
|
|
13182
|
+
*/
|
|
13183
|
+
export declare function createCloudPcProvisioningPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13184
|
+
/**
|
|
13185
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13186
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13187
|
+
* @returns {CloudPcRestorePointSetting}
|
|
13188
|
+
*/
|
|
13189
|
+
export declare function createCloudPcRestorePointSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13190
|
+
/**
|
|
13191
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13192
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13193
|
+
* @returns {CloudPcUserRoleScopeTagInfo}
|
|
13194
|
+
*/
|
|
13195
|
+
export declare function createCloudPcUserRoleScopeTagInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13196
|
+
/**
|
|
13197
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13198
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13199
|
+
* @returns {CloudPcUserSettingAssignmentCollectionResponse}
|
|
13200
|
+
*/
|
|
13201
|
+
export declare function createCloudPcUserSettingAssignmentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13202
|
+
/**
|
|
13203
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13204
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13205
|
+
* @returns {CloudPcUserSettingAssignment}
|
|
13206
|
+
*/
|
|
13207
|
+
export declare function createCloudPcUserSettingAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13208
|
+
/**
|
|
13209
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13210
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13211
|
+
* @returns {CloudPcUserSettingCollectionResponse}
|
|
13212
|
+
*/
|
|
13213
|
+
export declare function createCloudPcUserSettingCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13214
|
+
/**
|
|
13215
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13216
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13217
|
+
* @returns {CloudPcUserSetting}
|
|
13218
|
+
*/
|
|
13219
|
+
export declare function createCloudPcUserSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
13220
|
+
/**
|
|
13221
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
13222
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
13223
|
+
* @returns {CloudPcWindowsSetting}
|
|
13224
|
+
*/
|
|
13225
|
+
export declare function createCloudPcWindowsSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
12641
13226
|
/**
|
|
12642
13227
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
12643
13228
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -15170,6 +15755,30 @@ export declare function createHomeRealmDiscoveryPolicyCollectionResponseFromDisc
|
|
|
15170
15755
|
* @returns {HomeRealmDiscoveryPolicy}
|
|
15171
15756
|
*/
|
|
15172
15757
|
export declare function createHomeRealmDiscoveryPolicyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15758
|
+
/**
|
|
15759
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15760
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15761
|
+
* @returns {HorizontalSectionCollectionResponse}
|
|
15762
|
+
*/
|
|
15763
|
+
export declare function createHorizontalSectionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15764
|
+
/**
|
|
15765
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15766
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15767
|
+
* @returns {HorizontalSectionColumnCollectionResponse}
|
|
15768
|
+
*/
|
|
15769
|
+
export declare function createHorizontalSectionColumnCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15770
|
+
/**
|
|
15771
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15772
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15773
|
+
* @returns {HorizontalSectionColumn}
|
|
15774
|
+
*/
|
|
15775
|
+
export declare function createHorizontalSectionColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15776
|
+
/**
|
|
15777
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
15778
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
15779
|
+
* @returns {HorizontalSection}
|
|
15780
|
+
*/
|
|
15781
|
+
export declare function createHorizontalSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
15173
15782
|
/**
|
|
15174
15783
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
15175
15784
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16760,6 +17369,12 @@ export declare function createMessageSecurityStateFromDiscriminatorValue(parseNo
|
|
|
16760
17369
|
* @returns {MessageUnpinnedEventMessageDetail}
|
|
16761
17370
|
*/
|
|
16762
17371
|
export declare function createMessageUnpinnedEventMessageDetailFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17372
|
+
/**
|
|
17373
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17374
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17375
|
+
* @returns {MetaDataKeyStringPair}
|
|
17376
|
+
*/
|
|
17377
|
+
export declare function createMetaDataKeyStringPairFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16763
17378
|
/**
|
|
16764
17379
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16765
17380
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -16802,6 +17417,12 @@ export declare function createMicrosoftAuthenticatorFeatureSettingsFromDiscrimin
|
|
|
16802
17417
|
* @returns {MicrosoftCustomTrainingSetting}
|
|
16803
17418
|
*/
|
|
16804
17419
|
export declare function createMicrosoftCustomTrainingSettingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
17420
|
+
/**
|
|
17421
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17422
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
17423
|
+
* @returns {MicrosoftManagedDesktop}
|
|
17424
|
+
*/
|
|
17425
|
+
export declare function createMicrosoftManagedDesktopFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
16805
17426
|
/**
|
|
16806
17427
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
16807
17428
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -18500,6 +19121,12 @@ export declare function createQuotaFromDiscriminatorValue(parseNode: ParseNode |
|
|
|
18500
19121
|
* @returns {RbacApplication}
|
|
18501
19122
|
*/
|
|
18502
19123
|
export declare function createRbacApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19124
|
+
/**
|
|
19125
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19126
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19127
|
+
* @returns {ReactionsFacet}
|
|
19128
|
+
*/
|
|
19129
|
+
export declare function createReactionsFacetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
18503
19130
|
/**
|
|
18504
19131
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
18505
19132
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19232,6 +19859,12 @@ export declare function createSendDtmfTonesOperationFromDiscriminatorValue(parse
|
|
|
19232
19859
|
* @returns {SensitivityLabelAssignment}
|
|
19233
19860
|
*/
|
|
19234
19861
|
export declare function createSensitivityLabelAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19862
|
+
/**
|
|
19863
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
19864
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
19865
|
+
* @returns {ServerProcessedContent}
|
|
19866
|
+
*/
|
|
19867
|
+
export declare function createServerProcessedContentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19235
19868
|
/**
|
|
19236
19869
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19237
19870
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19688,6 +20321,18 @@ export declare function createSiteCollectionResponseFromDiscriminatorValue(parse
|
|
|
19688
20321
|
* @returns {Site}
|
|
19689
20322
|
*/
|
|
19690
20323
|
export declare function createSiteFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20324
|
+
/**
|
|
20325
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20326
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20327
|
+
* @returns {SitePageCollectionResponse}
|
|
20328
|
+
*/
|
|
20329
|
+
export declare function createSitePageCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20330
|
+
/**
|
|
20331
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20332
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20333
|
+
* @returns {SitePage}
|
|
20334
|
+
*/
|
|
20335
|
+
export declare function createSitePageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19691
20336
|
/**
|
|
19692
20337
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19693
20338
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -19790,6 +20435,12 @@ export declare function createStaffAvailabilityItemFromDiscriminatorValue(parseN
|
|
|
19790
20435
|
* @returns {StandardTimeZoneOffset}
|
|
19791
20436
|
*/
|
|
19792
20437
|
export declare function createStandardTimeZoneOffsetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20438
|
+
/**
|
|
20439
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
20440
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
20441
|
+
* @returns {StandardWebPart}
|
|
20442
|
+
*/
|
|
20443
|
+
export declare function createStandardWebPartFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
19793
20444
|
/**
|
|
19794
20445
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
19795
20446
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20588,6 +21239,12 @@ export declare function createTermsOfUseContainerFromDiscriminatorValue(parseNod
|
|
|
20588
21239
|
* @returns {TextColumn}
|
|
20589
21240
|
*/
|
|
20590
21241
|
export declare function createTextColumnFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21242
|
+
/**
|
|
21243
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21244
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21245
|
+
* @returns {TextWebPart}
|
|
21246
|
+
*/
|
|
21247
|
+
export declare function createTextWebPartFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20591
21248
|
/**
|
|
20592
21249
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20593
21250
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -20714,6 +21371,12 @@ export declare function createTimeZoneBaseFromDiscriminatorValue(parseNode: Pars
|
|
|
20714
21371
|
* @returns {TimeZoneInformation}
|
|
20715
21372
|
*/
|
|
20716
21373
|
export declare function createTimeZoneInformationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21374
|
+
/**
|
|
21375
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
21376
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
21377
|
+
* @returns {TitleArea}
|
|
21378
|
+
*/
|
|
21379
|
+
export declare function createTitleAreaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
20717
21380
|
/**
|
|
20718
21381
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
20719
21382
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21662,6 +22325,12 @@ export declare function createVerifiedDomainFromDiscriminatorValue(parseNode: Pa
|
|
|
21662
22325
|
* @returns {VerifiedPublisher}
|
|
21663
22326
|
*/
|
|
21664
22327
|
export declare function createVerifiedPublisherFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22328
|
+
/**
|
|
22329
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22330
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22331
|
+
* @returns {VerticalSection}
|
|
22332
|
+
*/
|
|
22333
|
+
export declare function createVerticalSectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21665
22334
|
/**
|
|
21666
22335
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21667
22336
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -21788,6 +22457,24 @@ export declare function createWebAppFromDiscriminatorValue(parseNode: ParseNode
|
|
|
21788
22457
|
* @returns {WebApplication}
|
|
21789
22458
|
*/
|
|
21790
22459
|
export declare function createWebApplicationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22460
|
+
/**
|
|
22461
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22462
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22463
|
+
* @returns {WebPartCollectionResponse}
|
|
22464
|
+
*/
|
|
22465
|
+
export declare function createWebPartCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22466
|
+
/**
|
|
22467
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22468
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22469
|
+
* @returns {WebPartData}
|
|
22470
|
+
*/
|
|
22471
|
+
export declare function createWebPartDataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
22472
|
+
/**
|
|
22473
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
22474
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
22475
|
+
* @returns {WebPart}
|
|
22476
|
+
*/
|
|
22477
|
+
export declare function createWebPartFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
21791
22478
|
/**
|
|
21792
22479
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
21793
22480
|
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
@@ -23769,7 +24456,7 @@ export interface DelegatedAdminServiceManagementDetailCollectionResponse extends
|
|
|
23769
24456
|
}
|
|
23770
24457
|
export interface DelegatedPermissionClassification extends Entity, Parsable {
|
|
23771
24458
|
/**
|
|
23772
|
-
* The classification value
|
|
24459
|
+
* The classification value. Possible values: low, medium (preview), high (preview). Doesn't support $filter.
|
|
23773
24460
|
*/
|
|
23774
24461
|
classification?: PermissionClassificationType;
|
|
23775
24462
|
/**
|
|
@@ -25181,6 +25868,16 @@ export declare function deserializeIntoBaseItemCollectionResponse(baseItemCollec
|
|
|
25181
25868
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25182
25869
|
*/
|
|
25183
25870
|
export declare function deserializeIntoBaseItemVersion(baseItemVersion?: Partial<BaseItemVersion> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25871
|
+
/**
|
|
25872
|
+
* The deserialization information for the current model
|
|
25873
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25874
|
+
*/
|
|
25875
|
+
export declare function deserializeIntoBaseSitePage(baseSitePage?: Partial<BaseSitePage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25876
|
+
/**
|
|
25877
|
+
* The deserialization information for the current model
|
|
25878
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25879
|
+
*/
|
|
25880
|
+
export declare function deserializeIntoBaseSitePageCollectionResponse(baseSitePageCollectionResponse?: Partial<BaseSitePageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25184
25881
|
/**
|
|
25185
25882
|
* The deserialization information for the current model
|
|
25186
25883
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -25531,6 +26228,11 @@ export declare function deserializeIntoCallTranscriptionInfo(callTranscriptionIn
|
|
|
25531
26228
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25532
26229
|
*/
|
|
25533
26230
|
export declare function deserializeIntoCancelMediaProcessingOperation(cancelMediaProcessingOperation?: Partial<CancelMediaProcessingOperation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26231
|
+
/**
|
|
26232
|
+
* The deserialization information for the current model
|
|
26233
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26234
|
+
*/
|
|
26235
|
+
export declare function deserializeIntoCanvasLayout(canvasLayout?: Partial<CanvasLayout> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25534
26236
|
/**
|
|
25535
26237
|
* The deserialization information for the current model
|
|
25536
26238
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -25781,6 +26483,101 @@ export declare function deserializeIntoCloudClipboardRoot(cloudClipboardRoot?: P
|
|
|
25781
26483
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
25782
26484
|
*/
|
|
25783
26485
|
export declare function deserializeIntoCloudCommunications(cloudCommunications?: Partial<CloudCommunications> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26486
|
+
/**
|
|
26487
|
+
* The deserialization information for the current model
|
|
26488
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26489
|
+
*/
|
|
26490
|
+
export declare function deserializeIntoCloudPcAuditActor(cloudPcAuditActor?: Partial<CloudPcAuditActor> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26491
|
+
/**
|
|
26492
|
+
* The deserialization information for the current model
|
|
26493
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26494
|
+
*/
|
|
26495
|
+
export declare function deserializeIntoCloudPcAuditEvent(cloudPcAuditEvent?: Partial<CloudPcAuditEvent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26496
|
+
/**
|
|
26497
|
+
* The deserialization information for the current model
|
|
26498
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26499
|
+
*/
|
|
26500
|
+
export declare function deserializeIntoCloudPcAuditEventCollectionResponse(cloudPcAuditEventCollectionResponse?: Partial<CloudPcAuditEventCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26501
|
+
/**
|
|
26502
|
+
* The deserialization information for the current model
|
|
26503
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26504
|
+
*/
|
|
26505
|
+
export declare function deserializeIntoCloudPcAuditProperty(cloudPcAuditProperty?: Partial<CloudPcAuditProperty> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26506
|
+
/**
|
|
26507
|
+
* The deserialization information for the current model
|
|
26508
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26509
|
+
*/
|
|
26510
|
+
export declare function deserializeIntoCloudPcAuditResource(cloudPcAuditResource?: Partial<CloudPcAuditResource> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26511
|
+
/**
|
|
26512
|
+
* The deserialization information for the current model
|
|
26513
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26514
|
+
*/
|
|
26515
|
+
export declare function deserializeIntoCloudPcDomainJoinConfiguration(cloudPcDomainJoinConfiguration?: Partial<CloudPcDomainJoinConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26516
|
+
/**
|
|
26517
|
+
* The deserialization information for the current model
|
|
26518
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26519
|
+
*/
|
|
26520
|
+
export declare function deserializeIntoCloudPcManagementAssignmentTarget(cloudPcManagementAssignmentTarget?: Partial<CloudPcManagementAssignmentTarget> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26521
|
+
/**
|
|
26522
|
+
* The deserialization information for the current model
|
|
26523
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26524
|
+
*/
|
|
26525
|
+
export declare function deserializeIntoCloudPcManagementGroupAssignmentTarget(cloudPcManagementGroupAssignmentTarget?: Partial<CloudPcManagementGroupAssignmentTarget> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26526
|
+
/**
|
|
26527
|
+
* The deserialization information for the current model
|
|
26528
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26529
|
+
*/
|
|
26530
|
+
export declare function deserializeIntoCloudPcProvisioningPolicy(cloudPcProvisioningPolicy?: Partial<CloudPcProvisioningPolicy> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26531
|
+
/**
|
|
26532
|
+
* The deserialization information for the current model
|
|
26533
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26534
|
+
*/
|
|
26535
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyAssignment(cloudPcProvisioningPolicyAssignment?: Partial<CloudPcProvisioningPolicyAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26536
|
+
/**
|
|
26537
|
+
* The deserialization information for the current model
|
|
26538
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26539
|
+
*/
|
|
26540
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyAssignmentCollectionResponse(cloudPcProvisioningPolicyAssignmentCollectionResponse?: Partial<CloudPcProvisioningPolicyAssignmentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26541
|
+
/**
|
|
26542
|
+
* The deserialization information for the current model
|
|
26543
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26544
|
+
*/
|
|
26545
|
+
export declare function deserializeIntoCloudPcProvisioningPolicyCollectionResponse(cloudPcProvisioningPolicyCollectionResponse?: Partial<CloudPcProvisioningPolicyCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26546
|
+
/**
|
|
26547
|
+
* The deserialization information for the current model
|
|
26548
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26549
|
+
*/
|
|
26550
|
+
export declare function deserializeIntoCloudPcRestorePointSetting(cloudPcRestorePointSetting?: Partial<CloudPcRestorePointSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26551
|
+
/**
|
|
26552
|
+
* The deserialization information for the current model
|
|
26553
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26554
|
+
*/
|
|
26555
|
+
export declare function deserializeIntoCloudPcUserRoleScopeTagInfo(cloudPcUserRoleScopeTagInfo?: Partial<CloudPcUserRoleScopeTagInfo> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26556
|
+
/**
|
|
26557
|
+
* The deserialization information for the current model
|
|
26558
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26559
|
+
*/
|
|
26560
|
+
export declare function deserializeIntoCloudPcUserSetting(cloudPcUserSetting?: Partial<CloudPcUserSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26561
|
+
/**
|
|
26562
|
+
* The deserialization information for the current model
|
|
26563
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26564
|
+
*/
|
|
26565
|
+
export declare function deserializeIntoCloudPcUserSettingAssignment(cloudPcUserSettingAssignment?: Partial<CloudPcUserSettingAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26566
|
+
/**
|
|
26567
|
+
* The deserialization information for the current model
|
|
26568
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26569
|
+
*/
|
|
26570
|
+
export declare function deserializeIntoCloudPcUserSettingAssignmentCollectionResponse(cloudPcUserSettingAssignmentCollectionResponse?: Partial<CloudPcUserSettingAssignmentCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26571
|
+
/**
|
|
26572
|
+
* The deserialization information for the current model
|
|
26573
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26574
|
+
*/
|
|
26575
|
+
export declare function deserializeIntoCloudPcUserSettingCollectionResponse(cloudPcUserSettingCollectionResponse?: Partial<CloudPcUserSettingCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
26576
|
+
/**
|
|
26577
|
+
* The deserialization information for the current model
|
|
26578
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
26579
|
+
*/
|
|
26580
|
+
export declare function deserializeIntoCloudPcWindowsSetting(cloudPcWindowsSetting?: Partial<CloudPcWindowsSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
25784
26581
|
/**
|
|
25785
26582
|
* The deserialization information for the current model
|
|
25786
26583
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -27891,6 +28688,26 @@ export declare function deserializeIntoHomeRealmDiscoveryPolicy(homeRealmDiscove
|
|
|
27891
28688
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
27892
28689
|
*/
|
|
27893
28690
|
export declare function deserializeIntoHomeRealmDiscoveryPolicyCollectionResponse(homeRealmDiscoveryPolicyCollectionResponse?: Partial<HomeRealmDiscoveryPolicyCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28691
|
+
/**
|
|
28692
|
+
* The deserialization information for the current model
|
|
28693
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28694
|
+
*/
|
|
28695
|
+
export declare function deserializeIntoHorizontalSection(horizontalSection?: Partial<HorizontalSection> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28696
|
+
/**
|
|
28697
|
+
* The deserialization information for the current model
|
|
28698
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28699
|
+
*/
|
|
28700
|
+
export declare function deserializeIntoHorizontalSectionCollectionResponse(horizontalSectionCollectionResponse?: Partial<HorizontalSectionCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28701
|
+
/**
|
|
28702
|
+
* The deserialization information for the current model
|
|
28703
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28704
|
+
*/
|
|
28705
|
+
export declare function deserializeIntoHorizontalSectionColumn(horizontalSectionColumn?: Partial<HorizontalSectionColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
28706
|
+
/**
|
|
28707
|
+
* The deserialization information for the current model
|
|
28708
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
28709
|
+
*/
|
|
28710
|
+
export declare function deserializeIntoHorizontalSectionColumnCollectionResponse(horizontalSectionColumnCollectionResponse?: Partial<HorizontalSectionColumnCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
27894
28711
|
/**
|
|
27895
28712
|
* The deserialization information for the current model
|
|
27896
28713
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29216,6 +30033,11 @@ export declare function deserializeIntoMessageSecurityState(messageSecurityState
|
|
|
29216
30033
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29217
30034
|
*/
|
|
29218
30035
|
export declare function deserializeIntoMessageUnpinnedEventMessageDetail(messageUnpinnedEventMessageDetail?: Partial<MessageUnpinnedEventMessageDetail> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30036
|
+
/**
|
|
30037
|
+
* The deserialization information for the current model
|
|
30038
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30039
|
+
*/
|
|
30040
|
+
export declare function deserializeIntoMetaDataKeyStringPair(metaDataKeyStringPair?: Partial<MetaDataKeyStringPair> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29219
30041
|
/**
|
|
29220
30042
|
* The deserialization information for the current model
|
|
29221
30043
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -29251,6 +30073,11 @@ export declare function deserializeIntoMicrosoftAuthenticatorFeatureSettings(mic
|
|
|
29251
30073
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
29252
30074
|
*/
|
|
29253
30075
|
export declare function deserializeIntoMicrosoftCustomTrainingSetting(microsoftCustomTrainingSetting?: Partial<MicrosoftCustomTrainingSetting> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30076
|
+
/**
|
|
30077
|
+
* The deserialization information for the current model
|
|
30078
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30079
|
+
*/
|
|
30080
|
+
export declare function deserializeIntoMicrosoftManagedDesktop(microsoftManagedDesktop?: Partial<MicrosoftManagedDesktop> | undefined): Record<string, (node: ParseNode) => void>;
|
|
29254
30081
|
/**
|
|
29255
30082
|
* The deserialization information for the current model
|
|
29256
30083
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -30666,6 +31493,11 @@ export declare function deserializeIntoQuota(quota?: Partial<Quota> | undefined)
|
|
|
30666
31493
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
30667
31494
|
*/
|
|
30668
31495
|
export declare function deserializeIntoRbacApplication(rbacApplication?: Partial<RbacApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31496
|
+
/**
|
|
31497
|
+
* The deserialization information for the current model
|
|
31498
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31499
|
+
*/
|
|
31500
|
+
export declare function deserializeIntoReactionsFacet(reactionsFacet?: Partial<ReactionsFacet> | undefined): Record<string, (node: ParseNode) => void>;
|
|
30669
31501
|
/**
|
|
30670
31502
|
* The deserialization information for the current model
|
|
30671
31503
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31276,6 +32108,11 @@ export declare function deserializeIntoSendDtmfTonesOperation(sendDtmfTonesOpera
|
|
|
31276
32108
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31277
32109
|
*/
|
|
31278
32110
|
export declare function deserializeIntoSensitivityLabelAssignment(sensitivityLabelAssignment?: Partial<SensitivityLabelAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32111
|
+
/**
|
|
32112
|
+
* The deserialization information for the current model
|
|
32113
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32114
|
+
*/
|
|
32115
|
+
export declare function deserializeIntoServerProcessedContent(serverProcessedContent?: Partial<ServerProcessedContent> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31279
32116
|
/**
|
|
31280
32117
|
* The deserialization information for the current model
|
|
31281
32118
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31656,6 +32493,16 @@ export declare function deserializeIntoSiteCollection(siteCollection?: Partial<S
|
|
|
31656
32493
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31657
32494
|
*/
|
|
31658
32495
|
export declare function deserializeIntoSiteCollectionResponse(siteCollectionResponse?: Partial<SiteCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32496
|
+
/**
|
|
32497
|
+
* The deserialization information for the current model
|
|
32498
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32499
|
+
*/
|
|
32500
|
+
export declare function deserializeIntoSitePage(sitePage?: Partial<SitePage> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32501
|
+
/**
|
|
32502
|
+
* The deserialization information for the current model
|
|
32503
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32504
|
+
*/
|
|
32505
|
+
export declare function deserializeIntoSitePageCollectionResponse(sitePageCollectionResponse?: Partial<SitePageCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31659
32506
|
/**
|
|
31660
32507
|
* The deserialization information for the current model
|
|
31661
32508
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -31741,6 +32588,11 @@ export declare function deserializeIntoStaffAvailabilityItem(staffAvailabilityIt
|
|
|
31741
32588
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
31742
32589
|
*/
|
|
31743
32590
|
export declare function deserializeIntoStandardTimeZoneOffset(standardTimeZoneOffset?: Partial<StandardTimeZoneOffset> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32591
|
+
/**
|
|
32592
|
+
* The deserialization information for the current model
|
|
32593
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32594
|
+
*/
|
|
32595
|
+
export declare function deserializeIntoStandardWebPart(standardWebPart?: Partial<StandardWebPart> | undefined): Record<string, (node: ParseNode) => void>;
|
|
31744
32596
|
/**
|
|
31745
32597
|
* The deserialization information for the current model
|
|
31746
32598
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -32406,6 +33258,11 @@ export declare function deserializeIntoTermsOfUseContainer(termsOfUseContainer?:
|
|
|
32406
33258
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32407
33259
|
*/
|
|
32408
33260
|
export declare function deserializeIntoTextColumn(textColumn?: Partial<TextColumn> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33261
|
+
/**
|
|
33262
|
+
* The deserialization information for the current model
|
|
33263
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33264
|
+
*/
|
|
33265
|
+
export declare function deserializeIntoTextWebPart(textWebPart?: Partial<TextWebPart> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32409
33266
|
/**
|
|
32410
33267
|
* The deserialization information for the current model
|
|
32411
33268
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -32511,6 +33368,11 @@ export declare function deserializeIntoTimeZoneBase(timeZoneBase?: Partial<TimeZ
|
|
|
32511
33368
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
32512
33369
|
*/
|
|
32513
33370
|
export declare function deserializeIntoTimeZoneInformation(timeZoneInformation?: Partial<TimeZoneInformation> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33371
|
+
/**
|
|
33372
|
+
* The deserialization information for the current model
|
|
33373
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33374
|
+
*/
|
|
33375
|
+
export declare function deserializeIntoTitleArea(titleArea?: Partial<TitleArea> | undefined): Record<string, (node: ParseNode) => void>;
|
|
32514
33376
|
/**
|
|
32515
33377
|
* The deserialization information for the current model
|
|
32516
33378
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33301,6 +34163,11 @@ export declare function deserializeIntoVerifiedDomain(verifiedDomain?: Partial<V
|
|
|
33301
34163
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33302
34164
|
*/
|
|
33303
34165
|
export declare function deserializeIntoVerifiedPublisher(verifiedPublisher?: Partial<VerifiedPublisher> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34166
|
+
/**
|
|
34167
|
+
* The deserialization information for the current model
|
|
34168
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34169
|
+
*/
|
|
34170
|
+
export declare function deserializeIntoVerticalSection(verticalSection?: Partial<VerticalSection> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33304
34171
|
/**
|
|
33305
34172
|
* The deserialization information for the current model
|
|
33306
34173
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -33406,6 +34273,21 @@ export declare function deserializeIntoWebApp(webApp?: Partial<WebApp> | undefin
|
|
|
33406
34273
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
33407
34274
|
*/
|
|
33408
34275
|
export declare function deserializeIntoWebApplication(webApplication?: Partial<WebApplication> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34276
|
+
/**
|
|
34277
|
+
* The deserialization information for the current model
|
|
34278
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34279
|
+
*/
|
|
34280
|
+
export declare function deserializeIntoWebPart(webPart?: Partial<WebPart> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34281
|
+
/**
|
|
34282
|
+
* The deserialization information for the current model
|
|
34283
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34284
|
+
*/
|
|
34285
|
+
export declare function deserializeIntoWebPartCollectionResponse(webPartCollectionResponse?: Partial<WebPartCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
34286
|
+
/**
|
|
34287
|
+
* The deserialization information for the current model
|
|
34288
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
34289
|
+
*/
|
|
34290
|
+
export declare function deserializeIntoWebPartData(webPartData?: Partial<WebPartData> | undefined): Record<string, (node: ParseNode) => void>;
|
|
33409
34291
|
/**
|
|
33410
34292
|
* The deserialization information for the current model
|
|
33411
34293
|
* @returns {Record<string, (node: ParseNode) => void>}
|
|
@@ -34290,6 +35172,10 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
34290
35172
|
* 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
35173
|
*/
|
|
34292
35174
|
enrollmentProfileName?: string;
|
|
35175
|
+
/**
|
|
35176
|
+
* The enrollmentType property
|
|
35177
|
+
*/
|
|
35178
|
+
enrollmentType?: string;
|
|
34293
35179
|
/**
|
|
34294
35180
|
* The collection of open extensions defined for the device. Read-only. Nullable.
|
|
34295
35181
|
*/
|
|
@@ -34302,6 +35188,14 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
34302
35188
|
* 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
35189
|
*/
|
|
34304
35190
|
isManaged?: boolean;
|
|
35191
|
+
/**
|
|
35192
|
+
* The isRooted property
|
|
35193
|
+
*/
|
|
35194
|
+
isRooted?: boolean;
|
|
35195
|
+
/**
|
|
35196
|
+
* The managementType property
|
|
35197
|
+
*/
|
|
35198
|
+
managementType?: string;
|
|
34305
35199
|
/**
|
|
34306
35200
|
* Manufacturer of the device. Read-only.
|
|
34307
35201
|
*/
|
|
@@ -36501,6 +37395,7 @@ export interface DeviceOperatingSystemSummary extends AdditionalDataHolder, Back
|
|
|
36501
37395
|
*/
|
|
36502
37396
|
windowsMobileCount?: number;
|
|
36503
37397
|
}
|
|
37398
|
+
export type DevicePlatformType = (typeof DevicePlatformTypeObject)[keyof typeof DevicePlatformTypeObject];
|
|
36504
37399
|
/**
|
|
36505
37400
|
* Hardware information of a given device.
|
|
36506
37401
|
*/
|
|
@@ -37680,7 +38575,7 @@ export interface EducationAssignmentDefaults extends Entity, Parsable {
|
|
|
37680
38575
|
*/
|
|
37681
38576
|
dueTime?: TimeOnly;
|
|
37682
38577
|
/**
|
|
37683
|
-
* Default Teams channel to which notifications
|
|
38578
|
+
* Default Teams channel to which notifications are sent. Default value is null.
|
|
37684
38579
|
*/
|
|
37685
38580
|
notificationChannelUrl?: string;
|
|
37686
38581
|
}
|
|
@@ -40761,6 +41656,43 @@ export interface HomeRealmDiscoveryPolicyCollectionResponse extends BaseCollecti
|
|
|
40761
41656
|
*/
|
|
40762
41657
|
value?: HomeRealmDiscoveryPolicy[];
|
|
40763
41658
|
}
|
|
41659
|
+
export interface HorizontalSection extends Entity, Parsable {
|
|
41660
|
+
/**
|
|
41661
|
+
* The columns property
|
|
41662
|
+
*/
|
|
41663
|
+
columns?: HorizontalSectionColumn[];
|
|
41664
|
+
/**
|
|
41665
|
+
* The emphasis property
|
|
41666
|
+
*/
|
|
41667
|
+
emphasis?: SectionEmphasisType;
|
|
41668
|
+
/**
|
|
41669
|
+
* The layout property
|
|
41670
|
+
*/
|
|
41671
|
+
layout?: HorizontalSectionLayoutType;
|
|
41672
|
+
}
|
|
41673
|
+
export interface HorizontalSectionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
41674
|
+
/**
|
|
41675
|
+
* The value property
|
|
41676
|
+
*/
|
|
41677
|
+
value?: HorizontalSection[];
|
|
41678
|
+
}
|
|
41679
|
+
export interface HorizontalSectionColumn extends Entity, Parsable {
|
|
41680
|
+
/**
|
|
41681
|
+
* The webparts property
|
|
41682
|
+
*/
|
|
41683
|
+
webparts?: WebPart[];
|
|
41684
|
+
/**
|
|
41685
|
+
* The width property
|
|
41686
|
+
*/
|
|
41687
|
+
width?: number;
|
|
41688
|
+
}
|
|
41689
|
+
export interface HorizontalSectionColumnCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
41690
|
+
/**
|
|
41691
|
+
* The value property
|
|
41692
|
+
*/
|
|
41693
|
+
value?: HorizontalSectionColumn[];
|
|
41694
|
+
}
|
|
41695
|
+
export type HorizontalSectionLayoutType = (typeof HorizontalSectionLayoutTypeObject)[keyof typeof HorizontalSectionLayoutTypeObject];
|
|
40764
41696
|
export interface HostSecurityState extends AdditionalDataHolder, BackedModel, Parsable {
|
|
40765
41697
|
/**
|
|
40766
41698
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -43822,15 +44754,15 @@ export interface LicenseAssignmentState extends AdditionalDataHolder, BackedMode
|
|
|
43822
44754
|
}
|
|
43823
44755
|
export interface LicenseDetails extends Entity, Parsable {
|
|
43824
44756
|
/**
|
|
43825
|
-
* Information about the service plans assigned with the license. Read-only
|
|
44757
|
+
* Information about the service plans assigned with the license. Read-only. Not nullable.
|
|
43826
44758
|
*/
|
|
43827
44759
|
servicePlans?: ServicePlanInfo[];
|
|
43828
44760
|
/**
|
|
43829
|
-
* Unique identifier (GUID) for the service SKU. Equal to the skuId property on the related
|
|
44761
|
+
* Unique identifier (GUID) for the service SKU. Equal to the skuId property on the related subscribedSku object. Read-only.
|
|
43830
44762
|
*/
|
|
43831
44763
|
skuId?: Guid;
|
|
43832
44764
|
/**
|
|
43833
|
-
* Unique SKU display name. Equal to the skuPartNumber on the related
|
|
44765
|
+
* Unique SKU display name. Equal to the skuPartNumber on the related subscribedSku object; for example, AAD_Premium. Read-only.
|
|
43834
44766
|
*/
|
|
43835
44767
|
skuPartNumber?: string;
|
|
43836
44768
|
}
|
|
@@ -47161,6 +48093,28 @@ export interface MessageUnpinnedEventMessageDetail extends EventMessageDetail, P
|
|
|
47161
48093
|
*/
|
|
47162
48094
|
initiator?: IdentitySet;
|
|
47163
48095
|
}
|
|
48096
|
+
export interface MetaDataKeyStringPair extends AdditionalDataHolder, BackedModel, Parsable {
|
|
48097
|
+
/**
|
|
48098
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
48099
|
+
*/
|
|
48100
|
+
additionalData?: Record<string, unknown>;
|
|
48101
|
+
/**
|
|
48102
|
+
* Stores model information.
|
|
48103
|
+
*/
|
|
48104
|
+
backingStoreEnabled?: boolean;
|
|
48105
|
+
/**
|
|
48106
|
+
* The key property
|
|
48107
|
+
*/
|
|
48108
|
+
key?: string;
|
|
48109
|
+
/**
|
|
48110
|
+
* The OdataType property
|
|
48111
|
+
*/
|
|
48112
|
+
odataType?: string;
|
|
48113
|
+
/**
|
|
48114
|
+
* The value property
|
|
48115
|
+
*/
|
|
48116
|
+
value?: string;
|
|
48117
|
+
}
|
|
47164
48118
|
export interface MicrosoftAccountUserConversationMember extends ConversationMember, Parsable {
|
|
47165
48119
|
/**
|
|
47166
48120
|
* Microsoft Account ID of the user.
|
|
@@ -47253,6 +48207,29 @@ export interface MicrosoftCustomTrainingSetting extends Parsable, TrainingSettin
|
|
|
47253
48207
|
trainingCompletionDuration?: TrainingCompletionDuration;
|
|
47254
48208
|
}
|
|
47255
48209
|
export type MicrosoftEdgeChannel = (typeof MicrosoftEdgeChannelObject)[keyof typeof MicrosoftEdgeChannelObject];
|
|
48210
|
+
export interface MicrosoftManagedDesktop extends AdditionalDataHolder, BackedModel, Parsable {
|
|
48211
|
+
/**
|
|
48212
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
48213
|
+
*/
|
|
48214
|
+
additionalData?: Record<string, unknown>;
|
|
48215
|
+
/**
|
|
48216
|
+
* Stores model information.
|
|
48217
|
+
*/
|
|
48218
|
+
backingStoreEnabled?: boolean;
|
|
48219
|
+
/**
|
|
48220
|
+
* The managedType property
|
|
48221
|
+
*/
|
|
48222
|
+
managedType?: MicrosoftManagedDesktopType;
|
|
48223
|
+
/**
|
|
48224
|
+
* The OdataType property
|
|
48225
|
+
*/
|
|
48226
|
+
odataType?: string;
|
|
48227
|
+
/**
|
|
48228
|
+
* The profile property
|
|
48229
|
+
*/
|
|
48230
|
+
profile?: string;
|
|
48231
|
+
}
|
|
48232
|
+
export type MicrosoftManagedDesktopType = (typeof MicrosoftManagedDesktopTypeObject)[keyof typeof MicrosoftManagedDesktopTypeObject];
|
|
47256
48233
|
export interface MicrosoftManagedTrainingSetting extends Parsable, TrainingSetting {
|
|
47257
48234
|
/**
|
|
47258
48235
|
* 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 +49088,7 @@ export interface ObjectIdentity extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
48111
49088
|
*/
|
|
48112
49089
|
backingStoreEnabled?: boolean;
|
|
48113
49090
|
/**
|
|
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
|
|
49091
|
+
* 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
49092
|
*/
|
|
48116
49093
|
issuer?: string;
|
|
48117
49094
|
/**
|
|
@@ -48624,7 +49601,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
|
48624
49601
|
*/
|
|
48625
49602
|
creationDateTime?: Date;
|
|
48626
49603
|
/**
|
|
48627
|
-
* The meeting end time in UTC.
|
|
49604
|
+
* The meeting end time in UTC. Required when you create an online meeting.
|
|
48628
49605
|
*/
|
|
48629
49606
|
endDateTime?: Date;
|
|
48630
49607
|
/**
|
|
@@ -48636,7 +49613,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
|
48636
49613
|
*/
|
|
48637
49614
|
isBroadcast?: boolean;
|
|
48638
49615
|
/**
|
|
48639
|
-
* The participants associated with the online meeting
|
|
49616
|
+
* The participants associated with the online meeting. This includes the organizer and the attendees.
|
|
48640
49617
|
*/
|
|
48641
49618
|
participants?: MeetingParticipants;
|
|
48642
49619
|
/**
|
|
@@ -48644,7 +49621,7 @@ export interface OnlineMeeting extends OnlineMeetingBase, Parsable {
|
|
|
48644
49621
|
*/
|
|
48645
49622
|
recordings?: CallRecording[];
|
|
48646
49623
|
/**
|
|
48647
|
-
* The meeting start time in UTC.
|
|
49624
|
+
* The meeting start time in UTC. Required when you create an online meeting.
|
|
48648
49625
|
*/
|
|
48649
49626
|
startDateTime?: Date;
|
|
48650
49627
|
/**
|
|
@@ -49679,6 +50656,7 @@ export interface PackageEscaped extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
49679
50656
|
*/
|
|
49680
50657
|
type?: string;
|
|
49681
50658
|
}
|
|
50659
|
+
export type PageLayoutType = (typeof PageLayoutTypeObject)[keyof typeof PageLayoutTypeObject];
|
|
49682
50660
|
export interface PageLinks extends AdditionalDataHolder, BackedModel, Parsable {
|
|
49683
50661
|
/**
|
|
49684
50662
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -49701,6 +50679,7 @@ export interface PageLinks extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
49701
50679
|
*/
|
|
49702
50680
|
oneNoteWebUrl?: ExternalLink;
|
|
49703
50681
|
}
|
|
50682
|
+
export type PagePromotionType = (typeof PagePromotionTypeObject)[keyof typeof PagePromotionTypeObject];
|
|
49704
50683
|
export interface ParentalControlSettings extends AdditionalDataHolder, BackedModel, Parsable {
|
|
49705
50684
|
/**
|
|
49706
50685
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -49956,11 +50935,11 @@ export interface PasswordProfile extends AdditionalDataHolder, BackedModel, Pars
|
|
|
49956
50935
|
*/
|
|
49957
50936
|
backingStoreEnabled?: boolean;
|
|
49958
50937
|
/**
|
|
49959
|
-
* true if the user must change
|
|
50938
|
+
* true if the user must change their password on the next sign-in; otherwise false.
|
|
49960
50939
|
*/
|
|
49961
50940
|
forceChangePasswordNextSignIn?: boolean;
|
|
49962
50941
|
/**
|
|
49963
|
-
* If true, at next sign-in, the user must perform a
|
|
50942
|
+
* 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
50943
|
*/
|
|
49965
50944
|
forceChangePasswordNextSignInWithMfa?: boolean;
|
|
49966
50945
|
/**
|
|
@@ -49968,7 +50947,7 @@ export interface PasswordProfile extends AdditionalDataHolder, BackedModel, Pars
|
|
|
49968
50947
|
*/
|
|
49969
50948
|
odataType?: string;
|
|
49970
50949
|
/**
|
|
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
|
|
50950
|
+
* 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
50951
|
*/
|
|
49973
50952
|
password?: string;
|
|
49974
50953
|
}
|
|
@@ -52585,11 +53564,11 @@ export interface PrivilegedAccessGroup extends Entity, Parsable {
|
|
|
52585
53564
|
}
|
|
52586
53565
|
export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, PrivilegedAccessSchedule {
|
|
52587
53566
|
/**
|
|
52588
|
-
* The identifier of the membership or ownership assignment to the group that is governed
|
|
53567
|
+
* 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
53568
|
*/
|
|
52590
53569
|
accessId?: PrivilegedAccessGroupRelationships;
|
|
52591
53570
|
/**
|
|
52592
|
-
* When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it
|
|
53571
|
+
* 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
53572
|
*/
|
|
52594
53573
|
activatedUsing?: PrivilegedAccessGroupEligibilitySchedule;
|
|
52595
53574
|
/**
|
|
@@ -52597,7 +53576,7 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
52597
53576
|
*/
|
|
52598
53577
|
assignmentType?: PrivilegedAccessGroupAssignmentType;
|
|
52599
53578
|
/**
|
|
52600
|
-
* References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand.
|
|
53579
|
+
* 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
53580
|
*/
|
|
52602
53581
|
group?: Group;
|
|
52603
53582
|
/**
|
|
@@ -52609,7 +53588,7 @@ export interface PrivilegedAccessGroupAssignmentSchedule extends Parsable, Privi
|
|
|
52609
53588
|
*/
|
|
52610
53589
|
memberType?: PrivilegedAccessGroupMemberType;
|
|
52611
53590
|
/**
|
|
52612
|
-
* References the principal that's in the scope of this membership or ownership assignment request to the group that's governed
|
|
53591
|
+
* 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
53592
|
*/
|
|
52614
53593
|
principal?: DirectoryObject;
|
|
52615
53594
|
/**
|
|
@@ -52677,7 +53656,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleRequest extends Parsable
|
|
|
52677
53656
|
*/
|
|
52678
53657
|
activatedUsing?: PrivilegedAccessGroupEligibilitySchedule;
|
|
52679
53658
|
/**
|
|
52680
|
-
* References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand.
|
|
53659
|
+
* 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
53660
|
*/
|
|
52682
53661
|
group?: Group;
|
|
52683
53662
|
/**
|
|
@@ -52685,7 +53664,7 @@ export interface PrivilegedAccessGroupAssignmentScheduleRequest extends Parsable
|
|
|
52685
53664
|
*/
|
|
52686
53665
|
groupId?: string;
|
|
52687
53666
|
/**
|
|
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.
|
|
53667
|
+
* 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
53668
|
*/
|
|
52690
53669
|
principal?: DirectoryObject;
|
|
52691
53670
|
/**
|
|
@@ -52782,7 +53761,7 @@ export interface PrivilegedAccessGroupEligibilityScheduleRequest extends Parsabl
|
|
|
52782
53761
|
*/
|
|
52783
53762
|
accessId?: PrivilegedAccessGroupRelationships;
|
|
52784
53763
|
/**
|
|
52785
|
-
* References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand.
|
|
53764
|
+
* 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
53765
|
*/
|
|
52787
53766
|
group?: Group;
|
|
52788
53767
|
/**
|
|
@@ -52790,7 +53769,7 @@ export interface PrivilegedAccessGroupEligibilityScheduleRequest extends Parsabl
|
|
|
52790
53769
|
*/
|
|
52791
53770
|
groupId?: string;
|
|
52792
53771
|
/**
|
|
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.
|
|
53772
|
+
* 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
53773
|
*/
|
|
52795
53774
|
principal?: DirectoryObject;
|
|
52796
53775
|
/**
|
|
@@ -53495,6 +54474,32 @@ export interface RbacApplication extends Entity, Parsable {
|
|
|
53495
54474
|
*/
|
|
53496
54475
|
roleEligibilitySchedules?: UnifiedRoleEligibilitySchedule[];
|
|
53497
54476
|
}
|
|
54477
|
+
export interface ReactionsFacet extends AdditionalDataHolder, BackedModel, Parsable {
|
|
54478
|
+
/**
|
|
54479
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
54480
|
+
*/
|
|
54481
|
+
additionalData?: Record<string, unknown>;
|
|
54482
|
+
/**
|
|
54483
|
+
* Stores model information.
|
|
54484
|
+
*/
|
|
54485
|
+
backingStoreEnabled?: boolean;
|
|
54486
|
+
/**
|
|
54487
|
+
* The commentCount property
|
|
54488
|
+
*/
|
|
54489
|
+
commentCount?: number;
|
|
54490
|
+
/**
|
|
54491
|
+
* The likeCount property
|
|
54492
|
+
*/
|
|
54493
|
+
likeCount?: number;
|
|
54494
|
+
/**
|
|
54495
|
+
* The OdataType property
|
|
54496
|
+
*/
|
|
54497
|
+
odataType?: string;
|
|
54498
|
+
/**
|
|
54499
|
+
* The shareCount property
|
|
54500
|
+
*/
|
|
54501
|
+
shareCount?: number;
|
|
54502
|
+
}
|
|
53498
54503
|
export interface RecentNotebook extends AdditionalDataHolder, BackedModel, Parsable {
|
|
53499
54504
|
/**
|
|
53500
54505
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -55741,6 +56746,18 @@ export interface SearchBucket extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
55741
56746
|
}
|
|
55742
56747
|
export type SearchContent = (typeof SearchContentObject)[keyof typeof SearchContentObject];
|
|
55743
56748
|
export interface SearchEntity extends Entity, Parsable {
|
|
56749
|
+
/**
|
|
56750
|
+
* The acronyms property
|
|
56751
|
+
*/
|
|
56752
|
+
acronyms?: Acronym[];
|
|
56753
|
+
/**
|
|
56754
|
+
* The bookmarks property
|
|
56755
|
+
*/
|
|
56756
|
+
bookmarks?: Bookmark[];
|
|
56757
|
+
/**
|
|
56758
|
+
* The qnas property
|
|
56759
|
+
*/
|
|
56760
|
+
qnas?: Qna[];
|
|
55744
56761
|
}
|
|
55745
56762
|
export interface SearchHit extends AdditionalDataHolder, BackedModel, Parsable {
|
|
55746
56763
|
/**
|
|
@@ -55958,6 +56975,7 @@ export interface SearchResult extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
55958
56975
|
*/
|
|
55959
56976
|
onClickTelemetryUrl?: string;
|
|
55960
56977
|
}
|
|
56978
|
+
export type SectionEmphasisType = (typeof SectionEmphasisTypeObject)[keyof typeof SectionEmphasisTypeObject];
|
|
55961
56979
|
export interface SectionGroup extends OnenoteEntityHierarchyModel, Parsable {
|
|
55962
56980
|
/**
|
|
55963
56981
|
* The notebook that contains the section group. Read-only.
|
|
@@ -57714,6 +58732,16 @@ export declare function serializeBaseItemCollectionResponse(writer: Serializatio
|
|
|
57714
58732
|
* @param writer Serialization writer to use to serialize this model
|
|
57715
58733
|
*/
|
|
57716
58734
|
export declare function serializeBaseItemVersion(writer: SerializationWriter, baseItemVersion?: Partial<BaseItemVersion> | undefined): void;
|
|
58735
|
+
/**
|
|
58736
|
+
* Serializes information the current object
|
|
58737
|
+
* @param writer Serialization writer to use to serialize this model
|
|
58738
|
+
*/
|
|
58739
|
+
export declare function serializeBaseSitePage(writer: SerializationWriter, baseSitePage?: Partial<BaseSitePage> | undefined): void;
|
|
58740
|
+
/**
|
|
58741
|
+
* Serializes information the current object
|
|
58742
|
+
* @param writer Serialization writer to use to serialize this model
|
|
58743
|
+
*/
|
|
58744
|
+
export declare function serializeBaseSitePageCollectionResponse(writer: SerializationWriter, baseSitePageCollectionResponse?: Partial<BaseSitePageCollectionResponse> | undefined): void;
|
|
57717
58745
|
/**
|
|
57718
58746
|
* Serializes information the current object
|
|
57719
58747
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -58064,6 +59092,11 @@ export declare function serializeCallTranscriptionInfo(writer: SerializationWrit
|
|
|
58064
59092
|
* @param writer Serialization writer to use to serialize this model
|
|
58065
59093
|
*/
|
|
58066
59094
|
export declare function serializeCancelMediaProcessingOperation(writer: SerializationWriter, cancelMediaProcessingOperation?: Partial<CancelMediaProcessingOperation> | undefined): void;
|
|
59095
|
+
/**
|
|
59096
|
+
* Serializes information the current object
|
|
59097
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59098
|
+
*/
|
|
59099
|
+
export declare function serializeCanvasLayout(writer: SerializationWriter, canvasLayout?: Partial<CanvasLayout> | undefined): void;
|
|
58067
59100
|
/**
|
|
58068
59101
|
* Serializes information the current object
|
|
58069
59102
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -58314,6 +59347,101 @@ export declare function serializeCloudClipboardRoot(writer: SerializationWriter,
|
|
|
58314
59347
|
* @param writer Serialization writer to use to serialize this model
|
|
58315
59348
|
*/
|
|
58316
59349
|
export declare function serializeCloudCommunications(writer: SerializationWriter, cloudCommunications?: Partial<CloudCommunications> | undefined): void;
|
|
59350
|
+
/**
|
|
59351
|
+
* Serializes information the current object
|
|
59352
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59353
|
+
*/
|
|
59354
|
+
export declare function serializeCloudPcAuditActor(writer: SerializationWriter, cloudPcAuditActor?: Partial<CloudPcAuditActor> | undefined): void;
|
|
59355
|
+
/**
|
|
59356
|
+
* Serializes information the current object
|
|
59357
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59358
|
+
*/
|
|
59359
|
+
export declare function serializeCloudPcAuditEvent(writer: SerializationWriter, cloudPcAuditEvent?: Partial<CloudPcAuditEvent> | undefined): void;
|
|
59360
|
+
/**
|
|
59361
|
+
* Serializes information the current object
|
|
59362
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59363
|
+
*/
|
|
59364
|
+
export declare function serializeCloudPcAuditEventCollectionResponse(writer: SerializationWriter, cloudPcAuditEventCollectionResponse?: Partial<CloudPcAuditEventCollectionResponse> | undefined): void;
|
|
59365
|
+
/**
|
|
59366
|
+
* Serializes information the current object
|
|
59367
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59368
|
+
*/
|
|
59369
|
+
export declare function serializeCloudPcAuditProperty(writer: SerializationWriter, cloudPcAuditProperty?: Partial<CloudPcAuditProperty> | undefined): void;
|
|
59370
|
+
/**
|
|
59371
|
+
* Serializes information the current object
|
|
59372
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59373
|
+
*/
|
|
59374
|
+
export declare function serializeCloudPcAuditResource(writer: SerializationWriter, cloudPcAuditResource?: Partial<CloudPcAuditResource> | undefined): void;
|
|
59375
|
+
/**
|
|
59376
|
+
* Serializes information the current object
|
|
59377
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59378
|
+
*/
|
|
59379
|
+
export declare function serializeCloudPcDomainJoinConfiguration(writer: SerializationWriter, cloudPcDomainJoinConfiguration?: Partial<CloudPcDomainJoinConfiguration> | undefined): void;
|
|
59380
|
+
/**
|
|
59381
|
+
* Serializes information the current object
|
|
59382
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59383
|
+
*/
|
|
59384
|
+
export declare function serializeCloudPcManagementAssignmentTarget(writer: SerializationWriter, cloudPcManagementAssignmentTarget?: Partial<CloudPcManagementAssignmentTarget> | undefined): void;
|
|
59385
|
+
/**
|
|
59386
|
+
* Serializes information the current object
|
|
59387
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59388
|
+
*/
|
|
59389
|
+
export declare function serializeCloudPcManagementGroupAssignmentTarget(writer: SerializationWriter, cloudPcManagementGroupAssignmentTarget?: Partial<CloudPcManagementGroupAssignmentTarget> | undefined): void;
|
|
59390
|
+
/**
|
|
59391
|
+
* Serializes information the current object
|
|
59392
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59393
|
+
*/
|
|
59394
|
+
export declare function serializeCloudPcProvisioningPolicy(writer: SerializationWriter, cloudPcProvisioningPolicy?: Partial<CloudPcProvisioningPolicy> | undefined): void;
|
|
59395
|
+
/**
|
|
59396
|
+
* Serializes information the current object
|
|
59397
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59398
|
+
*/
|
|
59399
|
+
export declare function serializeCloudPcProvisioningPolicyAssignment(writer: SerializationWriter, cloudPcProvisioningPolicyAssignment?: Partial<CloudPcProvisioningPolicyAssignment> | undefined): void;
|
|
59400
|
+
/**
|
|
59401
|
+
* Serializes information the current object
|
|
59402
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59403
|
+
*/
|
|
59404
|
+
export declare function serializeCloudPcProvisioningPolicyAssignmentCollectionResponse(writer: SerializationWriter, cloudPcProvisioningPolicyAssignmentCollectionResponse?: Partial<CloudPcProvisioningPolicyAssignmentCollectionResponse> | undefined): void;
|
|
59405
|
+
/**
|
|
59406
|
+
* Serializes information the current object
|
|
59407
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59408
|
+
*/
|
|
59409
|
+
export declare function serializeCloudPcProvisioningPolicyCollectionResponse(writer: SerializationWriter, cloudPcProvisioningPolicyCollectionResponse?: Partial<CloudPcProvisioningPolicyCollectionResponse> | undefined): void;
|
|
59410
|
+
/**
|
|
59411
|
+
* Serializes information the current object
|
|
59412
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59413
|
+
*/
|
|
59414
|
+
export declare function serializeCloudPcRestorePointSetting(writer: SerializationWriter, cloudPcRestorePointSetting?: Partial<CloudPcRestorePointSetting> | undefined): void;
|
|
59415
|
+
/**
|
|
59416
|
+
* Serializes information the current object
|
|
59417
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59418
|
+
*/
|
|
59419
|
+
export declare function serializeCloudPcUserRoleScopeTagInfo(writer: SerializationWriter, cloudPcUserRoleScopeTagInfo?: Partial<CloudPcUserRoleScopeTagInfo> | undefined): void;
|
|
59420
|
+
/**
|
|
59421
|
+
* Serializes information the current object
|
|
59422
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59423
|
+
*/
|
|
59424
|
+
export declare function serializeCloudPcUserSetting(writer: SerializationWriter, cloudPcUserSetting?: Partial<CloudPcUserSetting> | undefined): void;
|
|
59425
|
+
/**
|
|
59426
|
+
* Serializes information the current object
|
|
59427
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59428
|
+
*/
|
|
59429
|
+
export declare function serializeCloudPcUserSettingAssignment(writer: SerializationWriter, cloudPcUserSettingAssignment?: Partial<CloudPcUserSettingAssignment> | undefined): void;
|
|
59430
|
+
/**
|
|
59431
|
+
* Serializes information the current object
|
|
59432
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59433
|
+
*/
|
|
59434
|
+
export declare function serializeCloudPcUserSettingAssignmentCollectionResponse(writer: SerializationWriter, cloudPcUserSettingAssignmentCollectionResponse?: Partial<CloudPcUserSettingAssignmentCollectionResponse> | undefined): void;
|
|
59435
|
+
/**
|
|
59436
|
+
* Serializes information the current object
|
|
59437
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59438
|
+
*/
|
|
59439
|
+
export declare function serializeCloudPcUserSettingCollectionResponse(writer: SerializationWriter, cloudPcUserSettingCollectionResponse?: Partial<CloudPcUserSettingCollectionResponse> | undefined): void;
|
|
59440
|
+
/**
|
|
59441
|
+
* Serializes information the current object
|
|
59442
|
+
* @param writer Serialization writer to use to serialize this model
|
|
59443
|
+
*/
|
|
59444
|
+
export declare function serializeCloudPcWindowsSetting(writer: SerializationWriter, cloudPcWindowsSetting?: Partial<CloudPcWindowsSetting> | undefined): void;
|
|
58317
59445
|
/**
|
|
58318
59446
|
* Serializes information the current object
|
|
58319
59447
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -60424,6 +61552,26 @@ export declare function serializeHomeRealmDiscoveryPolicy(writer: SerializationW
|
|
|
60424
61552
|
* @param writer Serialization writer to use to serialize this model
|
|
60425
61553
|
*/
|
|
60426
61554
|
export declare function serializeHomeRealmDiscoveryPolicyCollectionResponse(writer: SerializationWriter, homeRealmDiscoveryPolicyCollectionResponse?: Partial<HomeRealmDiscoveryPolicyCollectionResponse> | undefined): void;
|
|
61555
|
+
/**
|
|
61556
|
+
* Serializes information the current object
|
|
61557
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61558
|
+
*/
|
|
61559
|
+
export declare function serializeHorizontalSection(writer: SerializationWriter, horizontalSection?: Partial<HorizontalSection> | undefined): void;
|
|
61560
|
+
/**
|
|
61561
|
+
* Serializes information the current object
|
|
61562
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61563
|
+
*/
|
|
61564
|
+
export declare function serializeHorizontalSectionCollectionResponse(writer: SerializationWriter, horizontalSectionCollectionResponse?: Partial<HorizontalSectionCollectionResponse> | undefined): void;
|
|
61565
|
+
/**
|
|
61566
|
+
* Serializes information the current object
|
|
61567
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61568
|
+
*/
|
|
61569
|
+
export declare function serializeHorizontalSectionColumn(writer: SerializationWriter, horizontalSectionColumn?: Partial<HorizontalSectionColumn> | undefined): void;
|
|
61570
|
+
/**
|
|
61571
|
+
* Serializes information the current object
|
|
61572
|
+
* @param writer Serialization writer to use to serialize this model
|
|
61573
|
+
*/
|
|
61574
|
+
export declare function serializeHorizontalSectionColumnCollectionResponse(writer: SerializationWriter, horizontalSectionColumnCollectionResponse?: Partial<HorizontalSectionColumnCollectionResponse> | undefined): void;
|
|
60427
61575
|
/**
|
|
60428
61576
|
* Serializes information the current object
|
|
60429
61577
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61749,6 +62897,11 @@ export declare function serializeMessageSecurityState(writer: SerializationWrite
|
|
|
61749
62897
|
* @param writer Serialization writer to use to serialize this model
|
|
61750
62898
|
*/
|
|
61751
62899
|
export declare function serializeMessageUnpinnedEventMessageDetail(writer: SerializationWriter, messageUnpinnedEventMessageDetail?: Partial<MessageUnpinnedEventMessageDetail> | undefined): void;
|
|
62900
|
+
/**
|
|
62901
|
+
* Serializes information the current object
|
|
62902
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62903
|
+
*/
|
|
62904
|
+
export declare function serializeMetaDataKeyStringPair(writer: SerializationWriter, metaDataKeyStringPair?: Partial<MetaDataKeyStringPair> | undefined): void;
|
|
61752
62905
|
/**
|
|
61753
62906
|
* Serializes information the current object
|
|
61754
62907
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -61784,6 +62937,11 @@ export declare function serializeMicrosoftAuthenticatorFeatureSettings(writer: S
|
|
|
61784
62937
|
* @param writer Serialization writer to use to serialize this model
|
|
61785
62938
|
*/
|
|
61786
62939
|
export declare function serializeMicrosoftCustomTrainingSetting(writer: SerializationWriter, microsoftCustomTrainingSetting?: Partial<MicrosoftCustomTrainingSetting> | undefined): void;
|
|
62940
|
+
/**
|
|
62941
|
+
* Serializes information the current object
|
|
62942
|
+
* @param writer Serialization writer to use to serialize this model
|
|
62943
|
+
*/
|
|
62944
|
+
export declare function serializeMicrosoftManagedDesktop(writer: SerializationWriter, microsoftManagedDesktop?: Partial<MicrosoftManagedDesktop> | undefined): void;
|
|
61787
62945
|
/**
|
|
61788
62946
|
* Serializes information the current object
|
|
61789
62947
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63199,6 +64357,11 @@ export declare function serializeQuota(writer: SerializationWriter, quota?: Part
|
|
|
63199
64357
|
* @param writer Serialization writer to use to serialize this model
|
|
63200
64358
|
*/
|
|
63201
64359
|
export declare function serializeRbacApplication(writer: SerializationWriter, rbacApplication?: Partial<RbacApplication> | undefined): void;
|
|
64360
|
+
/**
|
|
64361
|
+
* Serializes information the current object
|
|
64362
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64363
|
+
*/
|
|
64364
|
+
export declare function serializeReactionsFacet(writer: SerializationWriter, reactionsFacet?: Partial<ReactionsFacet> | undefined): void;
|
|
63202
64365
|
/**
|
|
63203
64366
|
* Serializes information the current object
|
|
63204
64367
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -63809,6 +64972,11 @@ export declare function serializeSendDtmfTonesOperation(writer: SerializationWri
|
|
|
63809
64972
|
* @param writer Serialization writer to use to serialize this model
|
|
63810
64973
|
*/
|
|
63811
64974
|
export declare function serializeSensitivityLabelAssignment(writer: SerializationWriter, sensitivityLabelAssignment?: Partial<SensitivityLabelAssignment> | undefined): void;
|
|
64975
|
+
/**
|
|
64976
|
+
* Serializes information the current object
|
|
64977
|
+
* @param writer Serialization writer to use to serialize this model
|
|
64978
|
+
*/
|
|
64979
|
+
export declare function serializeServerProcessedContent(writer: SerializationWriter, serverProcessedContent?: Partial<ServerProcessedContent> | undefined): void;
|
|
63812
64980
|
/**
|
|
63813
64981
|
* Serializes information the current object
|
|
63814
64982
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64189,6 +65357,16 @@ export declare function serializeSiteCollection(writer: SerializationWriter, sit
|
|
|
64189
65357
|
* @param writer Serialization writer to use to serialize this model
|
|
64190
65358
|
*/
|
|
64191
65359
|
export declare function serializeSiteCollectionResponse(writer: SerializationWriter, siteCollectionResponse?: Partial<SiteCollectionResponse> | undefined): void;
|
|
65360
|
+
/**
|
|
65361
|
+
* Serializes information the current object
|
|
65362
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65363
|
+
*/
|
|
65364
|
+
export declare function serializeSitePage(writer: SerializationWriter, sitePage?: Partial<SitePage> | undefined): void;
|
|
65365
|
+
/**
|
|
65366
|
+
* Serializes information the current object
|
|
65367
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65368
|
+
*/
|
|
65369
|
+
export declare function serializeSitePageCollectionResponse(writer: SerializationWriter, sitePageCollectionResponse?: Partial<SitePageCollectionResponse> | undefined): void;
|
|
64192
65370
|
/**
|
|
64193
65371
|
* Serializes information the current object
|
|
64194
65372
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64274,6 +65452,11 @@ export declare function serializeStaffAvailabilityItem(writer: SerializationWrit
|
|
|
64274
65452
|
* @param writer Serialization writer to use to serialize this model
|
|
64275
65453
|
*/
|
|
64276
65454
|
export declare function serializeStandardTimeZoneOffset(writer: SerializationWriter, standardTimeZoneOffset?: Partial<StandardTimeZoneOffset> | undefined): void;
|
|
65455
|
+
/**
|
|
65456
|
+
* Serializes information the current object
|
|
65457
|
+
* @param writer Serialization writer to use to serialize this model
|
|
65458
|
+
*/
|
|
65459
|
+
export declare function serializeStandardWebPart(writer: SerializationWriter, standardWebPart?: Partial<StandardWebPart> | undefined): void;
|
|
64277
65460
|
/**
|
|
64278
65461
|
* Serializes information the current object
|
|
64279
65462
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -64939,6 +66122,11 @@ export declare function serializeTermsOfUseContainer(writer: SerializationWriter
|
|
|
64939
66122
|
* @param writer Serialization writer to use to serialize this model
|
|
64940
66123
|
*/
|
|
64941
66124
|
export declare function serializeTextColumn(writer: SerializationWriter, textColumn?: Partial<TextColumn> | undefined): void;
|
|
66125
|
+
/**
|
|
66126
|
+
* Serializes information the current object
|
|
66127
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66128
|
+
*/
|
|
66129
|
+
export declare function serializeTextWebPart(writer: SerializationWriter, textWebPart?: Partial<TextWebPart> | undefined): void;
|
|
64942
66130
|
/**
|
|
64943
66131
|
* Serializes information the current object
|
|
64944
66132
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65044,6 +66232,11 @@ export declare function serializeTimeZoneBase(writer: SerializationWriter, timeZ
|
|
|
65044
66232
|
* @param writer Serialization writer to use to serialize this model
|
|
65045
66233
|
*/
|
|
65046
66234
|
export declare function serializeTimeZoneInformation(writer: SerializationWriter, timeZoneInformation?: Partial<TimeZoneInformation> | undefined): void;
|
|
66235
|
+
/**
|
|
66236
|
+
* Serializes information the current object
|
|
66237
|
+
* @param writer Serialization writer to use to serialize this model
|
|
66238
|
+
*/
|
|
66239
|
+
export declare function serializeTitleArea(writer: SerializationWriter, titleArea?: Partial<TitleArea> | undefined): void;
|
|
65047
66240
|
/**
|
|
65048
66241
|
* Serializes information the current object
|
|
65049
66242
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65834,6 +67027,11 @@ export declare function serializeVerifiedDomain(writer: SerializationWriter, ver
|
|
|
65834
67027
|
* @param writer Serialization writer to use to serialize this model
|
|
65835
67028
|
*/
|
|
65836
67029
|
export declare function serializeVerifiedPublisher(writer: SerializationWriter, verifiedPublisher?: Partial<VerifiedPublisher> | undefined): void;
|
|
67030
|
+
/**
|
|
67031
|
+
* Serializes information the current object
|
|
67032
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67033
|
+
*/
|
|
67034
|
+
export declare function serializeVerticalSection(writer: SerializationWriter, verticalSection?: Partial<VerticalSection> | undefined): void;
|
|
65837
67035
|
/**
|
|
65838
67036
|
* Serializes information the current object
|
|
65839
67037
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -65939,6 +67137,21 @@ export declare function serializeWebApp(writer: SerializationWriter, webApp?: Pa
|
|
|
65939
67137
|
* @param writer Serialization writer to use to serialize this model
|
|
65940
67138
|
*/
|
|
65941
67139
|
export declare function serializeWebApplication(writer: SerializationWriter, webApplication?: Partial<WebApplication> | undefined): void;
|
|
67140
|
+
/**
|
|
67141
|
+
* Serializes information the current object
|
|
67142
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67143
|
+
*/
|
|
67144
|
+
export declare function serializeWebPart(writer: SerializationWriter, webPart?: Partial<WebPart> | undefined): void;
|
|
67145
|
+
/**
|
|
67146
|
+
* Serializes information the current object
|
|
67147
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67148
|
+
*/
|
|
67149
|
+
export declare function serializeWebPartCollectionResponse(writer: SerializationWriter, webPartCollectionResponse?: Partial<WebPartCollectionResponse> | undefined): void;
|
|
67150
|
+
/**
|
|
67151
|
+
* Serializes information the current object
|
|
67152
|
+
* @param writer Serialization writer to use to serialize this model
|
|
67153
|
+
*/
|
|
67154
|
+
export declare function serializeWebPartData(writer: SerializationWriter, webPartData?: Partial<WebPartData> | undefined): void;
|
|
65942
67155
|
/**
|
|
65943
67156
|
* Serializes information the current object
|
|
65944
67157
|
* @param writer Serialization writer to use to serialize this model
|
|
@@ -66724,6 +67937,36 @@ export declare function serializeX509CertificateRule(writer: SerializationWriter
|
|
|
66724
67937
|
* @param writer Serialization writer to use to serialize this model
|
|
66725
67938
|
*/
|
|
66726
67939
|
export declare function serializeX509CertificateUserBinding(writer: SerializationWriter, x509CertificateUserBinding?: Partial<X509CertificateUserBinding> | undefined): void;
|
|
67940
|
+
export interface ServerProcessedContent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
67941
|
+
/**
|
|
67942
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
67943
|
+
*/
|
|
67944
|
+
additionalData?: Record<string, unknown>;
|
|
67945
|
+
/**
|
|
67946
|
+
* Stores model information.
|
|
67947
|
+
*/
|
|
67948
|
+
backingStoreEnabled?: boolean;
|
|
67949
|
+
/**
|
|
67950
|
+
* The htmlStrings property
|
|
67951
|
+
*/
|
|
67952
|
+
htmlStrings?: MetaDataKeyStringPair[];
|
|
67953
|
+
/**
|
|
67954
|
+
* The imageSources property
|
|
67955
|
+
*/
|
|
67956
|
+
imageSources?: MetaDataKeyStringPair[];
|
|
67957
|
+
/**
|
|
67958
|
+
* The links property
|
|
67959
|
+
*/
|
|
67960
|
+
links?: MetaDataKeyStringPair[];
|
|
67961
|
+
/**
|
|
67962
|
+
* The OdataType property
|
|
67963
|
+
*/
|
|
67964
|
+
odataType?: string;
|
|
67965
|
+
/**
|
|
67966
|
+
* The searchablePlainTexts property
|
|
67967
|
+
*/
|
|
67968
|
+
searchablePlainTexts?: MetaDataKeyStringPair[];
|
|
67969
|
+
}
|
|
66727
67970
|
export interface ServiceAnnouncement extends Entity, Parsable {
|
|
66728
67971
|
/**
|
|
66729
67972
|
* A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly.
|
|
@@ -68721,6 +69964,10 @@ export interface Site extends BaseItem, Parsable {
|
|
|
68721
69964
|
* The collection of long-running operations on the site.
|
|
68722
69965
|
*/
|
|
68723
69966
|
operations?: RichLongRunningOperation[];
|
|
69967
|
+
/**
|
|
69968
|
+
* The pages property
|
|
69969
|
+
*/
|
|
69970
|
+
pages?: BaseSitePage[];
|
|
68724
69971
|
/**
|
|
68725
69972
|
* The permissions associated with the site. Nullable.
|
|
68726
69973
|
*/
|
|
@@ -68782,6 +70029,46 @@ export interface SiteCollectionResponse extends BaseCollectionPaginationCountRes
|
|
|
68782
70029
|
*/
|
|
68783
70030
|
value?: Site[];
|
|
68784
70031
|
}
|
|
70032
|
+
export interface SitePage extends BaseSitePage, Parsable {
|
|
70033
|
+
/**
|
|
70034
|
+
* The canvasLayout property
|
|
70035
|
+
*/
|
|
70036
|
+
canvasLayout?: CanvasLayout;
|
|
70037
|
+
/**
|
|
70038
|
+
* The promotionKind property
|
|
70039
|
+
*/
|
|
70040
|
+
promotionKind?: PagePromotionType;
|
|
70041
|
+
/**
|
|
70042
|
+
* The reactions property
|
|
70043
|
+
*/
|
|
70044
|
+
reactions?: ReactionsFacet;
|
|
70045
|
+
/**
|
|
70046
|
+
* The showComments property
|
|
70047
|
+
*/
|
|
70048
|
+
showComments?: boolean;
|
|
70049
|
+
/**
|
|
70050
|
+
* The showRecommendedPages property
|
|
70051
|
+
*/
|
|
70052
|
+
showRecommendedPages?: boolean;
|
|
70053
|
+
/**
|
|
70054
|
+
* The thumbnailWebUrl property
|
|
70055
|
+
*/
|
|
70056
|
+
thumbnailWebUrl?: string;
|
|
70057
|
+
/**
|
|
70058
|
+
* The titleArea property
|
|
70059
|
+
*/
|
|
70060
|
+
titleArea?: TitleArea;
|
|
70061
|
+
/**
|
|
70062
|
+
* The webParts property
|
|
70063
|
+
*/
|
|
70064
|
+
webParts?: WebPart[];
|
|
70065
|
+
}
|
|
70066
|
+
export interface SitePageCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
70067
|
+
/**
|
|
70068
|
+
* The value property
|
|
70069
|
+
*/
|
|
70070
|
+
value?: SitePage[];
|
|
70071
|
+
}
|
|
68785
70072
|
export type SiteSecurityLevel = (typeof SiteSecurityLevelObject)[keyof typeof SiteSecurityLevelObject];
|
|
68786
70073
|
export interface SizeRange extends AdditionalDataHolder, BackedModel, Parsable {
|
|
68787
70074
|
/**
|
|
@@ -69079,6 +70366,20 @@ export interface StandardTimeZoneOffset extends AdditionalDataHolder, BackedMode
|
|
|
69079
70366
|
*/
|
|
69080
70367
|
year?: number;
|
|
69081
70368
|
}
|
|
70369
|
+
export interface StandardWebPart extends Parsable, WebPart {
|
|
70370
|
+
/**
|
|
70371
|
+
* The containerTextWebPartId property
|
|
70372
|
+
*/
|
|
70373
|
+
containerTextWebPartId?: string;
|
|
70374
|
+
/**
|
|
70375
|
+
* The data property
|
|
70376
|
+
*/
|
|
70377
|
+
data?: WebPartData;
|
|
70378
|
+
/**
|
|
70379
|
+
* The webPartType property
|
|
70380
|
+
*/
|
|
70381
|
+
webPartType?: string;
|
|
70382
|
+
}
|
|
69082
70383
|
export interface StartHoldMusicOperation extends CommsOperation, Parsable {
|
|
69083
70384
|
}
|
|
69084
70385
|
export type StateManagementSetting = (typeof StateManagementSettingObject)[keyof typeof StateManagementSettingObject];
|
|
@@ -71699,6 +73000,12 @@ export interface TextColumn extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
71699
73000
|
*/
|
|
71700
73001
|
textType?: string;
|
|
71701
73002
|
}
|
|
73003
|
+
export interface TextWebPart extends Parsable, WebPart {
|
|
73004
|
+
/**
|
|
73005
|
+
* The innerHtml property
|
|
73006
|
+
*/
|
|
73007
|
+
innerHtml?: string;
|
|
73008
|
+
}
|
|
71702
73009
|
export type ThreatAssessmentContentType = (typeof ThreatAssessmentContentTypeObject)[keyof typeof ThreatAssessmentContentTypeObject];
|
|
71703
73010
|
export interface ThreatAssessmentRequest extends Entity, Parsable {
|
|
71704
73011
|
/**
|
|
@@ -72032,6 +73339,62 @@ export interface TimeZoneInformation extends AdditionalDataHolder, BackedModel,
|
|
|
72032
73339
|
*/
|
|
72033
73340
|
odataType?: string;
|
|
72034
73341
|
}
|
|
73342
|
+
export interface TitleArea extends AdditionalDataHolder, BackedModel, Parsable {
|
|
73343
|
+
/**
|
|
73344
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
73345
|
+
*/
|
|
73346
|
+
additionalData?: Record<string, unknown>;
|
|
73347
|
+
/**
|
|
73348
|
+
* The alternativeText property
|
|
73349
|
+
*/
|
|
73350
|
+
alternativeText?: string;
|
|
73351
|
+
/**
|
|
73352
|
+
* Stores model information.
|
|
73353
|
+
*/
|
|
73354
|
+
backingStoreEnabled?: boolean;
|
|
73355
|
+
/**
|
|
73356
|
+
* The enableGradientEffect property
|
|
73357
|
+
*/
|
|
73358
|
+
enableGradientEffect?: boolean;
|
|
73359
|
+
/**
|
|
73360
|
+
* The imageWebUrl property
|
|
73361
|
+
*/
|
|
73362
|
+
imageWebUrl?: string;
|
|
73363
|
+
/**
|
|
73364
|
+
* The layout property
|
|
73365
|
+
*/
|
|
73366
|
+
layout?: TitleAreaLayoutType;
|
|
73367
|
+
/**
|
|
73368
|
+
* The OdataType property
|
|
73369
|
+
*/
|
|
73370
|
+
odataType?: string;
|
|
73371
|
+
/**
|
|
73372
|
+
* The serverProcessedContent property
|
|
73373
|
+
*/
|
|
73374
|
+
serverProcessedContent?: ServerProcessedContent;
|
|
73375
|
+
/**
|
|
73376
|
+
* The showAuthor property
|
|
73377
|
+
*/
|
|
73378
|
+
showAuthor?: boolean;
|
|
73379
|
+
/**
|
|
73380
|
+
* The showPublishedDate property
|
|
73381
|
+
*/
|
|
73382
|
+
showPublishedDate?: boolean;
|
|
73383
|
+
/**
|
|
73384
|
+
* The showTextBlockAboveTitle property
|
|
73385
|
+
*/
|
|
73386
|
+
showTextBlockAboveTitle?: boolean;
|
|
73387
|
+
/**
|
|
73388
|
+
* The textAboveTitle property
|
|
73389
|
+
*/
|
|
73390
|
+
textAboveTitle?: string;
|
|
73391
|
+
/**
|
|
73392
|
+
* The textAlignment property
|
|
73393
|
+
*/
|
|
73394
|
+
textAlignment?: TitleAreaTextAlignmentType;
|
|
73395
|
+
}
|
|
73396
|
+
export type TitleAreaLayoutType = (typeof TitleAreaLayoutTypeObject)[keyof typeof TitleAreaLayoutTypeObject];
|
|
73397
|
+
export type TitleAreaTextAlignmentType = (typeof TitleAreaTextAlignmentTypeObject)[keyof typeof TitleAreaTextAlignmentTypeObject];
|
|
72035
73398
|
export interface Todo extends Entity, Parsable {
|
|
72036
73399
|
/**
|
|
72037
73400
|
* The task lists in the users mailbox.
|
|
@@ -72552,15 +73915,15 @@ export interface UnifiedRoleAssignmentCollectionResponse extends BaseCollectionP
|
|
|
72552
73915
|
}
|
|
72553
73916
|
export interface UnifiedRoleAssignmentSchedule extends Parsable, UnifiedRoleScheduleBase {
|
|
72554
73917
|
/**
|
|
72555
|
-
* If the request is from an eligible administrator to activate a role, this parameter
|
|
73918
|
+
* 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
73919
|
*/
|
|
72557
73920
|
activatedUsing?: UnifiedRoleEligibilitySchedule;
|
|
72558
73921
|
/**
|
|
72559
|
-
*
|
|
73922
|
+
* The type of the assignment that can either be Assigned or Activated. Supports $filter (eq, ne).
|
|
72560
73923
|
*/
|
|
72561
73924
|
assignmentType?: string;
|
|
72562
73925
|
/**
|
|
72563
|
-
* How the
|
|
73926
|
+
* 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
73927
|
*/
|
|
72565
73928
|
memberType?: string;
|
|
72566
73929
|
/**
|
|
@@ -72576,11 +73939,11 @@ export interface UnifiedRoleAssignmentScheduleCollectionResponse extends BaseCol
|
|
|
72576
73939
|
}
|
|
72577
73940
|
export interface UnifiedRoleAssignmentScheduleInstance extends Parsable, UnifiedRoleScheduleInstanceBase {
|
|
72578
73941
|
/**
|
|
72579
|
-
* If the request is from an eligible administrator to activate a role, this parameter
|
|
73942
|
+
* 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
73943
|
*/
|
|
72581
73944
|
activatedUsing?: UnifiedRoleEligibilityScheduleInstance;
|
|
72582
73945
|
/**
|
|
72583
|
-
*
|
|
73946
|
+
* The type of the assignment that can either be Assigned or Activated. Supports $filter (eq, ne).
|
|
72584
73947
|
*/
|
|
72585
73948
|
assignmentType?: string;
|
|
72586
73949
|
/**
|
|
@@ -72588,7 +73951,7 @@ export interface UnifiedRoleAssignmentScheduleInstance extends Parsable, Unified
|
|
|
72588
73951
|
*/
|
|
72589
73952
|
endDateTime?: Date;
|
|
72590
73953
|
/**
|
|
72591
|
-
* How the
|
|
73954
|
+
* 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
73955
|
*/
|
|
72593
73956
|
memberType?: string;
|
|
72594
73957
|
/**
|
|
@@ -72616,7 +73979,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72616
73979
|
*/
|
|
72617
73980
|
action?: UnifiedRoleScheduleRequestActions;
|
|
72618
73981
|
/**
|
|
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.
|
|
73982
|
+
* 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
73983
|
*/
|
|
72621
73984
|
activatedUsing?: UnifiedRoleEligibilitySchedule;
|
|
72622
73985
|
/**
|
|
@@ -72644,7 +74007,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72644
74007
|
*/
|
|
72645
74008
|
justification?: string;
|
|
72646
74009
|
/**
|
|
72647
|
-
* The principal that's getting a role assignment through the request. Supports $expand.
|
|
74010
|
+
* The principal that's getting a role assignment through the request. Supports $expand and $select nested in $expand for id only.
|
|
72648
74011
|
*/
|
|
72649
74012
|
principal?: DirectoryObject;
|
|
72650
74013
|
/**
|
|
@@ -72652,7 +74015,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72652
74015
|
*/
|
|
72653
74016
|
principalId?: string;
|
|
72654
74017
|
/**
|
|
72655
|
-
* Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand.
|
|
74018
|
+
* Detailed information for the unifiedRoleDefinition object that is referenced through the roleDefinitionId property. Supports $expand and $select nested in $expand.
|
|
72656
74019
|
*/
|
|
72657
74020
|
roleDefinition?: UnifiedRoleDefinition;
|
|
72658
74021
|
/**
|
|
@@ -72664,7 +74027,7 @@ export interface UnifiedRoleAssignmentScheduleRequest extends Parsable, Request
|
|
|
72664
74027
|
*/
|
|
72665
74028
|
scheduleInfo?: RequestSchedule;
|
|
72666
74029
|
/**
|
|
72667
|
-
* The schedule for an eligible role assignment that is referenced through the targetScheduleId property. Supports $expand.
|
|
74030
|
+
* The schedule for an eligible role assignment that is referenced through the targetScheduleId property. Supports $expand and $select nested in $expand.
|
|
72668
74031
|
*/
|
|
72669
74032
|
targetSchedule?: UnifiedRoleAssignmentSchedule;
|
|
72670
74033
|
/**
|
|
@@ -75893,6 +77256,16 @@ export interface VerifiedPublisher extends AdditionalDataHolder, BackedModel, Pa
|
|
|
75893
77256
|
*/
|
|
75894
77257
|
verifiedPublisherId?: string;
|
|
75895
77258
|
}
|
|
77259
|
+
export interface VerticalSection extends Entity, Parsable {
|
|
77260
|
+
/**
|
|
77261
|
+
* The emphasis property
|
|
77262
|
+
*/
|
|
77263
|
+
emphasis?: SectionEmphasisType;
|
|
77264
|
+
/**
|
|
77265
|
+
* The webparts property
|
|
77266
|
+
*/
|
|
77267
|
+
webparts?: WebPart[];
|
|
77268
|
+
}
|
|
75896
77269
|
export interface Video extends AdditionalDataHolder, BackedModel, Parsable {
|
|
75897
77270
|
/**
|
|
75898
77271
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -75949,6 +77322,18 @@ export interface Video extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
75949
77322
|
}
|
|
75950
77323
|
export type VirtualAppointmentMessageType = (typeof VirtualAppointmentMessageTypeObject)[keyof typeof VirtualAppointmentMessageTypeObject];
|
|
75951
77324
|
export interface VirtualEndpoint extends Entity, Parsable {
|
|
77325
|
+
/**
|
|
77326
|
+
* The auditEvents property
|
|
77327
|
+
*/
|
|
77328
|
+
auditEvents?: CloudPcAuditEvent[];
|
|
77329
|
+
/**
|
|
77330
|
+
* The provisioningPolicies property
|
|
77331
|
+
*/
|
|
77332
|
+
provisioningPolicies?: CloudPcProvisioningPolicy[];
|
|
77333
|
+
/**
|
|
77334
|
+
* The userSettings property
|
|
77335
|
+
*/
|
|
77336
|
+
userSettings?: CloudPcUserSetting[];
|
|
75952
77337
|
}
|
|
75953
77338
|
export interface VirtualEvent extends Entity, Parsable {
|
|
75954
77339
|
/**
|
|
@@ -76334,6 +77719,48 @@ export interface WebApplication extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
76334
77719
|
redirectUriSettings?: RedirectUriSettings[];
|
|
76335
77720
|
}
|
|
76336
77721
|
export type WebBrowserCookieSettings = (typeof WebBrowserCookieSettingsObject)[keyof typeof WebBrowserCookieSettingsObject];
|
|
77722
|
+
export interface WebPart extends Entity, Parsable {
|
|
77723
|
+
}
|
|
77724
|
+
export interface WebPartCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
77725
|
+
/**
|
|
77726
|
+
* The value property
|
|
77727
|
+
*/
|
|
77728
|
+
value?: WebPart[];
|
|
77729
|
+
}
|
|
77730
|
+
export interface WebPartData extends AdditionalDataHolder, BackedModel, Parsable {
|
|
77731
|
+
/**
|
|
77732
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
77733
|
+
*/
|
|
77734
|
+
additionalData?: Record<string, unknown>;
|
|
77735
|
+
/**
|
|
77736
|
+
* Stores model information.
|
|
77737
|
+
*/
|
|
77738
|
+
backingStoreEnabled?: boolean;
|
|
77739
|
+
/**
|
|
77740
|
+
* The dataVersion property
|
|
77741
|
+
*/
|
|
77742
|
+
dataVersion?: string;
|
|
77743
|
+
/**
|
|
77744
|
+
* The description property
|
|
77745
|
+
*/
|
|
77746
|
+
description?: string;
|
|
77747
|
+
/**
|
|
77748
|
+
* The OdataType property
|
|
77749
|
+
*/
|
|
77750
|
+
odataType?: string;
|
|
77751
|
+
/**
|
|
77752
|
+
* The properties property
|
|
77753
|
+
*/
|
|
77754
|
+
properties?: Json;
|
|
77755
|
+
/**
|
|
77756
|
+
* The serverProcessedContent property
|
|
77757
|
+
*/
|
|
77758
|
+
serverProcessedContent?: ServerProcessedContent;
|
|
77759
|
+
/**
|
|
77760
|
+
* The title property
|
|
77761
|
+
*/
|
|
77762
|
+
title?: string;
|
|
77763
|
+
}
|
|
76337
77764
|
export interface Website extends AdditionalDataHolder, BackedModel, Parsable {
|
|
76338
77765
|
/**
|
|
76339
77766
|
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
@@ -81987,6 +83414,70 @@ export declare const CloudAppSecuritySessionControlTypeObject: {
|
|
|
81987
83414
|
readonly BlockDownloads: "blockDownloads";
|
|
81988
83415
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
81989
83416
|
};
|
|
83417
|
+
export declare const CloudPcAuditActivityOperationTypeObject: {
|
|
83418
|
+
readonly Create: "create";
|
|
83419
|
+
readonly Delete: "delete";
|
|
83420
|
+
readonly Patch: "patch";
|
|
83421
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83422
|
+
};
|
|
83423
|
+
export declare const CloudPcAuditActivityResultObject: {
|
|
83424
|
+
readonly Success: "success";
|
|
83425
|
+
readonly ClientError: "clientError";
|
|
83426
|
+
readonly Failure: "failure";
|
|
83427
|
+
readonly Timeout: "timeout";
|
|
83428
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83429
|
+
};
|
|
83430
|
+
export declare const CloudPcAuditCategoryObject: {
|
|
83431
|
+
readonly CloudPC: "cloudPC";
|
|
83432
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83433
|
+
};
|
|
83434
|
+
export declare const CloudPcDomainJoinTypeObject: {
|
|
83435
|
+
readonly AzureADJoin: "azureADJoin";
|
|
83436
|
+
readonly HybridAzureADJoin: "hybridAzureADJoin";
|
|
83437
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83438
|
+
};
|
|
83439
|
+
export declare const CloudPcProvisioningPolicyImageTypeObject: {
|
|
83440
|
+
readonly Gallery: "gallery";
|
|
83441
|
+
readonly Custom: "custom";
|
|
83442
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83443
|
+
};
|
|
83444
|
+
export declare const CloudPcProvisioningTypeObject: {
|
|
83445
|
+
readonly Dedicated: "dedicated";
|
|
83446
|
+
readonly Shared: "shared";
|
|
83447
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83448
|
+
};
|
|
83449
|
+
export declare const CloudPcRegionGroupObject: {
|
|
83450
|
+
readonly DefaultEscaped: "default";
|
|
83451
|
+
readonly Australia: "australia";
|
|
83452
|
+
readonly Canada: "canada";
|
|
83453
|
+
readonly UsCentral: "usCentral";
|
|
83454
|
+
readonly UsEast: "usEast";
|
|
83455
|
+
readonly UsWest: "usWest";
|
|
83456
|
+
readonly France: "france";
|
|
83457
|
+
readonly Germany: "germany";
|
|
83458
|
+
readonly EuropeUnion: "europeUnion";
|
|
83459
|
+
readonly UnitedKingdom: "unitedKingdom";
|
|
83460
|
+
readonly Japan: "japan";
|
|
83461
|
+
readonly Asia: "asia";
|
|
83462
|
+
readonly India: "india";
|
|
83463
|
+
readonly SouthAmerica: "southAmerica";
|
|
83464
|
+
readonly Euap: "euap";
|
|
83465
|
+
readonly UsGovernment: "usGovernment";
|
|
83466
|
+
readonly UsGovernmentDOD: "usGovernmentDOD";
|
|
83467
|
+
readonly Norway: "norway";
|
|
83468
|
+
readonly Switzerland: "switzerland";
|
|
83469
|
+
readonly SouthKorea: "southKorea";
|
|
83470
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83471
|
+
};
|
|
83472
|
+
export declare const CloudPcRestorePointFrequencyTypeObject: {
|
|
83473
|
+
readonly DefaultEscaped: "default";
|
|
83474
|
+
readonly FourHours: "fourHours";
|
|
83475
|
+
readonly SixHours: "sixHours";
|
|
83476
|
+
readonly TwelveHours: "twelveHours";
|
|
83477
|
+
readonly SixteenHours: "sixteenHours";
|
|
83478
|
+
readonly TwentyFourHours: "twentyFourHours";
|
|
83479
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83480
|
+
};
|
|
81990
83481
|
export declare const CoachmarkLocationTypeObject: {
|
|
81991
83482
|
readonly Unknown: "unknown";
|
|
81992
83483
|
readonly FromEmail: "fromEmail";
|
|
@@ -82593,6 +84084,37 @@ export declare const DeviceManagementSubscriptionStateObject: {
|
|
|
82593
84084
|
/** LockedOut */
|
|
82594
84085
|
readonly LockedOut: "lockedOut";
|
|
82595
84086
|
};
|
|
84087
|
+
/**
|
|
84088
|
+
* Supported platform types.
|
|
84089
|
+
*/
|
|
84090
|
+
export declare const DevicePlatformTypeObject: {
|
|
84091
|
+
/** Android. */
|
|
84092
|
+
readonly Android: "android";
|
|
84093
|
+
/** AndroidForWork. */
|
|
84094
|
+
readonly AndroidForWork: "androidForWork";
|
|
84095
|
+
/** iOS. */
|
|
84096
|
+
readonly IOS: "iOS";
|
|
84097
|
+
/** MacOS. */
|
|
84098
|
+
readonly MacOS: "macOS";
|
|
84099
|
+
/** WindowsPhone 8.1. */
|
|
84100
|
+
readonly WindowsPhone81: "windowsPhone81";
|
|
84101
|
+
/** Windows 8.1 and later */
|
|
84102
|
+
readonly Windows81AndLater: "windows81AndLater";
|
|
84103
|
+
/** Windows 10 and later. */
|
|
84104
|
+
readonly Windows10AndLater: "windows10AndLater";
|
|
84105
|
+
/** Android Work Profile. */
|
|
84106
|
+
readonly AndroidWorkProfile: "androidWorkProfile";
|
|
84107
|
+
/** Unknown. */
|
|
84108
|
+
readonly Unknown: "unknown";
|
|
84109
|
+
/** Android AOSP. */
|
|
84110
|
+
readonly AndroidAOSP: "androidAOSP";
|
|
84111
|
+
/** Indicates Mobile Application Management (MAM) for android devices. */
|
|
84112
|
+
readonly AndroidMobileApplicationManagement: "androidMobileApplicationManagement";
|
|
84113
|
+
/** Indicates Mobile Application Management (MAM) for iOS devices */
|
|
84114
|
+
readonly IOSMobileApplicationManagement: "iOSMobileApplicationManagement";
|
|
84115
|
+
/** Evolvable enumeration sentinel value. Do not use */
|
|
84116
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84117
|
+
};
|
|
82596
84118
|
/**
|
|
82597
84119
|
* Device registration status.
|
|
82598
84120
|
*/
|
|
@@ -82958,6 +84480,16 @@ export declare const GroupTypeObject: {
|
|
|
82958
84480
|
readonly AzureAD: "azureAD";
|
|
82959
84481
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
82960
84482
|
};
|
|
84483
|
+
export declare const HorizontalSectionLayoutTypeObject: {
|
|
84484
|
+
readonly None: "none";
|
|
84485
|
+
readonly OneColumn: "oneColumn";
|
|
84486
|
+
readonly TwoColumns: "twoColumns";
|
|
84487
|
+
readonly ThreeColumns: "threeColumns";
|
|
84488
|
+
readonly OneThirdLeftColumn: "oneThirdLeftColumn";
|
|
84489
|
+
readonly OneThirdRightColumn: "oneThirdRightColumn";
|
|
84490
|
+
readonly FullWidth: "fullWidth";
|
|
84491
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84492
|
+
};
|
|
82961
84493
|
export declare const IdentityUserFlowAttributeDataTypeObject: {
|
|
82962
84494
|
readonly String: "string";
|
|
82963
84495
|
readonly Boolean: "boolean";
|
|
@@ -83450,6 +84982,13 @@ export declare const MicrosoftEdgeChannelObject: {
|
|
|
83450
84982
|
/** Evolvable enumeration sentinel value. Do not use. */
|
|
83451
84983
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83452
84984
|
};
|
|
84985
|
+
export declare const MicrosoftManagedDesktopTypeObject: {
|
|
84986
|
+
readonly NotManaged: "notManaged";
|
|
84987
|
+
readonly PremiumManaged: "premiumManaged";
|
|
84988
|
+
readonly StandardManaged: "standardManaged";
|
|
84989
|
+
readonly StarterManaged: "starterManaged";
|
|
84990
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
84991
|
+
};
|
|
83453
84992
|
export declare const MicrosoftStoreForBusinessLicenseTypeObject: {
|
|
83454
84993
|
readonly Offline: "offline";
|
|
83455
84994
|
readonly Online: "online";
|
|
@@ -83728,6 +85267,18 @@ export declare const OutlierMemberTypeObject: {
|
|
|
83728
85267
|
readonly User: "user";
|
|
83729
85268
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
83730
85269
|
};
|
|
85270
|
+
export declare const PageLayoutTypeObject: {
|
|
85271
|
+
readonly MicrosoftReserved: "microsoftReserved";
|
|
85272
|
+
readonly Article: "article";
|
|
85273
|
+
readonly Home: "home";
|
|
85274
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85275
|
+
};
|
|
85276
|
+
export declare const PagePromotionTypeObject: {
|
|
85277
|
+
readonly MicrosoftReserved: "microsoftReserved";
|
|
85278
|
+
readonly Page: "page";
|
|
85279
|
+
readonly NewsPost: "newsPost";
|
|
85280
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85281
|
+
};
|
|
83731
85282
|
export declare const PartnerTenantTypeObject: {
|
|
83732
85283
|
readonly MicrosoftSupport: "microsoftSupport";
|
|
83733
85284
|
readonly SyndicatePartner: "syndicatePartner";
|
|
@@ -85534,6 +87085,13 @@ export declare const SearchContentObject: {
|
|
|
85534
87085
|
readonly PrivateContent: "privateContent";
|
|
85535
87086
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
85536
87087
|
};
|
|
87088
|
+
export declare const SectionEmphasisTypeObject: {
|
|
87089
|
+
readonly None: "none";
|
|
87090
|
+
readonly Neutral: "neutral";
|
|
87091
|
+
readonly Soft: "soft";
|
|
87092
|
+
readonly Strong: "strong";
|
|
87093
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87094
|
+
};
|
|
85537
87095
|
export declare const SecurityNetworkProtocolObject: {
|
|
85538
87096
|
readonly Unknown: "unknown";
|
|
85539
87097
|
readonly Ip: "ip";
|
|
@@ -86085,6 +87643,18 @@ export declare const TimeOffReasonIconTypeObject: {
|
|
|
86085
87643
|
readonly Sunny: "sunny";
|
|
86086
87644
|
readonly UnknownFutureValue: "unknownFutureValue";
|
|
86087
87645
|
};
|
|
87646
|
+
export declare const TitleAreaLayoutTypeObject: {
|
|
87647
|
+
readonly ImageAndTitle: "imageAndTitle";
|
|
87648
|
+
readonly Plain: "plain";
|
|
87649
|
+
readonly ColorBlock: "colorBlock";
|
|
87650
|
+
readonly Overlap: "overlap";
|
|
87651
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87652
|
+
};
|
|
87653
|
+
export declare const TitleAreaTextAlignmentTypeObject: {
|
|
87654
|
+
readonly Left: "left";
|
|
87655
|
+
readonly Center: "center";
|
|
87656
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
87657
|
+
};
|
|
86088
87658
|
export declare const TokenIssuerTypeObject: {
|
|
86089
87659
|
readonly AzureAD: "AzureAD";
|
|
86090
87660
|
readonly ADFederationServices: "ADFederationServices";
|