File tree Expand file tree Collapse file tree 12 files changed +162
-12
lines changed
clients/google-api-services-dns
com/google/api/services/dns/model
com/google/api/services/dns/model Expand file tree Collapse file tree 12 files changed +162
-12
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-dns</artifactId >
25
- <version >v1-rev20240531 -2.0.0</version >
25
+ <version >v1-rev20240719 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ public final class Quota extends com.google.api.client.json.GenericJson {
57
57
@ com .google .api .client .util .Key
58
58
private java .lang .Integer gkeClustersPerResponsePolicy ;
59
59
60
+ /**
61
+ * The value may be {@code null}.
62
+ */
63
+ @ com .google .api .client .util .Key
64
+ private java .lang .Integer internetHealthChecksPerManagedZone ;
65
+
60
66
/**
61
67
* Maximum allowed number of items per routing policy.
62
68
* The value may be {@code null}.
@@ -278,6 +284,21 @@ public Quota setGkeClustersPerResponsePolicy(java.lang.Integer gkeClustersPerRes
278
284
return this ;
279
285
}
280
286
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
+
281
302
/**
282
303
* Maximum allowed number of items per routing policy.
283
304
* @return value or {@code null} for none
Original file line number Diff line number Diff line change @@ -37,6 +37,14 @@ public final class RRSetRoutingPolicy extends com.google.api.client.json.Generic
37
37
@ com .google .api .client .util .Key
38
38
private RRSetRoutingPolicyGeoPolicy geo ;
39
39
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
+
40
48
/**
41
49
* The value may be {@code null}.
42
50
*/
@@ -70,6 +78,25 @@ public RRSetRoutingPolicy setGeo(RRSetRoutingPolicyGeoPolicy geo) {
70
78
return this ;
71
79
}
72
80
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
+
73
100
/**
74
101
* @return value or {@code null} for none
75
102
*/
Original file line number Diff line number Diff line change 30
30
@ SuppressWarnings ("javadoc" )
31
31
public final class RRSetRoutingPolicyHealthCheckTargets extends com .google .api .client .json .GenericJson {
32
32
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
+
33
41
/**
34
42
* Configuration for internal load balancers to be health checked.
35
43
* The value may be {@code null}.
36
44
*/
37
45
@ com .google .api .client .util .Key
38
46
private java .util .List <RRSetRoutingPolicyLoadBalancerTarget > internalLoadBalancers ;
39
47
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
+
40
67
/**
41
68
* Configuration for internal load balancers to be health checked.
42
69
* @return value or {@code null} for none
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<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 >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-dns</artifactId >
25
- <version >v1-rev20240531 -2.0.0</version >
25
+ <version >v1-rev20240719 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-dns</artifactId >
25
- <version >v1beta2-rev20240531 -2.0.0</version >
25
+ <version >v1beta2-rev20240719 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ public final class Quota extends com.google.api.client.json.GenericJson {
57
57
@ com .google .api .client .util .Key
58
58
private java .lang .Integer gkeClustersPerResponsePolicy ;
59
59
60
+ /**
61
+ * The value may be {@code null}.
62
+ */
63
+ @ com .google .api .client .util .Key
64
+ private java .lang .Integer internetHealthChecksPerManagedZone ;
65
+
60
66
/**
61
67
* Maximum allowed number of items per routing policy.
62
68
* The value may be {@code null}.
@@ -278,6 +284,21 @@ public Quota setGkeClustersPerResponsePolicy(java.lang.Integer gkeClustersPerRes
278
284
return this ;
279
285
}
280
286
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
+
281
302
/**
282
303
* Maximum allowed number of items per routing policy.
283
304
* @return value or {@code null} for none
Original file line number Diff line number Diff line change @@ -43,6 +43,14 @@ public final class RRSetRoutingPolicy extends com.google.api.client.json.Generic
43
43
@ com .google .api .client .util .Key
44
44
private RRSetRoutingPolicyGeoPolicy geoPolicy ;
45
45
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
+
46
54
/**
47
55
* The value may be {@code null}.
48
56
*/
@@ -97,6 +105,25 @@ public RRSetRoutingPolicy setGeoPolicy(RRSetRoutingPolicyGeoPolicy geoPolicy) {
97
105
return this ;
98
106
}
99
107
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
+
100
127
/**
101
128
* @return value or {@code null} for none
102
129
*/
Original file line number Diff line number Diff line change 30
30
@ SuppressWarnings ("javadoc" )
31
31
public final class RRSetRoutingPolicyHealthCheckTargets extends com .google .api .client .json .GenericJson {
32
32
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
+
33
41
/**
34
42
* Configuration for internal load balancers to be health checked.
35
43
* The value may be {@code null}.
36
44
*/
37
45
@ com .google .api .client .util .Key
38
46
private java .util .List <RRSetRoutingPolicyLoadBalancerTarget > internalLoadBalancers ;
39
47
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
+
40
67
/**
41
68
* Configuration for internal load balancers to be health checked.
42
69
* @return value or {@code null} for none
You can’t perform that action at this time.
0 commit comments