Skip to content

Commit e4b7459

Browse files
1 parent da9f54e commit e4b7459

File tree

5 files changed

+53
-14
lines changed

5 files changed

+53
-14
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-rev20260312-2.0.0</version>
25+
<version>v1-rev20260319-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-rev20260312-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20260319-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2609,10 +2609,14 @@ public GetEkmConfig set(String parameterName, Object value) {
26092609
}
26102610
}
26112611
/**
2612-
* Lists information about the supported locations for this service. This method can be called in
2613-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
2614-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
2615-
* public locations as well as private or other locations specifically visible to the project.
2612+
* Lists information about the supported locations for this service. This method lists locations
2613+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
2614+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
2615+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
2616+
* lists locations visible to that specific project. This includes public, private, or other
2617+
* project-specific locations enabled for the project. For gRPC and client library implementations,
2618+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
2619+
* incorporated into the request path based on the specific service implementation and version.
26162620
*
26172621
* Create a request for the method "locations.list".
26182622
*
@@ -2636,10 +2640,15 @@ public class List extends CloudKMSRequest<com.google.api.services.cloudkms.v1.mo
26362640
java.util.regex.Pattern.compile("^projects/[^/]+$");
26372641

26382642
/**
2639-
* Lists information about the supported locations for this service. This method can be called in
2640-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
2641-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
2642-
* public locations as well as private or other locations specifically visible to the project.
2643+
* Lists information about the supported locations for this service. This method lists locations
2644+
* based on the resource scope provided in the [ListLocationsRequest.name] field: * **Global
2645+
* locations**: If `name` is empty, the method lists the public locations available to all
2646+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
2647+
* the method lists locations visible to that specific project. This includes public, private, or
2648+
* other project-specific locations enabled for the project. For gRPC and client library
2649+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
2650+
* resource name is incorporated into the request path based on the specific service
2651+
* implementation and version.
26432652
*
26442653
* Create a request for the method "locations.list".
26452654
*

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ public final class KeyAccessJustificationsPolicyConfig extends com.google.api.cl
4242
@com.google.api.client.util.Key
4343
private KeyAccessJustificationsPolicy defaultKeyAccessJustificationPolicy;
4444

45+
/**
46+
* Output only. Indicates whether this parent resource is available to default policy feature.
47+
* Please consult [the prerequisite of default policy feature](https://cloud.google.com/assured-
48+
* workloads/key-access-justifications/docs/set-default-policy#before) for more details.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Boolean defaultPolicyAvailable;
53+
4554
/**
4655
* Identifier. Represents the resource name for this KeyAccessJustificationsPolicyConfig in the
4756
* format of "{organizations|folders|projects}/kajPolicyConfig".
@@ -77,6 +86,27 @@ public KeyAccessJustificationsPolicyConfig setDefaultKeyAccessJustificationPolic
7786
return this;
7887
}
7988

89+
/**
90+
* Output only. Indicates whether this parent resource is available to default policy feature.
91+
* Please consult [the prerequisite of default policy feature](https://cloud.google.com/assured-
92+
* workloads/key-access-justifications/docs/set-default-policy#before) for more details.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.Boolean getDefaultPolicyAvailable() {
96+
return defaultPolicyAvailable;
97+
}
98+
99+
/**
100+
* Output only. Indicates whether this parent resource is available to default policy feature.
101+
* Please consult [the prerequisite of default policy feature](https://cloud.google.com/assured-
102+
* workloads/key-access-justifications/docs/set-default-policy#before) for more details.
103+
* @param defaultPolicyAvailable defaultPolicyAvailable or {@code null} for none
104+
*/
105+
public KeyAccessJustificationsPolicyConfig setDefaultPolicyAvailable(java.lang.Boolean defaultPolicyAvailable) {
106+
this.defaultPolicyAvailable = defaultPolicyAvailable;
107+
return this;
108+
}
109+
80110
/**
81111
* Identifier. Represents the resource name for this KeyAccessJustificationsPolicyConfig in the
82112
* format of "{organizations|folders|projects}/kajPolicyConfig".

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-rev20260312-2.0.0</version>
12-
<name>Cloud Key Management Service (KMS) API v1-rev20260312-2.0.0</name>
11+
<version>v1-rev20260319-2.0.0</version>
12+
<name>Cloud Key Management Service (KMS) API v1-rev20260319-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-rev20260312-2.0.0</version>
25+
<version>v1-rev20260319-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-rev20260312-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20260319-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)