Skip to content

Commit 7f9f1a4

Browse files
authored
Merge pull request #269 from microsoftgraph/beta/pipelinebuild/70473
Generated beta models and request builders using Typewriter
2 parents e0f4d1f + 8b9f43b commit 7f9f1a4

File tree

121 files changed

+4433
-87
lines changed

Some content is hidden

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

121 files changed

+4433
-87
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [0.42.0] - 2022-03-17
15+
16+
### Added
17+
18+
- CloudPC and related models and requests.
19+
- TeamInfo and related models and requests.
20+
- ChannelDoesUserHaveAccess and related models and requests.
21+
- ContentSharingSession and related requests.
22+
23+
### Changed
24+
25+
- Updated beta models and request builders generated using Typewriter, based on latest Beta-Metadata.
26+
- Updated referances to the added models and requests builders in related classes.
27+
1428
## [0.41.0] - 2022-03-03
1529

1630
### Added

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.41.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.42.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.41.0-SNAPSHOT</version>
40+
<version>0.42.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -179,5 +179,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
179179

180180

181181

182+
182183

183184

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

@@ -78,5 +78,6 @@ mavenCentralPublishingEnabled=false
7878

7979

8080

81+
8182

8283

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.41.0";
21+
public static final String VERSION_NAME = "0.42.0";
2222
}
2323

2424

@@ -53,5 +53,6 @@ private Constants() {
5353

5454

5555

56+
5657

5758

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
2727

2828
/**
2929
* The Activity.
30-
*
30+
* A string which uniquely represents the operation that occurred. Required. Read-only.
3131
*/
3232
@SerializedName(value = "activity", alternate = {"Activity"})
3333
@Expose
@@ -36,7 +36,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
3636

3737
/**
3838
* The Activity Date Time.
39-
*
39+
* The time when the activity ocurred. Required. Read-only.
4040
*/
4141
@SerializedName(value = "activityDateTime", alternate = {"ActivityDateTime"})
4242
@Expose
@@ -45,7 +45,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
4545

4646
/**
4747
* The Activity Id.
48-
*
48+
* The identifier of the activity request that made the audit event. Required. Read-only.
4949
*/
5050
@SerializedName(value = "activityId", alternate = {"ActivityId"})
5151
@Expose
@@ -54,7 +54,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
5454

5555
/**
5656
* The Category.
57-
*
57+
* A category which represents a logical grouping of activities. Required. Read-only.
5858
*/
5959
@SerializedName(value = "category", alternate = {"Category"})
6060
@Expose
@@ -63,7 +63,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
6363

6464
/**
6565
* The Http Verb.
66-
*
66+
* The HTTP verb that was used when making the API request. Required. Read-only.
6767
*/
6868
@SerializedName(value = "httpVerb", alternate = {"HttpVerb"})
6969
@Expose
@@ -72,7 +72,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
7272

7373
/**
7474
* The Initiated By App Id.
75-
*
75+
* The identifier of the app that was used to make the request. Required. Read-only.
7676
*/
7777
@SerializedName(value = "initiatedByAppId", alternate = {"InitiatedByAppId"})
7878
@Expose
@@ -81,7 +81,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
8181

8282
/**
8383
* The Initiated By Upn.
84-
*
84+
* The UPN of the user who initiated the activity. Required. Read-only.
8585
*/
8686
@SerializedName(value = "initiatedByUpn", alternate = {"InitiatedByUpn"})
8787
@Expose
@@ -90,7 +90,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
9090

9191
/**
9292
* The Initiated By User Id.
93-
*
93+
* The identifier of the user who initiated the activity. Required. Read-only.
9494
*/
9595
@SerializedName(value = "initiatedByUserId", alternate = {"InitiatedByUserId"})
9696
@Expose
@@ -99,7 +99,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
9999

100100
/**
101101
* The Ip Address.
102-
*
102+
* The IP address of where the activity was initiated. This may be an IPv4 or IPv6 address. Required. Read-only.
103103
*/
104104
@SerializedName(value = "ipAddress", alternate = {"IpAddress"})
105105
@Expose
@@ -108,7 +108,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
108108

109109
/**
110110
* The Request Body.
111-
*
111+
* The raw HTTP request body. Some sensitive information may be removed.
112112
*/
113113
@SerializedName(value = "requestBody", alternate = {"RequestBody"})
114114
@Expose
@@ -117,7 +117,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
117117

118118
/**
119119
* The Request Url.
120-
*
120+
* The raw HTTP request URL. Required. Read-only.
121121
*/
122122
@SerializedName(value = "requestUrl", alternate = {"RequestUrl"})
123123
@Expose
@@ -126,7 +126,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
126126

127127
/**
128128
* The Tenant Ids.
129-
*
129+
* The collection of Azure Active Directory tenant identifiers for the managed tenants that were impacted by this change. This is formatted as a list of comma-separated values. Required. Read-only.
130130
*/
131131
@SerializedName(value = "tenantIds", alternate = {"TenantIds"})
132132
@Expose
@@ -135,7 +135,7 @@ public class AuditEvent extends Entity implements IJsonBackedObject {
135135

136136
/**
137137
* The Tenant Names.
138-
*
138+
* The collection of tenant names that were impacted by this change. This is formatted as a list of comma-separated values. Required. Read-only.
139139
*/
140140
@SerializedName(value = "tenantNames", alternate = {"TenantNames"})
141141
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public class ManagedTenant extends Entity implements IJsonBackedObject {
8585

8686
/**
8787
* The Audit Events.
88-
*
88+
* The collection of audit events across managed tenants.
8989
*/
9090
@SerializedName(value = "auditEvents", alternate = {"AuditEvents"})
9191
@Expose

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class Agreement extends Entity implements IJsonBackedObject {
3434

3535
/**
3636
* The Display Name.
37-
* Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement.
37+
* Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement. Supports $filter (eq).
3838
*/
3939
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4040
@Expose
@@ -43,7 +43,7 @@ public class Agreement extends Entity implements IJsonBackedObject {
4343

4444
/**
4545
* The Is Per Device Acceptance Required.
46-
* Indicates whether end users are required to accept this agreement on every device that they access it from. The end user is required to register their device in Azure AD, if they haven't already done so.
46+
* Indicates whether end users are required to accept this agreement on every device that they access it from. The end user is required to register their device in Azure AD, if they haven't already done so. Supports $filter (eq).
4747
*/
4848
@SerializedName(value = "isPerDeviceAcceptanceRequired", alternate = {"IsPerDeviceAcceptanceRequired"})
4949
@Expose
@@ -52,7 +52,7 @@ public class Agreement extends Entity implements IJsonBackedObject {
5252

5353
/**
5454
* The Is Viewing Before Acceptance Required.
55-
* Indicates whether the user has to expand the agreement before accepting.
55+
* Indicates whether the user has to expand the agreement before accepting. Supports $filter (eq).
5656
*/
5757
@SerializedName(value = "isViewingBeforeAcceptanceRequired", alternate = {"IsViewingBeforeAcceptanceRequired"})
5858
@Expose
@@ -61,7 +61,7 @@ public class Agreement extends Entity implements IJsonBackedObject {
6161

6262
/**
6363
* The Terms Expiration.
64-
* Expiration schedule and frequency of agreement for all users.
64+
* Expiration schedule and frequency of agreement for all users. Supports $filter (eq).
6565
*/
6666
@SerializedName(value = "termsExpiration", alternate = {"TermsExpiration"})
6767
@Expose
@@ -70,7 +70,7 @@ public class Agreement extends Entity implements IJsonBackedObject {
7070

7171
/**
7272
* The User Reaccept Required Frequency.
73-
* The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations.
73+
* The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations. Supports $filter (eq).
7474
*/
7575
@SerializedName(value = "userReacceptRequiredFrequency", alternate = {"UserReacceptRequiredFrequency"})
7676
@Expose
@@ -97,7 +97,7 @@ public class Agreement extends Entity implements IJsonBackedObject {
9797

9898
/**
9999
* The Files.
100-
* PDFs linked to this agreement. This property is in the process of being deprecated. Use the file property instead.
100+
* PDFs linked to this agreement. This property is in the process of being deprecated. Use the file property instead. Supports $expand.
101101
*/
102102
@SerializedName(value = "files", alternate = {"Files"})
103103
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public class AgreementAcceptance extends Entity implements IJsonBackedObject {
100100

101101
/**
102102
* The State.
103-
* The state of the agreement acceptance. Possible values are: accepted, declined.
103+
* The state of the agreement acceptance. Possible values are: accepted, declined. Supports $filter (eq).
104104
*/
105105
@SerializedName(value = "state", alternate = {"State"})
106106
@Expose

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

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

4040
/**
4141
* The Data.
42-
*
42+
* Data that represents the terms of use PDF document. Read-only.
4343
*/
4444
@SerializedName(value = "data", alternate = {"Data"})
4545
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class AospDeviceOwnerPkcsCertificateProfile extends AospDeviceOwnerCertif
3333

3434
/**
3535
* The Certificate Store.
36-
* Target store certificate
36+
* Target store certificate. Possible values are: user, machine.
3737
*/
3838
@SerializedName(value = "certificateStore", alternate = {"CertificateStore"})
3939
@Expose
@@ -69,7 +69,7 @@ public class AospDeviceOwnerPkcsCertificateProfile extends AospDeviceOwnerCertif
6969

7070
/**
7171
* The Certification Authority Type.
72-
* Certification authority type
72+
* Certification authority type. Possible values are: notConfigured, microsoft, digiCert.
7373
*/
7474
@SerializedName(value = "certificationAuthorityType", alternate = {"CertificationAuthorityType"})
7575
@Expose

0 commit comments

Comments
 (0)