Skip to content

Commit c0a33bd

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 53629
1 parent b13ffb1 commit c0a33bd

File tree

208 files changed

+12445
-164
lines changed

Some content is hidden

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

208 files changed

+12445
-164
lines changed

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-beta:0.21.0-SNAPSHOT'
22+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.22.0-SNAPSHOT'
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-beta</artifactId>
39-
<version>0.21.0-SNAPSHOT</version>
39+
<version>0.22.0-SNAPSHOT</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -161,3 +161,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
161161

162162

163163

164+

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-beta
2828
mavenMajorVersion = 0
29-
mavenMinorVersion = 21
29+
mavenMinorVersion = 22
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -60,3 +60,4 @@ mavenCentralPublishingEnabled=false
6060

6161

6262

63+

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public final AdditionalDataManager additionalDataManager() {
8787

8888
/**
8989
* The Labels.
90-
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). Supported labels: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, iconUrl, containerName, and containerUrl. Optional.
90+
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). Optional.The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue, iconUrl, containerName, containerUrl. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values in this evolvable enum: iconUrl, containerName, containerUrl.
9191
*/
9292
@SerializedName(value = "labels", alternate = {"Labels"})
9393
@Expose
@@ -105,7 +105,7 @@ public final AdditionalDataManager additionalDataManager() {
105105

106106
/**
107107
* The Type.
108-
* The data type of the property. Possible values are: string, int64, double, dateTime, boolean, stringCollection, int64Collection, doubleCollection, dateTimeCollection. Required.
108+
* The data type of the property. Possible values are: string, int64, double, dateTime, boolean, stringCollection, int64Collection, doubleCollection, dateTimeCollection, unknownFutureValue. Required.
109109
*/
110110
@SerializedName(value = "type", alternate = {"Type"})
111111
@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 = "0.21.0";
21+
public static final String VERSION_NAME = "0.22.0";
2222
}
2323

2424

@@ -35,3 +35,4 @@ private Constants() {
3535

3636

3737

38+
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
// Template Source: BaseMethodParameterSet.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+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import javax.annotation.Nonnull;
12+
import javax.annotation.Nullable;
13+
import com.google.gson.JsonObject;
14+
import java.util.EnumSet;
15+
import java.util.ArrayList;
16+
17+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
18+
19+
/**
20+
* The class for the Access Package Assignment Reprocess Parameter Set.
21+
*/
22+
public class AccessPackageAssignmentReprocessParameterSet {
23+
24+
/**
25+
* Instiaciates a new AccessPackageAssignmentReprocessParameterSet
26+
*/
27+
public AccessPackageAssignmentReprocessParameterSet() {}
28+
/**
29+
* Instiaciates a new AccessPackageAssignmentReprocessParameterSet
30+
* @param builder builder bearing the parameters to initialize from
31+
*/
32+
protected AccessPackageAssignmentReprocessParameterSet(@Nonnull final AccessPackageAssignmentReprocessParameterSetBuilder builder) {
33+
}
34+
/**
35+
* Gets a new builder for the body
36+
* @return a new builder
37+
*/
38+
@Nonnull
39+
public static AccessPackageAssignmentReprocessParameterSetBuilder newBuilder() {
40+
return new AccessPackageAssignmentReprocessParameterSetBuilder();
41+
}
42+
/**
43+
* Fluent builder for the AccessPackageAssignmentReprocessParameterSet
44+
*/
45+
public static final class AccessPackageAssignmentReprocessParameterSetBuilder {
46+
/**
47+
* Instanciates a new AccessPackageAssignmentReprocessParameterSetBuilder
48+
*/
49+
@Nullable
50+
protected AccessPackageAssignmentReprocessParameterSetBuilder(){}
51+
/**
52+
* Buils the resulting body object to be passed to the request
53+
* @return the body object to pass to the request
54+
*/
55+
@Nonnull
56+
public AccessPackageAssignmentReprocessParameterSet build() {
57+
return new AccessPackageAssignmentReprocessParameterSet(this);
58+
}
59+
}
60+
/**
61+
* Gets the functions options from the properties that have been set
62+
* @return a list of function options for the request
63+
*/
64+
@Nonnull
65+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
66+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
67+
return result;
68+
}
69+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
// Template Source: BaseMethodParameterSet.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+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import javax.annotation.Nonnull;
12+
import javax.annotation.Nullable;
13+
import com.google.gson.JsonObject;
14+
import java.util.EnumSet;
15+
import java.util.ArrayList;
16+
17+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
18+
19+
/**
20+
* The class for the Access Package Assignment Request Reprocess Parameter Set.
21+
*/
22+
public class AccessPackageAssignmentRequestReprocessParameterSet {
23+
24+
/**
25+
* Instiaciates a new AccessPackageAssignmentRequestReprocessParameterSet
26+
*/
27+
public AccessPackageAssignmentRequestReprocessParameterSet() {}
28+
/**
29+
* Instiaciates a new AccessPackageAssignmentRequestReprocessParameterSet
30+
* @param builder builder bearing the parameters to initialize from
31+
*/
32+
protected AccessPackageAssignmentRequestReprocessParameterSet(@Nonnull final AccessPackageAssignmentRequestReprocessParameterSetBuilder builder) {
33+
}
34+
/**
35+
* Gets a new builder for the body
36+
* @return a new builder
37+
*/
38+
@Nonnull
39+
public static AccessPackageAssignmentRequestReprocessParameterSetBuilder newBuilder() {
40+
return new AccessPackageAssignmentRequestReprocessParameterSetBuilder();
41+
}
42+
/**
43+
* Fluent builder for the AccessPackageAssignmentRequestReprocessParameterSet
44+
*/
45+
public static final class AccessPackageAssignmentRequestReprocessParameterSetBuilder {
46+
/**
47+
* Instanciates a new AccessPackageAssignmentRequestReprocessParameterSetBuilder
48+
*/
49+
@Nullable
50+
protected AccessPackageAssignmentRequestReprocessParameterSetBuilder(){}
51+
/**
52+
* Buils the resulting body object to be passed to the request
53+
* @return the body object to pass to the request
54+
*/
55+
@Nonnull
56+
public AccessPackageAssignmentRequestReprocessParameterSet build() {
57+
return new AccessPackageAssignmentRequestReprocessParameterSet(this);
58+
}
59+
}
60+
/**
61+
* Gets the functions options from the properties that have been set
62+
* @return a list of function options for the request
63+
*/
64+
@Nonnull
65+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
66+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
67+
return result;
68+
}
69+
}

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

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,40 +42,49 @@ public final AdditionalDataManager additionalDataManager() {
4242
}
4343

4444
/**
45-
* The Allow Custom Assignment Schedule.
45+
* The Existing Answers.
4646
*
4747
*/
48-
@SerializedName(value = "allowCustomAssignmentSchedule", alternate = {"AllowCustomAssignmentSchedule"})
48+
@SerializedName(value = "existingAnswers", alternate = {"ExistingAnswers"})
4949
@Expose
5050
@Nullable
51-
public Boolean allowCustomAssignmentSchedule;
51+
public java.util.List<AccessPackageAnswer> existingAnswers;
5252

5353
/**
54-
* The Existing Answers.
54+
* The Is Approval Required.
5555
*
5656
*/
57-
@SerializedName(value = "existingAnswers", alternate = {"ExistingAnswers"})
57+
@SerializedName(value = "isApprovalRequired", alternate = {"IsApprovalRequired"})
5858
@Expose
5959
@Nullable
60-
public java.util.List<AccessPackageAnswer> existingAnswers;
60+
public Boolean isApprovalRequired;
61+
62+
/**
63+
* The Is Approval Required For Extension.
64+
*
65+
*/
66+
@SerializedName(value = "isApprovalRequiredForExtension", alternate = {"IsApprovalRequiredForExtension"})
67+
@Expose
68+
@Nullable
69+
public Boolean isApprovalRequiredForExtension;
6170

6271
/**
63-
* The Is Approval Required For Add.
72+
* The Is Custom Assignment Schedule Allowed.
6473
*
6574
*/
66-
@SerializedName(value = "isApprovalRequiredForAdd", alternate = {"IsApprovalRequiredForAdd"})
75+
@SerializedName(value = "isCustomAssignmentScheduleAllowed", alternate = {"IsCustomAssignmentScheduleAllowed"})
6776
@Expose
6877
@Nullable
69-
public Boolean isApprovalRequiredForAdd;
78+
public Boolean isCustomAssignmentScheduleAllowed;
7079

7180
/**
72-
* The Is Approval Required For Update.
81+
* The Is Requestor Justification Required.
7382
*
7483
*/
75-
@SerializedName(value = "isApprovalRequiredForUpdate", alternate = {"IsApprovalRequiredForUpdate"})
84+
@SerializedName(value = "isRequestorJustificationRequired", alternate = {"IsRequestorJustificationRequired"})
7685
@Expose
7786
@Nullable
78-
public Boolean isApprovalRequiredForUpdate;
87+
public Boolean isRequestorJustificationRequired;
7988

8089
/**
8190
* The Policy Description.

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
import com.microsoft.graph.http.BaseCollectionPage;
1212
import com.microsoft.graph.models.AccessReviewReviewerScope;
1313
import com.microsoft.graph.models.AccessReviewScope;
14+
import com.microsoft.graph.models.AccessReviewReviewer;
1415
import com.microsoft.graph.models.AccessReviewInstanceDecisionItem;
1516
import com.microsoft.graph.models.AccessReviewScheduleDefinition;
1617
import com.microsoft.graph.models.Entity;
18+
import com.microsoft.graph.requests.AccessReviewReviewerCollectionPage;
1719
import com.microsoft.graph.requests.AccessReviewInstanceDecisionItemCollectionPage;
1820

1921

@@ -85,6 +87,15 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {
8587
@Nullable
8688
public String status;
8789

90+
/**
91+
* The Contacted Reviewers.
92+
*
93+
*/
94+
@SerializedName(value = "contactedReviewers", alternate = {"ContactedReviewers"})
95+
@Expose
96+
@Nullable
97+
public AccessReviewReviewerCollectionPage contactedReviewers;
98+
8899
/**
89100
* The Decisions.
90101
* Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed.
@@ -113,6 +124,10 @@ public class AccessReviewInstance extends Entity implements IJsonBackedObject {
113124
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
114125

115126

127+
if (json.has("contactedReviewers")) {
128+
contactedReviewers = serializer.deserializeObject(json.get("contactedReviewers"), AccessReviewReviewerCollectionPage.class);
129+
}
130+
116131
if (json.has("decisions")) {
117132
decisions = serializer.deserializeObject(json.get("decisions"), AccessReviewInstanceDecisionItemCollectionPage.class);
118133
}

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,15 @@
2525
public class AccessReviewReviewer extends Entity implements IJsonBackedObject {
2626

2727

28+
/**
29+
* The Created Date Time.
30+
*
31+
*/
32+
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
33+
@Expose
34+
@Nullable
35+
public java.time.OffsetDateTime createdDateTime;
36+
2837
/**
2938
* The Display Name.
3039
*

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,15 @@ public class AndroidDeviceOwnerCompliancePolicy extends DeviceCompliancePolicy i
189189
@Nullable
190190
public AndroidDeviceOwnerRequiredPasswordType passwordRequiredType;
191191

192+
/**
193+
* The Security Require Intune App Integrity.
194+
* If setting is set to true, checks that the Intune app installed on fully managed, dedicated, or corporate-owned work profile Android Enterprise enrolled devices, is the one provided by Microsoft from the Managed Google Playstore. If the check fails, the device will be reported as non-compliant.
195+
*/
196+
@SerializedName(value = "securityRequireIntuneAppIntegrity", alternate = {"SecurityRequireIntuneAppIntegrity"})
197+
@Expose
198+
@Nullable
199+
public Boolean securityRequireIntuneAppIntegrity;
200+
192201
/**
193202
* The Security Require Safety Net Attestation Basic Integrity.
194203
* Require the device to pass the SafetyNet basic integrity check.

0 commit comments

Comments
 (0)