Skip to content

Commit

Permalink
chore(bazel): update protobuf to v3.21.7 (googleapis#104)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 477955264

Source-Link: https://github.com/googleapis/googleapis/commit/a724450af76d0001f23602684c49cd6a4b3a5654

Source-Link: https://github.com/googleapis/googleapis-gen/commit/4abcbcaec855e74a0b22a4988cf9e0eb61a83094
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGFiY2JjYWVjODU1ZTc0YTBiMjJhNDk4OGNmOWUwZWI2MWE4MzA5NCJ9
  • Loading branch information
gcf-owl-bot[bot] authored Oct 3, 2022
1 parent f671a19 commit d1b4406
Show file tree
Hide file tree
Showing 53 changed files with 3,080 additions and 4,648 deletions.
6 changes: 3 additions & 3 deletions java-video-stitcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-video-stitcher</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-video-stitcher:0.3.4'
implementation 'com.google.cloud:google-cloud-video-stitcher:0.3.5'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-video-stitcher" % "0.3.4"
libraryDependencies += "com.google.cloud" % "google-cloud-video-stitcher" % "0.3.5"
```

## Authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,86 +52,6 @@ public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}

private AdRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
java.lang.String s = input.readStringRequireUtf8();

uri_ = s;
break;
}
case 18:
{
com.google.cloud.video.stitcher.v1.RequestMetadata.Builder subBuilder = null;
if (requestMetadata_ != null) {
subBuilder = requestMetadata_.toBuilder();
}
requestMetadata_ =
input.readMessage(
com.google.cloud.video.stitcher.v1.RequestMetadata.parser(),
extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(requestMetadata_);
requestMetadata_ = subBuilder.buildPartial();
}

break;
}
case 26:
{
com.google.cloud.video.stitcher.v1.ResponseMetadata.Builder subBuilder = null;
if (responseMetadata_ != null) {
subBuilder = responseMetadata_.toBuilder();
}
responseMetadata_ =
input.readMessage(
com.google.cloud.video.stitcher.v1.ResponseMetadata.parser(),
extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(responseMetadata_);
responseMetadata_ = subBuilder.buildPartial();
}

break;
}
default:
{
if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}

public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.video.stitcher.v1.AdTagDetailsProto
.internal_static_google_cloud_video_stitcher_v1_AdRequest_descriptor;
Expand Down Expand Up @@ -316,7 +236,7 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (responseMetadata_ != null) {
output.writeMessage(3, getResponseMetadata());
}
unknownFields.writeTo(output);
getUnknownFields().writeTo(output);
}

@java.lang.Override
Expand All @@ -334,7 +254,7 @@ public int getSerializedSize() {
if (responseMetadata_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getResponseMetadata());
}
size += unknownFields.getSerializedSize();
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
Expand All @@ -359,7 +279,7 @@ public boolean equals(final java.lang.Object obj) {
if (hasResponseMetadata()) {
if (!getResponseMetadata().equals(other.getResponseMetadata())) return false;
}
if (!unknownFields.equals(other.unknownFields)) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}

Expand All @@ -380,7 +300,7 @@ public int hashCode() {
hash = (37 * hash) + RESPONSE_METADATA_FIELD_NUMBER;
hash = (53 * hash) + getResponseMetadata().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
Expand Down Expand Up @@ -509,17 +429,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
}

// Construct using com.google.cloud.video.stitcher.v1.AdRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder() {}

private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}

private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {}
}

@java.lang.Override
Expand Down Expand Up @@ -636,7 +549,7 @@ public Builder mergeFrom(com.google.cloud.video.stitcher.v1.AdRequest other) {
if (other.hasResponseMetadata()) {
mergeResponseMetadata(other.getResponseMetadata());
}
this.mergeUnknownFields(other.unknownFields);
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
Expand All @@ -651,17 +564,50 @@ public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.video.stitcher.v1.AdRequest parsedMessage = null;
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
uri_ = input.readStringRequireUtf8();

break;
} // case 10
case 18:
{
input.readMessage(getRequestMetadataFieldBuilder().getBuilder(), extensionRegistry);

break;
} // case 18
case 26:
{
input.readMessage(
getResponseMetadataFieldBuilder().getBuilder(), extensionRegistry);

break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.cloud.video.stitcher.v1.AdRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
onChanged();
} // finally
return this;
}

Expand Down Expand Up @@ -1179,7 +1125,18 @@ public AdRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AdRequest(input, extensionRegistry);
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};

Expand Down
Loading

0 comments on commit d1b4406

Please sign in to comment.