Skip to content

Commit d4b0af2

Browse files
1 parent 7b4f9f4 commit d4b0af2

File tree

12 files changed

+118
-206
lines changed

12 files changed

+118
-206
lines changed

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

clients/google-api-services-privateca/v1/2.0.0/com/google/api/services/privateca/v1/CertificateAuthorityService.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. A list of extra location types that should be used as conditions for
449-
* controlling the visibility of the locations.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. A list of extra location types that should be used as conditions for controlling the
455-
visibility of the locations.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. A list of extra location types that should be used as conditions for
463-
* controlling the visibility of the locations.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

clients/google-api-services-privateca/v1/2.0.0/com/google/api/services/privateca/v1/model/CaPool.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@
3232
@SuppressWarnings("javadoc")
3333
public final class CaPool extends com.google.api.client.json.GenericJson {
3434

35+
/**
36+
* Optional. When EncryptionSpec is provided, the Subject, SubjectAltNames, and the PEM-encoded
37+
* certificate fields will be encrypted at rest.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private EncryptionSpec encryptionSpec;
42+
3543
/**
3644
* Optional. The IssuancePolicy to control how Certificates will be issued from this CaPool.
3745
* The value may be {@code null}.
@@ -68,6 +76,25 @@ public final class CaPool extends com.google.api.client.json.GenericJson {
6876
@com.google.api.client.util.Key
6977
private java.lang.String tier;
7078

79+
/**
80+
* Optional. When EncryptionSpec is provided, the Subject, SubjectAltNames, and the PEM-encoded
81+
* certificate fields will be encrypted at rest.
82+
* @return value or {@code null} for none
83+
*/
84+
public EncryptionSpec getEncryptionSpec() {
85+
return encryptionSpec;
86+
}
87+
88+
/**
89+
* Optional. When EncryptionSpec is provided, the Subject, SubjectAltNames, and the PEM-encoded
90+
* certificate fields will be encrypted at rest.
91+
* @param encryptionSpec encryptionSpec or {@code null} for none
92+
*/
93+
public CaPool setEncryptionSpec(EncryptionSpec encryptionSpec) {
94+
this.encryptionSpec = encryptionSpec;
95+
return this;
96+
}
97+
7198
/**
7299
* Optional. The IssuancePolicy to control how Certificates will be issued from this CaPool.
73100
* @return value or {@code null} for none
Lines changed: 67 additions & 0 deletions
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.privateca.v1.model;
18+
19+
/**
20+
* The configuration used for encrypting data at rest.
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 Certificate Authority 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 EncryptionSpec extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The resource name for a Cloud KMS key in the format `projects/locations/keyRings/cryptoKeys`.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String cloudKmsKey;
39+
40+
/**
41+
* The resource name for a Cloud KMS key in the format `projects/locations/keyRings/cryptoKeys`.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getCloudKmsKey() {
45+
return cloudKmsKey;
46+
}
47+
48+
/**
49+
* The resource name for a Cloud KMS key in the format `projects/locations/keyRings/cryptoKeys`.
50+
* @param cloudKmsKey cloudKmsKey or {@code null} for none
51+
*/
52+
public EncryptionSpec setCloudKmsKey(java.lang.String cloudKmsKey) {
53+
this.cloudKmsKey = cloudKmsKey;
54+
return this;
55+
}
56+
57+
@Override
58+
public EncryptionSpec set(String fieldName, Object value) {
59+
return (EncryptionSpec) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public EncryptionSpec clone() {
64+
return (EncryptionSpec) super.clone();
65+
}
66+
67+
}

clients/google-api-services-privateca/v1/2.0.0/com/google/api/services/privateca/v1/model/ReconciliationOperationMetadata.java

Lines changed: 0 additions & 91 deletions
This file was deleted.

clients/google-api-services-privateca/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-privateca</artifactId>
11-
<version>v1-rev20250528-2.0.0</version>
12-
<name>Certificate Authority API v1-rev20250528-2.0.0</name>
11+
<version>v1-rev20250901-2.0.0</version>
12+
<name>Certificate Authority API v1-rev20250901-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-privateca/v1beta1/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-privateca</artifactId>
25-
<version>v1beta1-rev20250326-2.0.0</version>
25+
<version>v1beta1-rev20250901-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-privateca:v1beta1-rev20250326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-privateca:v1beta1-rev20250901-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-privateca/v1beta1/2.0.0/com/google/api/services/privateca/v1beta1/CertificateAuthorityService.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. A list of extra location types that should be used as conditions for
449-
* controlling the visibility of the locations.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. A list of extra location types that should be used as conditions for controlling the
455-
visibility of the locations.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. A list of extra location types that should be used as conditions for
463-
* controlling the visibility of the locations.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

0 commit comments

Comments
 (0)