File tree Expand file tree Collapse file tree 15 files changed +180
-18
lines changed
clients/google-api-services-domains
com/google/api/services/domains/v1alpha2/model
com/google/api/services/domains/v1beta1/model
com/google/api/services/domains/v1/model Expand file tree Collapse file tree 15 files changed +180
-18
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-domains</artifactId >
25
- <version >v1-rev20240610 -2.0.0</version >
25
+ <version >v1-rev20240724 -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-domains:v1-rev20240610 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-domains:v1-rev20240724 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change 30
30
@ SuppressWarnings ("javadoc" )
31
31
public final class HealthCheckTargets 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 <LoadBalancerTarget > internalLoadBalancer ;
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 HealthCheckTargets 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 @@ -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 GeoPolicy 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
*/
@@ -91,6 +99,25 @@ public RRSetRoutingPolicy setGeoPolicy(GeoPolicy geoPolicy) {
91
99
return this ;
92
100
}
93
101
102
+ /**
103
+ * The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
104
+ * https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
105
+ * @return value or {@code null} for none
106
+ */
107
+ public java .lang .String getHealthCheck () {
108
+ return healthCheck ;
109
+ }
110
+
111
+ /**
112
+ * The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
113
+ * https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
114
+ * @param healthCheck healthCheck or {@code null} for none
115
+ */
116
+ public RRSetRoutingPolicy setHealthCheck (java .lang .String healthCheck ) {
117
+ this .healthCheck = healthCheck ;
118
+ return this ;
119
+ }
120
+
94
121
/**
95
122
* @return value or {@code null} for none
96
123
*/
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-domains</artifactId >
11
- <version >v1-rev20240610 -2.0.0</version >
12
- <name >Cloud Domains API v1-rev20240610 -2.0.0</name >
11
+ <version >v1-rev20240724 -2.0.0</version >
12
+ <name >Cloud Domains API v1-rev20240724 -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-domains</artifactId >
25
- <version >v1-rev20240610 -2.0.0</version >
25
+ <version >v1-rev20240724 -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-domains:v1-rev20240610 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-domains:v1-rev20240724 -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-domains</artifactId >
25
- <version >v1alpha2-rev20240610 -2.0.0</version >
25
+ <version >v1alpha2-rev20240724 -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-domains:v1alpha2-rev20240610 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20240724 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change 30
30
@ SuppressWarnings ("javadoc" )
31
31
public final class HealthCheckTargets 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 <LoadBalancerTarget > internalLoadBalancer ;
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 HealthCheckTargets 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 @@ -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 GeoPolicy 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
*/
@@ -91,6 +99,25 @@ public RRSetRoutingPolicy setGeoPolicy(GeoPolicy geoPolicy) {
91
99
return this ;
92
100
}
93
101
102
+ /**
103
+ * The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
104
+ * https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
105
+ * @return value or {@code null} for none
106
+ */
107
+ public java .lang .String getHealthCheck () {
108
+ return healthCheck ;
109
+ }
110
+
111
+ /**
112
+ * The selfLink attribute of the HealthCheck resource to use for this RRSetRoutingPolicy.
113
+ * https://cloud.google.com/compute/docs/reference/rest/v1/healthChecks
114
+ * @param healthCheck healthCheck or {@code null} for none
115
+ */
116
+ public RRSetRoutingPolicy setHealthCheck (java .lang .String healthCheck ) {
117
+ this .healthCheck = healthCheck ;
118
+ return this ;
119
+ }
120
+
94
121
/**
95
122
* @return value or {@code null} for none
96
123
*/
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-domains</artifactId >
11
- <version >v1alpha2-rev20240610 -2.0.0</version >
12
- <name >Cloud Domains API v1alpha2-rev20240610 -2.0.0</name >
11
+ <version >v1alpha2-rev20240724 -2.0.0</version >
12
+ <name >Cloud Domains API v1alpha2-rev20240724 -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-domains</artifactId >
25
- <version >v1alpha2-rev20240610 -2.0.0</version >
25
+ <version >v1alpha2-rev20240724 -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-domains:v1alpha2-rev20240610 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20240724 -2.0.0'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments