Skip to content

Commit 919636e

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 120562
1 parent d2d3a98 commit 919636e

20 files changed

+831
-19
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:5.64.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.65.0'
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</artifactId>
39-
<version>5.64.0</version>
39+
<version>5.65.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -195,5 +195,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
195195

196196

197197

198+
198199

199200

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
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 64
29+
mavenMinorVersion = 65
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -118,5 +118,6 @@ mavenCentralPublishingEnabled=false
118118

119119

120120

121+
121122

122123

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

2424

@@ -95,5 +95,6 @@ private Constants() {
9595

9696

9797

98+
9899

99100

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

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

4242
/**
4343
* The Certification Controls.
44-
* Collection of the certification controls associated with certification
44+
* Collection of the certification controls associated with the certification.
4545
*/
4646
@SerializedName(value = "certificationControls", alternate = {"CertificationControls"})
4747
@Expose
@@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {
5050

5151
/**
5252
* The Certification Name.
53-
* Compliance certification name (for example, ISO 27018:2014, GDPR, FedRAMP, NIST 800-171)
53+
* The name of the compliance certification, for example, ISO 27018:2014, GDPR, FedRAMP, and NIST 800-171.
5454
*/
5555
@SerializedName(value = "certificationName", alternate = {"CertificationName"})
5656
@Expose

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

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

4242
/**
4343
* The Activity Display Name.
44-
* Indicates the activity name or the operation name (examples: 'Create User' and 'Add member to group'). For full list, see Azure AD activity list.
44+
* Indicates the activity name or the operation name (examples: 'Create User' and 'Add member to group'). For a list of activities logged, refer to Azure AD audit log categories and activities.
4545
*/
4646
@SerializedName(value = "activityDisplayName", alternate = {"ActivityDisplayName"})
4747
@Expose
@@ -59,7 +59,7 @@ public class DirectoryAudit extends Entity implements IJsonBackedObject {
5959

6060
/**
6161
* The Category.
62-
* Indicates which resource category that's targeted by the activity. For example: UserManagement, GroupManagement, ApplicationManagement, RoleManagement.
62+
* Indicates which resource category that's targeted by the activity. For example: UserManagement, GroupManagement, ApplicationManagement, RoleManagement. For a list of categories for activities logged, refer to Azure AD audit log categories and activities.
6363
*/
6464
@SerializedName(value = "category", alternate = {"Category"})
6565
@Expose

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

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

3232
/**
3333
* The Authentication Type.
34-
* Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. This property is read-only and is not nullable.
34+
* Indicates the configured authentication type for the domain. The value is either Managed or Federated. Managed indicates a cloud managed domain where Azure AD performs user authentication. Federated indicates authentication is federated with an identity provider such as the tenant's on-premises Active Directory via Active Directory Federation Services. Not nullable.
3535
*/
3636
@SerializedName(value = "authenticationType", alternate = {"AuthenticationType"})
3737
@Expose
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 Drive Item Permanent Delete Parameter Set.
21+
*/
22+
public class DriveItemPermanentDeleteParameterSet {
23+
24+
/**
25+
* Instiaciates a new DriveItemPermanentDeleteParameterSet
26+
*/
27+
public DriveItemPermanentDeleteParameterSet() {}
28+
/**
29+
* Instiaciates a new DriveItemPermanentDeleteParameterSet
30+
* @param builder builder bearing the parameters to initialize from
31+
*/
32+
protected DriveItemPermanentDeleteParameterSet(@Nonnull final DriveItemPermanentDeleteParameterSetBuilder builder) {
33+
}
34+
/**
35+
* Gets a new builder for the body
36+
* @return a new builder
37+
*/
38+
@Nonnull
39+
public static DriveItemPermanentDeleteParameterSetBuilder newBuilder() {
40+
return new DriveItemPermanentDeleteParameterSetBuilder();
41+
}
42+
/**
43+
* Fluent builder for the DriveItemPermanentDeleteParameterSet
44+
*/
45+
public static final class DriveItemPermanentDeleteParameterSetBuilder {
46+
/**
47+
* Instanciates a new DriveItemPermanentDeleteParameterSetBuilder
48+
*/
49+
@Nullable
50+
protected DriveItemPermanentDeleteParameterSetBuilder(){}
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 DriveItemPermanentDeleteParameterSet build() {
57+
return new DriveItemPermanentDeleteParameterSet(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: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
// Template Source: BaseEntity.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+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
12+
13+
import com.google.gson.JsonObject;
14+
import com.google.gson.annotations.SerializedName;
15+
import com.google.gson.annotations.Expose;
16+
import javax.annotation.Nullable;
17+
import javax.annotation.Nonnull;
18+
19+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
20+
21+
/**
22+
* The class for the Tenant Information.
23+
*/
24+
public class TenantInformation implements IJsonBackedObject {
25+
26+
/** the OData type of the object as returned by the service */
27+
@SerializedName("@odata.type")
28+
@Expose
29+
@Nullable
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
@Nonnull
36+
public final AdditionalDataManager additionalDataManager() {
37+
return additionalDataManager;
38+
}
39+
40+
/**
41+
* The Default Domain Name.
42+
*
43+
*/
44+
@SerializedName(value = "defaultDomainName", alternate = {"DefaultDomainName"})
45+
@Expose
46+
@Nullable
47+
public String defaultDomainName;
48+
49+
/**
50+
* The Display Name.
51+
*
52+
*/
53+
@SerializedName(value = "displayName", alternate = {"DisplayName"})
54+
@Expose
55+
@Nullable
56+
public String displayName;
57+
58+
/**
59+
* The Federation Brand Name.
60+
*
61+
*/
62+
@SerializedName(value = "federationBrandName", alternate = {"FederationBrandName"})
63+
@Expose
64+
@Nullable
65+
public String federationBrandName;
66+
67+
/**
68+
* The Tenant Id.
69+
*
70+
*/
71+
@SerializedName(value = "tenantId", alternate = {"TenantId"})
72+
@Expose
73+
@Nullable
74+
public String tenantId;
75+
76+
77+
/**
78+
* Sets the raw JSON object
79+
*
80+
* @param serializer the serializer
81+
* @param json the JSON object to set this object to
82+
*/
83+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
84+
85+
}
86+
}
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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+
import com.microsoft.graph.models.TenantInformation;
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 Tenant Relationship Find Tenant Information By Domain Name Parameter Set.
21+
*/
22+
public class TenantRelationshipFindTenantInformationByDomainNameParameterSet {
23+
/**
24+
* The domain Name.
25+
*
26+
*/
27+
@SerializedName(value = "domainName", alternate = {"DomainName"})
28+
@Expose
29+
@Nullable
30+
public String domainName;
31+
32+
33+
/**
34+
* Instiaciates a new TenantRelationshipFindTenantInformationByDomainNameParameterSet
35+
*/
36+
public TenantRelationshipFindTenantInformationByDomainNameParameterSet() {}
37+
/**
38+
* Instiaciates a new TenantRelationshipFindTenantInformationByDomainNameParameterSet
39+
* @param builder builder bearing the parameters to initialize from
40+
*/
41+
protected TenantRelationshipFindTenantInformationByDomainNameParameterSet(@Nonnull final TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder builder) {
42+
this.domainName = builder.domainName;
43+
}
44+
/**
45+
* Gets a new builder for the body
46+
* @return a new builder
47+
*/
48+
@Nonnull
49+
public static TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder newBuilder() {
50+
return new TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder();
51+
}
52+
/**
53+
* Fluent builder for the TenantRelationshipFindTenantInformationByDomainNameParameterSet
54+
*/
55+
public static final class TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder {
56+
/**
57+
* The domainName parameter value
58+
*/
59+
@Nullable
60+
protected String domainName;
61+
/**
62+
* Sets the DomainName
63+
* @param val the value to set it to
64+
* @return the current builder object
65+
*/
66+
@Nonnull
67+
public TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder withDomainName(@Nullable final String val) {
68+
this.domainName = val;
69+
return this;
70+
}
71+
/**
72+
* Instanciates a new TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder
73+
*/
74+
@Nullable
75+
protected TenantRelationshipFindTenantInformationByDomainNameParameterSetBuilder(){}
76+
/**
77+
* Buils the resulting body object to be passed to the request
78+
* @return the body object to pass to the request
79+
*/
80+
@Nonnull
81+
public TenantRelationshipFindTenantInformationByDomainNameParameterSet build() {
82+
return new TenantRelationshipFindTenantInformationByDomainNameParameterSet(this);
83+
}
84+
}
85+
/**
86+
* Gets the functions options from the properties that have been set
87+
* @return a list of function options for the request
88+
*/
89+
@Nonnull
90+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
91+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
92+
if(this.domainName != null) {
93+
result.add(new com.microsoft.graph.options.FunctionOption("domainName", domainName));
94+
}
95+
return result;
96+
}
97+
}

0 commit comments

Comments
 (0)