Skip to content

Commit d7b25b2

Browse files
Merge pull request #1525 from microsoftgraph/v1.0/pipelinebuild/122273
Generated models and request builders
2 parents 8f2d225 + 6a642ef commit d7b25b2

File tree

81 files changed

+925
-229
lines changed

Some content is hidden

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

81 files changed

+925
-229
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [5.67.0] - 2023-08-10
15+
16+
### Added
17+
18+
- ChatMessageSetReaction derived types and requests.
19+
- ChatMessageUnsetReaction derived types and requests.
20+
- CustomSecurityAttributeValue model.
21+
- MeetingChatHistoryDefaultMode model.
22+
1423
## [5.66.0] - 2023-07-28
1524

1625
### 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.66.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.67.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.66.0</version>
39+
<version>5.67.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -197,5 +197,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
197197

198198

199199

200+
200201

201202

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 = 66
29+
mavenMinorVersion = 67
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -120,5 +120,6 @@ mavenCentralPublishingEnabled=false
120120

121121

122122

123+
123124

124125

src/main/java/com/microsoft/graph/callrecords/models/PstnCallLogRow.java

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

230230
/**
231231
* The User Id.
232-
* Calling user's ID in Graph. GUID. This and other user info will be null/empty for bot call types (ucap_in, ucap_out).
232+
* Calling user's ID in Graph. GUID. This and other user info will be null/empty for bot call types (ucapin, ucapout).
233233
*/
234234
@SerializedName(value = "userId", alternate = {"UserId"})
235235
@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.66.0";
21+
public static final String VERSION_NAME = "5.67.0";
2222
}
2323

2424

@@ -97,5 +97,6 @@ private Constants() {
9797

9898

9999

100+
100101

101102

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
5050

5151
/**
5252
* The Display Name.
53-
* The display name of the access package. Supports $filter (eq, contains).
53+
* Required. The display name of the access package. Supports $filter (eq, contains).
5454
*/
5555
@SerializedName(value = "displayName", alternate = {"DisplayName"})
5656
@Expose
@@ -84,7 +84,7 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
8484

8585
/**
8686
* The Assignment Policies.
87-
*
87+
* Read-only. Nullable. Supports $expand.
8888
*/
8989
@SerializedName(value = "assignmentPolicies", alternate = {"AssignmentPolicies"})
9090
@Expose
@@ -93,7 +93,7 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
9393

9494
/**
9595
* The Catalog.
96-
*
96+
* Required when creating the access package. Read-only. Nullable.
9797
*/
9898
@SerializedName(value = "catalog", alternate = {"Catalog"})
9999
@Expose
@@ -118,7 +118,7 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
118118

119119
/**
120120
* The Resource Role Scopes.
121-
*
121+
* The resource roles and scopes in this access package.
122122
*/
123123
@SerializedName(value = "resourceRoleScopes", alternate = {"ResourceRoleScopes"})
124124
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class AccessPackageAssignment extends Entity implements IJsonBackedObject
3434

3535
/**
3636
* The Custom Extension Callout Instances.
37-
*
37+
* Information about all the custom extension calls that were made during the access package assignment workflow.
3838
*/
3939
@SerializedName(value = "customExtensionCalloutInstances", alternate = {"CustomExtensionCalloutInstances"})
4040
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public class AccessPackageAssignmentPolicy extends Entity implements IJsonBacked
138138

139139
/**
140140
* The Access Package.
141-
* Access package containing this policy. Read-only.
141+
* Access package containing this policy. Read-only. Supports $expand.
142142
*/
143143
@SerializedName(value = "accessPackage", alternate = {"AccessPackage"})
144144
@Expose
@@ -156,7 +156,7 @@ public class AccessPackageAssignmentPolicy extends Entity implements IJsonBacked
156156

157157
/**
158158
* The Custom Extension Stage Settings.
159-
*
159+
* The collection of stages when to execute one or more custom access package workflow extensions. Supports $expand.
160160
*/
161161
@SerializedName(value = "customExtensionStageSettings", alternate = {"CustomExtensionStageSettings"})
162162
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
6363

6464
/**
6565
* The Custom Extension Callout Instances.
66-
*
66+
* Information about all the custom extension calls that were made during the access package assignment workflow.
6767
*/
6868
@SerializedName(value = "customExtensionCalloutInstances", alternate = {"CustomExtensionCalloutInstances"})
6969
@Expose

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class AccessPackageAssignmentRequestCallbackData extends CustomExtensionD
2828

2929
/**
3030
* The Custom Extension Stage Instance Detail.
31-
*
31+
* Details for the callback.
3232
*/
3333
@SerializedName(value = "customExtensionStageInstanceDetail", alternate = {"CustomExtensionStageInstanceDetail"})
3434
@Expose
@@ -37,7 +37,7 @@ public class AccessPackageAssignmentRequestCallbackData extends CustomExtensionD
3737

3838
/**
3939
* The Custom Extension Stage Instance Id.
40-
*
40+
* Unique identifier of the callout to the custom extension.
4141
*/
4242
@SerializedName(value = "customExtensionStageInstanceId", alternate = {"CustomExtensionStageInstanceId"})
4343
@Expose
@@ -46,7 +46,7 @@ public class AccessPackageAssignmentRequestCallbackData extends CustomExtensionD
4646

4747
/**
4848
* The Stage.
49-
*
49+
* Indicates the stage at which the custom callout extension will be executed. The possible values are: assignmentRequestCreated, assignmentRequestApproved, assignmentRequestGranted, assignmentRequestRemoved, assignmentFourteenDaysBeforeExpiration, assignmentOneDayBeforeExpiration, unknownFutureValue.
5050
*/
5151
@SerializedName(value = "stage", alternate = {"Stage"})
5252
@Expose
@@ -55,7 +55,7 @@ public class AccessPackageAssignmentRequestCallbackData extends CustomExtensionD
5555

5656
/**
5757
* The State.
58-
*
58+
* Allow the extension to be able to deny or cancel the request submitted by the requestor. The supported values are Denied and Canceled. This property can only be set for an assignmentRequestCreated stage.
5959
*/
6060
@SerializedName(value = "state", alternate = {"State"})
6161
@Expose

0 commit comments

Comments
 (0)