Skip to content

Commit 717c95f

Browse files
author
Client Tooling Big Giant Robot
committed
Update generated files with build 1122970
1 parent 6700cc7 commit 717c95f

File tree

57 files changed

+3569
-31
lines changed

Some content is hidden

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

57 files changed

+3569
-31
lines changed

src/main/java/com/microsoft/graph/models/extensions/Alert.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.microsoft.graph.models.extensions.CloudAppSecurityState;
1414
import com.microsoft.graph.models.generated.AlertFeedback;
1515
import com.microsoft.graph.models.extensions.FileSecurityState;
16+
import com.microsoft.graph.models.extensions.AlertHistoryState;
1617
import com.microsoft.graph.models.extensions.HostSecurityState;
1718
import com.microsoft.graph.models.extensions.MalwareState;
1819
import com.microsoft.graph.models.extensions.NetworkConnection;
@@ -161,6 +162,14 @@ public class Alert extends Entity implements IJsonBackedObject {
161162
@Expose
162163
public java.util.List<FileSecurityState> fileStates;
163164

165+
/**
166+
* The History States.
167+
*
168+
*/
169+
@SerializedName("historyStates")
170+
@Expose
171+
public java.util.List<AlertHistoryState> historyStates;
172+
164173
/**
165174
* The Host States.
166175
* Security-related stateful information generated by the provider about the host(s) related to this alert.
Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
import com.microsoft.graph.concurrency.*;
7+
import com.microsoft.graph.core.*;
8+
import com.microsoft.graph.http.*;
9+
import com.microsoft.graph.options.*;
10+
import com.microsoft.graph.serializer.*;
11+
import java.util.Arrays;
12+
import java.util.EnumSet;
13+
import com.microsoft.graph.models.generated.AlertFeedback;
14+
import com.microsoft.graph.models.generated.AlertStatus;
15+
16+
17+
import com.google.gson.JsonObject;
18+
import com.google.gson.JsonElement;
19+
import com.google.gson.annotations.*;
20+
import java.util.HashMap;
21+
import java.util.Map;
22+
23+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
24+
25+
/**
26+
* The class for the Alert History State.
27+
*/
28+
public class AlertHistoryState implements IJsonBackedObject {
29+
30+
@SerializedName("@odata.type")
31+
@Expose
32+
public String oDataType;
33+
34+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
35+
36+
@Override
37+
public final AdditionalDataManager additionalDataManager() {
38+
return additionalDataManager;
39+
}
40+
41+
/**
42+
* The App Id.
43+
*
44+
*/
45+
@SerializedName("appId")
46+
@Expose
47+
public String appId;
48+
49+
/**
50+
* The Assigned To.
51+
*
52+
*/
53+
@SerializedName("assignedTo")
54+
@Expose
55+
public String assignedTo;
56+
57+
/**
58+
* The Comments.
59+
*
60+
*/
61+
@SerializedName("comments")
62+
@Expose
63+
public java.util.List<String> comments;
64+
65+
/**
66+
* The Feedback.
67+
*
68+
*/
69+
@SerializedName("feedback")
70+
@Expose
71+
public AlertFeedback feedback;
72+
73+
/**
74+
* The Status.
75+
*
76+
*/
77+
@SerializedName("status")
78+
@Expose
79+
public AlertStatus status;
80+
81+
/**
82+
* The Updated Date Time.
83+
*
84+
*/
85+
@SerializedName("updatedDateTime")
86+
@Expose
87+
public java.util.Calendar updatedDateTime;
88+
89+
/**
90+
* The User.
91+
*
92+
*/
93+
@SerializedName("user")
94+
@Expose
95+
public String user;
96+
97+
98+
/**
99+
* The raw representation of this class
100+
*/
101+
private JsonObject rawObject;
102+
103+
/**
104+
* The serializer
105+
*/
106+
private ISerializer serializer;
107+
108+
/**
109+
* Gets the raw representation of this class
110+
*
111+
* @return the raw representation of this class
112+
*/
113+
public JsonObject getRawObject() {
114+
return rawObject;
115+
}
116+
117+
/**
118+
* Gets serializer
119+
*
120+
* @return the serializer
121+
*/
122+
protected ISerializer getSerializer() {
123+
return serializer;
124+
}
125+
126+
/**
127+
* Sets the raw JSON object
128+
*
129+
* @param serializer the serializer
130+
* @param json the JSON object to set this object to
131+
*/
132+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
133+
this.serializer = serializer;
134+
rawObject = json;
135+
136+
}
137+
}
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
import com.microsoft.graph.concurrency.*;
7+
import com.microsoft.graph.core.*;
8+
import com.microsoft.graph.http.*;
9+
import com.microsoft.graph.options.*;
10+
import com.microsoft.graph.serializer.*;
11+
import java.util.Arrays;
12+
import java.util.EnumSet;
13+
14+
15+
import com.google.gson.JsonObject;
16+
import com.google.gson.JsonElement;
17+
import com.google.gson.annotations.*;
18+
import java.util.HashMap;
19+
import java.util.Map;
20+
21+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
22+
23+
/**
24+
* The class for the Average Comparative Score.
25+
*/
26+
public class AverageComparativeScore implements IJsonBackedObject {
27+
28+
@SerializedName("@odata.type")
29+
@Expose
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
public final AdditionalDataManager additionalDataManager() {
36+
return additionalDataManager;
37+
}
38+
39+
/**
40+
* The Average Score.
41+
*
42+
*/
43+
@SerializedName("averageScore")
44+
@Expose
45+
public Double averageScore;
46+
47+
/**
48+
* The Basis.
49+
*
50+
*/
51+
@SerializedName("basis")
52+
@Expose
53+
public String basis;
54+
55+
56+
/**
57+
* The raw representation of this class
58+
*/
59+
private JsonObject rawObject;
60+
61+
/**
62+
* The serializer
63+
*/
64+
private ISerializer serializer;
65+
66+
/**
67+
* Gets the raw representation of this class
68+
*
69+
* @return the raw representation of this class
70+
*/
71+
public JsonObject getRawObject() {
72+
return rawObject;
73+
}
74+
75+
/**
76+
* Gets serializer
77+
*
78+
* @return the serializer
79+
*/
80+
protected ISerializer getSerializer() {
81+
return serializer;
82+
}
83+
84+
/**
85+
* Sets the raw JSON object
86+
*
87+
* @param serializer the serializer
88+
* @param json the JSON object to set this object to
89+
*/
90+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
91+
this.serializer = serializer;
92+
rawObject = json;
93+
94+
}
95+
}
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
7+
import com.microsoft.graph.models.generated.*;
8+
import com.google.gson.annotations.Expose;
9+
import com.google.gson.annotations.SerializedName;
10+
import com.google.gson.JsonObject;
11+
import com.microsoft.graph.serializer.ISerializer;
12+
import java.util.EnumSet;
13+
14+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
15+
16+
/**
17+
* The class for the Calendar Get Schedule Body.
18+
*/
19+
public class CalendarGetScheduleBody {
20+
21+
/**
22+
* The schedules.
23+
*
24+
*/
25+
@SerializedName("schedules")
26+
@Expose
27+
public java.util.List<String> schedules;
28+
29+
/**
30+
* The end Time.
31+
*
32+
*/
33+
@SerializedName("endTime")
34+
@Expose
35+
public DateTimeTimeZone endTime;
36+
37+
/**
38+
* The start Time.
39+
*
40+
*/
41+
@SerializedName("startTime")
42+
@Expose
43+
public DateTimeTimeZone startTime;
44+
45+
/**
46+
* The availability View Interval.
47+
*
48+
*/
49+
@SerializedName("availabilityViewInterval")
50+
@Expose
51+
public Integer availabilityViewInterval;
52+
53+
54+
/**
55+
* The raw representation of this class
56+
*/
57+
private JsonObject rawObject;
58+
59+
/**
60+
* The serializer
61+
*/
62+
private ISerializer serializer;
63+
64+
/**
65+
* Gets the raw representation of this class
66+
*
67+
* @return the raw representation of this class
68+
*/
69+
public JsonObject getRawObject() {
70+
return rawObject;
71+
}
72+
73+
/**
74+
* Gets serializer
75+
*
76+
* @return the serializer
77+
*/
78+
protected ISerializer getSerializer() {
79+
return serializer;
80+
}
81+
82+
/**
83+
* Sets the raw JSON object
84+
*
85+
* @param serializer the serializer
86+
* @param json the JSON object to set this object to
87+
*/
88+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
89+
this.serializer = serializer;
90+
rawObject = json;
91+
92+
}
93+
}

0 commit comments

Comments
 (0)