Skip to content

Commit 5858c8f

Browse files
authored
Merge pull request #1520 from microsoftgraph/dev
Release 4.44.0
2 parents e265234 + 5cc3e8c commit 5858c8f

54 files changed

Lines changed: 1940 additions & 10 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/create-v1.0-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Steps represent a sequence of tasks that will be executed as part of the job
3131
steps:
3232
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v3.1.0
3434

3535
# Create a pull request [1]
3636
- name: Create PR using the GitHub REST API via hub

.github/workflows/validatePullRequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
solutionName: Microsoft.Graph.sln
1515
steps:
16-
- uses: actions/checkout@v3.0.2
16+
- uses: actions/checkout@v3.1.0
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v3.0.1
1919
with:

src/Microsoft.Graph/Generated/model/AccessPackage.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public partial class AccessPackage : Entity
5757

5858
/// <summary>
5959
/// Gets or sets access packages incompatible with.
60+
/// The access packages that are incompatible with this package. Read-only.
6061
/// </summary>
6162
[JsonPropertyName("accessPackagesIncompatibleWith")]
6263
public IAccessPackageAccessPackagesIncompatibleWithCollectionWithReferencesPage AccessPackagesIncompatibleWith { get; set; }
@@ -89,6 +90,7 @@ public partial class AccessPackage : Entity
8990

9091
/// <summary>
9192
/// Gets or sets incompatible access packages.
93+
/// The access packages whose assigned users are ineligible to be assigned this access package.
9294
/// </summary>
9395
[JsonPropertyName("incompatibleAccessPackages")]
9496
public IAccessPackageIncompatibleAccessPackagesCollectionWithReferencesPage IncompatibleAccessPackages { get; set; }
@@ -102,6 +104,7 @@ public partial class AccessPackage : Entity
102104

103105
/// <summary>
104106
/// Gets or sets incompatible groups.
107+
/// The groups whose members are ineligible to be assigned this access package.
105108
/// </summary>
106109
[JsonPropertyName("incompatibleGroups")]
107110
public IAccessPackageIncompatibleGroupsCollectionPage IncompatibleGroups { get; set; }

src/Microsoft.Graph/Generated/model/AndroidMinimumOperatingSystem.cs

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,48 @@ public partial class AndroidMinimumOperatingSystem
9191
[JsonPropertyName("v5_1")]
9292
public bool? V5_1 { get; set; }
9393

94+
/// <summary>
95+
/// Gets or sets v6_0.
96+
/// Version 6.0 or later.
97+
/// </summary>
98+
[JsonPropertyName("v6_0")]
99+
public bool? V6_0 { get; set; }
100+
101+
/// <summary>
102+
/// Gets or sets v7_0.
103+
/// Version 7.0 or later.
104+
/// </summary>
105+
[JsonPropertyName("v7_0")]
106+
public bool? V7_0 { get; set; }
107+
108+
/// <summary>
109+
/// Gets or sets v7_1.
110+
/// Version 7.1 or later.
111+
/// </summary>
112+
[JsonPropertyName("v7_1")]
113+
public bool? V7_1 { get; set; }
114+
115+
/// <summary>
116+
/// Gets or sets v8_0.
117+
/// Version 8.0 or later.
118+
/// </summary>
119+
[JsonPropertyName("v8_0")]
120+
public bool? V8_0 { get; set; }
121+
122+
/// <summary>
123+
/// Gets or sets v8_1.
124+
/// Version 8.1 or later.
125+
/// </summary>
126+
[JsonPropertyName("v8_1")]
127+
public bool? V8_1 { get; set; }
128+
129+
/// <summary>
130+
/// Gets or sets v9_0.
131+
/// Version 9.0 or later.
132+
/// </summary>
133+
[JsonPropertyName("v9_0")]
134+
public bool? V9_0 { get; set; }
135+
94136
/// <summary>
95137
/// Gets or sets additional data.
96138
/// </summary>

src/Microsoft.Graph/Generated/model/ApplePushNotificationCertificate.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,20 @@ public partial class ApplePushNotificationCertificate : Entity
4141
[JsonPropertyName("certificateSerialNumber")]
4242
public string CertificateSerialNumber { get; set; }
4343

44+
/// <summary>
45+
/// Gets or sets certificate upload failure reason.
46+
/// The reason the certificate upload failed.
47+
/// </summary>
48+
[JsonPropertyName("certificateUploadFailureReason")]
49+
public string CertificateUploadFailureReason { get; set; }
50+
51+
/// <summary>
52+
/// Gets or sets certificate upload status.
53+
/// The certificate upload status.
54+
/// </summary>
55+
[JsonPropertyName("certificateUploadStatus")]
56+
public string CertificateUploadStatus { get; set; }
57+
4458
/// <summary>
4559
/// Gets or sets expiration date time.
4660
/// The expiration date and time for Apple push notification certificate.

src/Microsoft.Graph/Generated/model/BookingAppointment.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ public partial class BookingAppointment : Entity
2828
[JsonPropertyName("additionalInformation")]
2929
public string AdditionalInformation { get; set; }
3030

31+
/// <summary>
32+
/// Gets or sets anonymous join web url.
33+
/// </summary>
34+
[JsonPropertyName("anonymousJoinWebUrl")]
35+
public string AnonymousJoinWebUrl { get; set; }
36+
3137
/// <summary>
3238
/// Gets or sets customers.
3339
/// It lists down the customer properties for an appointment. An appointment will contain a list of customer information and each unit will indicate the properties of a customer who is part of that appointment. Optional.

src/Microsoft.Graph/Generated/model/BookingBusiness.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ public partial class BookingBusiness : Entity
6969
[JsonPropertyName("isPublished")]
7070
public bool? IsPublished { get; set; }
7171

72+
/// <summary>
73+
/// Gets or sets language tag.
74+
/// </summary>
75+
[JsonPropertyName("languageTag")]
76+
public string LanguageTag { get; set; }
77+
7278
/// <summary>
7379
/// Gets or sets phone.
7480
/// The telephone number for the business. The phone property, together with address and webSiteUrl, appear in the footer of a business scheduling page.

src/Microsoft.Graph/Generated/model/BookingService.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,12 @@ public partial class BookingService : Entity
8484
[JsonPropertyName("displayName")]
8585
public string DisplayName { get; set; }
8686

87+
/// <summary>
88+
/// Gets or sets is anonymous join enabled.
89+
/// </summary>
90+
[JsonPropertyName("isAnonymousJoinEnabled")]
91+
public bool? IsAnonymousJoinEnabled { get; set; }
92+
8793
/// <summary>
8894
/// Gets or sets is hidden from customers.
8995
/// True means this service is not available to customers for booking.
@@ -98,6 +104,12 @@ public partial class BookingService : Entity
98104
[JsonPropertyName("isLocationOnline")]
99105
public bool? IsLocationOnline { get; set; }
100106

107+
/// <summary>
108+
/// Gets or sets language tag.
109+
/// </summary>
110+
[JsonPropertyName("languageTag")]
111+
public string LanguageTag { get; set; }
112+
101113
/// <summary>
102114
/// Gets or sets maximum attendees count.
103115
/// The maximum number of customers allowed in a service. If maximumAttendeesCount of the service is greater than 1, pass valid customer IDs while creating or updating an appointment. To create a customer, use the Create bookingCustomer operation.

src/Microsoft.Graph/Generated/model/BookingStaffMember.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ public BookingStaffMember()
5050
[JsonPropertyName("emailAddress")]
5151
public string EmailAddress { get; set; }
5252

53+
/// <summary>
54+
/// Gets or sets is email notification enabled.
55+
/// </summary>
56+
[JsonPropertyName("isEmailNotificationEnabled")]
57+
public bool? IsEmailNotificationEnabled { get; set; }
58+
5359
/// <summary>
5460
/// Gets or sets role.
5561
/// The role of the staff member in the business. Possible values are: guest, administrator, viewer, externalGuest and unknownFutureValue. Required.

src/Microsoft.Graph/Generated/model/BookingStaffRole.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,15 @@ public enum BookingStaffRole
4444
/// </summary>
4545
UnknownFutureValue = 4,
4646

47+
/// <summary>
48+
/// Scheduler
49+
/// </summary>
50+
Scheduler = 5,
51+
52+
/// <summary>
53+
/// Team Member
54+
/// </summary>
55+
TeamMember = 6,
56+
4757
}
4858
}

0 commit comments

Comments
 (0)