Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudkms/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudkms</artifactId>
<version>v1-rev20260116-2.0.0</version>
<version>v1-rev20260123-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20260116-2.0.0'
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20260123-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ public final class AutokeyConfig extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.String keyProject;

/**
* Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are
* `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String keyProjectResolutionMode;

/**
* Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
* The value may be {@code null}.
Expand Down Expand Up @@ -116,6 +124,25 @@ public AutokeyConfig setKeyProject(java.lang.String keyProject) {
return this;
}

/**
* Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are
* `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.
* @return value or {@code null} for none
*/
public java.lang.String getKeyProjectResolutionMode() {
return keyProjectResolutionMode;
}

/**
* Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are
* `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.
* @param keyProjectResolutionMode keyProjectResolutionMode or {@code null} for none
*/
public AutokeyConfig setKeyProjectResolutionMode(java.lang.String keyProjectResolutionMode) {
this.keyProjectResolutionMode = keyProjectResolutionMode;
return this;
}

/**
* Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ public final class ImportJob extends com.google.api.client.json.GenericJson {
* Immutable. The resource name of the backend environment where the key material for the wrapping
* key resides and where all related cryptographic operations are performed. Currently, this field
* is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and
* may apply to additional ProtectionLevels in the future.
* may apply to additional ProtectionLevels in the future. Supported resources: *
* `"projects/locations/singleTenantHsmInstances"`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -174,7 +175,8 @@ public ImportJob setCreateTime(String createTime) {
* Immutable. The resource name of the backend environment where the key material for the wrapping
* key resides and where all related cryptographic operations are performed. Currently, this field
* is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and
* may apply to additional ProtectionLevels in the future.
* may apply to additional ProtectionLevels in the future. Supported resources: *
* `"projects/locations/singleTenantHsmInstances"`
* @return value or {@code null} for none
*/
public java.lang.String getCryptoKeyBackend() {
Expand All @@ -185,7 +187,8 @@ public java.lang.String getCryptoKeyBackend() {
* Immutable. The resource name of the backend environment where the key material for the wrapping
* key resides and where all related cryptographic operations are performed. Currently, this field
* is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and
* may apply to additional ProtectionLevels in the future.
* may apply to additional ProtectionLevels in the future. Supported resources: *
* `"projects/locations/singleTenantHsmInstances"`
* @param cryptoKeyBackend cryptoKeyBackend or {@code null} for none
*/
public ImportJob setCryptoKeyBackend(java.lang.String cryptoKeyBackend) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudkms/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudkms</artifactId>
<version>v1-rev20260116-2.0.0</version>
<name>Cloud Key Management Service (KMS) API v1-rev20260116-2.0.0</name>
<version>v1-rev20260123-2.0.0</version>
<name>Cloud Key Management Service (KMS) API v1-rev20260123-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudkms/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-cloudkms</artifactId>
<version>v1-rev20260116-2.0.0</version>
<version>v1-rev20260123-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20260116-2.0.0'
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20260123-2.0.0'
}
```

Expand Down