Skip to content

Commit 7d5532b

Browse files
Microsoft Graph DevX Toolingbaywet
authored andcommitted
Update generated files with build 53138
1 parent 1ddd65d commit 7d5532b

File tree

205 files changed

+5659
-615
lines changed

Some content is hidden

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

205 files changed

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

161161

162162

163+

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

@@ -59,3 +59,4 @@ mavenCentralPublishingEnabled=false
5959

6060

6161

62+
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.callrecords.models;
7+
8+
9+
/**
10+
* The Enum Pstn Call Duration Source.
11+
*/
12+
public enum PstnCallDurationSource
13+
{
14+
/**
15+
* microsoft
16+
*/
17+
MICROSOFT,
18+
/**
19+
* operator
20+
*/
21+
OPERATOR,
22+
/**
23+
* For PstnCallDurationSource values that were not expected from the service
24+
*/
25+
UNEXPECTED_VALUE
26+
}

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import com.microsoft.graph.serializer.IJsonBackedObject;
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
11+
import com.microsoft.graph.callrecords.models.PstnCallDurationSource;
1112

1213

1314
import com.google.gson.JsonObject;
@@ -37,6 +38,15 @@ public final AdditionalDataManager additionalDataManager() {
3738
return additionalDataManager;
3839
}
3940

41+
/**
42+
* The Call Duration Source.
43+
*
44+
*/
45+
@SerializedName(value = "callDurationSource", alternate = {"CallDurationSource"})
46+
@Expose
47+
@Nullable
48+
public PstnCallDurationSource callDurationSource;
49+
4050
/**
4151
* The Callee Number.
4252
*
@@ -172,6 +182,15 @@ public final AdditionalDataManager additionalDataManager() {
172182
@Nullable
173183
public String licenseCapability;
174184

185+
/**
186+
* The Operator.
187+
*
188+
*/
189+
@SerializedName(value = "operator", alternate = {"Operator"})
190+
@Expose
191+
@Nullable
192+
public String operator;
193+
175194
/**
176195
* The Start Date Time.
177196
*

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final AdditionalDataManager additionalDataManager() {
4242

4343
/**
4444
* The Access Type.
45-
*
45+
* The access granted to the identity. Possible values are: grant, deny.
4646
*/
4747
@SerializedName(value = "accessType", alternate = {"AccessType"})
4848
@Expose
@@ -51,16 +51,18 @@ public final AdditionalDataManager additionalDataManager() {
5151

5252
/**
5353
* The Identity Source.
54-
*
55-
*/
54+
* The source of identity. Possible values are azureActiveDirectory or external.
55+
* @deprecated The property named 'IdentitySource' will be deprecated in September 2021, please see the updated aclType usage.
56+
*/
57+
@Deprecated
5658
@SerializedName(value = "identitySource", alternate = {"IdentitySource"})
5759
@Expose
5860
@Nullable
5961
public IdentitySourceType identitySource;
6062

6163
/**
6264
* The Type.
63-
*
65+
* The type of identity. Possible values are: user, group, everyone, everyoneExceptGuests if the identitySource is azureActiveDirectory and just group if the identitySource is external.
6466
*/
6567
@SerializedName(value = "type", alternate = {"Type"})
6668
@Expose
@@ -69,7 +71,7 @@ public final AdditionalDataManager additionalDataManager() {
6971

7072
/**
7173
* The Value.
72-
*
74+
* 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.
7375
*/
7476
@SerializedName(value = "value", alternate = {"Value"})
7577
@Expose

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

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

4141
/**
4242
* The Authorized App Ids.
43-
*
43+
* A collection of application IDs for registered Azure Active Directory apps that are allowed to manage the externalConnection and to index content in the externalConnection.
4444
*/
4545
@SerializedName(value = "authorizedAppIds", alternate = {"AuthorizedAppIds"})
4646
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class ConnectionOperation extends Entity implements IJsonBackedObject {
2929

3030
/**
3131
* The Error.
32-
*
32+
* If status is failed, provides more information about the error that caused the failure.
3333
*/
3434
@SerializedName(value = "error", alternate = {"Error"})
3535
@Expose
@@ -38,7 +38,7 @@ public class ConnectionOperation extends Entity implements IJsonBackedObject {
3838

3939
/**
4040
* The Status.
41-
*
41+
* Indicates the status of the asynchronous operation. Possible values are: unspecified, inprogress, completed, failed.
4242
*/
4343
@SerializedName(value = "status", alternate = {"Status"})
4444
@Expose

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
3737

3838
/**
3939
* The Configuration.
40-
*
40+
* Specifies additional application IDs that are allowed to manage the connection and to index content in the connection. Optional.
4141
*/
4242
@SerializedName(value = "configuration", alternate = {"Configuration"})
4343
@Expose
@@ -46,7 +46,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
4646

4747
/**
4848
* The Description.
49-
*
49+
* Description of the connection displayed in the Microsoft 365 admin center. Optional.
5050
*/
5151
@SerializedName(value = "description", alternate = {"Description"})
5252
@Expose
@@ -55,7 +55,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
5555

5656
/**
5757
* The Name.
58-
*
58+
* The display name of the connection to be displayed in the Microsoft 365 admin center. Maximum length of 128 characters. Required.
5959
*/
6060
@SerializedName(value = "name", alternate = {"Name"})
6161
@Expose
@@ -64,7 +64,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
6464

6565
/**
6666
* The State.
67-
*
67+
* Indicates the current state of the connection. Possible values are draft, ready, obsolete, and limitExceeded. Required.
6868
*/
6969
@SerializedName(value = "state", alternate = {"State"})
7070
@Expose
@@ -82,7 +82,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
8282

8383
/**
8484
* The Items.
85-
*
85+
* Read-only. Nullable.
8686
*/
8787
@SerializedName(value = "items", alternate = {"Items"})
8888
@Expose
@@ -91,7 +91,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
9191

9292
/**
9393
* The Operations.
94-
*
94+
* Read-only. Nullable.
9595
*/
9696
@SerializedName(value = "operations", alternate = {"Operations"})
9797
@Expose
@@ -100,7 +100,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
100100

101101
/**
102102
* The Schema.
103-
*
103+
* Read-only. Nullable.
104104
*/
105105
@SerializedName(value = "schema", alternate = {"Schema"})
106106
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class ExternalGroup extends Entity implements IJsonBackedObject {
3030

3131
/**
3232
* The Description.
33-
*
33+
* The description of the external group. Optional.
3434
*/
3535
@SerializedName(value = "description", alternate = {"Description"})
3636
@Expose
@@ -39,7 +39,7 @@ public class ExternalGroup extends Entity implements IJsonBackedObject {
3939

4040
/**
4141
* The Display Name.
42-
*
42+
* The friendly name of the external group. Optional.
4343
*/
4444
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4545
@Expose
@@ -48,7 +48,7 @@ public class ExternalGroup extends Entity implements IJsonBackedObject {
4848

4949
/**
5050
* The Members.
51-
*
51+
* A member added to an externalGroup. You can add Azure Active Directory users, Azure Active Directory groups, or other externalGroups as members.
5252
*/
5353
@SerializedName(value = "members", alternate = {"Members"})
5454
@Expose

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,18 @@ public class ExternalGroupMember extends Entity implements IJsonBackedObject {
2929

3030
/**
3131
* The Identity Source.
32-
*
33-
*/
32+
* The identity source that the member belongs to. Possible values are: azureActiveDirectory, external.
33+
* @deprecated The property named 'IdentitySource' will be deprecated in September 2021, please see the updated aclType usage.
34+
*/
35+
@Deprecated
3436
@SerializedName(value = "identitySource", alternate = {"IdentitySource"})
3537
@Expose
3638
@Nullable
3739
public IdentitySourceType identitySource;
3840

3941
/**
4042
* The Type.
41-
*
43+
* The type of member added to the external group. Possible values are: user or group when the identitySource is azureActiveDirectory and just group when the identitySource is external.
4244
*/
4345
@SerializedName(value = "type", alternate = {"Type"})
4446
@Expose

0 commit comments

Comments
 (0)