Skip to content

Commit 055b2d8

Browse files
1 parent 519b2ed commit 055b2d8

File tree

15 files changed

+180
-18
lines changed

15 files changed

+180
-18
lines changed

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

clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/model/HealthCheckTargets.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 HealthCheckTargets 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<LoadBalancerTarget> internalLoadBalancer;
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 HealthCheckTargets 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-domains/v1/2.0.0/com/google/api/services/domains/v1/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 GeoPolicy 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
*/
@@ -91,6 +99,25 @@ public RRSetRoutingPolicy setGeoPolicy(GeoPolicy geoPolicy) {
9199
return this;
92100
}
93101

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+
94121
/**
95122
* @return value or {@code null} for none
96123
*/

clients/google-api-services-domains/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-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>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-domains/v1alpha2/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-domains</artifactId>
25-
<version>v1alpha2-rev20240610-2.0.0</version>
25+
<version>v1alpha2-rev20240724-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-domains:v1alpha2-rev20240610-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20240724-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/model/HealthCheckTargets.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 HealthCheckTargets 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<LoadBalancerTarget> internalLoadBalancer;
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 HealthCheckTargets 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-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/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 GeoPolicy 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
*/
@@ -91,6 +99,25 @@ public RRSetRoutingPolicy setGeoPolicy(GeoPolicy geoPolicy) {
9199
return this;
92100
}
93101

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+
94121
/**
95122
* @return value or {@code null} for none
96123
*/

clients/google-api-services-domains/v1alpha2/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-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>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-domains/v1alpha2/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-domains</artifactId>
25-
<version>v1alpha2-rev20240610-2.0.0</version>
25+
<version>v1alpha2-rev20240724-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-domains:v1alpha2-rev20240610-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20240724-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)