Skip to content

Commit

Permalink
πŸ¦‰ Updates from OwlBot post-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Oct 27, 2022
1 parent 4486c50 commit ef430d5
Show file tree
Hide file tree
Showing 144 changed files with 32,013 additions and 20,083 deletions.
17 changes: 17 additions & 0 deletions java-cloudbuild/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Maven
target/

# Eclipse
.classpath
.project
.settings

# Intellij
*.iml
.idea/

# python utilities
*.pyc
__pycache__

.flattened-pom.xml
6 changes: 3 additions & 3 deletions java-cloudbuild/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-build</artifactId>
<version>3.5.6</version>
<version>3.7.0</version>
</dependency>
```

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

```Groovy
implementation 'com.google.cloud:google-cloud-build:3.5.6'
implementation 'com.google.cloud:google-cloud-build:3.7.0'
```

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

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-build" % "3.5.6"
libraryDependencies += "com.google.cloud" % "google-cloud-build" % "3.7.0"
```

## Authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import com.google.api.gax.rpc.ClientSettings;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.PagedCallSettings;
import com.google.api.gax.rpc.StubSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.cloud.devtools.cloudbuild.v1.stub.CloudBuildStubSettings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
import io.grpc.MethodDescriptor;
import io.grpc.protobuf.ProtoUtils;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import com.google.api.gax.httpjson.ProtoMessageResponseParser;
import com.google.api.gax.httpjson.ProtoRestSerializer;
import com.google.api.gax.httpjson.longrunning.stub.HttpJsonOperationsStub;
import com.google.api.gax.longrunning.OperationSnapshot;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
Expand Down Expand Up @@ -241,7 +240,8 @@ public class HttpJsonCloudBuildStub extends CloudBuildStub {
ProtoRestSerializer.create()
.toBody(
"*",
request.toBuilder()
request
.toBuilder()
.clearId()
.clearName()
.clearProjectId()
Expand Down Expand Up @@ -287,7 +287,8 @@ public class HttpJsonCloudBuildStub extends CloudBuildStub {
ProtoRestSerializer.create()
.toBody(
"*",
request.toBuilder()
request
.toBuilder()
.clearId()
.clearName()
.clearProjectId()
Expand Down
Loading

0 comments on commit ef430d5

Please sign in to comment.