Skip to content

Commit fc2f926

Browse files
1 parent d0a8557 commit fc2f926

File tree

14 files changed

+530
-341
lines changed

14 files changed

+530
-341
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-rev20240710-2.0.0</version>
25+
<version>v1-rev20240729-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-rev20240710-2.0.0'
38+
implementation 'com.google.apis:google-api-services-certificatemanager:v1-rev20240729-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 374 additions & 200 deletions
Large diffs are not rendered by default.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final class AuthorizationAttemptInfo extends com.google.api.client.json.G
4040
private java.lang.String details;
4141

4242
/**
43-
* Domain name of the authorization attempt.
43+
* Output only. Domain name of the authorization attempt.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
@@ -82,15 +82,15 @@ public AuthorizationAttemptInfo setDetails(java.lang.String details) {
8282
}
8383

8484
/**
85-
* Domain name of the authorization attempt.
85+
* Output only. Domain name of the authorization attempt.
8686
* @return value or {@code null} for none
8787
*/
8888
public java.lang.String getDomain() {
8989
return domain;
9090
}
9191

9292
/**
93-
* Domain name of the authorization attempt.
93+
* Output only. Domain name of the authorization attempt.
9494
* @param domain domain or {@code null} for none
9595
*/
9696
public AuthorizationAttemptInfo setDomain(java.lang.String domain) {

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class Certificate extends com.google.api.client.json.GenericJson {
3838
private String createTime;
3939

4040
/**
41-
* One or more paragraphs of text description of a certificate.
41+
* Optional. One or more paragraphs of text description of a certificate.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
@@ -52,7 +52,7 @@ public final class Certificate extends com.google.api.client.json.GenericJson {
5252
private String expireTime;
5353

5454
/**
55-
* Set of labels associated with a Certificate.
55+
* Optional. Set of labels associated with a Certificate.
5656
* The value may be {@code null}.
5757
*/
5858
@com.google.api.client.util.Key
@@ -66,8 +66,8 @@ public final class Certificate extends com.google.api.client.json.GenericJson {
6666
private ManagedCertificate managed;
6767

6868
/**
69-
* A user-defined name of the certificate. Certificate names must be unique globally and match
70-
* pattern `projects/locations/certificates`.
69+
* Identifier. A user-defined name of the certificate. Certificate names must be unique globally
70+
* and match pattern `projects/locations/certificates`.
7171
* The value may be {@code null}.
7272
*/
7373
@com.google.api.client.util.Key
@@ -90,7 +90,7 @@ public final class Certificate extends com.google.api.client.json.GenericJson {
9090
private java.util.List<java.lang.String> sanDnsnames;
9191

9292
/**
93-
* Immutable. The scope of the certificate.
93+
* Optional. Immutable. The scope of the certificate.
9494
* The value may be {@code null}.
9595
*/
9696
@com.google.api.client.util.Key
@@ -128,15 +128,15 @@ public Certificate setCreateTime(String createTime) {
128128
}
129129

130130
/**
131-
* One or more paragraphs of text description of a certificate.
131+
* Optional. One or more paragraphs of text description of a certificate.
132132
* @return value or {@code null} for none
133133
*/
134134
public java.lang.String getDescription() {
135135
return description;
136136
}
137137

138138
/**
139-
* One or more paragraphs of text description of a certificate.
139+
* Optional. One or more paragraphs of text description of a certificate.
140140
* @param description description or {@code null} for none
141141
*/
142142
public Certificate setDescription(java.lang.String description) {
@@ -162,15 +162,15 @@ public Certificate setExpireTime(String expireTime) {
162162
}
163163

164164
/**
165-
* Set of labels associated with a Certificate.
165+
* Optional. Set of labels associated with a Certificate.
166166
* @return value or {@code null} for none
167167
*/
168168
public java.util.Map<String, java.lang.String> getLabels() {
169169
return labels;
170170
}
171171

172172
/**
173-
* Set of labels associated with a Certificate.
173+
* Optional. Set of labels associated with a Certificate.
174174
* @param labels labels or {@code null} for none
175175
*/
176176
public Certificate setLabels(java.util.Map<String, java.lang.String> labels) {
@@ -196,17 +196,17 @@ public Certificate setManaged(ManagedCertificate managed) {
196196
}
197197

198198
/**
199-
* A user-defined name of the certificate. Certificate names must be unique globally and match
200-
* pattern `projects/locations/certificates`.
199+
* Identifier. A user-defined name of the certificate. Certificate names must be unique globally
200+
* and match pattern `projects/locations/certificates`.
201201
* @return value or {@code null} for none
202202
*/
203203
public java.lang.String getName() {
204204
return name;
205205
}
206206

207207
/**
208-
* A user-defined name of the certificate. Certificate names must be unique globally and match
209-
* pattern `projects/locations/certificates`.
208+
* Identifier. A user-defined name of the certificate. Certificate names must be unique globally
209+
* and match pattern `projects/locations/certificates`.
210210
* @param name name or {@code null} for none
211211
*/
212212
public Certificate setName(java.lang.String name) {
@@ -253,15 +253,15 @@ public Certificate setSanDnsnames(java.util.List<java.lang.String> sanDnsnames)
253253
}
254254

255255
/**
256-
* Immutable. The scope of the certificate.
256+
* Optional. Immutable. The scope of the certificate.
257257
* @return value or {@code null} for none
258258
*/
259259
public java.lang.String getScope() {
260260
return scope;
261261
}
262262

263263
/**
264-
* Immutable. The scope of the certificate.
264+
* Optional. Immutable. The scope of the certificate.
265265
* @param scope scope or {@code null} for none
266266
*/
267267
public Certificate setScope(java.lang.String scope) {

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

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public final class CertificateIssuanceConfig extends com.google.api.client.json.
4646
private String createTime;
4747

4848
/**
49-
* One or more paragraphs of text description of a CertificateIssuanceConfig.
49+
* Optional. One or more paragraphs of text description of a CertificateIssuanceConfig.
5050
* The value may be {@code null}.
5151
*/
5252
@com.google.api.client.util.Key
@@ -60,7 +60,7 @@ public final class CertificateIssuanceConfig extends com.google.api.client.json.
6060
private java.lang.String keyAlgorithm;
6161

6262
/**
63-
* Set of labels associated with a CertificateIssuanceConfig.
63+
* Optional. Set of labels associated with a CertificateIssuanceConfig.
6464
* The value may be {@code null}.
6565
*/
6666
@com.google.api.client.util.Key
@@ -74,8 +74,9 @@ public final class CertificateIssuanceConfig extends com.google.api.client.json.
7474
private String lifetime;
7575

7676
/**
77-
* A user-defined name of the certificate issuance config. CertificateIssuanceConfig names must be
78-
* unique globally and match pattern `projects/locations/certificateIssuanceConfigs`.
77+
* Identifier. A user-defined name of the certificate issuance config. CertificateIssuanceConfig
78+
* names must be unique globally and match pattern
79+
* `projects/locations/certificateIssuanceConfigs`.
7980
* The value may be {@code null}.
8081
*/
8182
@com.google.api.client.util.Key
@@ -133,15 +134,15 @@ public CertificateIssuanceConfig setCreateTime(String createTime) {
133134
}
134135

135136
/**
136-
* One or more paragraphs of text description of a CertificateIssuanceConfig.
137+
* Optional. One or more paragraphs of text description of a CertificateIssuanceConfig.
137138
* @return value or {@code null} for none
138139
*/
139140
public java.lang.String getDescription() {
140141
return description;
141142
}
142143

143144
/**
144-
* One or more paragraphs of text description of a CertificateIssuanceConfig.
145+
* Optional. One or more paragraphs of text description of a CertificateIssuanceConfig.
145146
* @param description description or {@code null} for none
146147
*/
147148
public CertificateIssuanceConfig setDescription(java.lang.String description) {
@@ -167,15 +168,15 @@ public CertificateIssuanceConfig setKeyAlgorithm(java.lang.String keyAlgorithm)
167168
}
168169

169170
/**
170-
* Set of labels associated with a CertificateIssuanceConfig.
171+
* Optional. Set of labels associated with a CertificateIssuanceConfig.
171172
* @return value or {@code null} for none
172173
*/
173174
public java.util.Map<String, java.lang.String> getLabels() {
174175
return labels;
175176
}
176177

177178
/**
178-
* Set of labels associated with a CertificateIssuanceConfig.
179+
* Optional. Set of labels associated with a CertificateIssuanceConfig.
179180
* @param labels labels or {@code null} for none
180181
*/
181182
public CertificateIssuanceConfig setLabels(java.util.Map<String, java.lang.String> labels) {
@@ -201,17 +202,19 @@ public CertificateIssuanceConfig setLifetime(String lifetime) {
201202
}
202203

203204
/**
204-
* A user-defined name of the certificate issuance config. CertificateIssuanceConfig names must be
205-
* unique globally and match pattern `projects/locations/certificateIssuanceConfigs`.
205+
* Identifier. A user-defined name of the certificate issuance config. CertificateIssuanceConfig
206+
* names must be unique globally and match pattern
207+
* `projects/locations/certificateIssuanceConfigs`.
206208
* @return value or {@code null} for none
207209
*/
208210
public java.lang.String getName() {
209211
return name;
210212
}
211213

212214
/**
213-
* A user-defined name of the certificate issuance config. CertificateIssuanceConfig names must be
214-
* unique globally and match pattern `projects/locations/certificateIssuanceConfigs`.
215+
* Identifier. A user-defined name of the certificate issuance config. CertificateIssuanceConfig
216+
* names must be unique globally and match pattern
217+
* `projects/locations/certificateIssuanceConfigs`.
215218
* @param name name or {@code null} for none
216219
*/
217220
public CertificateIssuanceConfig setName(java.lang.String name) {

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class CertificateMap extends com.google.api.client.json.GenericJson
3838
private String createTime;
3939

4040
/**
41-
* One or more paragraphs of text description of a certificate map.
41+
* Optional. One or more paragraphs of text description of a certificate map.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
@@ -53,15 +53,15 @@ public final class CertificateMap extends com.google.api.client.json.GenericJson
5353
private java.util.List<GclbTarget> gclbTargets;
5454

5555
/**
56-
* Set of labels associated with a Certificate Map.
56+
* Optional. Set of labels associated with a Certificate Map.
5757
* The value may be {@code null}.
5858
*/
5959
@com.google.api.client.util.Key
6060
private java.util.Map<String, java.lang.String> labels;
6161

6262
/**
63-
* A user-defined name of the Certificate Map. Certificate Map names must be unique globally and
64-
* match pattern `projects/locations/certificateMaps`.
63+
* Identifier. A user-defined name of the Certificate Map. Certificate Map names must be unique
64+
* globally and match pattern `projects/locations/certificateMaps`.
6565
* The value may be {@code null}.
6666
*/
6767
@com.google.api.client.util.Key
@@ -92,15 +92,15 @@ public CertificateMap setCreateTime(String createTime) {
9292
}
9393

9494
/**
95-
* One or more paragraphs of text description of a certificate map.
95+
* Optional. One or more paragraphs of text description of a certificate map.
9696
* @return value or {@code null} for none
9797
*/
9898
public java.lang.String getDescription() {
9999
return description;
100100
}
101101

102102
/**
103-
* One or more paragraphs of text description of a certificate map.
103+
* Optional. One or more paragraphs of text description of a certificate map.
104104
* @param description description or {@code null} for none
105105
*/
106106
public CertificateMap setDescription(java.lang.String description) {
@@ -128,15 +128,15 @@ public CertificateMap setGclbTargets(java.util.List<GclbTarget> gclbTargets) {
128128
}
129129

130130
/**
131-
* Set of labels associated with a Certificate Map.
131+
* Optional. Set of labels associated with a Certificate Map.
132132
* @return value or {@code null} for none
133133
*/
134134
public java.util.Map<String, java.lang.String> getLabels() {
135135
return labels;
136136
}
137137

138138
/**
139-
* Set of labels associated with a Certificate Map.
139+
* Optional. Set of labels associated with a Certificate Map.
140140
* @param labels labels or {@code null} for none
141141
*/
142142
public CertificateMap setLabels(java.util.Map<String, java.lang.String> labels) {
@@ -145,17 +145,17 @@ public CertificateMap setLabels(java.util.Map<String, java.lang.String> labels)
145145
}
146146

147147
/**
148-
* A user-defined name of the Certificate Map. Certificate Map names must be unique globally and
149-
* match pattern `projects/locations/certificateMaps`.
148+
* Identifier. A user-defined name of the Certificate Map. Certificate Map names must be unique
149+
* globally and match pattern `projects/locations/certificateMaps`.
150150
* @return value or {@code null} for none
151151
*/
152152
public java.lang.String getName() {
153153
return name;
154154
}
155155

156156
/**
157-
* A user-defined name of the Certificate Map. Certificate Map names must be unique globally and
158-
* match pattern `projects/locations/certificateMaps`.
157+
* Identifier. A user-defined name of the Certificate Map. Certificate Map names must be unique
158+
* globally and match pattern `projects/locations/certificateMaps`.
159159
* @param name name or {@code null} for none
160160
*/
161161
public CertificateMap setName(java.lang.String name) {

0 commit comments

Comments
 (0)