Skip to content

Commit e2e0b03

Browse files
1 parent 80df4cc commit e2e0b03

14 files changed

+72
-46
lines changed

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

clients/google-api-services-dns/v1/2.0.0/com/google/api/services/dns/model/RRSetRoutingPolicy.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ public final class RRSetRoutingPolicy extends com.google.api.client.json.Generic
3838
private RRSetRoutingPolicyGeoPolicy geo;
3939

4040
/**
41-
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
41+
* The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy. Format this URL
42+
* like
43+
* `https://www.googleapis.com/compute/v1/projects/{project}/global/healthChecks/{healthCheck}`.
4244
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
4345
* The value may be {@code null}.
4446
*/
@@ -79,7 +81,9 @@ public RRSetRoutingPolicy setGeo(RRSetRoutingPolicyGeoPolicy geo) {
7981
}
8082

8183
/**
82-
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
84+
* The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy. Format this URL
85+
* like
86+
* `https://www.googleapis.com/compute/v1/projects/{project}/global/healthChecks/{healthCheck}`.
8387
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
8488
* @return value or {@code null} for none
8589
*/
@@ -88,7 +92,9 @@ public java.lang.String getHealthCheck() {
8892
}
8993

9094
/**
91-
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
95+
* The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy. Format this URL
96+
* like
97+
* `https://www.googleapis.com/compute/v1/projects/{project}/global/healthChecks/{healthCheck}`.
9298
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
9399
* @param healthCheck healthCheck or {@code null} for none
94100
*/

clients/google-api-services-dns/v1/2.0.0/com/google/api/services/dns/model/RRSetRoutingPolicyGeoPolicyGeoPolicyItem.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ public final class RRSetRoutingPolicyGeoPolicyGeoPolicyItem extends com.google.a
5858
private java.util.List<java.lang.String> rrdatas;
5959

6060
/**
61-
* DNSSEC generated signatures for all the `rrdata` within this item. If health checked targets
62-
* are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
61+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
62+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
63+
* item.
6364
* The value may be {@code null}.
6465
*/
6566
@com.google.api.client.util.Key
@@ -134,17 +135,19 @@ public RRSetRoutingPolicyGeoPolicyGeoPolicyItem setRrdatas(java.util.List<java.l
134135
}
135136

136137
/**
137-
* DNSSEC generated signatures for all the `rrdata` within this item. If health checked targets
138-
* are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
138+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
139+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
140+
* item.
139141
* @return value or {@code null} for none
140142
*/
141143
public java.util.List<java.lang.String> getSignatureRrdatas() {
142144
return signatureRrdatas;
143145
}
144146

145147
/**
146-
* DNSSEC generated signatures for all the `rrdata` within this item. If health checked targets
147-
* are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
148+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
149+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
150+
* item.
148151
* @param signatureRrdatas signatureRrdatas or {@code null} for none
149152
*/
150153
public RRSetRoutingPolicyGeoPolicyGeoPolicyItem setSignatureRrdatas(java.util.List<java.lang.String> signatureRrdatas) {

clients/google-api-services-dns/v1/2.0.0/com/google/api/services/dns/model/RRSetRoutingPolicyHealthCheckTargets.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818

1919
/**
2020
* HealthCheckTargets describes endpoints to health-check when responding to Routing Policy queries.
21-
* Only the healthy endpoints will be included in the response.
21+
* Only the healthy endpoints will be included in the response. Set either `internal_load_balancer`
22+
* or `external_endpoints`. Do not set both.
2223
*
2324
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2425
* transmitted over HTTP when working with the Cloud DNS API. For a detailed explanation see:

clients/google-api-services-dns/v1/2.0.0/com/google/api/services/dns/model/RRSetRoutingPolicyWrrPolicyWrrPolicyItem.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@ public final class RRSetRoutingPolicyWrrPolicyWrrPolicyItem extends com.google.a
5252
private java.util.List<java.lang.String> rrdatas;
5353

5454
/**
55-
* DNSSEC generated signatures for all the `rrdata` within this item. Note that if health checked
56-
* targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
55+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
56+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
57+
* item.
5758
* The value may be {@code null}.
5859
*/
5960
@com.google.api.client.util.Key
@@ -123,17 +124,19 @@ public RRSetRoutingPolicyWrrPolicyWrrPolicyItem setRrdatas(java.util.List<java.l
123124
}
124125

125126
/**
126-
* DNSSEC generated signatures for all the `rrdata` within this item. Note that if health checked
127-
* targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
127+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
128+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
129+
* item.
128130
* @return value or {@code null} for none
129131
*/
130132
public java.util.List<java.lang.String> getSignatureRrdatas() {
131133
return signatureRrdatas;
132134
}
133135

134136
/**
135-
* DNSSEC generated signatures for all the `rrdata` within this item. Note that if health checked
136-
* targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
137+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
138+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
139+
* item.
137140
* @param signatureRrdatas signatureRrdatas or {@code null} for none
138141
*/
139142
public RRSetRoutingPolicyWrrPolicyWrrPolicyItem setSignatureRrdatas(java.util.List<java.lang.String> signatureRrdatas) {

clients/google-api-services-dns/v1/2.0.0/pom.xml

Lines changed: 3 additions & 3 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-dns</artifactId>
11-
<version>v1-rev20250102-2.0.0</version>
12-
<name>Cloud DNS API v1-rev20250102-2.0.0</name>
11+
<version>v1-rev20250227-2.0.0</version>
12+
<name>Cloud DNS API v1-rev20250227-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Cloud DNS API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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

clients/google-api-services-dns/v1beta2/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-dns</artifactId>
25-
<version>v1beta2-rev20250102-2.0.0</version>
25+
<version>v1beta2-rev20250227-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-dns:v1beta2-rev20250102-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dns:v1beta2-rev20250227-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dns/v1beta2/2.0.0/com/google/api/services/dns/model/RRSetRoutingPolicy.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ public final class RRSetRoutingPolicy extends com.google.api.client.json.Generic
4444
private RRSetRoutingPolicyGeoPolicy geoPolicy;
4545

4646
/**
47-
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
47+
* The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy. Format this URL
48+
* like
49+
* `https://www.googleapis.com/compute/v1/projects/{project}/global/healthChecks/{healthCheck}`.
4850
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
4951
* The value may be {@code null}.
5052
*/
@@ -106,7 +108,9 @@ public RRSetRoutingPolicy setGeoPolicy(RRSetRoutingPolicyGeoPolicy geoPolicy) {
106108
}
107109

108110
/**
109-
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
111+
* The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy. Format this URL
112+
* like
113+
* `https://www.googleapis.com/compute/v1/projects/{project}/global/healthChecks/{healthCheck}`.
110114
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
111115
* @return value or {@code null} for none
112116
*/
@@ -115,7 +119,9 @@ public java.lang.String getHealthCheck() {
115119
}
116120

117121
/**
118-
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
122+
* The fully qualified URL of the HealthCheck to use for this RRSetRoutingPolicy. Format this URL
123+
* like
124+
* `https://www.googleapis.com/compute/v1/projects/{project}/global/healthChecks/{healthCheck}`.
119125
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
120126
* @param healthCheck healthCheck or {@code null} for none
121127
*/

clients/google-api-services-dns/v1beta2/2.0.0/com/google/api/services/dns/model/RRSetRoutingPolicyGeoPolicyGeoPolicyItem.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ public final class RRSetRoutingPolicyGeoPolicyGeoPolicyItem extends com.google.a
5858
private java.util.List<java.lang.String> rrdatas;
5959

6060
/**
61-
* DNSSEC generated signatures for all the `rrdata` within this item. If health checked targets
62-
* are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
61+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
62+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
63+
* item.
6364
* The value may be {@code null}.
6465
*/
6566
@com.google.api.client.util.Key
@@ -134,17 +135,19 @@ public RRSetRoutingPolicyGeoPolicyGeoPolicyItem setRrdatas(java.util.List<java.l
134135
}
135136

136137
/**
137-
* DNSSEC generated signatures for all the `rrdata` within this item. If health checked targets
138-
* are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
138+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
139+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
140+
* item.
139141
* @return value or {@code null} for none
140142
*/
141143
public java.util.List<java.lang.String> getSignatureRrdatas() {
142144
return signatureRrdatas;
143145
}
144146

145147
/**
146-
* DNSSEC generated signatures for all the `rrdata` within this item. If health checked targets
147-
* are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.
148+
* DNSSEC generated signatures for all the `rrdata` within this item. When using health-checked
149+
* targets for DNSSEC-enabled zones, you can only use at most one health-checked IP address per
150+
* item.
148151
* @param signatureRrdatas signatureRrdatas or {@code null} for none
149152
*/
150153
public RRSetRoutingPolicyGeoPolicyGeoPolicyItem setSignatureRrdatas(java.util.List<java.lang.String> signatureRrdatas) {

0 commit comments

Comments
 (0)