Skip to content

Commit 05f9418

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 113310
1 parent 46ba696 commit 05f9418

File tree

97 files changed

+892
-3179
lines changed

Some content is hidden

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

97 files changed

+892
-3179
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
2121
dependencies {
2222
// Include the sdk as a dependency
23-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.69.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.70.0-SNAPSHOT'
2424
// Uncomment the line below if you are building an android application
2525
//implementation 'com.google.guava:guava:30.1.1-android'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-beta</artifactId>
40-
<version>0.69.0-SNAPSHOT</version>
40+
<version>0.70.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -205,5 +205,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
205205

206206

207207

208+
208209

209210

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

@@ -104,5 +104,6 @@ mavenCentralPublishingEnabled=false
104104

105105

106106

107+
107108

108109

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/CustomTaskExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class CustomTaskExtension extends CustomCalloutExtension implements IJson
2929

3030
/**
3131
* The Callback Configuration.
32-
* The callback configuration for a custom extension.
32+
* The callback configuration for a custom task extension.
3333
*/
3434
@SerializedName(value = "callbackConfiguration", alternate = {"CallbackConfiguration"})
3535
@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.69.0";
21+
public static final String VERSION_NAME = "0.70.0";
2222
}
2323

2424

@@ -79,5 +79,6 @@ private Constants() {
7979

8080

8181

82+
8283

8384

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.microsoft.graph.models.AccessPackageQuestion;
1414
import com.microsoft.graph.models.ApprovalSettings;
1515
import com.microsoft.graph.models.RequestorSettings;
16+
import com.microsoft.graph.models.VerifiableCredentialSettings;
1617
import com.microsoft.graph.models.AccessPackage;
1718
import com.microsoft.graph.models.AccessPackageCatalog;
1819
import com.microsoft.graph.models.Entity;
@@ -160,6 +161,15 @@ public class AccessPackageAssignmentPolicy extends Entity implements IJsonBacked
160161
@Nullable
161162
public RequestorSettings requestorSettings;
162163

164+
/**
165+
* The Verifiable Credential Settings.
166+
* Settings for verifiable credentials set up through the Azure AD Verified ID service. These settings represent the verifiable credentials that a requestor of an access package in this policy can present to be assigned the access package.
167+
*/
168+
@SerializedName(value = "verifiableCredentialSettings", alternate = {"VerifiableCredentialSettings"})
169+
@Expose
170+
@Nullable
171+
public VerifiableCredentialSettings verifiableCredentialSettings;
172+
163173
/**
164174
* The Access Package.
165175
* The access package with this policy. Read-only. Nullable. Supports $expand.

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.microsoft.graph.models.CustomExtensionCalloutInstance;
1414
import com.microsoft.graph.models.CustomExtensionHandlerInstance;
1515
import com.microsoft.graph.models.RequestSchedule;
16+
import com.microsoft.graph.models.VerifiedCredentialData;
1617
import com.microsoft.graph.models.AccessPackage;
1718
import com.microsoft.graph.models.AccessPackageAssignment;
1819
import com.microsoft.graph.models.AccessPackageSubject;
@@ -143,6 +144,15 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
143144
@Nullable
144145
public RequestSchedule schedule;
145146

147+
/**
148+
* The Verified Credentials Data.
149+
* The details of the verifiable credential that was presented by the requestor, such as the issuer and claims. Read-only.
150+
*/
151+
@SerializedName(value = "verifiedCredentialsData", alternate = {"VerifiedCredentialsData"})
152+
@Expose
153+
@Nullable
154+
public java.util.List<VerifiedCredentialData> verifiedCredentialsData;
155+
146156
/**
147157
* The Access Package.
148158
* The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable. Supports $expand.

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import com.microsoft.graph.models.AccessPackageAnswer;
1313
import com.microsoft.graph.models.AccessPackageQuestion;
1414
import com.microsoft.graph.models.RequestSchedule;
15+
import com.microsoft.graph.models.VerifiableCredentialRequirementStatus;
1516

1617

1718
import com.google.gson.JsonObject;
@@ -131,6 +132,15 @@ public final AdditionalDataManager additionalDataManager() {
131132
@Nullable
132133
public RequestSchedule schedule;
133134

135+
/**
136+
* The Verifiable Credential Requirement Status.
137+
* The status of the process to process the verifiable credential, if any.
138+
*/
139+
@SerializedName(value = "verifiableCredentialRequirementStatus", alternate = {"VerifiableCredentialRequirementStatus"})
140+
@Expose
141+
@Nullable
142+
public VerifiableCredentialRequirementStatus verifiableCredentialRequirementStatus;
143+
134144

135145
/**
136146
* Sets the raw JSON object

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
305305

306306
/**
307307
* The Tags.
308-
* Custom strings that can be used to categorize and identify the application. Not nullable. Strings added here will also appear in the tags property of any associated service principals.Supports $filter (eq, not, ge, le, startsWith).
308+
* Custom strings that can be used to categorize and identify the application. Not nullable. Strings added here will also appear in the tags property of any associated service principals.Supports $filter (eq, not, ge, le, startsWith) and $search.
309309
*/
310310
@SerializedName(value = "tags", alternate = {"Tags"})
311311
@Expose

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

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

5151
/**
5252
* The Platform.
53-
* Platform type of the devices on which the Assignment Filter will be applicable. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP.
53+
* Platform type of the devices on which the Assignment Filter will be applicable. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
5454
*/
5555
@SerializedName(value = "platform", alternate = {"Platform"})
5656
@Expose

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

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

7272
/**
7373
* The Assignment Filter Platform.
74-
* The platform for which this assignment filter is created. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP.
74+
* The platform for which this assignment filter is created. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
7575
*/
7676
@SerializedName(value = "assignmentFilterPlatform", alternate = {"AssignmentFilterPlatform"})
7777
@Expose

0 commit comments

Comments
 (0)