Skip to content

Commit aa6e937

Browse files
1 parent 841a400 commit aa6e937

File tree

5 files changed

+103
-6
lines changed

5 files changed

+103
-6
lines changed

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

clients/google-api-services-certificatemanager/v1/2.0.0/com/google/api/services/certificatemanager/v1/model/Certificate.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,13 @@ public final class Certificate extends com.google.api.client.json.GenericJson {
110110
@com.google.api.client.util.Key
111111
private String updateTime;
112112

113+
/**
114+
* Output only. The list of resources that use this Certificate.
115+
* The value may be {@code null}.
116+
*/
117+
@com.google.api.client.util.Key
118+
private java.util.List<UsedBy> usedBy;
119+
113120
/**
114121
* Output only. The creation timestamp of a Certificate.
115122
* @return value or {@code null} for none
@@ -303,6 +310,23 @@ public Certificate setUpdateTime(String updateTime) {
303310
return this;
304311
}
305312

313+
/**
314+
* Output only. The list of resources that use this Certificate.
315+
* @return value or {@code null} for none
316+
*/
317+
public java.util.List<UsedBy> getUsedBy() {
318+
return usedBy;
319+
}
320+
321+
/**
322+
* Output only. The list of resources that use this Certificate.
323+
* @param usedBy usedBy or {@code null} for none
324+
*/
325+
public Certificate setUsedBy(java.util.List<UsedBy> usedBy) {
326+
this.usedBy = usedBy;
327+
return this;
328+
}
329+
306330
@Override
307331
public Certificate set(String fieldName, Object value) {
308332
return (Certificate) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.certificatemanager.v1.model;
18+
19+
/**
20+
* Defines a resource that uses the certificate.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Certificate Manager API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class UsedBy extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. Full name of the resource https://google.aip.dev/122#full-resource-names, e.g.
35+
* `//certificatemanager.googleapis.com/projects/locations/certificateMaps/certificateMapEntries`
36+
* or `//compute.googleapis.com/projects/locations/targetHttpsProxies`.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String name;
41+
42+
/**
43+
* Output only. Full name of the resource https://google.aip.dev/122#full-resource-names, e.g.
44+
* `//certificatemanager.googleapis.com/projects/locations/certificateMaps/certificateMapEntries`
45+
* or `//compute.googleapis.com/projects/locations/targetHttpsProxies`.
46+
* @return value or {@code null} for none
47+
*/
48+
public java.lang.String getName() {
49+
return name;
50+
}
51+
52+
/**
53+
* Output only. Full name of the resource https://google.aip.dev/122#full-resource-names, e.g.
54+
* `//certificatemanager.googleapis.com/projects/locations/certificateMaps/certificateMapEntries`
55+
* or `//compute.googleapis.com/projects/locations/targetHttpsProxies`.
56+
* @param name name or {@code null} for none
57+
*/
58+
public UsedBy setName(java.lang.String name) {
59+
this.name = name;
60+
return this;
61+
}
62+
63+
@Override
64+
public UsedBy set(String fieldName, Object value) {
65+
return (UsedBy) super.set(fieldName, value);
66+
}
67+
68+
@Override
69+
public UsedBy clone() {
70+
return (UsedBy) super.clone();
71+
}
72+
73+
}

clients/google-api-services-certificatemanager/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-certificatemanager</artifactId>
11-
<version>v1-rev20241204-2.0.0</version>
12-
<name>Certificate Manager API v1-rev20241204-2.0.0</name>
11+
<version>v1-rev20250203-2.0.0</version>
12+
<name>Certificate Manager API v1-rev20250203-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)