Skip to content

Commit d3a25cb

Browse files
1 parent 5a72b97 commit d3a25cb

File tree

12 files changed

+162
-12
lines changed

12 files changed

+162
-12
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-rev20240531-2.0.0</version>
25+
<version>v1-rev20240719-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-rev20240531-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dns:v1-rev20240719-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ public final class Quota extends com.google.api.client.json.GenericJson {
5757
@com.google.api.client.util.Key
5858
private java.lang.Integer gkeClustersPerResponsePolicy;
5959

60+
/**
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.lang.Integer internetHealthChecksPerManagedZone;
65+
6066
/**
6167
* Maximum allowed number of items per routing policy.
6268
* The value may be {@code null}.
@@ -278,6 +284,21 @@ public Quota setGkeClustersPerResponsePolicy(java.lang.Integer gkeClustersPerRes
278284
return this;
279285
}
280286

287+
/**
288+
* @return value or {@code null} for none
289+
*/
290+
public java.lang.Integer getInternetHealthChecksPerManagedZone() {
291+
return internetHealthChecksPerManagedZone;
292+
}
293+
294+
/**
295+
* @param internetHealthChecksPerManagedZone internetHealthChecksPerManagedZone or {@code null} for none
296+
*/
297+
public Quota setInternetHealthChecksPerManagedZone(java.lang.Integer internetHealthChecksPerManagedZone) {
298+
this.internetHealthChecksPerManagedZone = internetHealthChecksPerManagedZone;
299+
return this;
300+
}
301+
281302
/**
282303
* Maximum allowed number of items per routing policy.
283304
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class RRSetRoutingPolicy extends com.google.api.client.json.Generic
3737
@com.google.api.client.util.Key
3838
private RRSetRoutingPolicyGeoPolicy geo;
3939

40+
/**
41+
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
42+
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String healthCheck;
47+
4048
/**
4149
* The value may be {@code null}.
4250
*/
@@ -70,6 +78,25 @@ public RRSetRoutingPolicy setGeo(RRSetRoutingPolicyGeoPolicy geo) {
7078
return this;
7179
}
7280

81+
/**
82+
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
83+
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
84+
* @return value or {@code null} for none
85+
*/
86+
public java.lang.String getHealthCheck() {
87+
return healthCheck;
88+
}
89+
90+
/**
91+
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
92+
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
93+
* @param healthCheck healthCheck or {@code null} for none
94+
*/
95+
public RRSetRoutingPolicy setHealthCheck(java.lang.String healthCheck) {
96+
this.healthCheck = healthCheck;
97+
return this;
98+
}
99+
73100
/**
74101
* @return value or {@code null} for none
75102
*/

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

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

33+
/**
34+
* The Internet IP addresses to be health checked. The format matches the format of
35+
* ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1)
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<java.lang.String> externalEndpoints;
40+
3341
/**
3442
* Configuration for internal load balancers to be health checked.
3543
* The value may be {@code null}.
3644
*/
3745
@com.google.api.client.util.Key
3846
private java.util.List<RRSetRoutingPolicyLoadBalancerTarget> internalLoadBalancers;
3947

48+
/**
49+
* The Internet IP addresses to be health checked. The format matches the format of
50+
* ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1)
51+
* @return value or {@code null} for none
52+
*/
53+
public java.util.List<java.lang.String> getExternalEndpoints() {
54+
return externalEndpoints;
55+
}
56+
57+
/**
58+
* The Internet IP addresses to be health checked. The format matches the format of
59+
* ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1)
60+
* @param externalEndpoints externalEndpoints or {@code null} for none
61+
*/
62+
public RRSetRoutingPolicyHealthCheckTargets setExternalEndpoints(java.util.List<java.lang.String> externalEndpoints) {
63+
this.externalEndpoints = externalEndpoints;
64+
return this;
65+
}
66+
4067
/**
4168
* Configuration for internal load balancers to be health checked.
4269
* @return value or {@code null} for none

clients/google-api-services-dns/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-dns</artifactId>
11-
<version>v1-rev20240531-2.0.0</version>
12-
<name>Cloud DNS API v1-rev20240531-2.0.0</name>
11+
<version>v1-rev20240719-2.0.0</version>
12+
<name>Cloud DNS API v1-rev20240719-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ public final class Quota extends com.google.api.client.json.GenericJson {
5757
@com.google.api.client.util.Key
5858
private java.lang.Integer gkeClustersPerResponsePolicy;
5959

60+
/**
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.lang.Integer internetHealthChecksPerManagedZone;
65+
6066
/**
6167
* Maximum allowed number of items per routing policy.
6268
* The value may be {@code null}.
@@ -278,6 +284,21 @@ public Quota setGkeClustersPerResponsePolicy(java.lang.Integer gkeClustersPerRes
278284
return this;
279285
}
280286

287+
/**
288+
* @return value or {@code null} for none
289+
*/
290+
public java.lang.Integer getInternetHealthChecksPerManagedZone() {
291+
return internetHealthChecksPerManagedZone;
292+
}
293+
294+
/**
295+
* @param internetHealthChecksPerManagedZone internetHealthChecksPerManagedZone or {@code null} for none
296+
*/
297+
public Quota setInternetHealthChecksPerManagedZone(java.lang.Integer internetHealthChecksPerManagedZone) {
298+
this.internetHealthChecksPerManagedZone = internetHealthChecksPerManagedZone;
299+
return this;
300+
}
301+
281302
/**
282303
* Maximum allowed number of items per routing policy.
283304
* @return value or {@code null} for none

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class RRSetRoutingPolicy extends com.google.api.client.json.Generic
4343
@com.google.api.client.util.Key
4444
private RRSetRoutingPolicyGeoPolicy geoPolicy;
4545

46+
/**
47+
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
48+
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String healthCheck;
53+
4654
/**
4755
* The value may be {@code null}.
4856
*/
@@ -97,6 +105,25 @@ public RRSetRoutingPolicy setGeoPolicy(RRSetRoutingPolicyGeoPolicy geoPolicy) {
97105
return this;
98106
}
99107

108+
/**
109+
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
110+
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
111+
* @return value or {@code null} for none
112+
*/
113+
public java.lang.String getHealthCheck() {
114+
return healthCheck;
115+
}
116+
117+
/**
118+
* The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
119+
* https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
120+
* @param healthCheck healthCheck or {@code null} for none
121+
*/
122+
public RRSetRoutingPolicy setHealthCheck(java.lang.String healthCheck) {
123+
this.healthCheck = healthCheck;
124+
return this;
125+
}
126+
100127
/**
101128
* @return value or {@code null} for none
102129
*/

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

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

33+
/**
34+
* The Internet IP addresses to be health checked. The format matches the format of
35+
* ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1)
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<java.lang.String> externalEndpoints;
40+
3341
/**
3442
* Configuration for internal load balancers to be health checked.
3543
* The value may be {@code null}.
3644
*/
3745
@com.google.api.client.util.Key
3846
private java.util.List<RRSetRoutingPolicyLoadBalancerTarget> internalLoadBalancers;
3947

48+
/**
49+
* The Internet IP addresses to be health checked. The format matches the format of
50+
* ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1)
51+
* @return value or {@code null} for none
52+
*/
53+
public java.util.List<java.lang.String> getExternalEndpoints() {
54+
return externalEndpoints;
55+
}
56+
57+
/**
58+
* The Internet IP addresses to be health checked. The format matches the format of
59+
* ResourceRecordSet.rrdata as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1)
60+
* @param externalEndpoints externalEndpoints or {@code null} for none
61+
*/
62+
public RRSetRoutingPolicyHealthCheckTargets setExternalEndpoints(java.util.List<java.lang.String> externalEndpoints) {
63+
this.externalEndpoints = externalEndpoints;
64+
return this;
65+
}
66+
4067
/**
4168
* Configuration for internal load balancers to be health checked.
4269
* @return value or {@code null} for none

0 commit comments

Comments
 (0)