-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added support for BigQuery destination and PostgreSQL source ty…
…pes (#198) - [ ] Regenerate this pull request now. PiperOrigin-RevId: 469482613 Source-Link: googleapis/googleapis@441339a Source-Link: https://github.com/googleapis/googleapis-gen/commit/7ac2e52b36f2f84950bb471126c543b9e88e75d2 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiN2FjMmU1MmIzNmYyZjg0OTUwYmI0NzExMjZjNTQzYjllODhlNzVkMiJ9
- Loading branch information
1 parent
92bc164
commit 3cdb8d1
Showing
49 changed files
with
20,512 additions
and
1,249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
...m/google-cloud-datastream/src/test/java/com/google/cloud/datastream/v1/MockIAMPolicy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright 2022 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.cloud.datastream.v1; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.api.gax.grpc.testing.MockGrpcService; | ||
import com.google.protobuf.AbstractMessage; | ||
import io.grpc.ServerServiceDefinition; | ||
import java.util.List; | ||
import javax.annotation.Generated; | ||
|
||
@BetaApi | ||
@Generated("by gapic-generator-java") | ||
public class MockIAMPolicy implements MockGrpcService { | ||
private final MockIAMPolicyImpl serviceImpl; | ||
|
||
public MockIAMPolicy() { | ||
serviceImpl = new MockIAMPolicyImpl(); | ||
} | ||
|
||
@Override | ||
public List<AbstractMessage> getRequests() { | ||
return serviceImpl.getRequests(); | ||
} | ||
|
||
@Override | ||
public void addResponse(AbstractMessage response) { | ||
serviceImpl.addResponse(response); | ||
} | ||
|
||
@Override | ||
public void addException(Exception exception) { | ||
serviceImpl.addException(exception); | ||
} | ||
|
||
@Override | ||
public ServerServiceDefinition getServiceDefinition() { | ||
return serviceImpl.bindService(); | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
serviceImpl.reset(); | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
...ogle-cloud-datastream/src/test/java/com/google/cloud/datastream/v1/MockIAMPolicyImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright 2022 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.cloud.datastream.v1; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.iam.v1.IAMPolicyGrpc.IAMPolicyImplBase; | ||
import com.google.protobuf.AbstractMessage; | ||
import java.util.ArrayList; | ||
import java.util.LinkedList; | ||
import java.util.List; | ||
import java.util.Queue; | ||
import javax.annotation.Generated; | ||
|
||
@BetaApi | ||
@Generated("by gapic-generator-java") | ||
public class MockIAMPolicyImpl extends IAMPolicyImplBase { | ||
private List<AbstractMessage> requests; | ||
private Queue<Object> responses; | ||
|
||
public MockIAMPolicyImpl() { | ||
requests = new ArrayList<>(); | ||
responses = new LinkedList<>(); | ||
} | ||
|
||
public List<AbstractMessage> getRequests() { | ||
return requests; | ||
} | ||
|
||
public void addResponse(AbstractMessage response) { | ||
responses.add(response); | ||
} | ||
|
||
public void setResponses(List<AbstractMessage> responses) { | ||
this.responses = new LinkedList<Object>(responses); | ||
} | ||
|
||
public void addException(Exception exception) { | ||
responses.add(exception); | ||
} | ||
|
||
public void reset() { | ||
requests = new ArrayList<>(); | ||
responses = new LinkedList<>(); | ||
} | ||
} |
Oops, something went wrong.