@microsoft/msgraph-sdk 1.0.0-preview.18 → 1.0.0-preview.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/index.d.ts +145 -141
- package/models/index.d.ts.map +1 -1
- package/models/index.js +2 -1
- package/models/security/index.d.ts +8 -0
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +4 -2
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/models/index.d.ts
CHANGED
|
@@ -8743,59 +8743,59 @@ export interface CloudCommunications extends AdditionalDataHolder, BackedModel,
|
|
|
8743
8743
|
}
|
|
8744
8744
|
export interface CloudPC extends Entity, Parsable {
|
|
8745
8745
|
/**
|
|
8746
|
-
* The
|
|
8746
|
+
* The Microsoft Entra device ID for the Cloud PC, also known as the Azure Active Directory (Azure AD) device ID, that consists of 32 characters in a GUID format. Generated on a VM joined to Microsoft Entra ID. Read-only.
|
|
8747
8747
|
*/
|
|
8748
8748
|
aadDeviceId?: string;
|
|
8749
8749
|
/**
|
|
8750
|
-
* The
|
|
8750
|
+
* The display name for the Cloud PC. Maximum length is 64 characters. Read-only. You can use the cloudPC: rename API to modify the Cloud PC name.
|
|
8751
8751
|
*/
|
|
8752
8752
|
displayName?: string;
|
|
8753
8753
|
/**
|
|
8754
|
-
* The
|
|
8754
|
+
* The date and time when the grace period ends and reprovisioning or deprovisioning happen. Required only if the status is inGracePeriod. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
8755
8755
|
*/
|
|
8756
8756
|
gracePeriodEndDateTime?: Date;
|
|
8757
8757
|
/**
|
|
8758
|
-
* The
|
|
8758
|
+
* The name of the operating system image used for the Cloud PC. Maximum length is 50 characters. Only letters (A-Z, a-z), numbers (0-9), and special characters (-,,.) are allowed for this property. The property value can't begin or end with an underscore. Read-only.
|
|
8759
8759
|
*/
|
|
8760
8760
|
imageDisplayName?: string;
|
|
8761
8761
|
/**
|
|
8762
|
-
* The
|
|
8762
|
+
* The last modified date and time of the Cloud PC. 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.
|
|
8763
8763
|
*/
|
|
8764
8764
|
lastModifiedDateTime?: Date;
|
|
8765
8765
|
/**
|
|
8766
|
-
* The managedDeviceId property
|
|
8766
|
+
* The Intune enrolled device ID for the Cloud PC that consists of 32 characters in a GUID format. The managedDeviceId property of Windows 365 Business Cloud PCs is always null as Windows 365 Business Cloud PCs aren't Intune-enrolled automatically by Windows 365. Read-only.
|
|
8767
8767
|
*/
|
|
8768
8768
|
managedDeviceId?: string;
|
|
8769
8769
|
/**
|
|
8770
|
-
* The managedDeviceName property
|
|
8770
|
+
* The Intune enrolled device name for the Cloud PC. The managedDeviceName property of Windows 365 Business Cloud PCs is always null as Windows 365 Business Cloud PCs aren't Intune-enrolled automatically by Windows 365. Read-only.
|
|
8771
8771
|
*/
|
|
8772
8772
|
managedDeviceName?: string;
|
|
8773
8773
|
/**
|
|
8774
|
-
* The
|
|
8774
|
+
* The on-premises connection that applied during the provisioning of Cloud PCs. Read-only.
|
|
8775
8775
|
*/
|
|
8776
8776
|
onPremisesConnectionName?: string;
|
|
8777
8777
|
/**
|
|
8778
|
-
* The
|
|
8778
|
+
* The provisioning policy ID for the Cloud PC that consists of 32 characters in a GUID format. A policy defines the type of Cloud PC the user wants to create. Read-only.
|
|
8779
8779
|
*/
|
|
8780
8780
|
provisioningPolicyId?: string;
|
|
8781
8781
|
/**
|
|
8782
|
-
* The
|
|
8782
|
+
* The provisioning policy that applied during the provisioning of Cloud PCs. Maximum length is 120 characters. Read-only.
|
|
8783
8783
|
*/
|
|
8784
8784
|
provisioningPolicyName?: string;
|
|
8785
8785
|
/**
|
|
8786
|
-
* The
|
|
8786
|
+
* The type of licenses to be used when provisioning Cloud PCs using this policy. Possible values are: dedicated, shared, unknownFutureValue. The default value is dedicated.
|
|
8787
8787
|
*/
|
|
8788
8788
|
provisioningType?: CloudPcProvisioningType;
|
|
8789
8789
|
/**
|
|
8790
|
-
* The
|
|
8790
|
+
* The service plan ID for the Cloud PC that consists of 32 characters in a GUID format. For more information about service plans, see Product names and service plan identifiers for licensing. Read-only.
|
|
8791
8791
|
*/
|
|
8792
8792
|
servicePlanId?: string;
|
|
8793
8793
|
/**
|
|
8794
|
-
* The
|
|
8794
|
+
* The service plan name for the customer-facing Cloud PC entity. Read-only.
|
|
8795
8795
|
*/
|
|
8796
8796
|
servicePlanName?: string;
|
|
8797
8797
|
/**
|
|
8798
|
-
* The
|
|
8798
|
+
* The user principal name (UPN) of the user assigned to the Cloud PC. Maximum length is 113 characters. For more information on username policies, see Password policies and account restrictions in Microsoft Entra ID. Read-only.
|
|
8799
8799
|
*/
|
|
8800
8800
|
userPrincipalName?: string;
|
|
8801
8801
|
}
|
|
@@ -8807,11 +8807,11 @@ export interface CloudPcAuditActor extends AdditionalDataHolder, BackedModel, Pa
|
|
|
8807
8807
|
*/
|
|
8808
8808
|
additionalData?: Record<string, unknown>;
|
|
8809
8809
|
/**
|
|
8810
|
-
*
|
|
8810
|
+
* Name of the application.
|
|
8811
8811
|
*/
|
|
8812
8812
|
applicationDisplayName?: string;
|
|
8813
8813
|
/**
|
|
8814
|
-
*
|
|
8814
|
+
* Microsoft Entra application ID.
|
|
8815
8815
|
*/
|
|
8816
8816
|
applicationId?: string;
|
|
8817
8817
|
/**
|
|
@@ -8819,7 +8819,7 @@ export interface CloudPcAuditActor extends AdditionalDataHolder, BackedModel, Pa
|
|
|
8819
8819
|
*/
|
|
8820
8820
|
backingStoreEnabled?: boolean;
|
|
8821
8821
|
/**
|
|
8822
|
-
*
|
|
8822
|
+
* IP address.
|
|
8823
8823
|
*/
|
|
8824
8824
|
ipAddress?: string;
|
|
8825
8825
|
/**
|
|
@@ -8827,42 +8827,42 @@ export interface CloudPcAuditActor extends AdditionalDataHolder, BackedModel, Pa
|
|
|
8827
8827
|
*/
|
|
8828
8828
|
odataType?: string;
|
|
8829
8829
|
/**
|
|
8830
|
-
* The
|
|
8830
|
+
* The delegated partner tenant ID.
|
|
8831
8831
|
*/
|
|
8832
8832
|
remoteTenantId?: string;
|
|
8833
8833
|
/**
|
|
8834
|
-
* The
|
|
8834
|
+
* The delegated partner user ID.
|
|
8835
8835
|
*/
|
|
8836
8836
|
remoteUserId?: string;
|
|
8837
8837
|
/**
|
|
8838
|
-
*
|
|
8838
|
+
* Service Principal Name (SPN).
|
|
8839
8839
|
*/
|
|
8840
8840
|
servicePrincipalName?: string;
|
|
8841
8841
|
/**
|
|
8842
|
-
*
|
|
8842
|
+
* Microsoft Entra user ID.
|
|
8843
8843
|
*/
|
|
8844
8844
|
userId?: string;
|
|
8845
8845
|
/**
|
|
8846
|
-
*
|
|
8846
|
+
* List of user permissions and application permissions when the audit event was performed.
|
|
8847
8847
|
*/
|
|
8848
8848
|
userPermissions?: string[];
|
|
8849
8849
|
/**
|
|
8850
|
-
*
|
|
8850
|
+
* User Principal Name (UPN).
|
|
8851
8851
|
*/
|
|
8852
8852
|
userPrincipalName?: string;
|
|
8853
8853
|
/**
|
|
8854
|
-
*
|
|
8854
|
+
* List of role scope tags.
|
|
8855
8855
|
*/
|
|
8856
8856
|
userRoleScopeTags?: CloudPcUserRoleScopeTagInfo[];
|
|
8857
8857
|
}
|
|
8858
8858
|
export type CloudPcAuditCategory = (typeof CloudPcAuditCategoryObject)[keyof typeof CloudPcAuditCategoryObject];
|
|
8859
8859
|
export interface CloudPcAuditEvent extends Entity, Parsable {
|
|
8860
8860
|
/**
|
|
8861
|
-
* The activity
|
|
8861
|
+
* The friendly name of the audit activity.
|
|
8862
8862
|
*/
|
|
8863
8863
|
activity?: string;
|
|
8864
8864
|
/**
|
|
8865
|
-
* The
|
|
8865
|
+
* The date time in UTC when the activity was performed. Read-only.
|
|
8866
8866
|
*/
|
|
8867
8867
|
activityDateTime?: Date;
|
|
8868
8868
|
/**
|
|
@@ -8874,7 +8874,7 @@ export interface CloudPcAuditEvent extends Entity, Parsable {
|
|
|
8874
8874
|
*/
|
|
8875
8875
|
activityResult?: CloudPcAuditActivityResult;
|
|
8876
8876
|
/**
|
|
8877
|
-
* The
|
|
8877
|
+
* The type of activity that was performed. Read-only.
|
|
8878
8878
|
*/
|
|
8879
8879
|
activityType?: string;
|
|
8880
8880
|
/**
|
|
@@ -8886,19 +8886,19 @@ export interface CloudPcAuditEvent extends Entity, Parsable {
|
|
|
8886
8886
|
*/
|
|
8887
8887
|
category?: CloudPcAuditCategory;
|
|
8888
8888
|
/**
|
|
8889
|
-
* The
|
|
8889
|
+
* The component name for the audit event. Read-only.
|
|
8890
8890
|
*/
|
|
8891
8891
|
componentName?: string;
|
|
8892
8892
|
/**
|
|
8893
|
-
* The
|
|
8893
|
+
* The client request ID that is used to correlate activity within the system. Read-only.
|
|
8894
8894
|
*/
|
|
8895
8895
|
correlationId?: string;
|
|
8896
8896
|
/**
|
|
8897
|
-
* The
|
|
8897
|
+
* The display name for the audit event. Read-only.
|
|
8898
8898
|
*/
|
|
8899
8899
|
displayName?: string;
|
|
8900
8900
|
/**
|
|
8901
|
-
* The
|
|
8901
|
+
* The list of cloudPcAuditResource objects. Read-only.
|
|
8902
8902
|
*/
|
|
8903
8903
|
resources?: CloudPcAuditResource[];
|
|
8904
8904
|
}
|
|
@@ -8918,11 +8918,11 @@ export interface CloudPcAuditProperty extends AdditionalDataHolder, BackedModel,
|
|
|
8918
8918
|
*/
|
|
8919
8919
|
backingStoreEnabled?: boolean;
|
|
8920
8920
|
/**
|
|
8921
|
-
* The
|
|
8921
|
+
* The display name for this property.
|
|
8922
8922
|
*/
|
|
8923
8923
|
displayName?: string;
|
|
8924
8924
|
/**
|
|
8925
|
-
* The
|
|
8925
|
+
* The new value for this property.
|
|
8926
8926
|
*/
|
|
8927
8927
|
newValue?: string;
|
|
8928
8928
|
/**
|
|
@@ -8930,7 +8930,7 @@ export interface CloudPcAuditProperty extends AdditionalDataHolder, BackedModel,
|
|
|
8930
8930
|
*/
|
|
8931
8931
|
odataType?: string;
|
|
8932
8932
|
/**
|
|
8933
|
-
* The
|
|
8933
|
+
* The old value for this property.
|
|
8934
8934
|
*/
|
|
8935
8935
|
oldValue?: string;
|
|
8936
8936
|
}
|
|
@@ -8944,11 +8944,11 @@ export interface CloudPcAuditResource extends AdditionalDataHolder, BackedModel,
|
|
|
8944
8944
|
*/
|
|
8945
8945
|
backingStoreEnabled?: boolean;
|
|
8946
8946
|
/**
|
|
8947
|
-
* The
|
|
8947
|
+
* The display name of the modified resource entity.
|
|
8948
8948
|
*/
|
|
8949
8949
|
displayName?: string;
|
|
8950
8950
|
/**
|
|
8951
|
-
* The
|
|
8951
|
+
* The list of modified properties.
|
|
8952
8952
|
*/
|
|
8953
8953
|
modifiedProperties?: CloudPcAuditProperty[];
|
|
8954
8954
|
/**
|
|
@@ -8956,7 +8956,7 @@ export interface CloudPcAuditResource extends AdditionalDataHolder, BackedModel,
|
|
|
8956
8956
|
*/
|
|
8957
8957
|
odataType?: string;
|
|
8958
8958
|
/**
|
|
8959
|
-
* The
|
|
8959
|
+
* The unique identifier of the modified resource entity.
|
|
8960
8960
|
*/
|
|
8961
8961
|
resourceId?: string;
|
|
8962
8962
|
}
|
|
@@ -8968,43 +8968,43 @@ export interface CloudPCCollectionResponse extends BaseCollectionPaginationCount
|
|
|
8968
8968
|
}
|
|
8969
8969
|
export interface CloudPcDeviceImage extends Entity, Parsable {
|
|
8970
8970
|
/**
|
|
8971
|
-
* The
|
|
8971
|
+
* The display name of the associated device image. The device image display name and the version are used to uniquely identify the Cloud PC device image. Read-only.
|
|
8972
8972
|
*/
|
|
8973
8973
|
displayName?: string;
|
|
8974
8974
|
/**
|
|
8975
|
-
* The
|
|
8975
|
+
* The error code of the status of the image that indicates why the upload failed, if applicable. Possible values are: internalServerError, sourceImageNotFound, osVersionNotSupported, sourceImageInvalid, sourceImageNotGeneralized, unknownFutureValue, vmAlreadyAzureAdJoined, paidSourceImageNotSupport, sourceImageNotSupportCustomizeVMName, sourceImageSizeExceedsLimitation. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: vmAlreadyAzureAdJoined, paidSourceImageNotSupport, sourceImageNotSupportCustomizeVMName, sourceImageSizeExceedsLimitation. Read-only.
|
|
8976
8976
|
*/
|
|
8977
8977
|
errorCode?: CloudPcDeviceImageErrorCode;
|
|
8978
8978
|
/**
|
|
8979
|
-
* The
|
|
8979
|
+
* The date when the image became unavailable. Read-only.
|
|
8980
8980
|
*/
|
|
8981
8981
|
expirationDate?: DateOnly;
|
|
8982
8982
|
/**
|
|
8983
|
-
* The
|
|
8983
|
+
* The data and time when the image was last modified. The timestamp 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. Read-only.
|
|
8984
8984
|
*/
|
|
8985
8985
|
lastModifiedDateTime?: Date;
|
|
8986
8986
|
/**
|
|
8987
|
-
* The
|
|
8987
|
+
* The operating system (OS) of the image. For example, Windows 10 Enterprise. Read-only.
|
|
8988
8988
|
*/
|
|
8989
8989
|
operatingSystem?: string;
|
|
8990
8990
|
/**
|
|
8991
|
-
* The
|
|
8991
|
+
* The OS build version of the image. For example, 1909. Read-only.
|
|
8992
8992
|
*/
|
|
8993
8993
|
osBuildNumber?: string;
|
|
8994
8994
|
/**
|
|
8995
|
-
* The
|
|
8995
|
+
* The OS status of this image. Possible values are: supported, supportedWithWarning, unknown, unknownFutureValue. The default value is unknown. Read-only.
|
|
8996
8996
|
*/
|
|
8997
8997
|
osStatus?: CloudPcDeviceImageOsStatus;
|
|
8998
8998
|
/**
|
|
8999
|
-
* The
|
|
8999
|
+
* The unique identifier (ID) of the source image resource on Azure. The required ID format is: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images/{imageName}'. Read-only.
|
|
9000
9000
|
*/
|
|
9001
9001
|
sourceImageResourceId?: string;
|
|
9002
9002
|
/**
|
|
9003
|
-
* The status
|
|
9003
|
+
* The status of the image on the Cloud PC. Possible values are: pending, ready, failed, unknownFutureValue. Read-only.
|
|
9004
9004
|
*/
|
|
9005
9005
|
status?: CloudPcDeviceImageStatus;
|
|
9006
9006
|
/**
|
|
9007
|
-
* The version
|
|
9007
|
+
* The image version. For example, 0.0.1 and 1.5.13. Read-only.
|
|
9008
9008
|
*/
|
|
9009
9009
|
version?: string;
|
|
9010
9010
|
}
|
|
@@ -9027,7 +9027,7 @@ export interface CloudPcDomainJoinConfiguration extends AdditionalDataHolder, Ba
|
|
|
9027
9027
|
*/
|
|
9028
9028
|
backingStoreEnabled?: boolean;
|
|
9029
9029
|
/**
|
|
9030
|
-
*
|
|
9030
|
+
* Specifies the method by which the provisioned Cloud PC joins Microsoft Entra ID. If you choose the hybridAzureADJoin type, only provide a value for the onPremisesConnectionId property and leave the regionName property empty. If you choose the azureADJoin type, provide a value for either the onPremisesConnectionId or the regionName property. Possible values are: azureADJoin, hybridAzureADJoin, unknownFutureValue.
|
|
9031
9031
|
*/
|
|
9032
9032
|
domainJoinType?: CloudPcDomainJoinType;
|
|
9033
9033
|
/**
|
|
@@ -9035,54 +9035,54 @@ export interface CloudPcDomainJoinConfiguration extends AdditionalDataHolder, Ba
|
|
|
9035
9035
|
*/
|
|
9036
9036
|
odataType?: string;
|
|
9037
9037
|
/**
|
|
9038
|
-
* The onPremisesConnectionId property
|
|
9038
|
+
* The Azure network connection ID that matches the virtual network IT admins want the provisioning policy to use when they create Cloud PCs. You can use this property in both domain join types: Azure AD joined or Hybrid Microsoft Entra joined. If you enter an onPremisesConnectionId, leave the regionName property empty.
|
|
9039
9039
|
*/
|
|
9040
9040
|
onPremisesConnectionId?: string;
|
|
9041
9041
|
/**
|
|
9042
|
-
* The regionGroup
|
|
9042
|
+
* The logical geographic group this region belongs to. Multiple regions can belong to one region group. A customer can select a regionGroup when they provision a Cloud PC, and the Cloud PC is put in one of the regions in the group based on resource status. For example, the Europe region group contains the Northern Europe and Western Europe regions. Possible values are: default, australia, canada, usCentral, usEast, usWest, france, germany, europeUnion, unitedKingdom, japan, asia, india, southAmerica, euap, usGovernment, usGovernmentDOD, unknownFutureValue, norway, switzerland, southKorea. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: norway, switzerland, southKorea. Read-only.
|
|
9043
9043
|
*/
|
|
9044
9044
|
regionGroup?: CloudPcRegionGroup;
|
|
9045
9045
|
/**
|
|
9046
|
-
* The regionName property
|
|
9046
|
+
* The supported Azure region where the IT admin wants the provisioning policy to create Cloud PCs. Within this region, the Windows 365 service creates and manages the underlying virtual network. This option is available only when the IT admin selects Microsoft Entra joined as the domain join type. If you enter a regionName, leave the onPremisesConnectionId property empty.
|
|
9047
9047
|
*/
|
|
9048
9048
|
regionName?: string;
|
|
9049
9049
|
}
|
|
9050
9050
|
export type CloudPcDomainJoinType = (typeof CloudPcDomainJoinTypeObject)[keyof typeof CloudPcDomainJoinTypeObject];
|
|
9051
9051
|
export interface CloudPcGalleryImage extends Entity, Parsable {
|
|
9052
9052
|
/**
|
|
9053
|
-
* The
|
|
9053
|
+
* The display name of this gallery image. For example, Windows 11 Enterprise + Microsoft 365 Apps 22H2. Read-only.
|
|
9054
9054
|
*/
|
|
9055
9055
|
displayName?: string;
|
|
9056
9056
|
/**
|
|
9057
|
-
* The endDate
|
|
9057
|
+
* The date when the status of the image becomes supportedWithWarning. Users can still provision new Cloud PCs if the current time is later than endDate and earlier than expirationDate. For example, assume the endDate of a gallery image is 2023-9-14 and expirationDate is 2024-3-14, users are able to provision new Cloud PCs if today is 2023-10-01. Read-only.
|
|
9058
9058
|
*/
|
|
9059
9059
|
endDate?: DateOnly;
|
|
9060
9060
|
/**
|
|
9061
|
-
* The expirationDate
|
|
9061
|
+
* The date when the image is no longer available. Users are unable to provision new Cloud PCs if the current time is later than expirationDate. The value is usually endDate plus six months. For example, if the startDate is 2025-10-14, the expirationDate is usually 2026-04-14. Read-only.
|
|
9062
9062
|
*/
|
|
9063
9063
|
expirationDate?: DateOnly;
|
|
9064
9064
|
/**
|
|
9065
|
-
* The
|
|
9065
|
+
* The offer name of this gallery image that is passed to Azure Resource Manager (ARM) to retrieve the image resource. Read-only.
|
|
9066
9066
|
*/
|
|
9067
9067
|
offerName?: string;
|
|
9068
9068
|
/**
|
|
9069
|
-
* The
|
|
9069
|
+
* The publisher name of this gallery image that is passed to Azure Resource Manager (ARM) to retrieve the image resource. Read-only.
|
|
9070
9070
|
*/
|
|
9071
9071
|
publisherName?: string;
|
|
9072
9072
|
/**
|
|
9073
|
-
*
|
|
9073
|
+
* Indicates the size of this image in gigabytes. For example, 64. Read-only.
|
|
9074
9074
|
*/
|
|
9075
9075
|
sizeInGB?: number;
|
|
9076
9076
|
/**
|
|
9077
|
-
* The
|
|
9077
|
+
* The SKU name of this image that is passed to Azure Resource Manager (ARM) to retrieve the image resource. Read-only.
|
|
9078
9078
|
*/
|
|
9079
9079
|
skuName?: string;
|
|
9080
9080
|
/**
|
|
9081
|
-
* The
|
|
9081
|
+
* The date when the Cloud PC image is available for provisioning new Cloud PCs. For example, 2022-09-20. Read-only.
|
|
9082
9082
|
*/
|
|
9083
9083
|
startDate?: DateOnly;
|
|
9084
9084
|
/**
|
|
9085
|
-
* The status
|
|
9085
|
+
* The status of the gallery image on the Cloud PC. Possible values are: supported, supportedWithWarning, notSupported, unknownFutureValue. The default value is supported. Read-only.
|
|
9086
9086
|
*/
|
|
9087
9087
|
status?: CloudPcGalleryImageStatus;
|
|
9088
9088
|
}
|
|
@@ -9109,37 +9109,37 @@ export interface CloudPcManagementAssignmentTarget extends AdditionalDataHolder,
|
|
|
9109
9109
|
}
|
|
9110
9110
|
export interface CloudPcManagementGroupAssignmentTarget extends CloudPcManagementAssignmentTarget, Parsable {
|
|
9111
9111
|
/**
|
|
9112
|
-
* The
|
|
9112
|
+
* The ID of the target group for the assignment.
|
|
9113
9113
|
*/
|
|
9114
9114
|
groupId?: string;
|
|
9115
9115
|
/**
|
|
9116
|
-
* The
|
|
9116
|
+
* The unique identifier for the service plan that indicates which size of the Cloud PC to provision for the user. Use a null value, when the provisioningType is dedicated.
|
|
9117
9117
|
*/
|
|
9118
9118
|
servicePlanId?: string;
|
|
9119
9119
|
}
|
|
9120
9120
|
export interface CloudPcOnPremisesConnection extends Entity, Parsable {
|
|
9121
9121
|
/**
|
|
9122
|
-
* The
|
|
9122
|
+
* The fully qualified domain name (FQDN) of the Active Directory domain you want to join. Maximum length is 255. Optional.
|
|
9123
9123
|
*/
|
|
9124
9124
|
adDomainName?: string;
|
|
9125
9125
|
/**
|
|
9126
|
-
* The
|
|
9126
|
+
* The password associated with the username of an Active Directory account (adDomainUsername).
|
|
9127
9127
|
*/
|
|
9128
9128
|
adDomainPassword?: string;
|
|
9129
9129
|
/**
|
|
9130
|
-
* The
|
|
9130
|
+
* The username of an Active Directory account (user or service account) that has permission to create computer objects in Active Directory. Required format: admin@contoso.com. Optional.
|
|
9131
9131
|
*/
|
|
9132
9132
|
adDomainUsername?: string;
|
|
9133
9133
|
/**
|
|
9134
|
-
* The
|
|
9134
|
+
* The interface URL of the partner service's resource that links to this Azure network connection. Returned only on $select.
|
|
9135
9135
|
*/
|
|
9136
9136
|
alternateResourceUrl?: string;
|
|
9137
9137
|
/**
|
|
9138
|
-
* The
|
|
9138
|
+
* Specifies how the provisioned Cloud PC joins to Microsoft Entra. It includes different types, one is Microsoft Entra ID join, which means there's no on-premises Active Directory (AD) in the current tenant, and the Cloud PC device is joined by Microsoft Entra. Another one is hybridAzureADJoin, which means there's also an on-premises Active Directory (AD) in the current tenant and the Cloud PC device joins to on-premises Active Directory (AD) and Microsoft Entra. The type also determines which types of users can be assigned and can sign into a Cloud PC. The azureADJoin type indicates that cloud-only and hybrid users can be assigned and signed into the Cloud PC. hybridAzureADJoin indicates only hybrid users can be assigned and signed into the Cloud PC. The default value is hybridAzureADJoin.
|
|
9139
9139
|
*/
|
|
9140
9140
|
connectionType?: CloudPcOnPremisesConnectionType;
|
|
9141
9141
|
/**
|
|
9142
|
-
* The
|
|
9142
|
+
* The display name for the Azure network connection.
|
|
9143
9143
|
*/
|
|
9144
9144
|
displayName?: string;
|
|
9145
9145
|
/**
|
|
@@ -9147,39 +9147,39 @@ export interface CloudPcOnPremisesConnection extends Entity, Parsable {
|
|
|
9147
9147
|
*/
|
|
9148
9148
|
healthCheckStatus?: CloudPcOnPremisesConnectionStatus;
|
|
9149
9149
|
/**
|
|
9150
|
-
*
|
|
9150
|
+
* Indicates the results of health checks performed on the on-premises connection. Read-only. Returned only on $select. For an example that shows how to get the inUse property, see Example 2: Get the selected properties of an Azure network connection, including healthCheckStatusDetail. Read-only.
|
|
9151
9151
|
*/
|
|
9152
9152
|
healthCheckStatusDetail?: CloudPcOnPremisesConnectionStatusDetail;
|
|
9153
9153
|
/**
|
|
9154
|
-
*
|
|
9154
|
+
* When true, the Azure network connection is in use. When false, the connection isn't in use. You can't delete a connection that’s in use. Returned only on $select. For an example that shows how to get the inUse property, see Example 2: Get the selected properties of an Azure network connection, including healthCheckStatusDetail. Read-only.
|
|
9155
9155
|
*/
|
|
9156
9156
|
inUse?: boolean;
|
|
9157
9157
|
/**
|
|
9158
|
-
* The
|
|
9158
|
+
* The organizational unit (OU) in which the computer account is created. If left null, the OU configured as the default (a well-known computer object container) in the tenant's Active Directory domain (OU) is used. Optional.
|
|
9159
9159
|
*/
|
|
9160
9160
|
organizationalUnit?: string;
|
|
9161
9161
|
/**
|
|
9162
|
-
* The
|
|
9162
|
+
* The unique identifier of the target resource group used associated with the on-premises network connectivity for Cloud PCs. Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}'
|
|
9163
9163
|
*/
|
|
9164
9164
|
resourceGroupId?: string;
|
|
9165
9165
|
/**
|
|
9166
|
-
* The
|
|
9166
|
+
* The unique identifier of the target subnet used associated with the on-premises network connectivity for Cloud PCs. Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkId}/subnets/{subnetName}'
|
|
9167
9167
|
*/
|
|
9168
9168
|
subnetId?: string;
|
|
9169
9169
|
/**
|
|
9170
|
-
* The
|
|
9170
|
+
* The unique identifier of the Azure subscription associated with the tenant.
|
|
9171
9171
|
*/
|
|
9172
9172
|
subscriptionId?: string;
|
|
9173
9173
|
/**
|
|
9174
|
-
* The
|
|
9174
|
+
* The name of the Azure subscription is used to create an Azure network connection. Read-only.
|
|
9175
9175
|
*/
|
|
9176
9176
|
subscriptionName?: string;
|
|
9177
9177
|
/**
|
|
9178
|
-
* The
|
|
9178
|
+
* The unique identifier of the target virtual network used associated with the on-premises network connectivity for Cloud PCs. Required format: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}'
|
|
9179
9179
|
*/
|
|
9180
9180
|
virtualNetworkId?: string;
|
|
9181
9181
|
/**
|
|
9182
|
-
*
|
|
9182
|
+
* Indicates the resource location of the target virtual network. For example, the location can be eastus2, westeurope, etc. Read-only (computed value).
|
|
9183
9183
|
*/
|
|
9184
9184
|
virtualNetworkLocation?: string;
|
|
9185
9185
|
}
|
|
@@ -9195,7 +9195,7 @@ export interface CloudPcOnPremisesConnectionHealthCheck extends AdditionalDataHo
|
|
|
9195
9195
|
*/
|
|
9196
9196
|
additionalData?: Record<string, unknown>;
|
|
9197
9197
|
/**
|
|
9198
|
-
*
|
|
9198
|
+
* Additional details about the health check or the recommended action. For exmaple, the string value can be download.microsoft.com:443;software-download.microsoft.com:443; Read-only.
|
|
9199
9199
|
*/
|
|
9200
9200
|
additionalDetail?: string;
|
|
9201
9201
|
/**
|
|
@@ -9203,19 +9203,19 @@ export interface CloudPcOnPremisesConnectionHealthCheck extends AdditionalDataHo
|
|
|
9203
9203
|
*/
|
|
9204
9204
|
backingStoreEnabled?: boolean;
|
|
9205
9205
|
/**
|
|
9206
|
-
* The
|
|
9206
|
+
* The unique identifier of the health check item-related activities. This identifier can be useful in troubleshooting.
|
|
9207
9207
|
*/
|
|
9208
9208
|
correlationId?: string;
|
|
9209
9209
|
/**
|
|
9210
|
-
* The
|
|
9210
|
+
* The display name for this health check item.
|
|
9211
9211
|
*/
|
|
9212
9212
|
displayName?: string;
|
|
9213
9213
|
/**
|
|
9214
|
-
* The
|
|
9214
|
+
* The value cannot be modified and is automatically populated when the health check ends. The Timestamp type represents date and time information using ISO 8601 format and is in Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2024 would look like this: '2024-01-01T00:00:00Z'. Returned by default. Read-only.
|
|
9215
9215
|
*/
|
|
9216
9216
|
endDateTime?: Date;
|
|
9217
9217
|
/**
|
|
9218
|
-
* The
|
|
9218
|
+
* The type of error that occurred during this health check. Possible values are: endpointConnectivityCheckCloudPcUrlNotAllowListed, endpointConnectivityCheckWVDUrlNotAllowListed, etc. (The all possible values can refer to cloudPcOnPremisesConnectionHealthCheckErrorType) Read-Only.
|
|
9219
9219
|
*/
|
|
9220
9220
|
errorType?: CloudPcOnPremisesConnectionHealthCheckErrorType;
|
|
9221
9221
|
/**
|
|
@@ -9223,11 +9223,11 @@ export interface CloudPcOnPremisesConnectionHealthCheck extends AdditionalDataHo
|
|
|
9223
9223
|
*/
|
|
9224
9224
|
odataType?: string;
|
|
9225
9225
|
/**
|
|
9226
|
-
* The
|
|
9226
|
+
* The recommended action to fix the corresponding error. For example, The Active Directory domain join check failed because the password of the domain join user has expired. Read-Only.
|
|
9227
9227
|
*/
|
|
9228
9228
|
recommendedAction?: string;
|
|
9229
9229
|
/**
|
|
9230
|
-
* The
|
|
9230
|
+
* The value cannot be modified and is automatically populated when the health check starts. The Timestamp type represents date and time information using ISO 8601 format and is in Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2024 would look like this: '2024-01-01T00:00:00Z'. Returned by default. Read-only.
|
|
9231
9231
|
*/
|
|
9232
9232
|
startDateTime?: Date;
|
|
9233
9233
|
/**
|
|
@@ -9247,11 +9247,11 @@ export interface CloudPcOnPremisesConnectionStatusDetail extends AdditionalDataH
|
|
|
9247
9247
|
*/
|
|
9248
9248
|
backingStoreEnabled?: boolean;
|
|
9249
9249
|
/**
|
|
9250
|
-
* The
|
|
9250
|
+
* The end time of the connection health check. The Timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z. Read-Only.
|
|
9251
9251
|
*/
|
|
9252
9252
|
endDateTime?: Date;
|
|
9253
9253
|
/**
|
|
9254
|
-
*
|
|
9254
|
+
* A list of all checks that have been run on the connection. Read-Only.
|
|
9255
9255
|
*/
|
|
9256
9256
|
healthChecks?: CloudPcOnPremisesConnectionHealthCheck[];
|
|
9257
9257
|
/**
|
|
@@ -9259,54 +9259,54 @@ export interface CloudPcOnPremisesConnectionStatusDetail extends AdditionalDataH
|
|
|
9259
9259
|
*/
|
|
9260
9260
|
odataType?: string;
|
|
9261
9261
|
/**
|
|
9262
|
-
* The
|
|
9262
|
+
* The start time of the health check. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appear as 2014-01-01T00:00:00Z. Read-Only.
|
|
9263
9263
|
*/
|
|
9264
9264
|
startDateTime?: Date;
|
|
9265
9265
|
}
|
|
9266
9266
|
export type CloudPcOnPremisesConnectionType = (typeof CloudPcOnPremisesConnectionTypeObject)[keyof typeof CloudPcOnPremisesConnectionTypeObject];
|
|
9267
9267
|
export interface CloudPcProvisioningPolicy extends Entity, Parsable {
|
|
9268
9268
|
/**
|
|
9269
|
-
* The
|
|
9269
|
+
* The URL of the alternate resource that links to this provisioning policy. Read-only.
|
|
9270
9270
|
*/
|
|
9271
9271
|
alternateResourceUrl?: string;
|
|
9272
9272
|
/**
|
|
9273
|
-
*
|
|
9273
|
+
* A defined collection of provisioning policy assignments. Represents the set of Microsoft 365 groups and security groups in Microsoft Entra ID that have provisioning policy assigned. Returned only on $expand. For an example about how to get the assignments relationship, see Get cloudPcProvisioningPolicy.
|
|
9274
9274
|
*/
|
|
9275
9275
|
assignments?: CloudPcProvisioningPolicyAssignment[];
|
|
9276
9276
|
/**
|
|
9277
|
-
* The
|
|
9277
|
+
* The display name of the Cloud PC group that the Cloud PCs reside in. Read-only.
|
|
9278
9278
|
*/
|
|
9279
9279
|
cloudPcGroupDisplayName?: string;
|
|
9280
9280
|
/**
|
|
9281
|
-
* The
|
|
9281
|
+
* The template used to name Cloud PCs provisioned using this policy. The template can contain custom text and replacement tokens, including %USERNAME:x% and %RAND:x%, which represent the user's name and a randomly generated number, respectively. For example, CPC-%USERNAME:4%-%RAND:5% means that the name of the Cloud PC starts with CPC-, followed by a four-character username, a - character, and then five random characters. The total length of the text generated by the template can't exceed 15 characters. Supports $filter, $select, and $orderby.
|
|
9282
9282
|
*/
|
|
9283
9283
|
cloudPcNamingTemplate?: string;
|
|
9284
9284
|
/**
|
|
9285
|
-
* The description
|
|
9285
|
+
* The provisioning policy description. Supports $filter, $select, and $orderBy.
|
|
9286
9286
|
*/
|
|
9287
9287
|
description?: string;
|
|
9288
9288
|
/**
|
|
9289
|
-
* The
|
|
9289
|
+
* The display name for the provisioning policy.
|
|
9290
9290
|
*/
|
|
9291
9291
|
displayName?: string;
|
|
9292
9292
|
/**
|
|
9293
|
-
*
|
|
9293
|
+
* Specifies a list ordered by priority on how Cloud PCs join Microsoft Entra ID (Azure AD). Supports $select.
|
|
9294
9294
|
*/
|
|
9295
9295
|
domainJoinConfigurations?: CloudPcDomainJoinConfiguration[];
|
|
9296
9296
|
/**
|
|
9297
|
-
* The
|
|
9297
|
+
* True if the provisioned Cloud PC can be accessed by single sign-on. False indicates that the provisioned Cloud PC doesn't support this feature. The default value is false. Windows 365 users can use single sign-on to authenticate to Microsoft Entra ID with passwordless options (for example, FIDO keys) to access their Cloud PC. Optional.
|
|
9298
9298
|
*/
|
|
9299
9299
|
enableSingleSignOn?: boolean;
|
|
9300
9300
|
/**
|
|
9301
|
-
* The
|
|
9301
|
+
* The number of hours to wait before reprovisioning/deprovisioning happens. Read-only.
|
|
9302
9302
|
*/
|
|
9303
9303
|
gracePeriodInHours?: number;
|
|
9304
9304
|
/**
|
|
9305
|
-
* The
|
|
9305
|
+
* The display name of the operating system image that is used for provisioning. For example, Windows 11 Preview + Microsoft 365 Apps 23H2 23H2. Supports $filter, $select, and $orderBy.
|
|
9306
9306
|
*/
|
|
9307
9307
|
imageDisplayName?: string;
|
|
9308
9308
|
/**
|
|
9309
|
-
* The
|
|
9309
|
+
* The unique identifier that represents an operating system image that is used for provisioning new Cloud PCs. The format for a gallery type image is: {publisherNameofferNameskuName}. Supported values for each of the parameters are:publisher: Microsoftwindowsdesktop offer: windows-ent-cpc sku: 21h1-ent-cpc-m365, 21h1-ent-cpc-os, 20h2-ent-cpc-m365, 20h2-ent-cpc-os, 20h1-ent-cpc-m365, 20h1-ent-cpc-os, 19h2-ent-cpc-m365, and 19h2-ent-cpc-os Supports $filter, $select, and $orderBy.
|
|
9310
9310
|
*/
|
|
9311
9311
|
imageId?: string;
|
|
9312
9312
|
/**
|
|
@@ -9314,29 +9314,29 @@ export interface CloudPcProvisioningPolicy extends Entity, Parsable {
|
|
|
9314
9314
|
*/
|
|
9315
9315
|
imageType?: CloudPcProvisioningPolicyImageType;
|
|
9316
9316
|
/**
|
|
9317
|
-
* The
|
|
9317
|
+
* When true, the local admin is enabled for Cloud PCs; false indicates that the local admin isn't enabled for Cloud PCs. The default value is false. Supports $filter, $select, and $orderBy.
|
|
9318
9318
|
*/
|
|
9319
9319
|
localAdminEnabled?: boolean;
|
|
9320
9320
|
/**
|
|
9321
|
-
* The microsoftManagedDesktop
|
|
9321
|
+
* The specific settings to microsoftManagedDesktop that enables Microsoft Managed Desktop customers to get device managed experience for Cloud PC. To enable microsoftManagedDesktop to provide more value, an admin needs to specify certain settings in it. Supports $filter, $select, and $orderBy.
|
|
9322
9322
|
*/
|
|
9323
9323
|
microsoftManagedDesktop?: MicrosoftManagedDesktop;
|
|
9324
9324
|
/**
|
|
9325
|
-
*
|
|
9325
|
+
* Specifies the type of license used when provisioning Cloud PCs using this policy. By default, the license type is dedicated if the provisioningType isn't specified when you create the cloudPcProvisioningPolicy. You can't change this property after the cloudPcProvisioningPolicy was created. Possible values are: dedicated, shared, unknownFutureValue.
|
|
9326
9326
|
*/
|
|
9327
9327
|
provisioningType?: CloudPcProvisioningType;
|
|
9328
9328
|
/**
|
|
9329
|
-
*
|
|
9329
|
+
* Indicates a specific Windows setting to configure during the creation of Cloud PCs for this provisioning policy. Supports $select.
|
|
9330
9330
|
*/
|
|
9331
9331
|
windowsSetting?: CloudPcWindowsSetting;
|
|
9332
9332
|
}
|
|
9333
9333
|
export interface CloudPcProvisioningPolicyAssignment extends Entity, Parsable {
|
|
9334
9334
|
/**
|
|
9335
|
-
* The
|
|
9335
|
+
* The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. Read-only. Supports$expand.
|
|
9336
9336
|
*/
|
|
9337
9337
|
assignedUsers?: User[];
|
|
9338
9338
|
/**
|
|
9339
|
-
* The target
|
|
9339
|
+
* The assignment target for the provisioning policy. Currently, the only target supported for this policy is a user group. For details, see cloudPcManagementGroupAssignmentTarget.
|
|
9340
9340
|
*/
|
|
9341
9341
|
target?: CloudPcManagementAssignmentTarget;
|
|
9342
9342
|
}
|
|
@@ -9366,7 +9366,7 @@ export interface CloudPcRestorePointSetting extends AdditionalDataHolder, Backed
|
|
|
9366
9366
|
*/
|
|
9367
9367
|
backingStoreEnabled?: boolean;
|
|
9368
9368
|
/**
|
|
9369
|
-
* The
|
|
9369
|
+
* The time interval in hours to take snapshots (restore points) of a Cloud PC automatically. Possible values are: default, fourHours, sixHours, twelveHours, sixteenHours, twentyFourHours, unknownFutureValue. The default value is default that indicates that the time interval for automatic capturing of restore point snapshots is set to 12 hours.
|
|
9370
9370
|
*/
|
|
9371
9371
|
frequencyType?: CloudPcRestorePointFrequencyType;
|
|
9372
9372
|
/**
|
|
@@ -9374,7 +9374,7 @@ export interface CloudPcRestorePointSetting extends AdditionalDataHolder, Backed
|
|
|
9374
9374
|
*/
|
|
9375
9375
|
odataType?: string;
|
|
9376
9376
|
/**
|
|
9377
|
-
*
|
|
9377
|
+
* If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC.
|
|
9378
9378
|
*/
|
|
9379
9379
|
userRestoreEnabled?: boolean;
|
|
9380
9380
|
}
|
|
@@ -9388,7 +9388,7 @@ export interface CloudPcSourceDeviceImage extends AdditionalDataHolder, BackedMo
|
|
|
9388
9388
|
*/
|
|
9389
9389
|
backingStoreEnabled?: boolean;
|
|
9390
9390
|
/**
|
|
9391
|
-
* The
|
|
9391
|
+
* The display name for the source image. Read-only.
|
|
9392
9392
|
*/
|
|
9393
9393
|
displayName?: string;
|
|
9394
9394
|
/**
|
|
@@ -9396,15 +9396,15 @@ export interface CloudPcSourceDeviceImage extends AdditionalDataHolder, BackedMo
|
|
|
9396
9396
|
*/
|
|
9397
9397
|
odataType?: string;
|
|
9398
9398
|
/**
|
|
9399
|
-
* The
|
|
9399
|
+
* The fully qualified unique identifier (ID) of the source image resource in Azure. The ID format is: '/subscriptions/{subscription-id}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images/{imageName}'. Read-only.
|
|
9400
9400
|
*/
|
|
9401
9401
|
resourceId?: string;
|
|
9402
9402
|
/**
|
|
9403
|
-
* The
|
|
9403
|
+
* The display name of the subscription that hosts the source image. Read-only.
|
|
9404
9404
|
*/
|
|
9405
9405
|
subscriptionDisplayName?: string;
|
|
9406
9406
|
/**
|
|
9407
|
-
* The
|
|
9407
|
+
* The unique identifier (ID) of the subscription that hosts the source image. Read-only.
|
|
9408
9408
|
*/
|
|
9409
9409
|
subscriptionId?: string;
|
|
9410
9410
|
}
|
|
@@ -9418,7 +9418,7 @@ export interface CloudPcUserRoleScopeTagInfo extends AdditionalDataHolder, Backe
|
|
|
9418
9418
|
*/
|
|
9419
9419
|
backingStoreEnabled?: boolean;
|
|
9420
9420
|
/**
|
|
9421
|
-
*
|
|
9421
|
+
* Scope tag display name.
|
|
9422
9422
|
*/
|
|
9423
9423
|
displayName?: string;
|
|
9424
9424
|
/**
|
|
@@ -9426,47 +9426,47 @@ export interface CloudPcUserRoleScopeTagInfo extends AdditionalDataHolder, Backe
|
|
|
9426
9426
|
*/
|
|
9427
9427
|
odataType?: string;
|
|
9428
9428
|
/**
|
|
9429
|
-
*
|
|
9429
|
+
* Scope tag identity.
|
|
9430
9430
|
*/
|
|
9431
9431
|
roleScopeTagId?: string;
|
|
9432
9432
|
}
|
|
9433
9433
|
export interface CloudPcUserSetting extends Entity, Parsable {
|
|
9434
9434
|
/**
|
|
9435
|
-
*
|
|
9435
|
+
* Represents the set of Microsoft 365 groups and security groups in Microsoft Entra ID that have cloudPCUserSetting assigned. Returned only on $expand. For an example, see Get cloudPcUserSetting.
|
|
9436
9436
|
*/
|
|
9437
9437
|
assignments?: CloudPcUserSettingAssignment[];
|
|
9438
9438
|
/**
|
|
9439
|
-
* The
|
|
9439
|
+
* The date and time when the setting was created. The timestamp type represents the 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.
|
|
9440
9440
|
*/
|
|
9441
9441
|
createdDateTime?: Date;
|
|
9442
9442
|
/**
|
|
9443
|
-
* The
|
|
9443
|
+
* The setting name displayed in the user interface.
|
|
9444
9444
|
*/
|
|
9445
9445
|
displayName?: string;
|
|
9446
9446
|
/**
|
|
9447
|
-
* The
|
|
9447
|
+
* The date and time when the setting was last modified. The timestamp type represents the 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.
|
|
9448
9448
|
*/
|
|
9449
9449
|
lastModifiedDateTime?: Date;
|
|
9450
9450
|
/**
|
|
9451
|
-
* The
|
|
9451
|
+
* Indicates whether the local admin option is enabled. The default value is false. To enable the local admin option, change the setting to true. If the local admin option is enabled, the end user can be an admin of the Cloud PC device.
|
|
9452
9452
|
*/
|
|
9453
9453
|
localAdminEnabled?: boolean;
|
|
9454
9454
|
/**
|
|
9455
|
-
* The
|
|
9455
|
+
* Indicates whether an end user is allowed to reset their Cloud PC. When true, the user is allowed to reset their Cloud PC. When false, end-user initiated reset is not allowed. The default value is false.
|
|
9456
9456
|
*/
|
|
9457
9457
|
resetEnabled?: boolean;
|
|
9458
9458
|
/**
|
|
9459
|
-
*
|
|
9459
|
+
* Defines how frequently a restore point is created that is, a snapshot is taken) for users' provisioned Cloud PCs (default is 12 hours), and whether the user is allowed to restore their own Cloud PCs to a backup made at a specific point in time.
|
|
9460
9460
|
*/
|
|
9461
9461
|
restorePointSetting?: CloudPcRestorePointSetting;
|
|
9462
9462
|
}
|
|
9463
9463
|
export interface CloudPcUserSettingAssignment extends Entity, Parsable {
|
|
9464
9464
|
/**
|
|
9465
|
-
* The
|
|
9465
|
+
* The date and time when this assignment was created. The timestamp type represents the 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.
|
|
9466
9466
|
*/
|
|
9467
9467
|
createdDateTime?: Date;
|
|
9468
9468
|
/**
|
|
9469
|
-
* The target
|
|
9469
|
+
* The assignment target for the user setting. Currently, the only target supported for this user setting is a user group. For details, see cloudPcManagementGroupAssignmentTarget.
|
|
9470
9470
|
*/
|
|
9471
9471
|
target?: CloudPcManagementAssignmentTarget;
|
|
9472
9472
|
}
|
|
@@ -9492,7 +9492,7 @@ export interface CloudPcWindowsSetting extends AdditionalDataHolder, BackedModel
|
|
|
9492
9492
|
*/
|
|
9493
9493
|
backingStoreEnabled?: boolean;
|
|
9494
9494
|
/**
|
|
9495
|
-
* The
|
|
9495
|
+
* The Windows language or region tag to use for language pack configuration and localization of the Cloud PC. The default value is en-US, which corresponds to English (United States).
|
|
9496
9496
|
*/
|
|
9497
9497
|
locale?: string;
|
|
9498
9498
|
/**
|
|
@@ -10769,7 +10769,7 @@ export interface ContentSharingSessionCollectionResponse extends BaseCollectionP
|
|
|
10769
10769
|
}
|
|
10770
10770
|
export interface ContentType extends Entity, Parsable {
|
|
10771
10771
|
/**
|
|
10772
|
-
* List of canonical URLs for hub sites with which this content type is associated to. This will contain all hub sites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type
|
|
10772
|
+
* List of canonical URLs for hub sites with which this content type is associated to. This will contain all hub sites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type is applied to the lists in the enforced sites.
|
|
10773
10773
|
*/
|
|
10774
10774
|
associatedHubsUrls?: string[];
|
|
10775
10775
|
/**
|
|
@@ -10789,7 +10789,7 @@ export interface ContentType extends Entity, Parsable {
|
|
|
10789
10789
|
*/
|
|
10790
10790
|
columnPositions?: ColumnDefinition[];
|
|
10791
10791
|
/**
|
|
10792
|
-
* The collection of column definitions for this
|
|
10792
|
+
* The collection of column definitions for this content type.
|
|
10793
10793
|
*/
|
|
10794
10794
|
columns?: ColumnDefinition[];
|
|
10795
10795
|
/**
|
|
@@ -10833,7 +10833,7 @@ export interface ContentType extends Entity, Parsable {
|
|
|
10833
10833
|
*/
|
|
10834
10834
|
parentId?: string;
|
|
10835
10835
|
/**
|
|
10836
|
-
* If true, any changes made to the content type
|
|
10836
|
+
* If true, any changes made to the content type are pushed to inherited content types and lists that implement the content type.
|
|
10837
10837
|
*/
|
|
10838
10838
|
propagateChanges?: boolean;
|
|
10839
10839
|
/**
|
|
@@ -35815,7 +35815,7 @@ export interface Device extends DirectoryObject, Parsable {
|
|
|
35815
35815
|
*/
|
|
35816
35816
|
onPremisesLastSyncDateTime?: Date;
|
|
35817
35817
|
/**
|
|
35818
|
-
* The
|
|
35818
|
+
* The on-premises security identifier (SID) for the user who was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq).
|
|
35819
35819
|
*/
|
|
35820
35820
|
onPremisesSecurityIdentifier?: string;
|
|
35821
35821
|
/**
|
|
@@ -37673,7 +37673,7 @@ export interface DeviceManagement extends Entity, Parsable {
|
|
|
37673
37673
|
*/
|
|
37674
37674
|
userExperienceAnalyticsWorkFromAnywhereModelPerformance?: UserExperienceAnalyticsWorkFromAnywhereModelPerformance[];
|
|
37675
37675
|
/**
|
|
37676
|
-
*
|
|
37676
|
+
* Virtual endpoint
|
|
37677
37677
|
*/
|
|
37678
37678
|
virtualEndpoint?: VirtualEndpoint;
|
|
37679
37679
|
/**
|
|
@@ -38421,7 +38421,7 @@ export interface DocumentSetVersion extends ListItemVersion, Parsable {
|
|
|
38421
38421
|
*/
|
|
38422
38422
|
items?: DocumentSetVersionItem[];
|
|
38423
38423
|
/**
|
|
38424
|
-
* If true, minor versions of items are also captured; otherwise, only major versions
|
|
38424
|
+
* If true, minor versions of items are also captured; otherwise, only major versions are captured. The default value is false.
|
|
38425
38425
|
*/
|
|
38426
38426
|
shouldCaptureMinorVersion?: boolean;
|
|
38427
38427
|
}
|
|
@@ -48834,7 +48834,7 @@ export interface MicrosoftManagedDesktop extends AdditionalDataHolder, BackedMod
|
|
|
48834
48834
|
*/
|
|
48835
48835
|
backingStoreEnabled?: boolean;
|
|
48836
48836
|
/**
|
|
48837
|
-
* The
|
|
48837
|
+
* Indicates the provisioning policy associated with Microsoft Managed Desktop settings. Possible values are: notManaged, premiumManaged, standardManaged, starterManaged, unknownFutureValue. The default is notManaged.
|
|
48838
48838
|
*/
|
|
48839
48839
|
managedType?: MicrosoftManagedDesktopType;
|
|
48840
48840
|
/**
|
|
@@ -48842,7 +48842,7 @@ export interface MicrosoftManagedDesktop extends AdditionalDataHolder, BackedMod
|
|
|
48842
48842
|
*/
|
|
48843
48843
|
odataType?: string;
|
|
48844
48844
|
/**
|
|
48845
|
-
* The profile
|
|
48845
|
+
* The name of the Microsoft Managed Desktop profile that the Windows 365 Cloud PC is associated with.
|
|
48846
48846
|
*/
|
|
48847
48847
|
profile?: string;
|
|
48848
48848
|
}
|
|
@@ -52353,7 +52353,7 @@ export interface Place extends Entity, Parsable {
|
|
|
52353
52353
|
*/
|
|
52354
52354
|
displayName?: string;
|
|
52355
52355
|
/**
|
|
52356
|
-
* Specifies the place location in latitude, longitude and (optionally) altitude coordinates.
|
|
52356
|
+
* Specifies the place location in latitude, longitude, and (optionally) altitude coordinates.
|
|
52357
52357
|
*/
|
|
52358
52358
|
geoCoordinates?: OutlookGeoCoordinates;
|
|
52359
52359
|
/**
|
|
@@ -56720,7 +56720,7 @@ export interface Room extends Parsable, Place {
|
|
|
56720
56720
|
*/
|
|
56721
56721
|
nickname?: string;
|
|
56722
56722
|
/**
|
|
56723
|
-
* Specifies
|
|
56723
|
+
* Specifies other features of the room, for example, details like the type of view or furniture type.
|
|
56724
56724
|
*/
|
|
56725
56725
|
tags?: string[];
|
|
56726
56726
|
/**
|
|
@@ -70620,7 +70620,7 @@ export interface SingleValueLegacyExtendedProperty extends Entity, Parsable {
|
|
|
70620
70620
|
}
|
|
70621
70621
|
export interface Site extends BaseItem, Parsable {
|
|
70622
70622
|
/**
|
|
70623
|
-
* Analytics about the view activities that took place
|
|
70623
|
+
* Analytics about the view activities that took place on this site.
|
|
70624
70624
|
*/
|
|
70625
70625
|
analytics?: ItemAnalytics;
|
|
70626
70626
|
/**
|
|
@@ -70680,7 +70680,7 @@ export interface Site extends BaseItem, Parsable {
|
|
|
70680
70680
|
*/
|
|
70681
70681
|
permissions?: Permission[];
|
|
70682
70682
|
/**
|
|
70683
|
-
* If present,
|
|
70683
|
+
* If present, provides the root site in the site collection. Read-only.
|
|
70684
70684
|
*/
|
|
70685
70685
|
root?: Root;
|
|
70686
70686
|
/**
|
|
@@ -75849,6 +75849,10 @@ export interface User extends DirectoryObject, Parsable {
|
|
|
75849
75849
|
* A list for the user to enumerate their skills. Returned only on $select.
|
|
75850
75850
|
*/
|
|
75851
75851
|
skills?: string[];
|
|
75852
|
+
/**
|
|
75853
|
+
* The sponsors property
|
|
75854
|
+
*/
|
|
75855
|
+
sponsors?: DirectoryObject[];
|
|
75852
75856
|
/**
|
|
75853
75857
|
* The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values).
|
|
75854
75858
|
*/
|
|
@@ -78030,31 +78034,31 @@ export interface Video extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
78030
78034
|
export type VirtualAppointmentMessageType = (typeof VirtualAppointmentMessageTypeObject)[keyof typeof VirtualAppointmentMessageTypeObject];
|
|
78031
78035
|
export interface VirtualEndpoint extends Entity, Parsable {
|
|
78032
78036
|
/**
|
|
78033
|
-
*
|
|
78037
|
+
* A collection of Cloud PC audit events.
|
|
78034
78038
|
*/
|
|
78035
78039
|
auditEvents?: CloudPcAuditEvent[];
|
|
78036
78040
|
/**
|
|
78037
|
-
*
|
|
78041
|
+
* A collection of cloud-managed virtual desktops.
|
|
78038
78042
|
*/
|
|
78039
78043
|
cloudPCs?: CloudPC[];
|
|
78040
78044
|
/**
|
|
78041
|
-
*
|
|
78045
|
+
* A collection of device image resources on Cloud PC.
|
|
78042
78046
|
*/
|
|
78043
78047
|
deviceImages?: CloudPcDeviceImage[];
|
|
78044
78048
|
/**
|
|
78045
|
-
*
|
|
78049
|
+
* A collection of gallery image resources on Cloud PC.
|
|
78046
78050
|
*/
|
|
78047
78051
|
galleryImages?: CloudPcGalleryImage[];
|
|
78048
78052
|
/**
|
|
78049
|
-
*
|
|
78053
|
+
* A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs.
|
|
78050
78054
|
*/
|
|
78051
78055
|
onPremisesConnections?: CloudPcOnPremisesConnection[];
|
|
78052
78056
|
/**
|
|
78053
|
-
*
|
|
78057
|
+
* A collection of Cloud PC provisioning policies.
|
|
78054
78058
|
*/
|
|
78055
78059
|
provisioningPolicies?: CloudPcProvisioningPolicy[];
|
|
78056
78060
|
/**
|
|
78057
|
-
*
|
|
78061
|
+
* A collection of Cloud PC user settings.
|
|
78058
78062
|
*/
|
|
78059
78063
|
userSettings?: CloudPcUserSetting[];
|
|
78060
78064
|
}
|