Skip to content

Commit 606c2f9

Browse files
1 parent 177357a commit 606c2f9

File tree

4 files changed

+42
-6
lines changed

4 files changed

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

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,17 @@ public final class IssuancePolicy extends com.google.api.client.json.GenericJson
5252
com.google.api.client.util.Data.nullOf(AllowedKeyType.class);
5353
}
5454

55+
/**
56+
* Optional. The duration to backdate all certificates issued from this CaPool. If not set, the
57+
* certificates will be issued with a not_before_time of the issuance time (i.e. the current
58+
* time). If set, the certificates will be issued with a not_before_time of the issuance time
59+
* minus the backdate_duration. The not_after_time will be adjusted to preserve the requested
60+
* lifetime. The backdate_duration must be less than or equal to 48 hours.
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private String backdateDuration;
65+
5566
/**
5667
* Optional. A set of X.509 values that will be applied to all certificates issued through this
5768
* CaPool. If a certificate request includes conflicting values for the same properties, they will
@@ -132,6 +143,31 @@ public IssuancePolicy setAllowedKeyTypes(java.util.List<AllowedKeyType> allowedK
132143
return this;
133144
}
134145

146+
/**
147+
* Optional. The duration to backdate all certificates issued from this CaPool. If not set, the
148+
* certificates will be issued with a not_before_time of the issuance time (i.e. the current
149+
* time). If set, the certificates will be issued with a not_before_time of the issuance time
150+
* minus the backdate_duration. The not_after_time will be adjusted to preserve the requested
151+
* lifetime. The backdate_duration must be less than or equal to 48 hours.
152+
* @return value or {@code null} for none
153+
*/
154+
public String getBackdateDuration() {
155+
return backdateDuration;
156+
}
157+
158+
/**
159+
* Optional. The duration to backdate all certificates issued from this CaPool. If not set, the
160+
* certificates will be issued with a not_before_time of the issuance time (i.e. the current
161+
* time). If set, the certificates will be issued with a not_before_time of the issuance time
162+
* minus the backdate_duration. The not_after_time will be adjusted to preserve the requested
163+
* lifetime. The backdate_duration must be less than or equal to 48 hours.
164+
* @param backdateDuration backdateDuration or {@code null} for none
165+
*/
166+
public IssuancePolicy setBackdateDuration(String backdateDuration) {
167+
this.backdateDuration = backdateDuration;
168+
return this;
169+
}
170+
135171
/**
136172
* Optional. A set of X.509 values that will be applied to all certificates issued through this
137173
* CaPool. If a certificate request includes conflicting values for the same properties, they will

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

0 commit comments

Comments
 (0)