Skip to content

Commit 6f181b7

Browse files
authored
Merge pull request #751 from microsoftgraph/v1.0/pipelinebuild/185491
Generated models and request builders
2 parents 7874f1c + 71d2813 commit 6f181b7

File tree

1 file changed

+83
-12
lines changed

1 file changed

+83
-12
lines changed

microsoft-graph.d.ts

Lines changed: 83 additions & 12 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.
@@ -3619,6 +3620,7 @@ export interface AccessPackageAssignmentRequest extends Entity {
36193620
createdDateTime?: NullableOption<string>;
36203621
// Information about all the custom extension calls that were made during the access package assignment workflow.
36213622
customExtensionCalloutInstances?: NullableOption<CustomExtensionCalloutInstance[]>;
3623+
justification?: NullableOption<string>;
36223624
/**
36233625
* The type of the request. The possible values are: notSpecified, userAdd, UserExtend, userUpdate, userRemove, adminAdd,
36243626
* adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd (not supported), unknownFutureValue.
@@ -11031,8 +11033,8 @@ export interface InsightsSettings extends Entity {
1103111033
export interface InternalDomainFederation extends SamlOrWsFedProvider {
1103211034
/**
1103311035
* 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.
11036+
* Microsoft Entra ID. Corresponds to the ActiveLogOnUri property of the Set-EntraDomainFederationSettings PowerShell
11037+
* cmdlet.
1103611038
*/
1103711039
activeSignInUri?: NullableOption<string>;
1103811040
/**
@@ -11067,7 +11069,7 @@ export interface InternalDomainFederation extends SamlOrWsFedProvider {
1106711069
signingCertificateUpdateStatus?: NullableOption<SigningCertificateUpdateStatus>;
1106811070
/**
1106911071
* 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.
11072+
* property of the Set-EntraDomainFederationSettings PowerShell cmdlet.
1107111073
*/
1107211074
signOutUri?: NullableOption<string>;
1107311075
}
@@ -15958,7 +15960,7 @@ export interface SchedulingGroup extends ChangeTrackedEntity {
1595815960
userIds?: NullableOption<string[]>;
1595915961
}
1596015962
export interface SchemaExtension extends Entity {
15961-
// Description for the schema extension. Supports $filter (eq).
15963+
// Description for the schema extension.
1596215964
description?: NullableOption<string>;
1596315965
/**
1596415966
* The appId of the application that is the owner of the schema extension. The owner of the schema definition must be
@@ -22826,6 +22828,10 @@ export interface X509CertificateAuthenticationMethodConfiguration extends Authen
2282622828
* binding that matches will be used and the rest ignored.
2282722829
*/
2282822830
certificateUserBindings?: NullableOption<X509CertificateUserBinding[]>;
22831+
/**
22832+
* Determines whether certificate based authentication should fail if the issuing CA doesn't have a valid certificate
22833+
* revocation list configured.
22834+
*/
2282922835
crlValidationConfiguration?: X509CertificateCRLValidationConfiguration;
2283022836
// A collection of groups that are enabled to use the authentication method.
2283122837
includeTargets?: NullableOption<AuthenticationMethodTarget[]>;
@@ -22900,6 +22906,7 @@ export interface AccessPackageAssignmentApprovalSettings {
2290022906
isApprovalRequiredForAdd?: NullableOption<boolean>;
2290122907
// If false, then approval isn't required for updates to requests in this policy.
2290222908
isApprovalRequiredForUpdate?: NullableOption<boolean>;
22909+
isRequestorJustificationRequired?: NullableOption<boolean>;
2290322910
/**
2290422911
* If approval is required, the one, two or three elements of this collection define each of the stages of approval. An
2290522912
* empty array is present if no approval is required.
@@ -22948,6 +22955,7 @@ export interface AccessPackageAssignmentRequestRequirements {
2294822955
isApprovalRequiredForAdd?: NullableOption<boolean>;
2294922956
// Indicates whether a request to update must be approved by an approver.
2295022957
isApprovalRequiredForUpdate?: NullableOption<boolean>;
22958+
isRequestorJustificationRequired?: NullableOption<boolean>;
2295122959
// The description of the policy that the user is trying to request access using.
2295222960
policyDescription?: NullableOption<string>;
2295322961
// The display name of the policy that the user is trying to request access using.
@@ -23002,6 +23010,9 @@ export interface AccessPackageLocalizedText {
2300223010
// The question in the specific language. Required.
2300323011
text?: NullableOption<string>;
2300423012
}
23013+
export interface AccessPackageNotificationSettings {
23014+
isAssignmentNotificationDisabled?: boolean;
23015+
}
2300523016
export interface AccessPackageResourceAttribute {
2300623017
// Information about how to set the attribute, currently a accessPackageUserDirectoryAttributeStore type.
2300723018
destination?: NullableOption<AccessPackageResourceAttributeDestination>;
@@ -26717,16 +26728,16 @@ export interface GroupMembers extends SubjectSet {
2671726728
// tslint:disable-next-line: no-empty-interface
2671826729
export interface GroupPeerOutlierRecommendationInsightSettings extends AccessReviewRecommendationInsightSetting {}
2671926730
export interface Hashes {
26720-
// The CRC32 value of the file in little endian (if available). Read-only.
26731+
// The CRC32 value of the file (if available). Read-only.
2672126732
crc32Hash?: NullableOption<string>;
2672226733
/**
26723-
* A proprietary hash of the file that can be used to determine if the contents of the file have changed (if available).
26734+
* A proprietary hash of the file that can be used to determine if the contents of the file change (if available).
2672426735
* Read-only.
2672526736
*/
2672626737
quickXorHash?: NullableOption<string>;
2672726738
// SHA1 hash for the contents of the file (if available). Read-only.
2672826739
sha1Hash?: NullableOption<string>;
26729-
// SHA256 hash for the contents of the file (if available). Read-only.
26740+
// This property isn't supported. Don't use.
2673026741
sha256Hash?: NullableOption<string>;
2673126742
}
2673226743
export interface HostSecurityState {
@@ -33035,7 +33046,15 @@ export interface X509CertificateAuthenticationModeConfiguration {
3303533046
x509CertificateDefaultRequiredAffinityLevel?: NullableOption<X509CertificateAffinityLevel>;
3303633047
}
3303733048
export interface X509CertificateCRLValidationConfiguration {
33049+
/**
33050+
* Represents the SKIs of CAs that should be excluded from the valid CRL distribution point check. SKI is represented as a
33051+
* hexadecimal string.
33052+
*/
3303833053
exemptedCertificateAuthoritiesSubjectKeyIdentifiers?: NullableOption<string[]>;
33054+
/**
33055+
* Describes whether valid CRLDistributionPoint is required from CAs for CBA to be successful. The possible values are:
33056+
* disabled, enabled, unknownFutureValue.
33057+
*/
3303933058
state?: X509CertificateCRLValidationConfigurationState;
3304033059
}
3304133060
export interface X509CertificateRule {
@@ -33564,7 +33583,10 @@ export namespace CallRecords {
3356433583
* cause poor quality of the audio sent.
3356533584
*/
3356633585
bandwidthLowEventRatio?: NullableOption<number>;
33567-
// The wireless LAN basic service set identifier of the media endpoint used to connect to the network.
33586+
/**
33587+
* The wireless LAN basic service set identifier of the media endpoint used to connect to the network. This property isn't
33588+
* available if the user disables precise location sharing in their operating system or Microsoft Teams app settings.
33589+
*/
3356833590
basicServiceSetIdentifier?: NullableOption<string>;
3356933591
/**
3357033592
* Type of network used by the media endpoint. Possible values are: unknown, wired, wifi, mobile, tunnel,
@@ -34866,15 +34888,33 @@ export namespace Search {
3486634888
}
3486734889
export namespace SecurityNamespace {
3486834890
type ActionAfterRetentionPeriod = "none" | "delete" | "startDispositionReview" | "relabel" | "unknownFutureValue";
34869-
type AdditionalDataOptions = "allVersions" | "linkedFiles" | "unknownFutureValue";
34891+
type AdditionalDataOptions =
34892+
| "allVersions"
34893+
| "linkedFiles"
34894+
| "unknownFutureValue"
34895+
| "advancedIndexing"
34896+
| "listAttachments"
34897+
| "htmlTranscripts"
34898+
| "messageConversationExpansion"
34899+
| "locationsWithoutHits"
34900+
| "allItemsInFolder";
3487034901
type AdditionalOptions =
3487134902
| "none"
3487234903
| "teamsAndYammerConversations"
3487334904
| "cloudAttachments"
3487434905
| "allDocumentVersions"
3487534906
| "subfolderContents"
3487634907
| "listAttachments"
34877-
| "unknownFutureValue";
34908+
| "unknownFutureValue"
34909+
| "htmlTranscripts"
34910+
| "advancedIndexing"
34911+
| "allItemsInFolder"
34912+
| "includeFolderAndPath"
34913+
| "condensePaths"
34914+
| "friendlyName"
34915+
| "splitSource"
34916+
| "optimizedPartitionSize"
34917+
| "includeReport";
3487834918
type AlertClassification =
3487934919
| "unknown"
3488034920
| "falsePositive"
@@ -34936,6 +34976,7 @@ export namespace SecurityNamespace {
3493634976
| "closedWithError"
3493734977
| "unknownFutureValue";
3493834978
type ChildSelectability = "One" | "Many" | "unknownFutureValue";
34979+
type CloudAttachmentVersion = "latest" | "recent10" | "recent100" | "all" | "unknownFutureValue";
3493934980
type ContainerPortProtocol = "udp" | "tcp" | "sctp" | "unknownFutureValue";
3494034981
type ContentFormat = "text" | "html" | "markdown" | "unknownFutureValue";
3494134982
type DataSourceContainerStatus = "active" | "released" | "unknownFutureValue";
@@ -35014,6 +35055,7 @@ export namespace SecurityNamespace {
3501435055
| "unknown"
3501535056
| "unknownFutureValue";
3501635057
type DeviceRiskScore = "none" | "informational" | "low" | "medium" | "high" | "unknownFutureValue";
35058+
type DocumentVersion = "latest" | "recent10" | "recent100" | "all" | "unknownFutureValue";
3501735059
type EventPropagationStatus = "none" | "inProcessing" | "failed" | "success" | "unknownFutureValue";
3501835060
type EventStatusType = "pending" | "error" | "success" | "notAvaliable" | "unknownFutureValue";
3501935061
type EvidenceRemediationStatus =
@@ -35048,10 +35090,20 @@ export namespace SecurityNamespace {
3504835090
| "unknownFutureValue";
3504935091
type EvidenceVerdict = "unknown" | "suspicious" | "malicious" | "noThreatsFound" | "unknownFutureValue";
3505035092
type ExportCriteria = "searchHits" | "partiallyIndexed" | "unknownFutureValue";
35051-
type ExportFileStructure = "none" | "directory" | "pst" | "unknownFutureValue";
35093+
type ExportFileStructure = "none" | "directory" | "pst" | "unknownFutureValue" | "msg";
3505235094
type ExportFormat = "pst" | "msg" | "eml" | "unknownFutureValue";
3505335095
type ExportLocation = "responsiveLocations" | "nonresponsiveLocations" | "unknownFutureValue";
35054-
type ExportOptions = "originalFiles" | "text" | "pdfReplacement" | "tags" | "unknownFutureValue";
35096+
type ExportOptions =
35097+
| "originalFiles"
35098+
| "text"
35099+
| "pdfReplacement"
35100+
| "tags"
35101+
| "unknownFutureValue"
35102+
| "splitSource"
35103+
| "includeFolderAndPath"
35104+
| "friendlyName"
35105+
| "condensePaths"
35106+
| "optimizedPartitionSize";
3505535107
type FileHashAlgorithm = "unknown" | "md5" | "sha1" | "sha256" | "sha256ac" | "unknownFutureValue";
3505635108
type GoogleCloudLocationType = "unknown" | "regional" | "zonal" | "global" | "unknownFutureValue";
3505735109
type HealthIssueSeverity = "low" | "medium" | "high" | "unknownFutureValue";
@@ -35065,6 +35117,7 @@ export namespace SecurityNamespace {
3506535117
type IndicatorSource = "microsoft" | "osint" | "public" | "unknownFutureValue";
3506635118
type IntelligenceProfileKind = "actor" | "tool" | "unknownFutureValue";
3506735119
type IoTDeviceImportanceType = "unknown" | "low" | "normal" | "high" | "unknownFutureValue";
35120+
type ItemsToInclude = "searchHits" | "partiallyIndexed" | "unknownFutureValue";
3506835121
type KubernetesPlatform = "unknown" | "aks" | "eks" | "gke" | "arc" | "unknownFutureValue";
3506935122
type KubernetesServiceType =
3507035123
| "unknown"
@@ -35110,6 +35163,13 @@ export namespace SecurityNamespace {
3511035163
| "microsoftSentinel"
3511135164
| "microsoftInsiderRiskManagement";
3511235165
type SourceType = "mailbox" | "site" | "unknownFutureValue";
35166+
type StatisticsOptions =
35167+
| "includeRefiners"
35168+
| "includeQueryStats"
35169+
| "includeUnindexedStats"
35170+
| "advancedIndexing"
35171+
| "locationsWithoutHits"
35172+
| "unknownFutureValue";
3511335173
type TeamsDeliveryLocation = "unknown" | "teams" | "quarantine" | "failed" | "unknownFutureValue";
3511435174
type TeamsMessageDeliveryAction =
3511535175
| "unknown"
@@ -35155,6 +35215,7 @@ export namespace SecurityNamespace {
3515535215
comments?: NullableOption<AlertComment[]>;
3515635216
// Time when Microsoft 365 Defender created the alert.
3515735217
createdDateTime?: NullableOption<string>;
35218+
customDetails?: NullableOption<Dictionary>;
3515835219
// String value describing each alert.
3515935220
description?: NullableOption<string>;
3516035221
/**
@@ -35350,6 +35411,10 @@ export namespace SecurityNamespace {
3535035411
stageNumber?: string;
3535135412
}
3535235413
interface EdiscoveryAddToReviewSetOperation extends CaseOperation {
35414+
additionalDataOptions?: AdditionalDataOptions;
35415+
cloudAttachmentVersion?: CloudAttachmentVersion;
35416+
documentVersion?: DocumentVersion;
35417+
itemsToInclude?: ItemsToInclude;
3535335418
// eDiscovery review set to which items matching source collection query gets added.
3535435419
reviewSet?: NullableOption<EdiscoveryReviewSet>;
3535535420
// eDiscovery search that gets added to review set.
@@ -35411,6 +35476,7 @@ export namespace SecurityNamespace {
3541135476
mailboxCount?: NullableOption<number>;
3541235477
// The number of mailboxes that had search hits.
3541335478
siteCount?: NullableOption<number>;
35479+
statisticsOptions?: StatisticsOptions;
3541435480
// The estimated count of unindexed items for the collection.
3541535481
unindexedItemCount?: NullableOption<number>;
3541635482
// The estimated size of unindexed items for the collection.
@@ -35492,10 +35558,12 @@ export namespace SecurityNamespace {
3549235558
* cloudAttachments, allDocumentVersions, subfolderContents, listAttachments, unknownFutureValue.
3549335559
*/
3549435560
additionalOptions?: NullableOption<AdditionalOptions>;
35561+
cloudAttachmentVersion?: CloudAttachmentVersion;
3549535562
// The description of the export by the user.
3549635563
description?: NullableOption<string>;
3549735564
// The name of export provided by the user.
3549835565
displayName?: NullableOption<string>;
35566+
documentVersion?: DocumentVersion;
3549935567
// Items to be included in the export. The possible values are: searchHits, partiallyIndexed, unknownFutureValue.
3550035568
exportCriteria?: NullableOption<ExportCriteria>;
3550135569
// Contains the properties for an export file metadata, including downloadUrl, fileName, and size.
@@ -36696,10 +36764,13 @@ export namespace SecurityNamespace {
3669636764
fileSize?: NullableOption<number>;
3669736765
// The certificate authority (CA) that issued the certificate.
3669836766
issuer?: NullableOption<string>;
36767+
// The Md5 cryptographic hash of the file content.
36768+
md5?: NullableOption<string>;
3669936769
// The Sha1 cryptographic hash of the file content.
3670036770
sha1?: NullableOption<string>;
3670136771
// The Sha256 cryptographic hash of the file content.
3670236772
sha256?: NullableOption<string>;
36773+
sha256Ac?: NullableOption<string>;
3670336774
// The signer of the signed file.
3670436775
signer?: NullableOption<string>;
3670536776
}

0 commit comments

Comments
 (0)