Skip to content

Commit 5e1f519

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 184371
1 parent ee64086 commit 5e1f519

File tree

1 file changed

+79
-18
lines changed

1 file changed

+79
-18
lines changed

microsoft-graph.d.ts

Lines changed: 79 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3580,6 +3580,7 @@ export interface AccessPackageAssignmentPolicy extends Entity {
35803580
* midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
35813581
*/
35823582
modifiedDateTime?: NullableOption<string>;
3583+
notificationSettings?: NullableOption<AccessPackageNotificationSettings>;
35833584
/**
35843585
* Specifies the settings for approval of requests for an access package assignment through this policy. For example, if
35853586
* approval is required for new requests.
@@ -11031,8 +11032,8 @@ export interface InsightsSettings extends Entity {
1103111032
export interface InternalDomainFederation extends SamlOrWsFedProvider {
1103211033
/**
1103311034
* URL of the endpoint used by active clients when authenticating with federated domains set up for single sign-on in
11034-
* Microsoft Entra ID. Corresponds to the ActiveLogOnUri property of the Set-MsolDomainFederationSettings MSOnline v1
11035-
* PowerShell cmdlet.
11035+
* Microsoft Entra ID. Corresponds to the ActiveLogOnUri property of the Set-EntraDomainFederationSettings PowerShell
11036+
* cmdlet.
1103611037
*/
1103711038
activeSignInUri?: NullableOption<string>;
1103811039
/**
@@ -11067,7 +11068,7 @@ export interface InternalDomainFederation extends SamlOrWsFedProvider {
1106711068
signingCertificateUpdateStatus?: NullableOption<SigningCertificateUpdateStatus>;
1106811069
/**
1106911070
* URI that clients are redirected to when they sign out of Microsoft Entra services. Corresponds to the LogOffUri
11070-
* property of the Set-MsolDomainFederationSettings MSOnline v1 PowerShell cmdlet.
11071+
* property of the Set-EntraDomainFederationSettings PowerShell cmdlet.
1107111072
*/
1107211073
signOutUri?: NullableOption<string>;
1107311074
}
@@ -22826,6 +22827,10 @@ export interface X509CertificateAuthenticationMethodConfiguration extends Authen
2282622827
* binding that matches will be used and the rest ignored.
2282722828
*/
2282822829
certificateUserBindings?: NullableOption<X509CertificateUserBinding[]>;
22830+
/**
22831+
* Determines whether certificate based authentication should fail if the issuing CA doesn't have a valid certificate
22832+
* revocation list configured.
22833+
*/
2282922834
crlValidationConfiguration?: X509CertificateCRLValidationConfiguration;
2283022835
// A collection of groups that are enabled to use the authentication method.
2283122836
includeTargets?: NullableOption<AuthenticationMethodTarget[]>;
@@ -23002,6 +23007,9 @@ export interface AccessPackageLocalizedText {
2300223007
// The question in the specific language. Required.
2300323008
text?: NullableOption<string>;
2300423009
}
23010+
export interface AccessPackageNotificationSettings {
23011+
isAssignmentNotificationDisabled?: boolean;
23012+
}
2300523013
export interface AccessPackageResourceAttribute {
2300623014
// Information about how to set the attribute, currently a accessPackageUserDirectoryAttributeStore type.
2300723015
destination?: NullableOption<AccessPackageResourceAttributeDestination>;
@@ -32981,27 +32989,27 @@ export interface WorkbookSortField {
3298132989
sortOn?: string;
3298232990
}
3298332991
export interface WorkbookWorksheetProtectionOptions {
32984-
// Represents the worksheet protection option of allowing using auto filter feature.
32992+
// Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
3298532993
allowAutoFilter?: boolean;
32986-
// Represents the worksheet protection option of allowing deleting columns.
32994+
// Indicates whether the worksheet protection option to allow deleting columns is enabled.
3298732995
allowDeleteColumns?: boolean;
32988-
// Represents the worksheet protection option of allowing deleting rows.
32996+
// Indicates whether the worksheet protection option to allow deleting rows is enabled.
3298932997
allowDeleteRows?: boolean;
32990-
// Represents the worksheet protection option of allowing formatting cells.
32998+
// Indicates whether the worksheet protection option to allow formatting cells is enabled.
3299132999
allowFormatCells?: boolean;
32992-
// Represents the worksheet protection option of allowing formatting columns.
33000+
// Indicates whether the worksheet protection option to allow formatting columns is enabled.
3299333001
allowFormatColumns?: boolean;
32994-
// Represents the worksheet protection option of allowing formatting rows.
33002+
// Indicates whether the worksheet protection option to allow formatting rows is enabled.
3299533003
allowFormatRows?: boolean;
32996-
// Represents the worksheet protection option of allowing inserting columns.
33004+
// Indicates whether the worksheet protection option to allow inserting columns is enabled.
3299733005
allowInsertColumns?: boolean;
32998-
// Represents the worksheet protection option of allowing inserting hyperlinks.
33006+
// Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
3299933007
allowInsertHyperlinks?: boolean;
33000-
// Represents the worksheet protection option of allowing inserting rows.
33008+
// Indicates whether the worksheet protection option to allow inserting rows is enabled.
3300133009
allowInsertRows?: boolean;
33002-
// Represents the worksheet protection option of allowing using pivot table feature.
33010+
// Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
3300333011
allowPivotTables?: boolean;
33004-
// Represents the worksheet protection option of allowing using sort feature.
33012+
// Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
3300533013
allowSort?: boolean;
3300633014
}
3300733015
export interface WorkforceIntegrationEncryption {
@@ -33035,7 +33043,15 @@ export interface X509CertificateAuthenticationModeConfiguration {
3303533043
x509CertificateDefaultRequiredAffinityLevel?: NullableOption<X509CertificateAffinityLevel>;
3303633044
}
3303733045
export interface X509CertificateCRLValidationConfiguration {
33046+
/**
33047+
* Represents the SKIs of CAs that should be excluded from the valid CRL distribution point check. SKI is represented as a
33048+
* hexadecimal string.
33049+
*/
3303833050
exemptedCertificateAuthoritiesSubjectKeyIdentifiers?: NullableOption<string[]>;
33051+
/**
33052+
* Describes whether valid CRLDistributionPoint is required from CAs for CBA to be successful. The possible values are:
33053+
* disabled, enabled, unknownFutureValue.
33054+
*/
3303933055
state?: X509CertificateCRLValidationConfigurationState;
3304033056
}
3304133057
export interface X509CertificateRule {
@@ -34866,15 +34882,33 @@ export namespace Search {
3486634882
}
3486734883
export namespace SecurityNamespace {
3486834884
type ActionAfterRetentionPeriod = "none" | "delete" | "startDispositionReview" | "relabel" | "unknownFutureValue";
34869-
type AdditionalDataOptions = "allVersions" | "linkedFiles" | "unknownFutureValue";
34885+
type AdditionalDataOptions =
34886+
| "allVersions"
34887+
| "linkedFiles"
34888+
| "unknownFutureValue"
34889+
| "advancedIndexing"
34890+
| "listAttachments"
34891+
| "htmlTranscripts"
34892+
| "messageConversationExpansion"
34893+
| "locationsWithoutHits"
34894+
| "allItemsInFolder";
3487034895
type AdditionalOptions =
3487134896
| "none"
3487234897
| "teamsAndYammerConversations"
3487334898
| "cloudAttachments"
3487434899
| "allDocumentVersions"
3487534900
| "subfolderContents"
3487634901
| "listAttachments"
34877-
| "unknownFutureValue";
34902+
| "unknownFutureValue"
34903+
| "htmlTranscripts"
34904+
| "advancedIndexing"
34905+
| "allItemsInFolder"
34906+
| "includeFolderAndPath"
34907+
| "condensePaths"
34908+
| "friendlyName"
34909+
| "splitSource"
34910+
| "optimizedPartitionSize"
34911+
| "includeReport";
3487834912
type AlertClassification =
3487934913
| "unknown"
3488034914
| "falsePositive"
@@ -34936,6 +34970,7 @@ export namespace SecurityNamespace {
3493634970
| "closedWithError"
3493734971
| "unknownFutureValue";
3493834972
type ChildSelectability = "One" | "Many" | "unknownFutureValue";
34973+
type CloudAttachmentVersion = "latest" | "recent10" | "recent100" | "all" | "unknownFutureValue";
3493934974
type ContainerPortProtocol = "udp" | "tcp" | "sctp" | "unknownFutureValue";
3494034975
type ContentFormat = "text" | "html" | "markdown" | "unknownFutureValue";
3494134976
type DataSourceContainerStatus = "active" | "released" | "unknownFutureValue";
@@ -35014,6 +35049,7 @@ export namespace SecurityNamespace {
3501435049
| "unknown"
3501535050
| "unknownFutureValue";
3501635051
type DeviceRiskScore = "none" | "informational" | "low" | "medium" | "high" | "unknownFutureValue";
35052+
type DocumentVersion = "latest" | "recent10" | "recent100" | "all" | "unknownFutureValue";
3501735053
type EventPropagationStatus = "none" | "inProcessing" | "failed" | "success" | "unknownFutureValue";
3501835054
type EventStatusType = "pending" | "error" | "success" | "notAvaliable" | "unknownFutureValue";
3501935055
type EvidenceRemediationStatus =
@@ -35048,10 +35084,20 @@ export namespace SecurityNamespace {
3504835084
| "unknownFutureValue";
3504935085
type EvidenceVerdict = "unknown" | "suspicious" | "malicious" | "noThreatsFound" | "unknownFutureValue";
3505035086
type ExportCriteria = "searchHits" | "partiallyIndexed" | "unknownFutureValue";
35051-
type ExportFileStructure = "none" | "directory" | "pst" | "unknownFutureValue";
35087+
type ExportFileStructure = "none" | "directory" | "pst" | "unknownFutureValue" | "msg";
3505235088
type ExportFormat = "pst" | "msg" | "eml" | "unknownFutureValue";
3505335089
type ExportLocation = "responsiveLocations" | "nonresponsiveLocations" | "unknownFutureValue";
35054-
type ExportOptions = "originalFiles" | "text" | "pdfReplacement" | "tags" | "unknownFutureValue";
35090+
type ExportOptions =
35091+
| "originalFiles"
35092+
| "text"
35093+
| "pdfReplacement"
35094+
| "tags"
35095+
| "unknownFutureValue"
35096+
| "splitSource"
35097+
| "includeFolderAndPath"
35098+
| "friendlyName"
35099+
| "condensePaths"
35100+
| "optimizedPartitionSize";
3505535101
type FileHashAlgorithm = "unknown" | "md5" | "sha1" | "sha256" | "sha256ac" | "unknownFutureValue";
3505635102
type GoogleCloudLocationType = "unknown" | "regional" | "zonal" | "global" | "unknownFutureValue";
3505735103
type HealthIssueSeverity = "low" | "medium" | "high" | "unknownFutureValue";
@@ -35065,6 +35111,7 @@ export namespace SecurityNamespace {
3506535111
type IndicatorSource = "microsoft" | "osint" | "public" | "unknownFutureValue";
3506635112
type IntelligenceProfileKind = "actor" | "tool" | "unknownFutureValue";
3506735113
type IoTDeviceImportanceType = "unknown" | "low" | "normal" | "high" | "unknownFutureValue";
35114+
type ItemsToInclude = "searchHits" | "partiallyIndexed" | "unknownFutureValue";
3506835115
type KubernetesPlatform = "unknown" | "aks" | "eks" | "gke" | "arc" | "unknownFutureValue";
3506935116
type KubernetesServiceType =
3507035117
| "unknown"
@@ -35110,6 +35157,13 @@ export namespace SecurityNamespace {
3511035157
| "microsoftSentinel"
3511135158
| "microsoftInsiderRiskManagement";
3511235159
type SourceType = "mailbox" | "site" | "unknownFutureValue";
35160+
type StatisticsOptions =
35161+
| "includeRefiners"
35162+
| "includeQueryStats"
35163+
| "includeUnindexedStats"
35164+
| "advancedIndexing"
35165+
| "locationsWithoutHits"
35166+
| "unknownFutureValue";
3511335167
type TeamsDeliveryLocation = "unknown" | "teams" | "quarantine" | "failed" | "unknownFutureValue";
3511435168
type TeamsMessageDeliveryAction =
3511535169
| "unknown"
@@ -35350,6 +35404,10 @@ export namespace SecurityNamespace {
3535035404
stageNumber?: string;
3535135405
}
3535235406
interface EdiscoveryAddToReviewSetOperation extends CaseOperation {
35407+
additionalDataOptions?: AdditionalDataOptions;
35408+
cloudAttachmentVersion?: CloudAttachmentVersion;
35409+
documentVersion?: DocumentVersion;
35410+
itemsToInclude?: ItemsToInclude;
3535335411
// eDiscovery review set to which items matching source collection query gets added.
3535435412
reviewSet?: NullableOption<EdiscoveryReviewSet>;
3535535413
// eDiscovery search that gets added to review set.
@@ -35411,6 +35469,7 @@ export namespace SecurityNamespace {
3541135469
mailboxCount?: NullableOption<number>;
3541235470
// The number of mailboxes that had search hits.
3541335471
siteCount?: NullableOption<number>;
35472+
statisticsOptions?: StatisticsOptions;
3541435473
// The estimated count of unindexed items for the collection.
3541535474
unindexedItemCount?: NullableOption<number>;
3541635475
// The estimated size of unindexed items for the collection.
@@ -35492,10 +35551,12 @@ export namespace SecurityNamespace {
3549235551
* cloudAttachments, allDocumentVersions, subfolderContents, listAttachments, unknownFutureValue.
3549335552
*/
3549435553
additionalOptions?: NullableOption<AdditionalOptions>;
35554+
cloudAttachmentVersion?: CloudAttachmentVersion;
3549535555
// The description of the export by the user.
3549635556
description?: NullableOption<string>;
3549735557
// The name of export provided by the user.
3549835558
displayName?: NullableOption<string>;
35559+
documentVersion?: DocumentVersion;
3549935560
// Items to be included in the export. The possible values are: searchHits, partiallyIndexed, unknownFutureValue.
3550035561
exportCriteria?: NullableOption<ExportCriteria>;
3550135562
// Contains the properties for an export file metadata, including downloadUrl, fileName, and size.

0 commit comments

Comments
 (0)