@@ -5009,10 +5009,9 @@ export interface Application extends DirectoryObject {
50095009 groupMembershipClaims?: NullableOption<string>;
50105010 /**
50115011 * Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as
5012- * the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default
5013- * value provided, which is in the form api://&lt;appId&gt;, or specify a more readable URI like
5014- * https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra
5015- * application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
5012+ * the prefix for the scopes you reference in your API's code, and it must be globally unique. For more information on
5013+ * valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices.
5014+ * Not nullable. Supports $filter (eq, ne, ge, le, startsWith).
50165015 */
50175016 identifierUris?: string[];
50185017 /**
@@ -5331,9 +5330,17 @@ export interface AttendanceRecord extends Entity {
53315330 attendanceIntervals?: NullableOption<AttendanceInterval[]>;
53325331 // Email address of the user associated with this attendance record.
53335332 emailAddress?: NullableOption<string>;
5333+ // The external information for a virtualEventRegistration.
53345334 externalRegistrationInformation?: NullableOption<VirtualEventExternalRegistrationInformation>;
5335- // Identity of the user associated with this attendance record.
5335+ /**
5336+ * The identity of the user associated with this attendance record. The specific type is one of the following derived
5337+ * types of identity, depending on the user type: communicationsUserIdentity, azureCommunicationServicesUserIdentity.
5338+ */
53365339 identity?: NullableOption<Identity>;
5340+ /**
5341+ * Unique identifier of a virtualEventRegistration that is available to all participants registered for the
5342+ * virtualEventWebinar.
5343+ */
53375344 registrationId?: NullableOption<string>;
53385345 // Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.
53395346 role?: NullableOption<string>;
@@ -7528,16 +7535,33 @@ export interface ConversationThread extends Entity {
75287535 posts?: NullableOption<Post[]>;
75297536}
75307537export interface CopilotAdmin extends Entity {
7538+ // Set of Microsoft 365 Copilot settings that can be added or modified. Read-only. Nullable.
75317539 settings?: NullableOption<CopilotAdminSetting>;
75327540}
75337541export interface CopilotAdminLimitedMode extends Entity {
7542+ /**
7543+ * The ID of a Microsoft Entra group, for which the value of isEnabledForGroup is applied. The default value is null. If
7544+ * isEnabledForGroup is set to true, the groupId value must be provided for the Copilot limited mode in Teams meetings to
7545+ * be enabled for the members of the group. Optional.
7546+ */
75347547 groupId?: NullableOption<string>;
7548+ /**
7549+ * Enables the user to be in limited mode for Copilot in Teams meetings. When copilotAdminLimitedMode=true, users in this
7550+ * mode can ask any questions, but Copilot doesn't respond to certain questions related to inferring emotions, behavior,
7551+ * or judgments. When copilotAdminLimitedMode=false, it responds to all types of questions grounded to the meeting
7552+ * conversation. The default value is false.
7553+ */
75357554 isEnabledForGroup?: NullableOption<boolean>;
75367555}
75377556export interface CopilotAdminSetting extends Entity {
7557+ /**
7558+ * Represents a setting that controls whether users of Microsoft 365 Copilot in Teams meetings can receive responses to
7559+ * sentiment-related prompts. Read-only. Nullable.
7560+ */
75387561 limitedMode?: NullableOption<CopilotAdminLimitedMode>;
75397562}
75407563export interface CopilotRoot {
7564+ // The Microsoft 365 Copilot admin who can add or modify Copilot settings. Read-only. Nullable.
75417565 admin?: NullableOption<CopilotAdmin>;
75427566}
75437567export interface CountryNamedLocation extends NamedLocation {
@@ -12966,6 +12990,7 @@ export interface ManagedMobileLobApp extends ManagedApp {
1296612990// tslint:disable-next-line: no-empty-interface
1296712991export interface MdmWindowsInformationProtectionPolicy extends WindowsInformationProtection {}
1296812992export interface MeetingAttendanceReport extends Entity {
12993+ // The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only.
1296912994 externalEventInformation?: NullableOption<VirtualEventExternalInformation[]>;
1297012995 // UTC time when the meeting ended. Read-only.
1297112996 meetingEndDateTime?: NullableOption<string>;
@@ -24019,7 +24044,8 @@ export interface AttributeMapping {
2401924044 * Defines when this attribute should be updated in the target directory. Possible values are: Always (default)
2402024045 * ObjectAddOnly - only when new object is created MultiValueAddOnly - only when the change is adding new values to a
2402124046 * multi-valued attribute ValueAddOnly - If there is a current value, only flows 'Add' operations; will not flow 'Remove'
24022- * operations AttributeAddOnly - Only propagates changes if no current value exists at all
24047+ * operations AttributeAddOnly - Only propagates changes if no current value exists at all Note: AD2AAD provisioning jobs
24048+ * don't respect the flowType property value.
2402324049 */
2402424050 flowType?: AttributeFlowType;
2402524051 /**
0 commit comments