@@ -4223,8 +4223,8 @@ export interface AdministrativeUnit extends DirectoryObject {
42234223 // An optional description for the administrative unit. Supports $filter (eq, ne, in, startsWith), $search.
42244224 description?: NullableOption<string>;
42254225 /**
4226- * Display name for the administrative unit. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null
4227- * values), $search, and $orderby.
4226+ * Display name for the administrative unit. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in,
4227+ * startsWith, and eq on null values), $search, and $orderby.
42284228 */
42294229 displayName?: NullableOption<string>;
42304230 isMemberManagementRestricted?: NullableOption<boolean>;
@@ -4948,8 +4948,8 @@ export interface Application extends DirectoryObject {
49484948 */
49494949 disabledByMicrosoftStatus?: NullableOption<string>;
49504950 /**
4951- * The display name for the application. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) ,
4952- * $search, and $orderby.
4951+ * The display name for the application. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in,
4952+ * startsWith, and eq on null values), $search, and $orderby.
49534953 */
49544954 displayName?: NullableOption<string>;
49554955 /**
@@ -5150,8 +5150,8 @@ export interface AppRoleAssignment extends DirectoryObject {
51505150 */
51515151 createdDateTime?: NullableOption<string>;
51525152 /**
5153- * The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports
5154- * $filter (eq and startswith).
5153+ * The display name of the user, group, or service principal that was granted the app role assignment. Maximum length is
5154+ * 256 characters. Read-only. Supports $filter (eq and startswith).
51555155 */
51565156 principalDisplayName?: NullableOption<string>;
51575157 /**
@@ -5161,7 +5161,10 @@ export interface AppRoleAssignment extends DirectoryObject {
51615161 principalId?: NullableOption<string>;
51625162 // The type of the assigned principal. This can either be User, Group, or ServicePrincipal. Read-only.
51635163 principalType?: NullableOption<string>;
5164- // The display name of the resource app's service principal to which the assignment is made.
5164+ /**
5165+ * The display name of the resource app's service principal to which the assignment is made. Maximum length is 256
5166+ * characters.
5167+ */
51655168 resourceDisplayName?: NullableOption<string>;
51665169 /**
51675170 * The unique identifier (id) for the resource service principal for which the assignment is made. Required on create.
@@ -7917,8 +7920,8 @@ export interface Device extends DirectoryObject {
79177920 // For internal use only.
79187921 deviceVersion?: NullableOption<number>;
79197922 /**
7920- * The display name for the device. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null
7921- * values), $search, and $orderby.
7923+ * The display name for the device. Maximum length is 256 characters. Required. Supports $filter (eq, ne, not, ge, le, in,
7924+ * startsWith, and eq on null values), $search, and $orderby.
79227925 */
79237926 displayName?: NullableOption<string>;
79247927 /**
@@ -13964,8 +13967,8 @@ export interface OrgContact extends DirectoryObject {
1396413967 */
1396513968 department?: NullableOption<string>;
1396613969 /**
13967- * Display name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null
13968- * values), $search, and $orderby.
13970+ * Display name for this organizational contact. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le,
13971+ * in, startsWith, and eq for null values), $search, and $orderby.
1396913972 */
1397013973 displayName?: NullableOption<string>;
1397113974 /**
@@ -16110,7 +16113,7 @@ export interface ServicePrincipal extends DirectoryObject {
1611016113 alternativeNames?: string[];
1611116114 // The description exposed by the associated application.
1611216115 appDescription?: NullableOption<string>;
16113- // The display name exposed by the associated application.
16116+ // The display name exposed by the associated application. Maximum length is 256 characters.
1611416117 appDisplayName?: NullableOption<string>;
1611516118 /**
1611616119 * The unique identifier for the associated application (its appId property). Alternate key. Supports $filter (eq, ne,
@@ -18650,7 +18653,7 @@ export interface User extends DirectoryObject {
1865018653 lastPasswordChangeDateTime?: NullableOption<string>;
1865118654 /**
1865218655 * Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated
18653- * based on ageGroup and consentProvidedForMinor properties. Allowed values: null, MinorWithOutParentalConsent,
18656+ * based on ageGroup and consentProvidedForMinor properties. Allowed values: null, Undefined, MinorWithOutParentalConsent,
1865418657 * MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. For more information, see legal age
1865518658 * group property definitions. Returned only on $select.
1865618659 */
@@ -25050,6 +25053,10 @@ export interface ConditionalAccessClientApplications {
2505025053 excludeServicePrincipals?: string[];
2505125054 // Service principal IDs included in the policy scope, or ServicePrincipalsInMyTenant.
2505225055 includeServicePrincipals?: string[];
25056+ /**
25057+ * Filter that defines the dynamic-servicePrincipal-syntax rule to include/exclude service principals. A filter can use
25058+ * custom security attributes to include/exclude service principals.
25059+ */
2505325060 servicePrincipalFilter?: NullableOption<ConditionalAccessFilter>;
2505425061}
2505525062export interface ConditionalAccessConditionSet {
@@ -26365,13 +26372,15 @@ export interface FileStorageContainerCustomPropertyValue {
2636526372 value?: string;
2636626373}
2636726374export interface FileStorageContainerSettings {
26375+ isItemVersioningEnabled?: NullableOption<boolean>;
2636826376 /**
2636926377 * Indicates whether Optical Character Recognition (OCR) is enabled for the container. The default value is false. When
2637026378 * set to true, OCR extraction is performed for new and updated documents of supported document types, and the extracted
2637126379 * fields in the metadata of the document enable end-user search and search-driven solutions. When set to false, existing
2637226380 * OCR metadata is not impacted. Optional. Read-write.
2637326381 */
2637426382 isOcrEnabled?: NullableOption<boolean>;
26383+ itemMajorVersionLimit?: NullableOption<number>;
2637526384}
2637626385export interface FileStorageContainerViewpoint {
2637726386 // The current user's effective role. Read-only.
@@ -27084,8 +27093,8 @@ export interface KeyCredentialConfiguration {
2708427093 */
2708527094 restrictionType?: NullableOption<AppKeyCredentialRestrictionType>;
2708627095 /**
27087- * String value that indicates if the restriction is evaluated. The possible values are: enabled, disabled, and
27088- * unknownFutureValue. If enabled, the restriction is evaluated. If disabled, the restriction isn't evaluated or enforced.
27096+ * Indicates whether the restriction is evaluated. The possible values are: enabled, disabled, unknownFutureValue. If
27097+ * enabled, the restriction is evaluated. If disabled, the restriction isn't evaluated or enforced.
2708927098 */
2709027099 state?: AppManagementRestrictionState;
2709127100}
@@ -28604,8 +28613,8 @@ export interface PasswordCredentialConfiguration {
2860428613 */
2860528614 restrictionType?: NullableOption<AppCredentialRestrictionType>;
2860628615 /**
28607- * String value that indicates if the restriction is evaluated. The possible values are: enabled, disabled, and
28608- * unknownFutureValue. If enabled, the restriction is evaluated. If disabled, the restriction isn't evaluated or enforced.
28616+ * Indicates whether the restriction is evaluated. The possible values are: enabled, disabled, unknownFutureValue. If
28617+ * enabled, the restriction is evaluated. If disabled, the restriction isn't evaluated or enforced.
2860928618 */
2861028619 state?: AppManagementRestrictionState;
2861128620}
@@ -32696,27 +32705,27 @@ export interface WorkbookSortField {
3269632705 sortOn?: string;
3269732706}
3269832707export interface WorkbookWorksheetProtectionOptions {
32699- // Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled .
32708+ // Represents the worksheet protection option of allowing using auto filter feature .
3270032709 allowAutoFilter?: boolean;
32701- // Indicates whether the worksheet protection option to allow deleting columns is enabled .
32710+ // Represents the worksheet protection option of allowing deleting columns.
3270232711 allowDeleteColumns?: boolean;
32703- // Indicates whether the worksheet protection option to allow deleting rows is enabled .
32712+ // Represents the worksheet protection option of allowing deleting rows.
3270432713 allowDeleteRows?: boolean;
32705- // Indicates whether the worksheet protection option to allow formatting cells is enabled .
32714+ // Represents the worksheet protection option of allowing formatting cells.
3270632715 allowFormatCells?: boolean;
32707- // Indicates whether the worksheet protection option to allow formatting columns is enabled .
32716+ // Represents the worksheet protection option of allowing formatting columns.
3270832717 allowFormatColumns?: boolean;
32709- // Indicates whether the worksheet protection option to allow formatting rows is enabled .
32718+ // Represents the worksheet protection option of allowing formatting rows.
3271032719 allowFormatRows?: boolean;
32711- // Indicates whether the worksheet protection option to allow inserting columns is enabled .
32720+ // Represents the worksheet protection option of allowing inserting columns.
3271232721 allowInsertColumns?: boolean;
32713- // Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled .
32722+ // Represents the worksheet protection option of allowing inserting hyperlinks.
3271432723 allowInsertHyperlinks?: boolean;
32715- // Indicates whether the worksheet protection option to allow inserting rows is enabled .
32724+ // Represents the worksheet protection option of allowing inserting rows.
3271632725 allowInsertRows?: boolean;
32717- // Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled .
32726+ // Represents the worksheet protection option of allowing using pivot table feature.
3271832727 allowPivotTables?: boolean;
32719- // Indicates whether the worksheet protection option to allow the use of the sort feature is enabled .
32728+ // Represents the worksheet protection option of allowing using sort feature.
3272032729 allowSort?: boolean;
3272132730}
3272232731export interface WorkforceIntegrationEncryption {
@@ -35016,6 +35025,7 @@ export namespace SecurityNamespace {
3501635025 interface DataSet extends microsoftgraph.Entity {
3501735026 createdBy?: NullableOption<microsoftgraph.IdentitySet>;
3501835027 createdDateTime?: NullableOption<string>;
35028+ description?: NullableOption<string>;
3501935029 displayName?: NullableOption<string>;
3502035030 }
3502135031 interface DataSource extends microsoftgraph.Entity {
0 commit comments