Skip to content

Commit b1146da

Browse files
chore: regenerate cloudkms client
1 parent 5ec85f7 commit b1146da

File tree

5 files changed

+39
-9
lines changed

5 files changed

+39
-9
lines changed

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

clients/google-api-services-cloudkms/v1/2.0.0/com/google/api/services/cloudkms/v1/model/AutokeyConfig.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ public final class AutokeyConfig extends com.google.api.client.json.GenericJson
5252
@com.google.api.client.util.Key
5353
private java.lang.String keyProject;
5454

55+
/**
56+
* Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are
57+
* `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String keyProjectResolutionMode;
62+
5563
/**
5664
* Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
5765
* The value may be {@code null}.
@@ -116,6 +124,25 @@ public AutokeyConfig setKeyProject(java.lang.String keyProject) {
116124
return this;
117125
}
118126

127+
/**
128+
* Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are
129+
* `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.
130+
* @return value or {@code null} for none
131+
*/
132+
public java.lang.String getKeyProjectResolutionMode() {
133+
return keyProjectResolutionMode;
134+
}
135+
136+
/**
137+
* Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are
138+
* `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.
139+
* @param keyProjectResolutionMode keyProjectResolutionMode or {@code null} for none
140+
*/
141+
public AutokeyConfig setKeyProjectResolutionMode(java.lang.String keyProjectResolutionMode) {
142+
this.keyProjectResolutionMode = keyProjectResolutionMode;
143+
return this;
144+
}
145+
119146
/**
120147
* Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
121148
* @return value or {@code null} for none

clients/google-api-services-cloudkms/v1/2.0.0/com/google/api/services/cloudkms/v1/model/ImportJob.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ public final class ImportJob extends com.google.api.client.json.GenericJson {
6464
* Immutable. The resource name of the backend environment where the key material for the wrapping
6565
* key resides and where all related cryptographic operations are performed. Currently, this field
6666
* is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and
67-
* may apply to additional ProtectionLevels in the future.
67+
* may apply to additional ProtectionLevels in the future. Supported resources: *
68+
* `"projects/locations/singleTenantHsmInstances"`
6869
* The value may be {@code null}.
6970
*/
7071
@com.google.api.client.util.Key
@@ -174,7 +175,8 @@ public ImportJob setCreateTime(String createTime) {
174175
* Immutable. The resource name of the backend environment where the key material for the wrapping
175176
* key resides and where all related cryptographic operations are performed. Currently, this field
176177
* is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and
177-
* may apply to additional ProtectionLevels in the future.
178+
* may apply to additional ProtectionLevels in the future. Supported resources: *
179+
* `"projects/locations/singleTenantHsmInstances"`
178180
* @return value or {@code null} for none
179181
*/
180182
public java.lang.String getCryptoKeyBackend() {
@@ -185,7 +187,8 @@ public java.lang.String getCryptoKeyBackend() {
185187
* Immutable. The resource name of the backend environment where the key material for the wrapping
186188
* key resides and where all related cryptographic operations are performed. Currently, this field
187189
* is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and
188-
* may apply to additional ProtectionLevels in the future.
190+
* may apply to additional ProtectionLevels in the future. Supported resources: *
191+
* `"projects/locations/singleTenantHsmInstances"`
189192
* @param cryptoKeyBackend cryptoKeyBackend or {@code null} for none
190193
*/
191194
public ImportJob setCryptoKeyBackend(java.lang.String cryptoKeyBackend) {

clients/google-api-services-cloudkms/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-cloudkms</artifactId>
11-
<version>v1-rev20260116-2.0.0</version>
12-
<name>Cloud Key Management Service (KMS) API v1-rev20260116-2.0.0</name>
11+
<version>v1-rev20260123-2.0.0</version>
12+
<name>Cloud Key Management Service (KMS) API v1-rev20260123-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)