Skip to content

Commit 3e7c09d

Browse files
1 parent f52d755 commit 3e7c09d

File tree

4 files changed

+57
-6
lines changed

4 files changed

+57
-6
lines changed

clients/google-api-services-run/v2/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-run</artifactId>
25-
<version>v2-rev20241025-2.0.0</version>
25+
<version>v2-rev20241109-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-run:v2-rev20241025-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20241109-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2RevisionTemplate.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,21 @@ public final class GoogleCloudRunV2RevisionTemplate extends com.google.api.clien
6262
@com.google.api.client.util.Key
6363
private java.lang.String encryptionKey;
6464

65+
/**
66+
* Optional. The action to take if the encryption key is revoked.
67+
* The value may be {@code null}.
68+
*/
69+
@com.google.api.client.util.Key
70+
private java.lang.String encryptionKeyRevocationAction;
71+
72+
/**
73+
* Optional. If encryption_key_revocation_action is SHUTDOWN, the duration before shutting down
74+
* all instances. The minimum increment is 1 hour.
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private String encryptionKeyShutdownDuration;
79+
6580
/**
6681
* Optional. The sandbox environment to host this Revision.
6782
* The value may be {@code null}.
@@ -230,6 +245,42 @@ public GoogleCloudRunV2RevisionTemplate setEncryptionKey(java.lang.String encryp
230245
return this;
231246
}
232247

248+
/**
249+
* Optional. The action to take if the encryption key is revoked.
250+
* @return value or {@code null} for none
251+
*/
252+
public java.lang.String getEncryptionKeyRevocationAction() {
253+
return encryptionKeyRevocationAction;
254+
}
255+
256+
/**
257+
* Optional. The action to take if the encryption key is revoked.
258+
* @param encryptionKeyRevocationAction encryptionKeyRevocationAction or {@code null} for none
259+
*/
260+
public GoogleCloudRunV2RevisionTemplate setEncryptionKeyRevocationAction(java.lang.String encryptionKeyRevocationAction) {
261+
this.encryptionKeyRevocationAction = encryptionKeyRevocationAction;
262+
return this;
263+
}
264+
265+
/**
266+
* Optional. If encryption_key_revocation_action is SHUTDOWN, the duration before shutting down
267+
* all instances. The minimum increment is 1 hour.
268+
* @return value or {@code null} for none
269+
*/
270+
public String getEncryptionKeyShutdownDuration() {
271+
return encryptionKeyShutdownDuration;
272+
}
273+
274+
/**
275+
* Optional. If encryption_key_revocation_action is SHUTDOWN, the duration before shutting down
276+
* all instances. The minimum increment is 1 hour.
277+
* @param encryptionKeyShutdownDuration encryptionKeyShutdownDuration or {@code null} for none
278+
*/
279+
public GoogleCloudRunV2RevisionTemplate setEncryptionKeyShutdownDuration(String encryptionKeyShutdownDuration) {
280+
this.encryptionKeyShutdownDuration = encryptionKeyShutdownDuration;
281+
return this;
282+
}
283+
233284
/**
234285
* Optional. The sandbox environment to host this Revision.
235286
* @return value or {@code null} for none

clients/google-api-services-run/v2/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-run</artifactId>
11-
<version>v2-rev20241025-2.0.0</version>
12-
<name>Cloud Run Admin API v2-rev20241025-2.0.0</name>
11+
<version>v2-rev20241109-2.0.0</version>
12+
<name>Cloud Run Admin API v2-rev20241109-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-run/v2/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-run</artifactId>
25-
<version>v2-rev20241025-2.0.0</version>
25+
<version>v2-rev20241109-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-run:v2-rev20241025-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20241109-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)