Skip to content

Commit 6742cad

Browse files
1 parent e2aa90d commit 6742cad

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
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-rev20240529-2.0.0</version>
25+
<version>v1-rev20240819-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-rev20240529-2.0.0'
38+
implementation 'com.google.apis:google-api-services-privateca:v1-rev20240819-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,15 @@ public final class CertificateDescription extends com.google.api.client.json.Gen
8484
@com.google.api.client.util.Key
8585
private KeyId subjectKeyId;
8686

87+
/**
88+
* The hash of the pre-signed certificate, which will be signed by the CA. Corresponds to the TBS
89+
* Certificate in https://tools.ietf.org/html/rfc5280#section-4.1.2. The field will always be
90+
* populated.
91+
* The value may be {@code null}.
92+
*/
93+
@com.google.api.client.util.Key
94+
private java.lang.String tbsCertificateDigest;
95+
8796
/**
8897
* Describes some of the technical X.509 fields in a certificate.
8998
* The value may be {@code null}.
@@ -218,6 +227,27 @@ public CertificateDescription setSubjectKeyId(KeyId subjectKeyId) {
218227
return this;
219228
}
220229

230+
/**
231+
* The hash of the pre-signed certificate, which will be signed by the CA. Corresponds to the TBS
232+
* Certificate in https://tools.ietf.org/html/rfc5280#section-4.1.2. The field will always be
233+
* populated.
234+
* @return value or {@code null} for none
235+
*/
236+
public java.lang.String getTbsCertificateDigest() {
237+
return tbsCertificateDigest;
238+
}
239+
240+
/**
241+
* The hash of the pre-signed certificate, which will be signed by the CA. Corresponds to the TBS
242+
* Certificate in https://tools.ietf.org/html/rfc5280#section-4.1.2. The field will always be
243+
* populated.
244+
* @param tbsCertificateDigest tbsCertificateDigest or {@code null} for none
245+
*/
246+
public CertificateDescription setTbsCertificateDigest(java.lang.String tbsCertificateDigest) {
247+
this.tbsCertificateDigest = tbsCertificateDigest;
248+
return this;
249+
}
250+
221251
/**
222252
* Describes some of the technical X.509 fields in a certificate.
223253
* @return value or {@code null} for none

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-rev20240529-2.0.0</version>
12-
<name>Certificate Authority API v1-rev20240529-2.0.0</name>
11+
<version>v1-rev20240819-2.0.0</version>
12+
<name>Certificate Authority API v1-rev20240819-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-rev20240529-2.0.0</version>
25+
<version>v1-rev20240819-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-rev20240529-2.0.0'
38+
implementation 'com.google.apis:google-api-services-privateca:v1-rev20240819-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)