Skip to content

Commit ba70c7e

Browse files
1 parent 451e71f commit ba70c7e

File tree

7 files changed

+340
-207
lines changed

7 files changed

+340
-207
lines changed

clients/google-api-services-verifiedaccess/v2/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-verifiedaccess</artifactId>
25-
<version>v2-rev20241112-2.0.0</version>
25+
<version>v2-rev20250225-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-verifiedaccess:v2-rev20241112-2.0.0'
38+
implementation 'com.google.apis:google-api-services-verifiedaccess:v2-rev20250225-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.verifiedaccess.v2.model;
18+
19+
/**
20+
* Antivirus information on a device.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Chrome Verified Access API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class Antivirus extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The state of the antivirus on the device. Introduced in Chrome M136.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String state;
39+
40+
/**
41+
* Output only. The state of the antivirus on the device. Introduced in Chrome M136.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getState() {
45+
return state;
46+
}
47+
48+
/**
49+
* Output only. The state of the antivirus on the device. Introduced in Chrome M136.
50+
* @param state state or {@code null} for none
51+
*/
52+
public Antivirus setState(java.lang.String state) {
53+
this.state = state;
54+
return this;
55+
}
56+
57+
@Override
58+
public Antivirus set(String fieldName, Object value) {
59+
return (Antivirus) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public Antivirus clone() {
64+
return (Antivirus) super.clone();
65+
}
66+
67+
}

clients/google-api-services-verifiedaccess/v2/2.0.0/com/google/api/services/verifiedaccess/v2/model/CrowdStrikeAgent.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,29 @@
3131
public final class CrowdStrikeAgent extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The Agent ID of the Crowdstrike agent.
34+
* Output only. The Agent ID of the Crowdstrike agent.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.String agentId;
3939

4040
/**
41-
* The Customer ID to which the agent belongs to.
41+
* Output only. The Customer ID to which the agent belongs to.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
4545
private java.lang.String customerId;
4646

4747
/**
48-
* The Agent ID of the Crowdstrike agent.
48+
* Output only. The Agent ID of the Crowdstrike agent.
4949
* @return value or {@code null} for none
5050
*/
5151
public java.lang.String getAgentId() {
5252
return agentId;
5353
}
5454

5555
/**
56-
* The Agent ID of the Crowdstrike agent.
56+
* Output only. The Agent ID of the Crowdstrike agent.
5757
* @param agentId agentId or {@code null} for none
5858
*/
5959
public CrowdStrikeAgent setAgentId(java.lang.String agentId) {
@@ -62,15 +62,15 @@ public CrowdStrikeAgent setAgentId(java.lang.String agentId) {
6262
}
6363

6464
/**
65-
* The Customer ID to which the agent belongs to.
65+
* Output only. The Customer ID to which the agent belongs to.
6666
* @return value or {@code null} for none
6767
*/
6868
public java.lang.String getCustomerId() {
6969
return customerId;
7070
}
7171

7272
/**
73-
* The Customer ID to which the agent belongs to.
73+
* Output only. The Customer ID to which the agent belongs to.
7474
* @param customerId customerId or {@code null} for none
7575
*/
7676
public CrowdStrikeAgent setCustomerId(java.lang.String customerId) {

0 commit comments

Comments
 (0)