Skip to content

Commit 95714c8

Browse files
1 parent 7a8ba2e commit 95714c8

File tree

10 files changed

+444
-16
lines changed

10 files changed

+444
-16
lines changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networkmanagement.v1.model;
18+
19+
/**
20+
* For display only. Metadata associated with a Redis Cluster.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Management API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class RedisClusterInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Discovery endpoint IP address of a Redis Cluster.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String discoveryEndpointIpAddress;
39+
40+
/**
41+
* Name of a Redis Cluster.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String displayName;
46+
47+
/**
48+
* Name of the region in which the Redis Cluster is defined. For example, "us-central1".
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String location;
53+
54+
/**
55+
* URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}".
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String networkUri;
60+
61+
/**
62+
* Secondary endpoint IP address of a Redis Cluster.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String secondaryEndpointIpAddress;
67+
68+
/**
69+
* URI of a Redis Cluster in format
70+
* "projects/{project_id}/locations/{location}/clusters/{cluster_id}"
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private java.lang.String uri;
75+
76+
/**
77+
* Discovery endpoint IP address of a Redis Cluster.
78+
* @return value or {@code null} for none
79+
*/
80+
public java.lang.String getDiscoveryEndpointIpAddress() {
81+
return discoveryEndpointIpAddress;
82+
}
83+
84+
/**
85+
* Discovery endpoint IP address of a Redis Cluster.
86+
* @param discoveryEndpointIpAddress discoveryEndpointIpAddress or {@code null} for none
87+
*/
88+
public RedisClusterInfo setDiscoveryEndpointIpAddress(java.lang.String discoveryEndpointIpAddress) {
89+
this.discoveryEndpointIpAddress = discoveryEndpointIpAddress;
90+
return this;
91+
}
92+
93+
/**
94+
* Name of a Redis Cluster.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.String getDisplayName() {
98+
return displayName;
99+
}
100+
101+
/**
102+
* Name of a Redis Cluster.
103+
* @param displayName displayName or {@code null} for none
104+
*/
105+
public RedisClusterInfo setDisplayName(java.lang.String displayName) {
106+
this.displayName = displayName;
107+
return this;
108+
}
109+
110+
/**
111+
* Name of the region in which the Redis Cluster is defined. For example, "us-central1".
112+
* @return value or {@code null} for none
113+
*/
114+
public java.lang.String getLocation() {
115+
return location;
116+
}
117+
118+
/**
119+
* Name of the region in which the Redis Cluster is defined. For example, "us-central1".
120+
* @param location location or {@code null} for none
121+
*/
122+
public RedisClusterInfo setLocation(java.lang.String location) {
123+
this.location = location;
124+
return this;
125+
}
126+
127+
/**
128+
* URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}".
129+
* @return value or {@code null} for none
130+
*/
131+
public java.lang.String getNetworkUri() {
132+
return networkUri;
133+
}
134+
135+
/**
136+
* URI of a Redis Cluster network in format "projects/{project_id}/global/networks/{network_id}".
137+
* @param networkUri networkUri or {@code null} for none
138+
*/
139+
public RedisClusterInfo setNetworkUri(java.lang.String networkUri) {
140+
this.networkUri = networkUri;
141+
return this;
142+
}
143+
144+
/**
145+
* Secondary endpoint IP address of a Redis Cluster.
146+
* @return value or {@code null} for none
147+
*/
148+
public java.lang.String getSecondaryEndpointIpAddress() {
149+
return secondaryEndpointIpAddress;
150+
}
151+
152+
/**
153+
* Secondary endpoint IP address of a Redis Cluster.
154+
* @param secondaryEndpointIpAddress secondaryEndpointIpAddress or {@code null} for none
155+
*/
156+
public RedisClusterInfo setSecondaryEndpointIpAddress(java.lang.String secondaryEndpointIpAddress) {
157+
this.secondaryEndpointIpAddress = secondaryEndpointIpAddress;
158+
return this;
159+
}
160+
161+
/**
162+
* URI of a Redis Cluster in format
163+
* "projects/{project_id}/locations/{location}/clusters/{cluster_id}"
164+
* @return value or {@code null} for none
165+
*/
166+
public java.lang.String getUri() {
167+
return uri;
168+
}
169+
170+
/**
171+
* URI of a Redis Cluster in format
172+
* "projects/{project_id}/locations/{location}/clusters/{cluster_id}"
173+
* @param uri uri or {@code null} for none
174+
*/
175+
public RedisClusterInfo setUri(java.lang.String uri) {
176+
this.uri = uri;
177+
return this;
178+
}
179+
180+
@Override
181+
public RedisClusterInfo set(String fieldName, Object value) {
182+
return (RedisClusterInfo) super.set(fieldName, value);
183+
}
184+
185+
@Override
186+
public RedisClusterInfo clone() {
187+
return (RedisClusterInfo) super.clone();
188+
}
189+
190+
}

clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,13 @@ public final class Step extends com.google.api.client.json.GenericJson {
188188
@com.google.api.client.util.Key
189189
private ProxyConnectionInfo proxyConnection;
190190

191+
/**
192+
* Display information of a Redis Cluster.
193+
* The value may be {@code null}.
194+
*/
195+
@com.google.api.client.util.Key
196+
private RedisClusterInfo redisCluster;
197+
191198
/**
192199
* Display information of a Redis Instance.
193200
* The value may be {@code null}.
@@ -625,6 +632,23 @@ public Step setProxyConnection(ProxyConnectionInfo proxyConnection) {
625632
return this;
626633
}
627634

635+
/**
636+
* Display information of a Redis Cluster.
637+
* @return value or {@code null} for none
638+
*/
639+
public RedisClusterInfo getRedisCluster() {
640+
return redisCluster;
641+
}
642+
643+
/**
644+
* Display information of a Redis Cluster.
645+
* @param redisCluster redisCluster or {@code null} for none
646+
*/
647+
public Step setRedisCluster(RedisClusterInfo redisCluster) {
648+
this.redisCluster = redisCluster;
649+
return this;
650+
}
651+
628652
/**
629653
* Display information of a Redis Instance.
630654
* @return value or {@code null} for none

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

Lines changed: 4 additions & 4 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-networkmanagement</artifactId>
11-
<version>v1-rev20240821-2.0.0</version>
12-
<name>Network Management API v1-rev20240821-2.0.0</name>
11+
<version>v1-rev20240905-2.0.0</version>
12+
<name>Network Management API v1-rev20240905-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.0/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.36.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.6.0/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.0/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.6.0</version>
128+
<version>2.7.0</version>
129129
</dependency>
130130
</dependencies>
131131

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

clients/google-api-services-networkmanagement/v1beta1/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-networkmanagement</artifactId>
25-
<version>v1beta1-rev20240821-2.0.0</version>
25+
<version>v1beta1-rev20240905-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-networkmanagement:v1beta1-rev20240821-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networkmanagement:v1beta1-rev20240905-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)