Skip to content

Commit 450d4f3

Browse files
1 parent 74681b7 commit 450d4f3

9 files changed

Lines changed: 774 additions & 6 deletions

clients/google-api-services-chromemanagement/v1/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-chromemanagement</artifactId>
25-
<version>v1-rev20260505-2.0.0</version>
25+
<version>v1-rev20260520-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-chromemanagement:v1-rev20260505-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20260520-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-chromemanagement/v1/2.0.0/com/google/api/services/chromemanagement/v1/ChromeManagement.java

Lines changed: 451 additions & 0 deletions
Large diffs are not rendered by default.
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.chromemanagement.v1.model;
18+
19+
/**
20+
* Response from checking the enablement status of insights for the customer.
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 Management API. For a detailed explanation
24+
* 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 GoogleChromeManagementVersionsV1CheckEnablementStatusResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The state of the insights feature.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String insightsState;
39+
40+
/**
41+
* The state of the insights feature.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getInsightsState() {
45+
return insightsState;
46+
}
47+
48+
/**
49+
* The state of the insights feature.
50+
* @param insightsState insightsState or {@code null} for none
51+
*/
52+
public GoogleChromeManagementVersionsV1CheckEnablementStatusResponse setInsightsState(java.lang.String insightsState) {
53+
this.insightsState = insightsState;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleChromeManagementVersionsV1CheckEnablementStatusResponse set(String fieldName, Object value) {
59+
return (GoogleChromeManagementVersionsV1CheckEnablementStatusResponse) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleChromeManagementVersionsV1CheckEnablementStatusResponse clone() {
64+
return (GoogleChromeManagementVersionsV1CheckEnablementStatusResponse) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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.chromemanagement.v1.model;
18+
19+
/**
20+
* Request to disable insights for the customer.
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 Management API. For a detailed explanation
24+
* 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 GoogleChromeManagementVersionsV1DisableInsightsRequest extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public GoogleChromeManagementVersionsV1DisableInsightsRequest set(String fieldName, Object value) {
35+
return (GoogleChromeManagementVersionsV1DisableInsightsRequest) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public GoogleChromeManagementVersionsV1DisableInsightsRequest clone() {
40+
return (GoogleChromeManagementVersionsV1DisableInsightsRequest) super.clone();
41+
}
42+
43+
}
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.chromemanagement.v1.model;
18+
19+
/**
20+
* Response from disabling insights for the customer.
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 Management API. For a detailed explanation
24+
* 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 GoogleChromeManagementVersionsV1DisableInsightsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The state of the insights feature.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String insightsState;
39+
40+
/**
41+
* The state of the insights feature.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getInsightsState() {
45+
return insightsState;
46+
}
47+
48+
/**
49+
* The state of the insights feature.
50+
* @param insightsState insightsState or {@code null} for none
51+
*/
52+
public GoogleChromeManagementVersionsV1DisableInsightsResponse setInsightsState(java.lang.String insightsState) {
53+
this.insightsState = insightsState;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleChromeManagementVersionsV1DisableInsightsResponse set(String fieldName, Object value) {
59+
return (GoogleChromeManagementVersionsV1DisableInsightsResponse) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleChromeManagementVersionsV1DisableInsightsResponse clone() {
64+
return (GoogleChromeManagementVersionsV1DisableInsightsResponse) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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.chromemanagement.v1.model;
18+
19+
/**
20+
* Request to enable insights for the customer.
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 Management API. For a detailed explanation
24+
* 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 GoogleChromeManagementVersionsV1EnableInsightsRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The Organizational Units to set up required connectors for. Organizational Units are
35+
* provided as paths relative to root. If this field is not set, connectors will be set up at root
36+
* OU (as if it were set to ["/"]). Example: ["/corp/sales", "/eng"]
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.util.List<java.lang.String> targetOus;
41+
42+
/**
43+
* Optional. The Organizational Units to set up required connectors for. Organizational Units are
44+
* provided as paths relative to root. If this field is not set, connectors will be set up at root
45+
* OU (as if it were set to ["/"]). Example: ["/corp/sales", "/eng"]
46+
* @return value or {@code null} for none
47+
*/
48+
public java.util.List<java.lang.String> getTargetOus() {
49+
return targetOus;
50+
}
51+
52+
/**
53+
* Optional. The Organizational Units to set up required connectors for. Organizational Units are
54+
* provided as paths relative to root. If this field is not set, connectors will be set up at root
55+
* OU (as if it were set to ["/"]). Example: ["/corp/sales", "/eng"]
56+
* @param targetOus targetOus or {@code null} for none
57+
*/
58+
public GoogleChromeManagementVersionsV1EnableInsightsRequest setTargetOus(java.util.List<java.lang.String> targetOus) {
59+
this.targetOus = targetOus;
60+
return this;
61+
}
62+
63+
@Override
64+
public GoogleChromeManagementVersionsV1EnableInsightsRequest set(String fieldName, Object value) {
65+
return (GoogleChromeManagementVersionsV1EnableInsightsRequest) super.set(fieldName, value);
66+
}
67+
68+
@Override
69+
public GoogleChromeManagementVersionsV1EnableInsightsRequest clone() {
70+
return (GoogleChromeManagementVersionsV1EnableInsightsRequest) super.clone();
71+
}
72+
73+
}
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.chromemanagement.v1.model;
18+
19+
/**
20+
* Response from enabling insights for the customer.
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 Management API. For a detailed explanation
24+
* 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 GoogleChromeManagementVersionsV1EnableInsightsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The state of the insights feature.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String insightsState;
39+
40+
/**
41+
* The state of the insights feature.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getInsightsState() {
45+
return insightsState;
46+
}
47+
48+
/**
49+
* The state of the insights feature.
50+
* @param insightsState insightsState or {@code null} for none
51+
*/
52+
public GoogleChromeManagementVersionsV1EnableInsightsResponse setInsightsState(java.lang.String insightsState) {
53+
this.insightsState = insightsState;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleChromeManagementVersionsV1EnableInsightsResponse set(String fieldName, Object value) {
59+
return (GoogleChromeManagementVersionsV1EnableInsightsResponse) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleChromeManagementVersionsV1EnableInsightsResponse clone() {
64+
return (GoogleChromeManagementVersionsV1EnableInsightsResponse) super.clone();
65+
}
66+
67+
}

clients/google-api-services-chromemanagement/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-chromemanagement</artifactId>
11-
<version>v1-rev20260505-2.0.0</version>
12-
<name>Chrome Management API v1-rev20260505-2.0.0</name>
11+
<version>v1-rev20260520-2.0.0</version>
12+
<name>Chrome Management API v1-rev20260520-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-chromemanagement/v1/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-chromemanagement</artifactId>
25-
<version>v1-rev20260505-2.0.0</version>
25+
<version>v1-rev20260520-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-chromemanagement:v1-rev20260505-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20260520-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)