Skip to content

Commit 5fa28a2

Browse files
1 parent c58ae17 commit 5fa28a2

File tree

6 files changed

+54
-21
lines changed

6 files changed

+54
-21
lines changed

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

clients/google-api-services-compute/v1/2.0.0/com/google/api/services/compute/model/FutureReservationStatusExistingMatchingUsageInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final class FutureReservationStatusExistingMatchingUsageInfo extends com.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
45-
private String timestamp;
45+
private java.lang.String timestamp;
4646

4747
/**
4848
* Count to represent min(FR total_count,
@@ -67,15 +67,15 @@ public FutureReservationStatusExistingMatchingUsageInfo setCount(java.lang.Long
6767
* Timestamp when the matching usage was calculated
6868
* @return value or {@code null} for none
6969
*/
70-
public String getTimestamp() {
70+
public java.lang.String getTimestamp() {
7171
return timestamp;
7272
}
7373

7474
/**
7575
* Timestamp when the matching usage was calculated
7676
* @param timestamp timestamp or {@code null} for none
7777
*/
78-
public FutureReservationStatusExistingMatchingUsageInfo setTimestamp(String timestamp) {
78+
public FutureReservationStatusExistingMatchingUsageInfo setTimestamp(java.lang.String timestamp) {
7979
this.timestamp = timestamp;
8080
return this;
8181
}

clients/google-api-services-compute/v1/2.0.0/com/google/api/services/compute/model/MachineType.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class MachineType extends com.google.api.client.json.GenericJson {
4343
com.google.api.client.util.Data.nullOf(Accelerators.class);
4444
}
4545

46+
/**
47+
* [Output Only] The architecture of the machine type.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String architecture;
52+
4653
/**
4754
* [Output Only] Creation timestamp in RFC3339 text format.
4855
* The value may be {@code null}.
@@ -173,6 +180,23 @@ public MachineType setAccelerators(java.util.List<Accelerators> accelerators) {
173180
return this;
174181
}
175182

183+
/**
184+
* [Output Only] The architecture of the machine type.
185+
* @return value or {@code null} for none
186+
*/
187+
public java.lang.String getArchitecture() {
188+
return architecture;
189+
}
190+
191+
/**
192+
* [Output Only] The architecture of the machine type.
193+
* @param architecture architecture or {@code null} for none
194+
*/
195+
public MachineType setArchitecture(java.lang.String architecture) {
196+
this.architecture = architecture;
197+
return this;
198+
}
199+
176200
/**
177201
* [Output Only] Creation timestamp in RFC3339 text format.
178202
* @return value or {@code null} for none

clients/google-api-services-compute/v1/2.0.0/com/google/api/services/compute/model/VpnTunnel.java

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ public final class VpnTunnel extends com.google.api.client.json.GenericJson {
9696
/**
9797
* Local traffic selector to use when establishing the VPN tunnel with the peer VPN gateway. The
9898
* value should be a CIDR formatted string, for example: 192.168.0.0/16. The ranges must be
99-
* disjoint. Only IPv4 is supported.
99+
* disjoint. Only IPv4 is supported for Classic VPN tunnels. This field is output only for HA VPN
100+
* tunnels.
100101
* The value may be {@code null}.
101102
*/
102103
@com.google.api.client.util.Key
@@ -143,7 +144,8 @@ public final class VpnTunnel extends com.google.api.client.json.GenericJson {
143144
private java.lang.String peerGcpGateway;
144145

145146
/**
146-
* IP address of the peer VPN gateway. Only IPv4 is supported.
147+
* IP address of the peer VPN gateway. Only IPv4 is supported. This field can be set only for
148+
* Classic VPN tunnels.
147149
* The value may be {@code null}.
148150
*/
149151
@com.google.api.client.util.Key
@@ -160,7 +162,8 @@ public final class VpnTunnel extends com.google.api.client.json.GenericJson {
160162
/**
161163
* Remote traffic selectors to use when establishing the VPN tunnel with the peer VPN gateway. The
162164
* value should be a CIDR formatted string, for example: 192.168.0.0/16. The ranges should be
163-
* disjoint. Only IPv4 is supported.
165+
* disjoint. Only IPv4 is supported for Classic VPN tunnels. This field is output only for HA VPN
166+
* tunnels.
164167
* The value may be {@code null}.
165168
*/
166169
@com.google.api.client.util.Key
@@ -218,7 +221,7 @@ public final class VpnTunnel extends com.google.api.client.json.GenericJson {
218221

219222
/**
220223
* URL of the Target VPN gateway with which this VPN tunnel is associated. Provided by the client
221-
* when the VPN tunnel is created.
224+
* when the VPN tunnel is created. This field can be set only for Classic VPN tunnels.
222225
* The value may be {@code null}.
223226
*/
224227
@com.google.api.client.util.Key
@@ -432,7 +435,8 @@ public VpnTunnel setLabels(java.util.Map<String, java.lang.String> labels) {
432435
/**
433436
* Local traffic selector to use when establishing the VPN tunnel with the peer VPN gateway. The
434437
* value should be a CIDR formatted string, for example: 192.168.0.0/16. The ranges must be
435-
* disjoint. Only IPv4 is supported.
438+
* disjoint. Only IPv4 is supported for Classic VPN tunnels. This field is output only for HA VPN
439+
* tunnels.
436440
* @return value or {@code null} for none
437441
*/
438442
public java.util.List<java.lang.String> getLocalTrafficSelector() {
@@ -442,7 +446,8 @@ public java.util.List<java.lang.String> getLocalTrafficSelector() {
442446
/**
443447
* Local traffic selector to use when establishing the VPN tunnel with the peer VPN gateway. The
444448
* value should be a CIDR formatted string, for example: 192.168.0.0/16. The ranges must be
445-
* disjoint. Only IPv4 is supported.
449+
* disjoint. Only IPv4 is supported for Classic VPN tunnels. This field is output only for HA VPN
450+
* tunnels.
446451
* @param localTrafficSelector localTrafficSelector or {@code null} for none
447452
*/
448453
public VpnTunnel setLocalTrafficSelector(java.util.List<java.lang.String> localTrafficSelector) {
@@ -543,15 +548,17 @@ public VpnTunnel setPeerGcpGateway(java.lang.String peerGcpGateway) {
543548
}
544549

545550
/**
546-
* IP address of the peer VPN gateway. Only IPv4 is supported.
551+
* IP address of the peer VPN gateway. Only IPv4 is supported. This field can be set only for
552+
* Classic VPN tunnels.
547553
* @return value or {@code null} for none
548554
*/
549555
public java.lang.String getPeerIp() {
550556
return peerIp;
551557
}
552558

553559
/**
554-
* IP address of the peer VPN gateway. Only IPv4 is supported.
560+
* IP address of the peer VPN gateway. Only IPv4 is supported. This field can be set only for
561+
* Classic VPN tunnels.
555562
* @param peerIp peerIp or {@code null} for none
556563
*/
557564
public VpnTunnel setPeerIp(java.lang.String peerIp) {
@@ -581,7 +588,8 @@ public VpnTunnel setRegion(java.lang.String region) {
581588
/**
582589
* Remote traffic selectors to use when establishing the VPN tunnel with the peer VPN gateway. The
583590
* value should be a CIDR formatted string, for example: 192.168.0.0/16. The ranges should be
584-
* disjoint. Only IPv4 is supported.
591+
* disjoint. Only IPv4 is supported for Classic VPN tunnels. This field is output only for HA VPN
592+
* tunnels.
585593
* @return value or {@code null} for none
586594
*/
587595
public java.util.List<java.lang.String> getRemoteTrafficSelector() {
@@ -591,7 +599,8 @@ public java.util.List<java.lang.String> getRemoteTrafficSelector() {
591599
/**
592600
* Remote traffic selectors to use when establishing the VPN tunnel with the peer VPN gateway. The
593601
* value should be a CIDR formatted string, for example: 192.168.0.0/16. The ranges should be
594-
* disjoint. Only IPv4 is supported.
602+
* disjoint. Only IPv4 is supported for Classic VPN tunnels. This field is output only for HA VPN
603+
* tunnels.
595604
* @param remoteTrafficSelector remoteTrafficSelector or {@code null} for none
596605
*/
597606
public VpnTunnel setRemoteTrafficSelector(java.util.List<java.lang.String> remoteTrafficSelector) {
@@ -716,7 +725,7 @@ public VpnTunnel setStatus(java.lang.String status) {
716725

717726
/**
718727
* URL of the Target VPN gateway with which this VPN tunnel is associated. Provided by the client
719-
* when the VPN tunnel is created.
728+
* when the VPN tunnel is created. This field can be set only for Classic VPN tunnels.
720729
* @return value or {@code null} for none
721730
*/
722731
public java.lang.String getTargetVpnGateway() {
@@ -725,7 +734,7 @@ public java.lang.String getTargetVpnGateway() {
725734

726735
/**
727736
* URL of the Target VPN gateway with which this VPN tunnel is associated. Provided by the client
728-
* when the VPN tunnel is created.
737+
* when the VPN tunnel is created. This field can be set only for Classic VPN tunnels.
729738
* @param targetVpnGateway targetVpnGateway or {@code null} for none
730739
*/
731740
public VpnTunnel setTargetVpnGateway(java.lang.String targetVpnGateway) {

clients/google-api-services-compute/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-compute</artifactId>
11-
<version>v1-rev20240730-2.0.0</version>
12-
<name>Compute Engine API v1-rev20240730-2.0.0</name>
11+
<version>v1-rev20240805-2.0.0</version>
12+
<name>Compute Engine API v1-rev20240805-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)