Skip to content

Commit 5a75a7a

Browse files
Merge pull request #627 from microsoftgraph/beta/pipelinebuild/120052
Update generated files with build 120052 [skip ci]
2 parents bc53dec + f63494a commit 5a75a7a

File tree

512 files changed

+21747
-1145
lines changed

Some content is hidden

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

512 files changed

+21747
-1145
lines changed
Lines changed: 72 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,86 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
112
name: "CodeQL"
213

314
on:
4-
workflow_dispatch:
515
push:
6-
branches: [dev, feature/6.0]
16+
branches: [ "dev", "feature/6.0" ]
717
pull_request:
818
# The branches below must be a subset of the branches above
9-
branches: [dev, feature/6.0]
19+
branches: [ "dev", "feature/6.0" ]
1020
schedule:
1121
- cron: '0 1 * * 4'
22+
workflow_dispatch:
1223

1324
jobs:
1425
analyze:
1526
name: Analyze
16-
runs-on: ubuntu-latest
27+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
28+
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
29+
permissions:
30+
actions: read
31+
contents: read
32+
security-events: write
33+
34+
strategy:
35+
fail-fast: false
36+
matrix:
37+
language: [ 'java' ]
38+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
39+
# Use only 'java' to analyze code written in Java, Kotlin or both
40+
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
41+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
1742

1843
steps:
19-
- name: Checkout repository
20-
uses: actions/checkout@v3
21-
22-
# Initializes the CodeQL tools for scanning.
23-
- name: Initialize CodeQL
24-
uses: github/codeql-action/init@v2
25-
# Override language selection by uncommenting this and choosing your languages
26-
with:
27-
languages: java
28-
29-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
30-
# If this step fails, then you should remove it and run the build manually (see below)
31-
- name: Autobuild
32-
uses: github/codeql-action/autobuild@v2
33-
34-
# ℹ️ Command-line programs to run using the OS shell.
35-
# 📚 https://git.io/JvXDl
36-
37-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
38-
# and modify them (or add more) to build your code if your project
39-
# uses a compiled language
40-
41-
#- run: |
42-
# make bootstrap
43-
# make release
44-
45-
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@v2
44+
- name: Checkout repository
45+
uses: actions/checkout@v3
46+
47+
- name: Set up JDK
48+
uses: actions/setup-java@v3
49+
with:
50+
java-version: 20
51+
distribution: 'temurin'
52+
cache: gradle
53+
54+
# Initializes the CodeQL tools for scanning.
55+
- name: Initialize CodeQL
56+
uses: github/codeql-action/init@v2
57+
with:
58+
languages: ${{ matrix.language }}
59+
# If you wish to specify custom queries, you can do so here or in a config file.
60+
# By default, queries listed here will override any specified in a config file.
61+
# Prefix the list here with "+" to use these queries and those in the config file.
62+
63+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
64+
# queries: security-extended,security-and-quality
65+
66+
67+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
68+
# If this step fails, then you should remove it and run the build manually (see below)
69+
# - name: Autobuild
70+
# uses: github/codeql-action/autobuild@v2
71+
72+
# ℹ️ Command-line programs to run using the OS shell.
73+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
74+
75+
# If the Autobuild fails above, remove it and uncomment the following three lines.
76+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
77+
78+
- name: Grant execute permission for gradlew
79+
run: chmod +x gradlew
80+
- name: Build with Gradle
81+
run: ./gradlew build
82+
83+
- name: Perform CodeQL Analysis
84+
uses: github/codeql-action/analyze@v2
85+
with:
86+
category: "/language:${{matrix.language}}"

README.md

Lines changed: 2 additions & 67 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.74.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.75.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.74.0-SNAPSHOT</version>
40+
<version>0.75.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -147,68 +147,3 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
147147
## 9. Third-party notices
148148

149149
[Third-party notices](THIRD%20PARTY%20NOTICES)
150-
151-
152-
153-
154-
155-
156-
157-
158-
159-
160-
161-
162-
163-
164-
165-
166-
167-
168-
169-
170-
171-
172-
173-
174-
175-
176-
177-
178-
179-
180-
181-
182-
183-
184-
185-
186-
187-
188-
189-
190-
191-
192-
193-
194-
195-
196-
197-
198-
199-
200-
201-
202-
203-
204-
205-
206-
207-
208-
209-
210-
211-
212-
213-
214-

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

@@ -109,5 +109,6 @@ mavenCentralPublishingEnabled=false
109109

110110

111111

112+
112113

113114

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,42 @@ public final AdditionalDataManager additionalDataManager() {
9292
@Nullable
9393
public java.math.BigDecimal charge;
9494

95+
/**
96+
* The Client Local Ip V4Address.
97+
* Local IPv4 of the client that is retrieved from the operating system of the client.
98+
*/
99+
@SerializedName(value = "clientLocalIpV4Address", alternate = {"ClientLocalIpV4Address"})
100+
@Expose
101+
@Nullable
102+
public String clientLocalIpV4Address;
103+
104+
/**
105+
* The Client Local Ip V6Address.
106+
* Local IPv6 of the client that is retrieved from the operating system of the client.
107+
*/
108+
@SerializedName(value = "clientLocalIpV6Address", alternate = {"ClientLocalIpV6Address"})
109+
@Expose
110+
@Nullable
111+
public String clientLocalIpV6Address;
112+
113+
/**
114+
* The Client Public Ip V4Address.
115+
* Public IPv4 of the client that can be used to determine the location of the client.
116+
*/
117+
@SerializedName(value = "clientPublicIpV4Address", alternate = {"ClientPublicIpV4Address"})
118+
@Expose
119+
@Nullable
120+
public String clientPublicIpV4Address;
121+
122+
/**
123+
* The Client Public Ip V6Address.
124+
* Public IPv6 of the client that can be used to determine the location of the client.
125+
*/
126+
@SerializedName(value = "clientPublicIpV6Address", alternate = {"ClientPublicIpV6Address"})
127+
@Expose
128+
@Nullable
129+
public String clientPublicIpV6Address;
130+
95131
/**
96132
* The Conference Id.
97133
* ID of the audio conference.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class TimeBasedAttributeTrigger extends WorkflowExecutionTrigger implemen
3737

3838
/**
3939
* The Time Based Attribute.
40-
* Determines which time-based identity property to reference. The possible values are: employeeHireDate, employeeLeaveDateTime, unknownFutureValue.
40+
* Determines which time-based identity property to reference. The possible values are: employeeHireDate, employeeLeaveDateTime, createdDateTime, unknownFutureValue.
4141
*/
4242
@SerializedName(value = "timeBasedAttribute", alternate = {"TimeBasedAttribute"})
4343
@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.74.0";
21+
public static final String VERSION_NAME = "0.75.0";
2222
}
2323

2424

@@ -84,5 +84,6 @@ private Constants() {
8484

8585

8686

87+
8788

8889

src/main/java/com/microsoft/graph/managedtenants/models/CredentialUserRegistrationsSummary.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,15 @@ public class CredentialUserRegistrationsSummary extends Entity implements IJsonB
115115
@Nullable
116116
public String tenantId;
117117

118+
/**
119+
* The Tenant License Type.
120+
*
121+
*/
122+
@SerializedName(value = "tenantLicenseType", alternate = {"TenantLicenseType"})
123+
@Expose
124+
@Nullable
125+
public String tenantLicenseType;
126+
118127
/**
119128
* The Total User Count.
120129
* The total number of users in the given managed tenant. Optional. Read-only.

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

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

3030
/**
3131
* The Alt Sec Id.
32-
*
32+
* Not Supported.
3333
*/
3434
@SerializedName(value = "altSecId", alternate = {"AltSecId"})
3535
@Expose
@@ -65,7 +65,7 @@ public class AccessPackageSubject extends Entity implements IJsonBackedObject {
6565

6666
/**
6767
* The Object Id.
68-
* The object identifier of the subject. null if the subject is not yet a user in the tenant.
68+
* The object identifier of the subject. null if the subject is not yet a user in the tenant. Alternate key.
6969
*/
7070
@SerializedName(value = "objectId", alternate = {"ObjectId"})
7171
@Expose
@@ -92,7 +92,7 @@ public class AccessPackageSubject extends Entity implements IJsonBackedObject {
9292

9393
/**
9494
* The Subject Lifecycle.
95-
*
95+
* The lifecycle of the subject user, if a guest. The possible values are: notDefined, notGoverned, governed, unknownFutureValue.
9696
*/
9797
@SerializedName(value = "subjectLifecycle", alternate = {"SubjectLifecycle"})
9898
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AccessReviewNotificationRecipientQueryScope extends AccessReviewNot
2727

2828
/**
2929
* The Query.
30-
* This represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
30+
* Represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
3131
*/
3232
@SerializedName(value = "query", alternate = {"Query"})
3333
@Expose
@@ -36,7 +36,7 @@ public class AccessReviewNotificationRecipientQueryScope extends AccessReviewNot
3636

3737
/**
3838
* The Query Root.
39-
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query that is, ./manager) is specified.
39+
* In the scenario where reviewers need to be specified dynamically, indicates the relative source of the query. This property is only required if a relative query (that is, ./manager) is specified.
4040
*/
4141
@SerializedName(value = "queryRoot", alternate = {"QueryRoot"})
4242
@Expose

0 commit comments

Comments
 (0)