Skip to content

Commit b5c5eb5

Browse files
1 parent 9ae6bb7 commit b5c5eb5

21 files changed

+2350
-30
lines changed

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-rev20250820-2.0.0</version>
25+
<version>v1-rev20251006-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-rev20250820-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20251006-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: 1477 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,10 @@ public final class GoogleChromeManagementVersionsV1CertificateProvisioningProces
124124
private java.lang.String signature;
125125

126126
/**
127-
* Output only. The signature algorithm that the adapter expects the client and backend components
128-
* to use when processing `sign_data`. This field is only present after the `SignData` operation
129-
* has been initiated.
127+
* Output only. The signature algorithm that the client and backend components use when processing
128+
* `sign_data`. If the `profile_type` is a `GenericProfile`, this field will only be present after
129+
* the `SignData` operation was initiated. If the `profile_type` is a `ScepProfile`, the field
130+
* will always be present.
130131
* The value may be {@code null}.
131132
*/
132133
@com.google.api.client.util.Key
@@ -433,19 +434,21 @@ public GoogleChromeManagementVersionsV1CertificateProvisioningProcess encodeSign
433434
}
434435

435436
/**
436-
* Output only. The signature algorithm that the adapter expects the client and backend components
437-
* to use when processing `sign_data`. This field is only present after the `SignData` operation
438-
* has been initiated.
437+
* Output only. The signature algorithm that the client and backend components use when processing
438+
* `sign_data`. If the `profile_type` is a `GenericProfile`, this field will only be present after
439+
* the `SignData` operation was initiated. If the `profile_type` is a `ScepProfile`, the field
440+
* will always be present.
439441
* @return value or {@code null} for none
440442
*/
441443
public java.lang.String getSignatureAlgorithm() {
442444
return signatureAlgorithm;
443445
}
444446

445447
/**
446-
* Output only. The signature algorithm that the adapter expects the client and backend components
447-
* to use when processing `sign_data`. This field is only present after the `SignData` operation
448-
* has been initiated.
448+
* Output only. The signature algorithm that the client and backend components use when processing
449+
* `sign_data`. If the `profile_type` is a `GenericProfile`, this field will only be present after
450+
* the `SignData` operation was initiated. If the `profile_type` is a `ScepProfile`, the field
451+
* will always be present.
449452
* @param signatureAlgorithm signatureAlgorithm or {@code null} for none
450453
*/
451454
public GoogleChromeManagementVersionsV1CertificateProvisioningProcess setSignatureAlgorithm(java.lang.String signatureAlgorithm) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,13 @@ public final class GoogleChromeManagementVersionsV1ChromeBrowserProfile extends
202202
@com.google.api.client.util.Key
203203
private GoogleChromeManagementVersionsV1ReportingData reportingData;
204204

205+
/**
206+
* Output only. Whether the profile supports FCM notifications.
207+
* The value may be {@code null}.
208+
*/
209+
@com.google.api.client.util.Key
210+
private java.lang.Boolean supportsFcmNotifications;
211+
205212
/**
206213
* Output only. Email address of the user to which the profile belongs.
207214
* The value may be {@code null}.
@@ -632,6 +639,23 @@ public GoogleChromeManagementVersionsV1ChromeBrowserProfile setReportingData(Goo
632639
return this;
633640
}
634641

642+
/**
643+
* Output only. Whether the profile supports FCM notifications.
644+
* @return value or {@code null} for none
645+
*/
646+
public java.lang.Boolean getSupportsFcmNotifications() {
647+
return supportsFcmNotifications;
648+
}
649+
650+
/**
651+
* Output only. Whether the profile supports FCM notifications.
652+
* @param supportsFcmNotifications supportsFcmNotifications or {@code null} for none
653+
*/
654+
public GoogleChromeManagementVersionsV1ChromeBrowserProfile setSupportsFcmNotifications(java.lang.Boolean supportsFcmNotifications) {
655+
this.supportsFcmNotifications = supportsFcmNotifications;
656+
return this;
657+
}
658+
635659
/**
636660
* Output only. Email address of the user to which the profile belongs.
637661
* @return value or {@code null} for none
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+
* Request message for claiming a certificate provisioning process.
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 GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The instance id of the caller.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String callerInstanceId;
39+
40+
/**
41+
* Required. The instance id of the caller.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getCallerInstanceId() {
45+
return callerInstanceId;
46+
}
47+
48+
/**
49+
* Required. The instance id of the caller.
50+
* @param callerInstanceId callerInstanceId or {@code null} for none
51+
*/
52+
public GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest setCallerInstanceId(java.lang.String callerInstanceId) {
53+
this.callerInstanceId = callerInstanceId;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest set(String fieldName, Object value) {
59+
return (GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest clone() {
64+
return (GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest) 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+
* Response message for claiming a certificate provisioning process.
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 GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse set(String fieldName, Object value) {
35+
return (GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse clone() {
40+
return (GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse) super.clone();
41+
}
42+
43+
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ public final class GoogleChromeManagementVersionsV1GenericCaConnection extends c
3232

3333
/**
3434
* Output only. A string that references the administrator-provided configuration for the
35-
* certification authority service. This field can be missing if no configuration was given.
35+
* certification authority service.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.String caConnectionAdapterConfigReference;
4040

4141
/**
4242
* Output only. A string that references the administrator-provided configuration for the
43-
* certification authority service. This field can be missing if no configuration was given.
43+
* certification authority service.
4444
* @return value or {@code null} for none
4545
*/
4646
public java.lang.String getCaConnectionAdapterConfigReference() {
@@ -49,7 +49,7 @@ public java.lang.String getCaConnectionAdapterConfigReference() {
4949

5050
/**
5151
* Output only. A string that references the administrator-provided configuration for the
52-
* certification authority service. This field can be missing if no configuration was given.
52+
* certification authority service.
5353
* @param caConnectionAdapterConfigReference caConnectionAdapterConfigReference or {@code null} for none
5454
*/
5555
public GoogleChromeManagementVersionsV1GenericCaConnection setCaConnectionAdapterConfigReference(java.lang.String caConnectionAdapterConfigReference) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ public final class GoogleChromeManagementVersionsV1GenericProfile extends com.go
3232

3333
/**
3434
* Output only. A string that references the administrator-provided configuration for the
35-
* certificate provisioning profile. This field can be missing if no configuration was given.
35+
* certificate provisioning profile.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.String profileAdapterConfigReference;
4040

4141
/**
4242
* Output only. A string that references the administrator-provided configuration for the
43-
* certificate provisioning profile. This field can be missing if no configuration was given.
43+
* certificate provisioning profile.
4444
* @return value or {@code null} for none
4545
*/
4646
public java.lang.String getProfileAdapterConfigReference() {
@@ -49,7 +49,7 @@ public java.lang.String getProfileAdapterConfigReference() {
4949

5050
/**
5151
* Output only. A string that references the administrator-provided configuration for the
52-
* certificate provisioning profile. This field can be missing if no configuration was given.
52+
* certificate provisioning profile.
5353
* @param profileAdapterConfigReference profileAdapterConfigReference or {@code null} for none
5454
*/
5555
public GoogleChromeManagementVersionsV1GenericProfile setProfileAdapterConfigReference(java.lang.String profileAdapterConfigReference) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ public final class GoogleChromeManagementVersionsV1ScepCaConnection extends com.
3232

3333
/**
3434
* Output only. A string that references the administrator-provided configuration for the
35-
* certification authority service. This field can be missing if no configuration was given.
35+
* certification authority service.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.String caConnectionAdapterConfigReference;
4040

4141
/**
4242
* Output only. A string that references the administrator-provided configuration for the
43-
* certification authority service. This field can be missing if no configuration was given.
43+
* certification authority service.
4444
* @return value or {@code null} for none
4545
*/
4646
public java.lang.String getCaConnectionAdapterConfigReference() {
@@ -49,7 +49,7 @@ public java.lang.String getCaConnectionAdapterConfigReference() {
4949

5050
/**
5151
* Output only. A string that references the administrator-provided configuration for the
52-
* certification authority service. This field can be missing if no configuration was given.
52+
* certification authority service.
5353
* @param caConnectionAdapterConfigReference caConnectionAdapterConfigReference or {@code null} for none
5454
*/
5555
public GoogleChromeManagementVersionsV1ScepCaConnection setCaConnectionAdapterConfigReference(java.lang.String caConnectionAdapterConfigReference) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public final class GoogleChromeManagementVersionsV1ScepProfile extends com.googl
3232

3333
/**
3434
* Output only. The certificate template name as defined by the admin on their on-prem
35-
* infrastructure. This is identifiable by the customer's CA.
35+
* infrastructure. The Certificate Authority uses this name to identify the certificate template.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -96,7 +96,7 @@ public final class GoogleChromeManagementVersionsV1ScepProfile extends com.googl
9696

9797
/**
9898
* Output only. The certificate template name as defined by the admin on their on-prem
99-
* infrastructure. This is identifiable by the customer's CA.
99+
* infrastructure. The Certificate Authority uses this name to identify the certificate template.
100100
* @return value or {@code null} for none
101101
*/
102102
public java.lang.String getCertificateTemplateName() {
@@ -105,7 +105,7 @@ public java.lang.String getCertificateTemplateName() {
105105

106106
/**
107107
* Output only. The certificate template name as defined by the admin on their on-prem
108-
* infrastructure. This is identifiable by the customer's CA.
108+
* infrastructure. The Certificate Authority uses this name to identify the certificate template.
109109
* @param certificateTemplateName certificateTemplateName or {@code null} for none
110110
*/
111111
public GoogleChromeManagementVersionsV1ScepProfile setCertificateTemplateName(java.lang.String certificateTemplateName) {

0 commit comments

Comments
 (0)