Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: [batch] mark service_account_email as deprecated #8273

Merged
merged 2 commits into from
Sep 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4256,17 +4256,10 @@ public interface AcceleratorOrBuilder
long getCount();

/**
*
*
* <pre>
* When true, Batch will install the GPU drivers.
* This field will be ignored if specified.
* </pre>
*
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
*
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
* deprecated. See google/cloud/batch/v1/job.proto;l=291
* deprecated. See google/cloud/batch/v1/job.proto;l=289
* @return The installGpuDrivers.
*/
@java.lang.Deprecated
Expand Down Expand Up @@ -4449,17 +4442,10 @@ public long getCount() {
public static final int INSTALL_GPU_DRIVERS_FIELD_NUMBER = 3;
private boolean installGpuDrivers_;
/**
*
*
* <pre>
* When true, Batch will install the GPU drivers.
* This field will be ignored if specified.
* </pre>
*
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
*
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
* deprecated. See google/cloud/batch/v1/job.proto;l=291
* deprecated. See google/cloud/batch/v1/job.proto;l=289
* @return The installGpuDrivers.
*/
@java.lang.Override
Expand Down Expand Up @@ -4986,17 +4972,10 @@ public Builder clearCount() {

private boolean installGpuDrivers_;
/**
*
*
* <pre>
* When true, Batch will install the GPU drivers.
* This field will be ignored if specified.
* </pre>
*
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
*
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
* deprecated. See google/cloud/batch/v1/job.proto;l=291
* deprecated. See google/cloud/batch/v1/job.proto;l=289
* @return The installGpuDrivers.
*/
@java.lang.Override
Expand All @@ -5005,17 +4984,10 @@ public boolean getInstallGpuDrivers() {
return installGpuDrivers_;
}
/**
*
*
* <pre>
* When true, Batch will install the GPU drivers.
* This field will be ignored if specified.
* </pre>
*
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
*
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
* deprecated. See google/cloud/batch/v1/job.proto;l=291
* deprecated. See google/cloud/batch/v1/job.proto;l=289
* @param value The installGpuDrivers to set.
* @return This builder for chaining.
*/
Expand All @@ -5027,17 +4999,10 @@ public Builder setInstallGpuDrivers(boolean value) {
return this;
}
/**
*
*
* <pre>
* When true, Batch will install the GPU drivers.
* This field will be ignored if specified.
* </pre>
*
* <code>bool install_gpu_drivers = 3 [deprecated = true];</code>
*
* @deprecated google.cloud.batch.v1.AllocationPolicy.Accelerator.install_gpu_drivers is
* deprecated. See google/cloud/batch/v1/job.proto;l=291
* deprecated. See google/cloud/batch/v1/job.proto;l=289
* @return This builder for chaining.
*/
@java.lang.Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,6 @@ message AllocationPolicy {
// The number of accelerators of this type.
int64 count = 2;

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

Expand Down
Loading