Skip to content

Commit 9bdcb82

Browse files
yoshi-automationchingor13
authored andcommitted
Regenerate remotebuildexecution client (googleapis#3141)
1 parent a386cd7 commit 9bdcb82

File tree

45 files changed

+12831
-10833
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+12831
-10833
lines changed

clients/google-api-services-remotebuildexecution/v1.metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-remotebuildexecution",
5-
"version": "v1-rev20191119-1.30.3"
5+
"version": "v1-rev20191203-1.30.3"
66
}
77
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
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.remotebuildexecution.v1.model;
18+
19+
/**
20+
* ResourceUsage is the system resource usage of the host machine.
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 Remote Build Execution API. For a detailed
24+
* explanation 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 GoogleDevtoolsRemotebuildbotResourceUsage extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Double cpuUsedPercent;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private GoogleDevtoolsRemotebuildbotResourceUsageStat diskUsage;
44+
45+
/**
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private GoogleDevtoolsRemotebuildbotResourceUsageStat memoryUsage;
50+
51+
/**
52+
* @return value or {@code null} for none
53+
*/
54+
public java.lang.Double getCpuUsedPercent() {
55+
return cpuUsedPercent;
56+
}
57+
58+
/**
59+
* @param cpuUsedPercent cpuUsedPercent or {@code null} for none
60+
*/
61+
public GoogleDevtoolsRemotebuildbotResourceUsage setCpuUsedPercent(java.lang.Double cpuUsedPercent) {
62+
this.cpuUsedPercent = cpuUsedPercent;
63+
return this;
64+
}
65+
66+
/**
67+
* @return value or {@code null} for none
68+
*/
69+
public GoogleDevtoolsRemotebuildbotResourceUsageStat getDiskUsage() {
70+
return diskUsage;
71+
}
72+
73+
/**
74+
* @param diskUsage diskUsage or {@code null} for none
75+
*/
76+
public GoogleDevtoolsRemotebuildbotResourceUsage setDiskUsage(GoogleDevtoolsRemotebuildbotResourceUsageStat diskUsage) {
77+
this.diskUsage = diskUsage;
78+
return this;
79+
}
80+
81+
/**
82+
* @return value or {@code null} for none
83+
*/
84+
public GoogleDevtoolsRemotebuildbotResourceUsageStat getMemoryUsage() {
85+
return memoryUsage;
86+
}
87+
88+
/**
89+
* @param memoryUsage memoryUsage or {@code null} for none
90+
*/
91+
public GoogleDevtoolsRemotebuildbotResourceUsage setMemoryUsage(GoogleDevtoolsRemotebuildbotResourceUsageStat memoryUsage) {
92+
this.memoryUsage = memoryUsage;
93+
return this;
94+
}
95+
96+
@Override
97+
public GoogleDevtoolsRemotebuildbotResourceUsage set(String fieldName, Object value) {
98+
return (GoogleDevtoolsRemotebuildbotResourceUsage) super.set(fieldName, value);
99+
}
100+
101+
@Override
102+
public GoogleDevtoolsRemotebuildbotResourceUsage clone() {
103+
return (GoogleDevtoolsRemotebuildbotResourceUsage) super.clone();
104+
}
105+
106+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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.remotebuildexecution.v1.model;
18+
19+
/**
20+
* Model definition for GoogleDevtoolsRemotebuildbotResourceUsageStat.
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 Remote Build Execution API. For a detailed
24+
* explanation 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 GoogleDevtoolsRemotebuildbotResourceUsageStat extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
37+
private java.math.BigInteger total;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
43+
private java.math.BigInteger used;
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.math.BigInteger getTotal() {
49+
return total;
50+
}
51+
52+
/**
53+
* @param total total or {@code null} for none
54+
*/
55+
public GoogleDevtoolsRemotebuildbotResourceUsageStat setTotal(java.math.BigInteger total) {
56+
this.total = total;
57+
return this;
58+
}
59+
60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public java.math.BigInteger getUsed() {
64+
return used;
65+
}
66+
67+
/**
68+
* @param used used or {@code null} for none
69+
*/
70+
public GoogleDevtoolsRemotebuildbotResourceUsageStat setUsed(java.math.BigInteger used) {
71+
this.used = used;
72+
return this;
73+
}
74+
75+
@Override
76+
public GoogleDevtoolsRemotebuildbotResourceUsageStat set(String fieldName, Object value) {
77+
return (GoogleDevtoolsRemotebuildbotResourceUsageStat) super.set(fieldName, value);
78+
}
79+
80+
@Override
81+
public GoogleDevtoolsRemotebuildbotResourceUsageStat clone() {
82+
return (GoogleDevtoolsRemotebuildbotResourceUsageStat) super.clone();
83+
}
84+
85+
}

clients/google-api-services-remotebuildexecution/v1/1.28.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-remotebuildexecution</artifactId>
11-
<version>v1-rev20191119-1.28.0</version>
12-
<name>Remote Build Execution API v1-rev20191119-1.28.0</name>
11+
<version>v1-rev20191203-1.28.0</version>
12+
<name>Remote Build Execution API v1-rev20191203-1.28.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)