Skip to content

Commit 668c9f2

Browse files
1 parent affdfaa commit 668c9f2

File tree

7 files changed

+423
-6
lines changed

7 files changed

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

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class AuthorizationAttemptInfo extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. The timestamp, when the authorization attempt was made.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String attemptTime;
39+
3340
/**
3441
* Output only. Human readable explanation for reaching the state. Provided to help address the
3542
* configuration issues. Not guaranteed to be stable. For programmatic access use FailureReason
@@ -60,6 +67,31 @@ public final class AuthorizationAttemptInfo extends com.google.api.client.json.G
6067
@com.google.api.client.util.Key
6168
private java.lang.String state;
6269

70+
/**
71+
* Output only. Troubleshooting information for the authorization attempt. This field is only
72+
* populated if the authorization attempt failed.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private Troubleshooting troubleshooting;
77+
78+
/**
79+
* Output only. The timestamp, when the authorization attempt was made.
80+
* @return value or {@code null} for none
81+
*/
82+
public String getAttemptTime() {
83+
return attemptTime;
84+
}
85+
86+
/**
87+
* Output only. The timestamp, when the authorization attempt was made.
88+
* @param attemptTime attemptTime or {@code null} for none
89+
*/
90+
public AuthorizationAttemptInfo setAttemptTime(String attemptTime) {
91+
this.attemptTime = attemptTime;
92+
return this;
93+
}
94+
6395
/**
6496
* Output only. Human readable explanation for reaching the state. Provided to help address the
6597
* configuration issues. Not guaranteed to be stable. For programmatic access use FailureReason
@@ -132,6 +164,25 @@ public AuthorizationAttemptInfo setState(java.lang.String state) {
132164
return this;
133165
}
134166

167+
/**
168+
* Output only. Troubleshooting information for the authorization attempt. This field is only
169+
* populated if the authorization attempt failed.
170+
* @return value or {@code null} for none
171+
*/
172+
public Troubleshooting getTroubleshooting() {
173+
return troubleshooting;
174+
}
175+
176+
/**
177+
* Output only. Troubleshooting information for the authorization attempt. This field is only
178+
* populated if the authorization attempt failed.
179+
* @param troubleshooting troubleshooting or {@code null} for none
180+
*/
181+
public AuthorizationAttemptInfo setTroubleshooting(Troubleshooting troubleshooting) {
182+
this.troubleshooting = troubleshooting;
183+
return this;
184+
}
185+
135186
@Override
136187
public AuthorizationAttemptInfo set(String fieldName, Object value) {
137188
return (AuthorizationAttemptInfo) super.set(fieldName, value);
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
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+
* CNAME troubleshooting information.
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 CNAME extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The expected value of the CNAME record for the domain, equals to
35+
* `dns_resource_record.data` in the corresponding `DnsAuthorization`.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String expectedData;
40+
41+
/**
42+
* Output only. The name of the CNAME record for the domain, equals to `dns_resource_record.name`
43+
* in the corresponding `DnsAuthorization`.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String name;
48+
49+
/**
50+
* Output only. The resolved CNAME chain. Empty list if the CNAME record for `CNAME.name` is not
51+
* found. Otherwise the first item is the value of the CNAME record for `CNAME.name`. If the CNAME
52+
* chain is longer, the second item is the value of the CNAME record for the first item, and so
53+
* on.
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.util.List<java.lang.String> resolvedData;
58+
59+
/**
60+
* Output only. The expected value of the CNAME record for the domain, equals to
61+
* `dns_resource_record.data` in the corresponding `DnsAuthorization`.
62+
* @return value or {@code null} for none
63+
*/
64+
public java.lang.String getExpectedData() {
65+
return expectedData;
66+
}
67+
68+
/**
69+
* Output only. The expected value of the CNAME record for the domain, equals to
70+
* `dns_resource_record.data` in the corresponding `DnsAuthorization`.
71+
* @param expectedData expectedData or {@code null} for none
72+
*/
73+
public CNAME setExpectedData(java.lang.String expectedData) {
74+
this.expectedData = expectedData;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. The name of the CNAME record for the domain, equals to `dns_resource_record.name`
80+
* in the corresponding `DnsAuthorization`.
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.String getName() {
84+
return name;
85+
}
86+
87+
/**
88+
* Output only. The name of the CNAME record for the domain, equals to `dns_resource_record.name`
89+
* in the corresponding `DnsAuthorization`.
90+
* @param name name or {@code null} for none
91+
*/
92+
public CNAME setName(java.lang.String name) {
93+
this.name = name;
94+
return this;
95+
}
96+
97+
/**
98+
* Output only. The resolved CNAME chain. Empty list if the CNAME record for `CNAME.name` is not
99+
* found. Otherwise the first item is the value of the CNAME record for `CNAME.name`. If the CNAME
100+
* chain is longer, the second item is the value of the CNAME record for the first item, and so
101+
* on.
102+
* @return value or {@code null} for none
103+
*/
104+
public java.util.List<java.lang.String> getResolvedData() {
105+
return resolvedData;
106+
}
107+
108+
/**
109+
* Output only. The resolved CNAME chain. Empty list if the CNAME record for `CNAME.name` is not
110+
* found. Otherwise the first item is the value of the CNAME record for `CNAME.name`. If the CNAME
111+
* chain is longer, the second item is the value of the CNAME record for the first item, and so
112+
* on.
113+
* @param resolvedData resolvedData or {@code null} for none
114+
*/
115+
public CNAME setResolvedData(java.util.List<java.lang.String> resolvedData) {
116+
this.resolvedData = resolvedData;
117+
return this;
118+
}
119+
120+
@Override
121+
public CNAME set(String fieldName, Object value) {
122+
return (CNAME) super.set(fieldName, value);
123+
}
124+
125+
@Override
126+
public CNAME clone() {
127+
return (CNAME) super.clone();
128+
}
129+
130+
}
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
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+
* IPs troubleshooting information.
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 IPs extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The list of IP addresses resolved from the domain's A/AAAA records. Can contain
35+
* both ipv4 and ipv6 addresses.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<java.lang.String> resolved;
40+
41+
/**
42+
* Output only. The list of IP addresses, where the certificate is attached and port 443 is open.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<java.lang.String> serving;
47+
48+
/**
49+
* Output only. The list of IP addresses, where the certificate is attached, but port 443 is not
50+
* open.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> servingOnAltPorts;
55+
56+
/**
57+
* Output only. The list of IP addresses resolved from the domain's A/AAAA records. Can contain
58+
* both ipv4 and ipv6 addresses.
59+
* @return value or {@code null} for none
60+
*/
61+
public java.util.List<java.lang.String> getResolved() {
62+
return resolved;
63+
}
64+
65+
/**
66+
* Output only. The list of IP addresses resolved from the domain's A/AAAA records. Can contain
67+
* both ipv4 and ipv6 addresses.
68+
* @param resolved resolved or {@code null} for none
69+
*/
70+
public IPs setResolved(java.util.List<java.lang.String> resolved) {
71+
this.resolved = resolved;
72+
return this;
73+
}
74+
75+
/**
76+
* Output only. The list of IP addresses, where the certificate is attached and port 443 is open.
77+
* @return value or {@code null} for none
78+
*/
79+
public java.util.List<java.lang.String> getServing() {
80+
return serving;
81+
}
82+
83+
/**
84+
* Output only. The list of IP addresses, where the certificate is attached and port 443 is open.
85+
* @param serving serving or {@code null} for none
86+
*/
87+
public IPs setServing(java.util.List<java.lang.String> serving) {
88+
this.serving = serving;
89+
return this;
90+
}
91+
92+
/**
93+
* Output only. The list of IP addresses, where the certificate is attached, but port 443 is not
94+
* open.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.util.List<java.lang.String> getServingOnAltPorts() {
98+
return servingOnAltPorts;
99+
}
100+
101+
/**
102+
* Output only. The list of IP addresses, where the certificate is attached, but port 443 is not
103+
* open.
104+
* @param servingOnAltPorts servingOnAltPorts or {@code null} for none
105+
*/
106+
public IPs setServingOnAltPorts(java.util.List<java.lang.String> servingOnAltPorts) {
107+
this.servingOnAltPorts = servingOnAltPorts;
108+
return this;
109+
}
110+
111+
@Override
112+
public IPs set(String fieldName, Object value) {
113+
return (IPs) super.set(fieldName, value);
114+
}
115+
116+
@Override
117+
public IPs clone() {
118+
return (IPs) super.clone();
119+
}
120+
121+
}

0 commit comments

Comments
 (0)