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

chore: update googleapis commit at Thu May 16 02:16:16 UTC 2024 #10846

Merged
merged 2 commits into from
May 16, 2024
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
2 changes: 1 addition & 1 deletion generation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gapic_generator_version: 2.40.0
protoc_version: '25.3'
googleapis_commitish: 584e0dee558b4b19bdecf1f2bdd4ec151190e5a4
googleapis_commitish: 998ade8d5e34d18df5ce36ce2baefdd57f4da375
libraries_bom_version: 26.39.0
template_excludes:
- .github/*
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,25 @@ public com.google.protobuf.DurationOrBuilder getExecutionTimeoutOrBuilder() {
: executionTimeout_;
}

public static final int VERBOSE_FIELD_NUMBER = 8;
private boolean verbose_ = false;
/**
*
*
* <pre>
* Optional. If true, additional logging will be enabled when running builds
* in this execution environment.
* </pre>
*
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*
* @return The verbose.
*/
@java.lang.Override
public boolean getVerbose() {
return verbose_;
}

private byte memoizedIsInitialized = -1;

@java.lang.Override
Expand Down Expand Up @@ -846,6 +865,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(7, getExecutionTimeout());
}
if (verbose_ != false) {
output.writeBool(8, verbose_);
}
getUnknownFields().writeTo(output);
}

Expand Down Expand Up @@ -889,6 +911,9 @@ public int getSerializedSize() {
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getExecutionTimeout());
}
if (verbose_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(8, verbose_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
Expand All @@ -913,6 +938,7 @@ public boolean equals(final java.lang.Object obj) {
if (hasExecutionTimeout()) {
if (!getExecutionTimeout().equals(other.getExecutionTimeout())) return false;
}
if (getVerbose() != other.getVerbose()) return false;
if (!getExecutionEnvironmentCase().equals(other.getExecutionEnvironmentCase())) return false;
switch (executionEnvironmentCase_) {
case 2:
Expand Down Expand Up @@ -949,6 +975,8 @@ public int hashCode() {
hash = (37 * hash) + EXECUTION_TIMEOUT_FIELD_NUMBER;
hash = (53 * hash) + getExecutionTimeout().hashCode();
}
hash = (37 * hash) + VERBOSE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getVerbose());
switch (executionEnvironmentCase_) {
case 2:
hash = (37 * hash) + DEFAULT_POOL_FIELD_NUMBER;
Expand Down Expand Up @@ -1125,6 +1153,7 @@ public Builder clear() {
executionTimeoutBuilder_.dispose();
executionTimeoutBuilder_ = null;
}
verbose_ = false;
executionEnvironmentCase_ = 0;
executionEnvironment_ = null;
return this;
Expand Down Expand Up @@ -1188,6 +1217,9 @@ private void buildPartial0(com.google.cloud.deploy.v1.ExecutionConfig result) {
executionTimeoutBuilder_ == null ? executionTimeout_ : executionTimeoutBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000080) != 0)) {
result.verbose_ = verbose_;
}
result.bitField0_ |= to_bitField0_;
}

Expand Down Expand Up @@ -1275,6 +1307,9 @@ public Builder mergeFrom(com.google.cloud.deploy.v1.ExecutionConfig other) {
if (other.hasExecutionTimeout()) {
mergeExecutionTimeout(other.getExecutionTimeout());
}
if (other.getVerbose() != false) {
setVerbose(other.getVerbose());
}
switch (other.getExecutionEnvironmentCase()) {
case DEFAULT_POOL:
{
Expand Down Expand Up @@ -1373,6 +1408,12 @@ public Builder mergeFrom(
bitField0_ |= 0x00000040;
break;
} // case 58
case 64:
{
verbose_ = input.readBool();
bitField0_ |= 0x00000080;
break;
} // case 64
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
Expand Down Expand Up @@ -2700,6 +2741,62 @@ public com.google.protobuf.DurationOrBuilder getExecutionTimeoutOrBuilder() {
return executionTimeoutBuilder_;
}

private boolean verbose_;
/**
*
*
* <pre>
* Optional. If true, additional logging will be enabled when running builds
* in this execution environment.
* </pre>
*
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*
* @return The verbose.
*/
@java.lang.Override
public boolean getVerbose() {
return verbose_;
}
/**
*
*
* <pre>
* Optional. If true, additional logging will be enabled when running builds
* in this execution environment.
* </pre>
*
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*
* @param value The verbose to set.
* @return This builder for chaining.
*/
public Builder setVerbose(boolean value) {

verbose_ = value;
bitField0_ |= 0x00000080;
onChanged();
return this;
}
/**
*
*
* <pre>
* Optional. If true, additional logging will be enabled when running builds
* in this execution environment.
* </pre>
*
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*
* @return This builder for chaining.
*/
public Builder clearVerbose() {
bitField0_ = (bitField0_ & ~0x00000080);
verbose_ = false;
onChanged();
return this;
}

@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,5 +322,19 @@ public interface ExecutionConfigOrBuilder
*/
com.google.protobuf.DurationOrBuilder getExecutionTimeoutOrBuilder();

/**
*
*
* <pre>
* Optional. If true, additional logging will be enabled when running builds
* in this execution environment.
* </pre>
*
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*
* @return The verbose.
*/
boolean getVerbose();

com.google.cloud.deploy.v1.ExecutionConfig.ExecutionEnvironmentCase getExecutionEnvironmentCase();
}
Original file line number Diff line number Diff line change
Expand Up @@ -1250,6 +1250,10 @@ message ExecutionConfig {
// 1h is used.
google.protobuf.Duration execution_timeout = 7
[(google.api.field_behavior) = OPTIONAL];

// Optional. If true, additional logging will be enabled when running builds
// in this execution environment.
bool verbose = 8 [(google.api.field_behavior) = OPTIONAL];
}

// Execution using the default Cloud Build pool.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15871,7 +15871,7 @@ public interface StyleInfoOrBuilder
*
*
* <pre>
* Whether the text is strikethrough.
* Whether the text is strikethrough. This feature is not supported yet.
* </pre>
*
* <code>bool strikeout = 8;</code>
Expand All @@ -15884,7 +15884,7 @@ public interface StyleInfoOrBuilder
*
*
* <pre>
* Whether the text is a subscript.
* Whether the text is a subscript. This feature is not supported yet.
* </pre>
*
* <code>bool subscript = 9;</code>
Expand All @@ -15897,7 +15897,7 @@ public interface StyleInfoOrBuilder
*
*
* <pre>
* Whether the text is a superscript.
* Whether the text is a superscript. This feature is not supported yet.
* </pre>
*
* <code>bool superscript = 10;</code>
Expand All @@ -15910,7 +15910,7 @@ public interface StyleInfoOrBuilder
*
*
* <pre>
* Whether the text is in small caps.
* Whether the text is in small caps. This feature is not supported yet.
* </pre>
*
* <code>bool smallcaps = 11;</code>
Expand Down Expand Up @@ -16230,7 +16230,7 @@ public boolean getUnderlined() {
*
*
* <pre>
* Whether the text is strikethrough.
* Whether the text is strikethrough. This feature is not supported yet.
* </pre>
*
* <code>bool strikeout = 8;</code>
Expand All @@ -16248,7 +16248,7 @@ public boolean getStrikeout() {
*
*
* <pre>
* Whether the text is a subscript.
* Whether the text is a subscript. This feature is not supported yet.
* </pre>
*
* <code>bool subscript = 9;</code>
Expand All @@ -16266,7 +16266,7 @@ public boolean getSubscript() {
*
*
* <pre>
* Whether the text is a superscript.
* Whether the text is a superscript. This feature is not supported yet.
* </pre>
*
* <code>bool superscript = 10;</code>
Expand All @@ -16284,7 +16284,7 @@ public boolean getSuperscript() {
*
*
* <pre>
* Whether the text is in small caps.
* Whether the text is in small caps. This feature is not supported yet.
* </pre>
*
* <code>bool smallcaps = 11;</code>
Expand Down Expand Up @@ -17582,7 +17582,7 @@ public Builder clearUnderlined() {
*
*
* <pre>
* Whether the text is strikethrough.
* Whether the text is strikethrough. This feature is not supported yet.
* </pre>
*
* <code>bool strikeout = 8;</code>
Expand All @@ -17597,7 +17597,7 @@ public boolean getStrikeout() {
*
*
* <pre>
* Whether the text is strikethrough.
* Whether the text is strikethrough. This feature is not supported yet.
* </pre>
*
* <code>bool strikeout = 8;</code>
Expand All @@ -17616,7 +17616,7 @@ public Builder setStrikeout(boolean value) {
*
*
* <pre>
* Whether the text is strikethrough.
* Whether the text is strikethrough. This feature is not supported yet.
* </pre>
*
* <code>bool strikeout = 8;</code>
Expand All @@ -17635,7 +17635,7 @@ public Builder clearStrikeout() {
*
*
* <pre>
* Whether the text is a subscript.
* Whether the text is a subscript. This feature is not supported yet.
* </pre>
*
* <code>bool subscript = 9;</code>
Expand All @@ -17650,7 +17650,7 @@ public boolean getSubscript() {
*
*
* <pre>
* Whether the text is a subscript.
* Whether the text is a subscript. This feature is not supported yet.
* </pre>
*
* <code>bool subscript = 9;</code>
Expand All @@ -17669,7 +17669,7 @@ public Builder setSubscript(boolean value) {
*
*
* <pre>
* Whether the text is a subscript.
* Whether the text is a subscript. This feature is not supported yet.
* </pre>
*
* <code>bool subscript = 9;</code>
Expand All @@ -17688,7 +17688,7 @@ public Builder clearSubscript() {
*
*
* <pre>
* Whether the text is a superscript.
* Whether the text is a superscript. This feature is not supported yet.
* </pre>
*
* <code>bool superscript = 10;</code>
Expand All @@ -17703,7 +17703,7 @@ public boolean getSuperscript() {
*
*
* <pre>
* Whether the text is a superscript.
* Whether the text is a superscript. This feature is not supported yet.
* </pre>
*
* <code>bool superscript = 10;</code>
Expand All @@ -17722,7 +17722,7 @@ public Builder setSuperscript(boolean value) {
*
*
* <pre>
* Whether the text is a superscript.
* Whether the text is a superscript. This feature is not supported yet.
* </pre>
*
* <code>bool superscript = 10;</code>
Expand All @@ -17741,7 +17741,7 @@ public Builder clearSuperscript() {
*
*
* <pre>
* Whether the text is in small caps.
* Whether the text is in small caps. This feature is not supported yet.
* </pre>
*
* <code>bool smallcaps = 11;</code>
Expand All @@ -17756,7 +17756,7 @@ public boolean getSmallcaps() {
*
*
* <pre>
* Whether the text is in small caps.
* Whether the text is in small caps. This feature is not supported yet.
* </pre>
*
* <code>bool smallcaps = 11;</code>
Expand All @@ -17775,7 +17775,7 @@ public Builder setSmallcaps(boolean value) {
*
*
* <pre>
* Whether the text is in small caps.
* Whether the text is in small caps. This feature is not supported yet.
* </pre>
*
* <code>bool smallcaps = 11;</code>
Expand Down
Loading
Loading