Skip to content

Commit 53a64b6

Browse files
1 parent 6742cad commit 53a64b6

File tree

7 files changed

+114
-12
lines changed

7 files changed

+114
-12
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-rev20240801-2.0.0</version>
25+
<version>v1-rev20240808-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-rev20240801-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudkms:v1-rev20240808-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: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3817,6 +3817,57 @@ public List setFilter(java.lang.String filter) {
38173817
return this;
38183818
}
38193819

3820+
/**
3821+
* Optional. Optional limit on the number of KeyHandles to include in the response. The
3822+
* service may return fewer than this value. Further KeyHandles can subsequently be
3823+
* obtained by including the ListKeyHandlesResponse.next_page_token in a subsequent
3824+
* request. If unspecified, at most KeyHandles 100 will be returned.
3825+
*/
3826+
@com.google.api.client.util.Key
3827+
private java.lang.Integer pageSize;
3828+
3829+
/** Optional. Optional limit on the number of KeyHandles to include in the response. The service may
3830+
return fewer than this value. Further KeyHandles can subsequently be obtained by including the
3831+
ListKeyHandlesResponse.next_page_token in a subsequent request. If unspecified, at most KeyHandles
3832+
100 will be returned.
3833+
*/
3834+
public java.lang.Integer getPageSize() {
3835+
return pageSize;
3836+
}
3837+
3838+
/**
3839+
* Optional. Optional limit on the number of KeyHandles to include in the response. The
3840+
* service may return fewer than this value. Further KeyHandles can subsequently be
3841+
* obtained by including the ListKeyHandlesResponse.next_page_token in a subsequent
3842+
* request. If unspecified, at most KeyHandles 100 will be returned.
3843+
*/
3844+
public List setPageSize(java.lang.Integer pageSize) {
3845+
this.pageSize = pageSize;
3846+
return this;
3847+
}
3848+
3849+
/**
3850+
* Optional. Optional pagination token, returned earlier via
3851+
* ListKeyHandlesResponse.next_page_token.
3852+
*/
3853+
@com.google.api.client.util.Key
3854+
private java.lang.String pageToken;
3855+
3856+
/** Optional. Optional pagination token, returned earlier via ListKeyHandlesResponse.next_page_token.
3857+
*/
3858+
public java.lang.String getPageToken() {
3859+
return pageToken;
3860+
}
3861+
3862+
/**
3863+
* Optional. Optional pagination token, returned earlier via
3864+
* ListKeyHandlesResponse.next_page_token.
3865+
*/
3866+
public List setPageToken(java.lang.String pageToken) {
3867+
this.pageToken = pageToken;
3868+
return this;
3869+
}
3870+
38203871
@Override
38213872
public List set(String parameterName, Object value) {
38223873
return (List) super.set(parameterName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class AutokeyConfig extends com.google.api.client.json.GenericJson
5050
@com.google.api.client.util.Key
5151
private java.lang.String name;
5252

53+
/**
54+
* Output only. The state for the AutokeyConfig.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.lang.String state;
59+
5360
/**
5461
* Optional. Name of the key project, e.g. `projects/{PROJECT_ID}` or `projects/{PROJECT_NUMBER}`,
5562
* where Cloud KMS Autokey will provision a new CryptoKey when a KeyHandle is created. On
@@ -96,6 +103,23 @@ public AutokeyConfig setName(java.lang.String name) {
96103
return this;
97104
}
98105

106+
/**
107+
* Output only. The state for the AutokeyConfig.
108+
* @return value or {@code null} for none
109+
*/
110+
public java.lang.String getState() {
111+
return state;
112+
}
113+
114+
/**
115+
* Output only. The state for the AutokeyConfig.
116+
* @param state state or {@code null} for none
117+
*/
118+
public AutokeyConfig setState(java.lang.String state) {
119+
this.state = state;
120+
return this;
121+
}
122+
99123
@Override
100124
public AutokeyConfig set(String fieldName, Object value) {
101125
return (AutokeyConfig) super.set(fieldName, value);

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ public final class EkmConnection extends com.google.api.client.json.GenericJson
7171
private java.lang.String name;
7272

7373
/**
74-
* A list of ServiceResolvers where the EKM can be reached. There should be one ServiceResolver
75-
* per EKM replica. Currently, only a single ServiceResolver is supported.
74+
* Optional. A list of ServiceResolvers where the EKM can be reached. There should be one
75+
* ServiceResolver per EKM replica. Currently, only a single ServiceResolver is supported.
7676
* The value may be {@code null}.
7777
*/
7878
@com.google.api.client.util.Key
@@ -170,17 +170,17 @@ public EkmConnection setName(java.lang.String name) {
170170
}
171171

172172
/**
173-
* A list of ServiceResolvers where the EKM can be reached. There should be one ServiceResolver
174-
* per EKM replica. Currently, only a single ServiceResolver is supported.
173+
* Optional. A list of ServiceResolvers where the EKM can be reached. There should be one
174+
* ServiceResolver per EKM replica. Currently, only a single ServiceResolver is supported.
175175
* @return value or {@code null} for none
176176
*/
177177
public java.util.List<ServiceResolver> getServiceResolvers() {
178178
return serviceResolvers;
179179
}
180180

181181
/**
182-
* A list of ServiceResolvers where the EKM can be reached. There should be one ServiceResolver
183-
* per EKM replica. Currently, only a single ServiceResolver is supported.
182+
* Optional. A list of ServiceResolvers where the EKM can be reached. There should be one
183+
* ServiceResolver per EKM replica. Currently, only a single ServiceResolver is supported.
184184
* @param serviceResolvers serviceResolvers or {@code null} for none
185185
*/
186186
public EkmConnection setServiceResolvers(java.util.List<ServiceResolver> serviceResolvers) {

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class ListKeyHandlesResponse extends com.google.api.client.json.Gen
4343
com.google.api.client.util.Data.nullOf(KeyHandle.class);
4444
}
4545

46+
/**
47+
* A token to retrieve next page of results. Pass this value in ListKeyHandlesRequest.page_token
48+
* to retrieve the next page of results.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String nextPageToken;
53+
4654
/**
4755
* Resulting KeyHandles.
4856
* @return value or {@code null} for none
@@ -60,6 +68,25 @@ public ListKeyHandlesResponse setKeyHandles(java.util.List<KeyHandle> keyHandles
6068
return this;
6169
}
6270

71+
/**
72+
* A token to retrieve next page of results. Pass this value in ListKeyHandlesRequest.page_token
73+
* to retrieve the next page of results.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getNextPageToken() {
77+
return nextPageToken;
78+
}
79+
80+
/**
81+
* A token to retrieve next page of results. Pass this value in ListKeyHandlesRequest.page_token
82+
* to retrieve the next page of results.
83+
* @param nextPageToken nextPageToken or {@code null} for none
84+
*/
85+
public ListKeyHandlesResponse setNextPageToken(java.lang.String nextPageToken) {
86+
this.nextPageToken = nextPageToken;
87+
return this;
88+
}
89+
6390
@Override
6491
public ListKeyHandlesResponse set(String fieldName, Object value) {
6592
return (ListKeyHandlesResponse) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)