Skip to content

Commit 661316d

Browse files
Merge pull request #1561 from microsoftgraph/v1.0/pipelinebuild/125718
Generated models and request builders
2 parents 6c84d42 + 60b6f59 commit 661316d

File tree

150 files changed

+9665
-51
lines changed

Some content is hidden

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

150 files changed

+9665
-51
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [5.72.0] - 2023-09-29
15+
16+
### Added
17+
18+
- AssignmentSchedule, EligibilitySchedule, PrivilegedAccessGroup, PrivilegedAccessRoot, ResellerDelegatedAdminRelationship models and derived requests.
19+
- ScheduleRequestActions model.
20+
21+
### Changed
22+
23+
- DelegatedAdminRelationshipRequest, DirectoryRequestBuilder, IdentityGovernance, IdentityGovernanceRequestBuilder, Incident, SubjectRightsRequest classes.
24+
1425
## [5.71.0] - 2023-09-22
1526

1627
### Added

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:5.71.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.72.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
3636
<!-- Include the sdk as a dependency -->
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
39-
<version>5.71.0</version>
39+
<version>5.72.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -202,5 +202,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
202202

203203

204204

205+
205206

206207

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 71
29+
mavenMinorVersion = 72
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -125,5 +125,6 @@ mavenCentralPublishingEnabled=false
125125

126126

127127

128+
128129

129130

src/main/java/com/microsoft/graph/externalconnectors/models/Acl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public final AdditionalDataManager additionalDataManager() {
5959

6060
/**
6161
* The Value.
62-
* The unique identifer of the identity. In case of Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. In case of external groups value is set to the ID of the externalGroup
62+
* The unique identifer of the identity. For Azure Active Directory identities, value is set to the object identifier of the user, group or tenant for types user, group and everyone (and everyoneExceptGuests) respectively. For external groups value is set to the ID of the externalGroup
6363
*/
6464
@SerializedName(value = "value", alternate = {"Value"})
6565
@Expose

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "5.71.0";
21+
public static final String VERSION_NAME = "5.72.0";
2222
}
2323

2424

@@ -102,5 +102,6 @@ private Constants() {
102102

103103

104104

105+
105106

106107

src/main/java/com/microsoft/graph/models/AgreementFileProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class AgreementFileProperties extends Entity implements IJsonBackedObject
2828

2929
/**
3030
* The Created Date Time.
31-
* The date time representing when the file was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
31+
* The date time representing when the file was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
3232
*/
3333
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
3434
@Expose
@@ -64,7 +64,7 @@ public class AgreementFileProperties extends Entity implements IJsonBackedObject
6464

6565
/**
6666
* The Is Default.
67-
* If none of the languages matches the client preference, indicates whether this is the default agreement file . If none of the files are marked as default, the first one is treated as the default. Read-only.
67+
* If none of the languages matches the client preference, indicates whether this is the default agreement file. If none of the files are marked as default, the first one is treated as the default. Read-only.
6868
*/
6969
@SerializedName(value = "isDefault", alternate = {"IsDefault"})
7070
@Expose

src/main/java/com/microsoft/graph/models/ApiApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public final AdditionalDataManager additionalDataManager() {
6969

7070
/**
7171
* The Pre Authorized Applications.
72-
* Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent.
72+
* Lists the client applications that are preauthorized with the specified delegated permissions to access this application's APIs. Users aren't required to consent to any preauthorized application (for the permissions specified). However, any other permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent.
7373
*/
7474
@SerializedName(value = "preAuthorizedApplications", alternate = {"PreAuthorizedApplications"})
7575
@Expose

src/main/java/com/microsoft/graph/models/AppIdentity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Display Name.
51-
* Refers to the Application Name displayed in the Azure Portal.
51+
* Refers to the application name displayed in the Microsoft Entra admin center.
5252
*/
5353
@SerializedName(value = "displayName", alternate = {"DisplayName"})
5454
@Expose
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Template Source: Enum.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
8+
9+
/**
10+
* The Enum Assignment Schedule Filter By Current User Options.
11+
*/
12+
public enum AssignmentScheduleFilterByCurrentUserOptions
13+
{
14+
/**
15+
* principal
16+
*/
17+
PRINCIPAL,
18+
/**
19+
* unknown Future Value
20+
*/
21+
UNKNOWN_FUTURE_VALUE,
22+
/**
23+
* For AssignmentScheduleFilterByCurrentUserOptions values that were not expected from the service
24+
*/
25+
UNEXPECTED_VALUE
26+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Template Source: Enum.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
8+
9+
/**
10+
* The Enum Assignment Schedule Instance Filter By Current User Options.
11+
*/
12+
public enum AssignmentScheduleInstanceFilterByCurrentUserOptions
13+
{
14+
/**
15+
* principal
16+
*/
17+
PRINCIPAL,
18+
/**
19+
* unknown Future Value
20+
*/
21+
UNKNOWN_FUTURE_VALUE,
22+
/**
23+
* For AssignmentScheduleInstanceFilterByCurrentUserOptions values that were not expected from the service
24+
*/
25+
UNEXPECTED_VALUE
26+
}

0 commit comments

Comments
 (0)