Skip to content

Commit 821a3ea

Browse files
chore: update googleapis commit at Thu May 16 02:16:16 UTC 2024 (#10846)
* chore: update googleapis commit at Thu May 16 02:16:16 UTC 2024 * chore: generate libraries at Thu May 16 02:19:23 UTC 2024
1 parent cb7ad31 commit 821a3ea

File tree

26 files changed

+5803
-1765
lines changed

26 files changed

+5803
-1765
lines changed

generation_config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gapic_generator_version: 2.40.0
22
protoc_version: '25.3'
3-
googleapis_commitish: 584e0dee558b4b19bdecf1f2bdd4ec151190e5a4
3+
googleapis_commitish: 998ade8d5e34d18df5ce36ce2baefdd57f4da375
44
libraries_bom_version: 26.39.0
55
template_excludes:
66
- .github/*

java-deploy/proto-google-cloud-deploy-v1/src/main/java/com/google/cloud/deploy/v1/CloudDeployProto.java

+875-873
Large diffs are not rendered by default.

java-deploy/proto-google-cloud-deploy-v1/src/main/java/com/google/cloud/deploy/v1/ExecutionConfig.java

+97
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,25 @@ public com.google.protobuf.DurationOrBuilder getExecutionTimeoutOrBuilder() {
806806
: executionTimeout_;
807807
}
808808

809+
public static final int VERBOSE_FIELD_NUMBER = 8;
810+
private boolean verbose_ = false;
811+
/**
812+
*
813+
*
814+
* <pre>
815+
* Optional. If true, additional logging will be enabled when running builds
816+
* in this execution environment.
817+
* </pre>
818+
*
819+
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
820+
*
821+
* @return The verbose.
822+
*/
823+
@java.lang.Override
824+
public boolean getVerbose() {
825+
return verbose_;
826+
}
827+
809828
private byte memoizedIsInitialized = -1;
810829

811830
@java.lang.Override
@@ -846,6 +865,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
846865
if (((bitField0_ & 0x00000001) != 0)) {
847866
output.writeMessage(7, getExecutionTimeout());
848867
}
868+
if (verbose_ != false) {
869+
output.writeBool(8, verbose_);
870+
}
849871
getUnknownFields().writeTo(output);
850872
}
851873

@@ -889,6 +911,9 @@ public int getSerializedSize() {
889911
if (((bitField0_ & 0x00000001) != 0)) {
890912
size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getExecutionTimeout());
891913
}
914+
if (verbose_ != false) {
915+
size += com.google.protobuf.CodedOutputStream.computeBoolSize(8, verbose_);
916+
}
892917
size += getUnknownFields().getSerializedSize();
893918
memoizedSize = size;
894919
return size;
@@ -913,6 +938,7 @@ public boolean equals(final java.lang.Object obj) {
913938
if (hasExecutionTimeout()) {
914939
if (!getExecutionTimeout().equals(other.getExecutionTimeout())) return false;
915940
}
941+
if (getVerbose() != other.getVerbose()) return false;
916942
if (!getExecutionEnvironmentCase().equals(other.getExecutionEnvironmentCase())) return false;
917943
switch (executionEnvironmentCase_) {
918944
case 2:
@@ -949,6 +975,8 @@ public int hashCode() {
949975
hash = (37 * hash) + EXECUTION_TIMEOUT_FIELD_NUMBER;
950976
hash = (53 * hash) + getExecutionTimeout().hashCode();
951977
}
978+
hash = (37 * hash) + VERBOSE_FIELD_NUMBER;
979+
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getVerbose());
952980
switch (executionEnvironmentCase_) {
953981
case 2:
954982
hash = (37 * hash) + DEFAULT_POOL_FIELD_NUMBER;
@@ -1125,6 +1153,7 @@ public Builder clear() {
11251153
executionTimeoutBuilder_.dispose();
11261154
executionTimeoutBuilder_ = null;
11271155
}
1156+
verbose_ = false;
11281157
executionEnvironmentCase_ = 0;
11291158
executionEnvironment_ = null;
11301159
return this;
@@ -1188,6 +1217,9 @@ private void buildPartial0(com.google.cloud.deploy.v1.ExecutionConfig result) {
11881217
executionTimeoutBuilder_ == null ? executionTimeout_ : executionTimeoutBuilder_.build();
11891218
to_bitField0_ |= 0x00000001;
11901219
}
1220+
if (((from_bitField0_ & 0x00000080) != 0)) {
1221+
result.verbose_ = verbose_;
1222+
}
11911223
result.bitField0_ |= to_bitField0_;
11921224
}
11931225

@@ -1275,6 +1307,9 @@ public Builder mergeFrom(com.google.cloud.deploy.v1.ExecutionConfig other) {
12751307
if (other.hasExecutionTimeout()) {
12761308
mergeExecutionTimeout(other.getExecutionTimeout());
12771309
}
1310+
if (other.getVerbose() != false) {
1311+
setVerbose(other.getVerbose());
1312+
}
12781313
switch (other.getExecutionEnvironmentCase()) {
12791314
case DEFAULT_POOL:
12801315
{
@@ -1373,6 +1408,12 @@ public Builder mergeFrom(
13731408
bitField0_ |= 0x00000040;
13741409
break;
13751410
} // case 58
1411+
case 64:
1412+
{
1413+
verbose_ = input.readBool();
1414+
bitField0_ |= 0x00000080;
1415+
break;
1416+
} // case 64
13761417
default:
13771418
{
13781419
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
@@ -2700,6 +2741,62 @@ public com.google.protobuf.DurationOrBuilder getExecutionTimeoutOrBuilder() {
27002741
return executionTimeoutBuilder_;
27012742
}
27022743

2744+
private boolean verbose_;
2745+
/**
2746+
*
2747+
*
2748+
* <pre>
2749+
* Optional. If true, additional logging will be enabled when running builds
2750+
* in this execution environment.
2751+
* </pre>
2752+
*
2753+
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
2754+
*
2755+
* @return The verbose.
2756+
*/
2757+
@java.lang.Override
2758+
public boolean getVerbose() {
2759+
return verbose_;
2760+
}
2761+
/**
2762+
*
2763+
*
2764+
* <pre>
2765+
* Optional. If true, additional logging will be enabled when running builds
2766+
* in this execution environment.
2767+
* </pre>
2768+
*
2769+
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
2770+
*
2771+
* @param value The verbose to set.
2772+
* @return This builder for chaining.
2773+
*/
2774+
public Builder setVerbose(boolean value) {
2775+
2776+
verbose_ = value;
2777+
bitField0_ |= 0x00000080;
2778+
onChanged();
2779+
return this;
2780+
}
2781+
/**
2782+
*
2783+
*
2784+
* <pre>
2785+
* Optional. If true, additional logging will be enabled when running builds
2786+
* in this execution environment.
2787+
* </pre>
2788+
*
2789+
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
2790+
*
2791+
* @return This builder for chaining.
2792+
*/
2793+
public Builder clearVerbose() {
2794+
bitField0_ = (bitField0_ & ~0x00000080);
2795+
verbose_ = false;
2796+
onChanged();
2797+
return this;
2798+
}
2799+
27032800
@java.lang.Override
27042801
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
27052802
return super.setUnknownFields(unknownFields);

java-deploy/proto-google-cloud-deploy-v1/src/main/java/com/google/cloud/deploy/v1/ExecutionConfigOrBuilder.java

+14
Original file line numberDiff line numberDiff line change
@@ -322,5 +322,19 @@ public interface ExecutionConfigOrBuilder
322322
*/
323323
com.google.protobuf.DurationOrBuilder getExecutionTimeoutOrBuilder();
324324

325+
/**
326+
*
327+
*
328+
* <pre>
329+
* Optional. If true, additional logging will be enabled when running builds
330+
* in this execution environment.
331+
* </pre>
332+
*
333+
* <code>bool verbose = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
334+
*
335+
* @return The verbose.
336+
*/
337+
boolean getVerbose();
338+
325339
com.google.cloud.deploy.v1.ExecutionConfig.ExecutionEnvironmentCase getExecutionEnvironmentCase();
326340
}

java-deploy/proto-google-cloud-deploy-v1/src/main/proto/google/cloud/deploy/v1/cloud_deploy.proto

+4
Original file line numberDiff line numberDiff line change
@@ -1250,6 +1250,10 @@ message ExecutionConfig {
12501250
// 1h is used.
12511251
google.protobuf.Duration execution_timeout = 7
12521252
[(google.api.field_behavior) = OPTIONAL];
1253+
1254+
// Optional. If true, additional logging will be enabled when running builds
1255+
// in this execution environment.
1256+
bool verbose = 8 [(google.api.field_behavior) = OPTIONAL];
12531257
}
12541258

12551259
// Execution using the default Cloud Build pool.

java-document-ai/proto-google-cloud-document-ai-v1/src/main/java/com/google/cloud/documentai/v1/Document.java

+20-20
Original file line numberDiff line numberDiff line change
@@ -15871,7 +15871,7 @@ public interface StyleInfoOrBuilder
1587115871
*
1587215872
*
1587315873
* <pre>
15874-
* Whether the text is strikethrough.
15874+
* Whether the text is strikethrough. This feature is not supported yet.
1587515875
* </pre>
1587615876
*
1587715877
* <code>bool strikeout = 8;</code>
@@ -15884,7 +15884,7 @@ public interface StyleInfoOrBuilder
1588415884
*
1588515885
*
1588615886
* <pre>
15887-
* Whether the text is a subscript.
15887+
* Whether the text is a subscript. This feature is not supported yet.
1588815888
* </pre>
1588915889
*
1589015890
* <code>bool subscript = 9;</code>
@@ -15897,7 +15897,7 @@ public interface StyleInfoOrBuilder
1589715897
*
1589815898
*
1589915899
* <pre>
15900-
* Whether the text is a superscript.
15900+
* Whether the text is a superscript. This feature is not supported yet.
1590115901
* </pre>
1590215902
*
1590315903
* <code>bool superscript = 10;</code>
@@ -15910,7 +15910,7 @@ public interface StyleInfoOrBuilder
1591015910
*
1591115911
*
1591215912
* <pre>
15913-
* Whether the text is in small caps.
15913+
* Whether the text is in small caps. This feature is not supported yet.
1591415914
* </pre>
1591515915
*
1591615916
* <code>bool smallcaps = 11;</code>
@@ -16230,7 +16230,7 @@ public boolean getUnderlined() {
1623016230
*
1623116231
*
1623216232
* <pre>
16233-
* Whether the text is strikethrough.
16233+
* Whether the text is strikethrough. This feature is not supported yet.
1623416234
* </pre>
1623516235
*
1623616236
* <code>bool strikeout = 8;</code>
@@ -16248,7 +16248,7 @@ public boolean getStrikeout() {
1624816248
*
1624916249
*
1625016250
* <pre>
16251-
* Whether the text is a subscript.
16251+
* Whether the text is a subscript. This feature is not supported yet.
1625216252
* </pre>
1625316253
*
1625416254
* <code>bool subscript = 9;</code>
@@ -16266,7 +16266,7 @@ public boolean getSubscript() {
1626616266
*
1626716267
*
1626816268
* <pre>
16269-
* Whether the text is a superscript.
16269+
* Whether the text is a superscript. This feature is not supported yet.
1627016270
* </pre>
1627116271
*
1627216272
* <code>bool superscript = 10;</code>
@@ -16284,7 +16284,7 @@ public boolean getSuperscript() {
1628416284
*
1628516285
*
1628616286
* <pre>
16287-
* Whether the text is in small caps.
16287+
* Whether the text is in small caps. This feature is not supported yet.
1628816288
* </pre>
1628916289
*
1629016290
* <code>bool smallcaps = 11;</code>
@@ -17582,7 +17582,7 @@ public Builder clearUnderlined() {
1758217582
*
1758317583
*
1758417584
* <pre>
17585-
* Whether the text is strikethrough.
17585+
* Whether the text is strikethrough. This feature is not supported yet.
1758617586
* </pre>
1758717587
*
1758817588
* <code>bool strikeout = 8;</code>
@@ -17597,7 +17597,7 @@ public boolean getStrikeout() {
1759717597
*
1759817598
*
1759917599
* <pre>
17600-
* Whether the text is strikethrough.
17600+
* Whether the text is strikethrough. This feature is not supported yet.
1760117601
* </pre>
1760217602
*
1760317603
* <code>bool strikeout = 8;</code>
@@ -17616,7 +17616,7 @@ public Builder setStrikeout(boolean value) {
1761617616
*
1761717617
*
1761817618
* <pre>
17619-
* Whether the text is strikethrough.
17619+
* Whether the text is strikethrough. This feature is not supported yet.
1762017620
* </pre>
1762117621
*
1762217622
* <code>bool strikeout = 8;</code>
@@ -17635,7 +17635,7 @@ public Builder clearStrikeout() {
1763517635
*
1763617636
*
1763717637
* <pre>
17638-
* Whether the text is a subscript.
17638+
* Whether the text is a subscript. This feature is not supported yet.
1763917639
* </pre>
1764017640
*
1764117641
* <code>bool subscript = 9;</code>
@@ -17650,7 +17650,7 @@ public boolean getSubscript() {
1765017650
*
1765117651
*
1765217652
* <pre>
17653-
* Whether the text is a subscript.
17653+
* Whether the text is a subscript. This feature is not supported yet.
1765417654
* </pre>
1765517655
*
1765617656
* <code>bool subscript = 9;</code>
@@ -17669,7 +17669,7 @@ public Builder setSubscript(boolean value) {
1766917669
*
1767017670
*
1767117671
* <pre>
17672-
* Whether the text is a subscript.
17672+
* Whether the text is a subscript. This feature is not supported yet.
1767317673
* </pre>
1767417674
*
1767517675
* <code>bool subscript = 9;</code>
@@ -17688,7 +17688,7 @@ public Builder clearSubscript() {
1768817688
*
1768917689
*
1769017690
* <pre>
17691-
* Whether the text is a superscript.
17691+
* Whether the text is a superscript. This feature is not supported yet.
1769217692
* </pre>
1769317693
*
1769417694
* <code>bool superscript = 10;</code>
@@ -17703,7 +17703,7 @@ public boolean getSuperscript() {
1770317703
*
1770417704
*
1770517705
* <pre>
17706-
* Whether the text is a superscript.
17706+
* Whether the text is a superscript. This feature is not supported yet.
1770717707
* </pre>
1770817708
*
1770917709
* <code>bool superscript = 10;</code>
@@ -17722,7 +17722,7 @@ public Builder setSuperscript(boolean value) {
1772217722
*
1772317723
*
1772417724
* <pre>
17725-
* Whether the text is a superscript.
17725+
* Whether the text is a superscript. This feature is not supported yet.
1772617726
* </pre>
1772717727
*
1772817728
* <code>bool superscript = 10;</code>
@@ -17741,7 +17741,7 @@ public Builder clearSuperscript() {
1774117741
*
1774217742
*
1774317743
* <pre>
17744-
* Whether the text is in small caps.
17744+
* Whether the text is in small caps. This feature is not supported yet.
1774517745
* </pre>
1774617746
*
1774717747
* <code>bool smallcaps = 11;</code>
@@ -17756,7 +17756,7 @@ public boolean getSmallcaps() {
1775617756
*
1775717757
*
1775817758
* <pre>
17759-
* Whether the text is in small caps.
17759+
* Whether the text is in small caps. This feature is not supported yet.
1776017760
* </pre>
1776117761
*
1776217762
* <code>bool smallcaps = 11;</code>
@@ -17775,7 +17775,7 @@ public Builder setSmallcaps(boolean value) {
1777517775
*
1777617776
*
1777717777
* <pre>
17778-
* Whether the text is in small caps.
17778+
* Whether the text is in small caps. This feature is not supported yet.
1777917779
* </pre>
1778017780
*
1778117781
* <code>bool smallcaps = 11;</code>

0 commit comments

Comments
 (0)