Skip to content

Commit 99e89d1

Browse files
authored
Merge pull request #735 from microsoftgraph/v1.0/pipelinebuild/182989
Generated models and request builders
2 parents 6549a07 + 6ce1f22 commit 99e89d1

File tree

1 file changed

+51
-11
lines changed

1 file changed

+51
-11
lines changed

microsoft-graph.d.ts

Lines changed: 51 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,6 +1073,7 @@ export type ImportedWindowsAutopilotDeviceIdentityImportStatus =
10731073
export type ImportedWindowsAutopilotDeviceIdentityUploadStatus = "noUpload" | "pending" | "complete" | "error";
10741074
export type IncludedUserRoles = "all" | "privilegedAdmin" | "admin" | "user" | "unknownFutureValue";
10751075
export type IncludedUserTypes = "all" | "member" | "guest" | "unknownFutureValue";
1076+
export type IncompatiblePrinterSettings = "show" | "hide" | "unknownFutureValue";
10761077
export type InferenceClassificationType = "focused" | "other";
10771078
export type InitiatorType = "user" | "application" | "system" | "unknownFutureValue";
10781079
export type InstallIntent = "available" | "required" | "uninstall" | "availableWithoutEnrollment";
@@ -6886,6 +6887,11 @@ export interface CloudPcOnPremisesConnection extends Entity {
68866887
export interface CloudPcProvisioningPolicy extends Entity {
68876888
// The URL of the alternate resource that links to this provisioning policy. Read-only.
68886889
alternateResourceUrl?: NullableOption<string>;
6890+
/**
6891+
* Indicates the Windows Autopatch settings for Cloud PCs using this provisioning policy. The settings take effect when
6892+
* the tenant enrolls in Autopatch and the managedType of the microsoftManagedDesktop property is set as starterManaged.
6893+
* Supports $select.
6894+
*/
68896895
autopatch?: NullableOption<CloudPcProvisioningPolicyAutopatch>;
68906896
// The display name of the Cloud PC group that the Cloud PCs reside in. Read-only.
68916897
cloudPcGroupDisplayName?: NullableOption<string>;
@@ -14785,8 +14791,12 @@ export interface PrintDocument extends Entity {
1478514791
contentType?: NullableOption<string>;
1478614792
// The document's name. Read-only.
1478714793
displayName?: NullableOption<string>;
14794+
// The time the document was downloaded. Read-only
14795+
downloadedDateTime?: NullableOption<string>;
1478814796
// The document's size in bytes. Read-only.
1478914797
size?: number;
14798+
// The time the document was uploaded. Read-only
14799+
uploadedDateTime?: NullableOption<string>;
1479014800
}
1479114801
export interface Printer extends PrinterBase {
1479214802
// True if the printer has a physical device for printing. Read-only.
@@ -14851,11 +14861,15 @@ export interface PrinterShare extends PrinterBase {
1485114861
printer?: NullableOption<Printer>;
1485214862
}
1485314863
export interface PrintJob extends Entity {
14864+
// The dateTimeOffset when the job was acknowledged. Read-only.
14865+
acknowledgedDateTime?: NullableOption<string>;
1485414866
// A group of settings that a printer should use to print a job.
1485514867
configuration?: PrintJobConfiguration;
1485614868
createdBy?: NullableOption<UserIdentity>;
1485714869
// The DateTimeOffset when the job was created. Read-only.
1485814870
createdDateTime?: string;
14871+
// The error code of the print job. Read-only.
14872+
errorCode?: NullableOption<number>;
1485914873
// If true, document can be fetched by printer.
1486014874
isFetchable?: boolean;
1486114875
// Contains the source job URL, if the job has been redirected from another printer.
@@ -17485,6 +17499,10 @@ export interface Team extends Entity {
1748517499
description?: NullableOption<string>;
1748617500
// The name of the team.
1748717501
displayName?: NullableOption<string>;
17502+
/**
17503+
* The name of the first channel in the team. This is an optional property, only used during team creation and isn't
17504+
* returned in methods to get and list teams.
17505+
*/
1748817506
firstChannelName?: NullableOption<string>;
1748917507
// Settings to configure use of Giphy, memes, and stickers in the team.
1749017508
funSettings?: NullableOption<TeamFunSettings>;
@@ -23256,6 +23274,13 @@ export interface AgreementFileData {
2325623274
// Data that represents the terms of use PDF document. Read-only.
2325723275
data?: NullableOption<string>;
2325823276
}
23277+
export interface AirPrintSettings {
23278+
/**
23279+
* Describes whether Universal Print hides printers from macOS when they don't support all capabilities required by the
23280+
* operating system as defined by AirPrint.
23281+
*/
23282+
incompatiblePrinters?: IncompatiblePrinterSettings;
23283+
}
2325923284
export interface Album {
2326023285
// Unique identifier of the driveItem that is the cover of the album.
2326123286
coverImageItemId?: NullableOption<string>;
@@ -25045,6 +25070,12 @@ export interface CloudPcOnPremisesConnectionStatusDetail {
2504525070
startDateTime?: string;
2504625071
}
2504725072
export interface CloudPcProvisioningPolicyAutopatch {
25073+
/**
25074+
* The unique identifier (ID) of a Windows Autopatch group. An Autopatch group is a logical container or unit that groups
25075+
* several Microsoft Entra groups and software update policies. Devices with the same Autopatch group ID share unified
25076+
* software update management. The default value is null that indicates that no Autopatch group is associated with the
25077+
* provisioning policy.
25078+
*/
2504825079
autopatchGroupId?: NullableOption<string>;
2504925080
}
2505025081
export interface CloudPcRestorePointSetting {
@@ -29273,6 +29304,13 @@ export interface PrinterDefaults {
2927329304
*/
2927429305
scaling?: NullableOption<PrintScaling>;
2927529306
}
29307+
export interface PrinterDiscoverySettings {
29308+
/**
29309+
* Represents tenant-wide settings to configure the behavior of printers when print jobs are submitted to Universal Print
29310+
* from macOS, which requires AirPrint compatibility.
29311+
*/
29312+
airPrint?: AirPrintSettings;
29313+
}
2927629314
export interface PrinterLocation {
2927729315
// The altitude, in meters, that the printer is located at.
2927829316
altitudeInMeters?: NullableOption<number>;
@@ -29417,6 +29455,8 @@ export interface PrintSettings {
2941729455
* service converts documents into a format compatible with the printer (xps to pdf) when needed.
2941829456
*/
2941929457
documentConversionEnabled?: boolean;
29458+
// Specifies settings that affect printer discovery when using Universal Print.
29459+
printerDiscoverySettings?: NullableOption<PrinterDiscoverySettings>;
2942029460
}
2942129461
export interface PrintTaskStatus {
2942229462
// A human-readable description of the current processing state of the printTask.
@@ -32937,27 +32977,27 @@ export interface WorkbookSortField {
3293732977
sortOn?: string;
3293832978
}
3293932979
export interface WorkbookWorksheetProtectionOptions {
32940-
// Represents the worksheet protection option of allowing using auto filter feature.
32980+
// Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
3294132981
allowAutoFilter?: boolean;
32942-
// Represents the worksheet protection option of allowing deleting columns.
32982+
// Indicates whether the worksheet protection option to allow deleting columns is enabled.
3294332983
allowDeleteColumns?: boolean;
32944-
// Represents the worksheet protection option of allowing deleting rows.
32984+
// Indicates whether the worksheet protection option to allow deleting rows is enabled.
3294532985
allowDeleteRows?: boolean;
32946-
// Represents the worksheet protection option of allowing formatting cells.
32986+
// Indicates whether the worksheet protection option to allow formatting cells is enabled.
3294732987
allowFormatCells?: boolean;
32948-
// Represents the worksheet protection option of allowing formatting columns.
32988+
// Indicates whether the worksheet protection option to allow formatting columns is enabled.
3294932989
allowFormatColumns?: boolean;
32950-
// Represents the worksheet protection option of allowing formatting rows.
32990+
// Indicates whether the worksheet protection option to allow formatting rows is enabled.
3295132991
allowFormatRows?: boolean;
32952-
// Represents the worksheet protection option of allowing inserting columns.
32992+
// Indicates whether the worksheet protection option to allow inserting columns is enabled.
3295332993
allowInsertColumns?: boolean;
32954-
// Represents the worksheet protection option of allowing inserting hyperlinks.
32994+
// Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
3295532995
allowInsertHyperlinks?: boolean;
32956-
// Represents the worksheet protection option of allowing inserting rows.
32996+
// Indicates whether the worksheet protection option to allow inserting rows is enabled.
3295732997
allowInsertRows?: boolean;
32958-
// Represents the worksheet protection option of allowing using pivot table feature.
32998+
// Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
3295932999
allowPivotTables?: boolean;
32960-
// Represents the worksheet protection option of allowing using sort feature.
33000+
// Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
3296133001
allowSort?: boolean;
3296233002
}
3296333003
export interface WorkforceIntegrationEncryption {

0 commit comments

Comments
 (0)