Skip to content

Commit be1ad58

Browse files
chore(bazel): update version of Protobuf to v3.20.1 (#342)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 444328399 Source-Link: googleapis/googleapis@c7ca416 Source-Link: https://github.com/googleapis/googleapis-gen/commit/d61705453a62b3ecda78aa30c192840ebc5a8a90 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZDYxNzA1NDUzYTYyYjNlY2RhNzhhYTMwYzE5Mjg0MGViYzVhOGE5MCJ9
1 parent 14461f6 commit be1ad58

12 files changed

+24
-0
lines changed

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/AuditConfig.java

+2
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ private AuditConfig(
146146
}
147147
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
148148
throw e.setUnfinishedMessage(this);
149+
} catch (com.google.protobuf.UninitializedMessageException e) {
150+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
149151
} catch (java.io.IOException e) {
150152
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
151153
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/AuditConfigDelta.java

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ private AuditConfigDelta(
113113
}
114114
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
115115
throw e.setUnfinishedMessage(this);
116+
} catch (com.google.protobuf.UninitializedMessageException e) {
117+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
116118
} catch (java.io.IOException e) {
117119
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
118120
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/AuditLogConfig.java

+2
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ private AuditLogConfig(
116116
}
117117
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
118118
throw e.setUnfinishedMessage(this);
119+
} catch (com.google.protobuf.UninitializedMessageException e) {
120+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
119121
} catch (java.io.IOException e) {
120122
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
121123
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/Binding.java

+2
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ private Binding(
114114
}
115115
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
116116
throw e.setUnfinishedMessage(this);
117+
} catch (com.google.protobuf.UninitializedMessageException e) {
118+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
117119
} catch (java.io.IOException e) {
118120
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
119121
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/BindingDelta.java

+2
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ private BindingDelta(
119119
}
120120
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
121121
throw e.setUnfinishedMessage(this);
122+
} catch (com.google.protobuf.UninitializedMessageException e) {
123+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
122124
} catch (java.io.IOException e) {
123125
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
124126
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/GetIamPolicyRequest.java

+2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ private GetIamPolicyRequest(
103103
}
104104
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
105105
throw e.setUnfinishedMessage(this);
106+
} catch (com.google.protobuf.UninitializedMessageException e) {
107+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
106108
} catch (java.io.IOException e) {
107109
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
108110
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/GetPolicyOptions.java

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ private GetPolicyOptions(
8484
}
8585
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
8686
throw e.setUnfinishedMessage(this);
87+
} catch (com.google.protobuf.UninitializedMessageException e) {
88+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
8789
} catch (java.io.IOException e) {
8890
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
8991
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/Policy.java

+2
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ private Policy(
172172
}
173173
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
174174
throw e.setUnfinishedMessage(this);
175+
} catch (com.google.protobuf.UninitializedMessageException e) {
176+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
175177
} catch (java.io.IOException e) {
176178
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
177179
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/PolicyDelta.java

+2
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ private PolicyDelta(
104104
}
105105
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
106106
throw e.setUnfinishedMessage(this);
107+
} catch (com.google.protobuf.UninitializedMessageException e) {
108+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
107109
} catch (java.io.IOException e) {
108110
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
109111
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/SetIamPolicyRequest.java

+2
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ private SetIamPolicyRequest(
117117
}
118118
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
119119
throw e.setUnfinishedMessage(this);
120+
} catch (com.google.protobuf.UninitializedMessageException e) {
121+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
120122
} catch (java.io.IOException e) {
121123
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
122124
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/TestIamPermissionsRequest.java

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ private TestIamPermissionsRequest(
100100
}
101101
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
102102
throw e.setUnfinishedMessage(this);
103+
} catch (com.google.protobuf.UninitializedMessageException e) {
104+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
103105
} catch (java.io.IOException e) {
104106
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
105107
} finally {

java-iam/proto-google-iam-v1/src/main/java/com/google/iam/v1/TestIamPermissionsResponse.java

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ private TestIamPermissionsResponse(
9292
}
9393
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
9494
throw e.setUnfinishedMessage(this);
95+
} catch (com.google.protobuf.UninitializedMessageException e) {
96+
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
9597
} catch (java.io.IOException e) {
9698
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
9799
} finally {

0 commit comments

Comments
 (0)