Skip to content

Commit f9bc1b2

Browse files
fix: mark service_account_email as deprecated (#36)
- [ ] Regenerate this pull request now. docs: removing comment from a deprecated field PiperOrigin-RevId: 471626558 Source-Link: googleapis/googleapis@fff3f73 Source-Link: https://github.com/googleapis/googleapis-gen/commit/a032c66713c0a297202a6a597658ff697c536420 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTAzMmM2NjcxM2MwYTI5NzIwMmE2YTU5NzY1OGZmNjk3YzUzNjQyMCJ9
1 parent e2fd744 commit f9bc1b2

File tree

6 files changed

+174
-221
lines changed

6 files changed

+174
-221
lines changed

java-batch/proto-google-cloud-batch-v1/src/main/java/com/google/cloud/batch/v1/AllocationPolicy.java

+5-40
Original file line numberDiff line numberDiff line change
@@ -4256,17 +4256,10 @@ public interface AcceleratorOrBuilder
42564256
long getCount();
42574257

42584258
/**
4259-
*
4260-
*
4261-
* <pre>
4262-
* When true, Batch will install the GPU drivers.
4263-
* This field will be ignored if specified.
4264-
* </pre>
4265-
*
42664259
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
42674260
*
42684261
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
4269-
* deprecated. See google/cloud/batch/v1/job.proto;l=291
4262+
* deprecated. See google/cloud/batch/v1/job.proto;l=289
42704263
* @return The installGpuDrivers.
42714264
*/
42724265
@java.lang.Deprecated
@@ -4449,17 +4442,10 @@ public long getCount() {
44494442
public static final int INSTALL_GPU_DRIVERS_FIELD_NUMBER = 3;
44504443
private boolean installGpuDrivers_;
44514444
/**
4452-
*
4453-
*
4454-
* <pre>
4455-
* When true, Batch will install the GPU drivers.
4456-
* This field will be ignored if specified.
4457-
* </pre>
4458-
*
44594445
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
44604446
*
44614447
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
4462-
* deprecated. See google/cloud/batch/v1/job.proto;l=291
4448+
* deprecated. See google/cloud/batch/v1/job.proto;l=289
44634449
* @return The installGpuDrivers.
44644450
*/
44654451
@java.lang.Override
@@ -4986,17 +4972,10 @@ public Builder clearCount() {
49864972

49874973
private boolean installGpuDrivers_;
49884974
/**
4989-
*
4990-
*
4991-
* <pre>
4992-
* When true, Batch will install the GPU drivers.
4993-
* This field will be ignored if specified.
4994-
* </pre>
4995-
*
49964975
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
49974976
*
49984977
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
4999-
* deprecated. See google/cloud/batch/v1/job.proto;l=291
4978+
* deprecated. See google/cloud/batch/v1/job.proto;l=289
50004979
* @return The installGpuDrivers.
50014980
*/
50024981
@java.lang.Override
@@ -5005,17 +4984,10 @@ public boolean getInstallGpuDrivers() {
50054984
return installGpuDrivers_;
50064985
}
50074986
/**
5008-
*
5009-
*
5010-
* <pre>
5011-
* When true, Batch will install the GPU drivers.
5012-
* This field will be ignored if specified.
5013-
* </pre>
5014-
*
50154987
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
50164988
*
50174989
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
5018-
* deprecated. See google/cloud/batch/v1/job.proto;l=291
4990+
* deprecated. See google/cloud/batch/v1/job.proto;l=289
50194991
* @param value The installGpuDrivers to set.
50204992
* @return This builder for chaining.
50214993
*/
@@ -5027,17 +4999,10 @@ public Builder setInstallGpuDrivers(boolean value) {
50274999
return this;
50285000
}
50295001
/**
5030-
*
5031-
*
5032-
* <pre>
5033-
* When true, Batch will install the GPU drivers.
5034-
* This field will be ignored if specified.
5035-
* </pre>
5036-
*
50375002
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
50385003
*
50395004
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
5040-
* deprecated. See google/cloud/batch/v1/job.proto;l=291
5005+
* deprecated. See google/cloud/batch/v1/job.proto;l=289
50415006
* @return This builder for chaining.
50425007
*/
50435008
@java.lang.Deprecated

java-batch/proto-google-cloud-batch-v1/src/main/proto/google/cloud/batch/v1/job.proto

-2
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,6 @@ message AllocationPolicy {
287287
// The number of accelerators of this type.
288288
int64 count = 2;
289289

290-
// When true, Batch will install the GPU drivers.
291-
// This field will be ignored if specified.
292290
bool install_gpu_drivers = 3 [deprecated = true];
293291
}
294292

0 commit comments

Comments
 (0)