@@ -7938,6 +7938,10 @@ export interface PolicyRoot {
79387938 b2cAuthenticationMethodsPolicy?: NullableOption<B2cAuthenticationMethodsPolicy>;
79397939 // The policy that controls the idle time out for web sessions for applications.
79407940 activityBasedTimeoutPolicies?: NullableOption<ActivityBasedTimeoutPolicy[]>;
7941+ /**
7942+ * The policies that enforce app management restrictions for specific applications and service principals, overriding the
7943+ * defaultAppManagementPolicy.
7944+ */
79417945 appManagementPolicies?: NullableOption<AppManagementPolicy[]>;
79427946 // The policy that controls Azure AD authorization settings.
79437947 authorizationPolicy?: NullableOption<AuthorizationPolicy[]>;
@@ -7946,6 +7950,7 @@ export interface PolicyRoot {
79467950 * application.
79477951 */
79487952 claimsMappingPolicies?: NullableOption<ClaimsMappingPolicy[]>;
7953+ // The tenant-wide policy that enforces app management restrictions for all applications and service principals.
79497954 defaultAppManagementPolicy?: NullableOption<TenantAppManagementPolicy>;
79507955 // The policy to control Azure AD authentication behavior for federated users.
79517956 homeRealmDiscoveryPolicies?: NullableOption<HomeRealmDiscoveryPolicy[]>;
@@ -8516,7 +8521,7 @@ export interface CloudPC extends Entity {
85168521 userPrincipalName?: NullableOption<string>;
85178522}
85188523export interface CloudPcAuditEvent extends Entity {
8519- // Friendly name of the activity.Optional.
8524+ // Friendly name of the activity. Optional.
85208525 activity?: NullableOption<string>;
85218526 // The date time in UTC when the activity was performed. Read-only.
85228527 activityDateTime?: string;
@@ -8675,7 +8680,7 @@ export interface CloudPcUserSetting extends Entity {
86758680 localAdminEnabled?: NullableOption<boolean>;
86768681 /**
86778682 * Indicates whether the self-service option is enabled. Default value is false. To enable the self-service option, change
8678- * the setting to true. If the self-service option is enabled, the end user is allowed to perform some self-service
8683+ * the setting to true If the self-service option is enabled, the end user is allowed to perform some self-service
86798684 * operations, such as upgrading the Cloud PC through the end user portal.
86808685 */
86818686 selfServiceEnabled?: NullableOption<boolean>;
@@ -11064,6 +11069,8 @@ export interface WindowsAutopilotDeploymentProfile extends Entity {
1106411069 language?: NullableOption<string>;
1106511070 // Profile last modified time
1106611071 lastModifiedDateTime?: string;
11072+ // AzureAD management app ID used during client device-based enrollment discovery
11073+ managementServiceAppId?: NullableOption<string>;
1106711074 // Out of box experience setting
1106811075 outOfBoxExperienceSettings?: NullableOption<OutOfBoxExperienceSettings>;
1106911076 // Scope tags for the profile.
@@ -16018,7 +16025,10 @@ export interface AccessPackageAssignmentRequest extends Entity {
1601816025 isValidationOnly?: NullableOption<boolean>;
1601916026 // The requestor's supplied justification.
1602016027 justification?: NullableOption<string>;
16021- // One of PendingApproval, Canceled, Denied, Delivering, Delivered, PartiallyDelivered, Submitted or Scheduled. Read-only.
16028+ /**
16029+ * One of PendingApproval, Canceled, Denied, Delivering, Delivered, PartiallyDelivered, DeliveryFailed, Submitted or
16030+ * Scheduled. Read-only.
16031+ */
1602216032 requestState?: NullableOption<string>;
1602316033 // More information on the request processing status. Read-only.
1602416034 requestStatus?: NullableOption<string>;
@@ -25820,7 +25830,7 @@ export interface WindowsWifiEnterpriseEAPConfiguration extends WindowsWifiConfig
2582025830 // Specify trusted server certificate names.
2582125831 trustedServerCertificateNames?: NullableOption<string[]>;
2582225832 /**
25823- * Specifiy whether to change the virtual LAN used by the device based on the user' s credentials. Cannot be used when
25833+ * Specifiy whether to change the virtual LAN used by the device based on the user’ s credentials. Cannot be used when
2582425834 * NetworkSingleSignOnType is set to Disabled.
2582525835 */
2582625836 userBasedVirtualLan?: NullableOption<boolean>;
@@ -27371,7 +27381,10 @@ export interface ServiceAnnouncement extends Entity {
2737127381 messages?: NullableOption<ServiceUpdateMessage[]>;
2737227382}
2737327383export interface ServiceHealth extends Entity {
27374- // The service name.
27384+ /**
27385+ * The service name. Use the list healthOverviews operation to get exact string names for services subscribed by the
27386+ * tenant.
27387+ */
2737527388 service?: string;
2737627389 /**
2737727390 * Show the overral service health status. Possible values are: serviceOperational, investigating, restoringService,
@@ -27435,7 +27448,10 @@ export interface ServiceUpdateMessage extends ServiceAnnouncementBase {
2743527448 severity?: ServiceUpdateSeverity;
2743627449 // A collection of tags for the service message.
2743727450 tags?: NullableOption<string[]>;
27438- // Represents user view points data of the service message.
27451+ /**
27452+ * Represents user view points data of the service message. This data includes message status such as whether the user has
27453+ * archived, read, or marked the message as favorite. This property is null when accessed with application permissions.
27454+ */
2743927455 viewPoint?: NullableOption<ServiceUpdateMessageViewpoint>;
2744027456}
2744127457// tslint:disable-next-line: no-empty-interface
@@ -31349,10 +31365,12 @@ export interface ChatMessageInfo extends Entity {
3134931365 body?: NullableOption<ItemBody>;
3135031366 // Date time object representing the time at which message was created.
3135131367 createdDateTime?: NullableOption<string>;
31368+ eventDetail?: NullableOption<EventMessageDetail>;
3135231369 // Information about the sender of the message.
3135331370 from?: NullableOption<ChatMessageFromIdentitySet>;
3135431371 // If set to true, the original message has been deleted.
3135531372 isDeleted?: NullableOption<boolean>;
31373+ messageType?: ChatMessageType;
3135631374}
3135731375export interface TeamworkHostedContent extends Entity {
3135831376 // Write only. Bytes for the hosted content (such as images).
@@ -32396,21 +32414,21 @@ export interface KeyCredential {
3239632414 displayName?: NullableOption<string>;
3239732415 /**
3239832416 * The date and time at which the credential expires.The Timestamp type represents date and time information using ISO
32399- * 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
32417+ * 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
3240032418 */
3240132419 endDateTime?: NullableOption<string>;
3240232420 // Value for the key credential. Should be a base 64 encoded value.
3240332421 key?: NullableOption<number>;
32404- // The unique identifier (GUID) for the key.
32422+ // The unique identifier for the key.
3240532423 keyId?: NullableOption<string>;
3240632424 /**
3240732425 * The date and time at which the credential becomes valid.The Timestamp type represents date and time information using
32408- * ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
32426+ * ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
3240932427 */
3241032428 startDateTime?: NullableOption<string>;
32411- // The type of key credential; for example, ' Symmetric' .
32429+ // The type of key credential; for example, Symmetric.
3241232430 type?: NullableOption<string>;
32413- // A string that describes the purpose for which the key can be used; for example, ' Verify' .
32431+ // A string that describes the purpose for which the key can be used; for example, Verify.
3241432432 usage?: NullableOption<string>;
3241532433}
3241632434export interface OptionalClaims {
@@ -43708,6 +43726,7 @@ export interface MembersAddedEventMessageDetail extends EventMessageDetail {
4370843726 initiator?: NullableOption<IdentitySet>;
4370943727 // List of members added.
4371043728 members?: NullableOption<TeamworkUserIdentity[]>;
43729+ visibleHistoryStartDateTime?: NullableOption<string>;
4371143730}
4371243731export interface MembersDeletedEventMessageDetail extends EventMessageDetail {
4371343732 // Initiator of the event.
@@ -45653,6 +45672,7 @@ export namespace ExternalConnectors {
4565345672 type ExternalGroupMemberType = "user" | "group" | "unknownFutureValue";
4565445673 type ExternalItemContentType = "text" | "html" | "unknownFutureValue";
4565545674 type IdentitySourceType = "azureActiveDirectory" | "external" | "unknownFutureValue";
45675+ type IdentityType = "user" | "group" | "externalGroup" | "unknownFutureValue";
4565645676 type Label =
4565745677 | "title"
4565845678 | "url"
@@ -45777,6 +45797,11 @@ export namespace ExternalConnectors {
4577745797 // The content for the externalItem. Required.
4577845798 value?: NullableOption<string>;
4577945799 }
45800+ // tslint:disable-next-line: interface-name
45801+ interface Identity {
45802+ id?: string;
45803+ type?: NullableOption<IdentityType>;
45804+ }
4578045805// tslint:disable-next-line: no-empty-interface
4578145806 interface Properties {}
4578245807 interface Property {
0 commit comments