Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
feat: add Resource to ListFindingsResult (#27)
Browse files Browse the repository at this point in the history
* [CHANGE ME] Re-generated  to pick up changes in the API or client library generator.

* chore: allow proto interface changes

Co-authored-by: Jeff Ching <chingor@google.com>
  • Loading branch information
yoshi-automation and chingor13 committed Dec 23, 2019
1 parent 0a961e4 commit 66d9b4a
Show file tree
Hide file tree
Showing 162 changed files with 10,998 additions and 1,979 deletions.
43 changes: 43 additions & 0 deletions .gitignore
@@ -0,0 +1,43 @@
# Packages
dist
bin
var
sdist
target

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg

.metadata
.project
.pydevproject
*.iml
.idea
.settings
.DS_Store
.classpath

# Built documentation
docs/


# Wheel directory used in Travis builds.
gcloud-java-wheels/
src/test/resources/gcd-head.zip
src/test/resources/gcd-v1beta2-rev1-2.1.1.zip

# API key file containing value of GOOGLE_API_KEY for integration tests
api_key

# Python utilities
*.pyc
artman-genfiles
venv
Expand Up @@ -700,9 +700,9 @@ public static class Builder extends StubSettings.Builder<SecurityCenterStubSetti
.setInitialRetryDelay(Duration.ofMillis(100L))
.setRetryDelayMultiplier(1.3)
.setMaxRetryDelay(Duration.ofMillis(60000L))
.setInitialRpcTimeout(Duration.ofMillis(20000L))
.setInitialRpcTimeout(Duration.ofMillis(480000L))
.setRpcTimeoutMultiplier(1.0)
.setMaxRpcTimeout(Duration.ofMillis(20000L))
.setMaxRpcTimeout(Duration.ofMillis(480000L))
.setTotalTimeout(Duration.ofMillis(600000L))
.build();
definitions.put("default", settings);
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -1201,7 +1201,7 @@ public void groupAssets(
* Filters an organization or source's findings and groups them by their
* specified properties.
* To group across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public void groupFindings(
Expand Down Expand Up @@ -1231,7 +1231,7 @@ public void listAssets(
* <pre>
* Lists an organization or source's findings.
* To list across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public void listFindings(
Expand Down Expand Up @@ -1631,7 +1631,7 @@ public void groupAssets(
* Filters an organization or source's findings and groups them by their
* specified properties.
* To group across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public void groupFindings(
Expand Down Expand Up @@ -1667,7 +1667,7 @@ public void listAssets(
* <pre>
* Lists an organization or source's findings.
* To list across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public void listFindings(
Expand Down Expand Up @@ -1945,7 +1945,7 @@ public com.google.cloud.securitycenter.v1beta1.GroupAssetsResponse groupAssets(
* Filters an organization or source's findings and groups them by their
* specified properties.
* To group across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public com.google.cloud.securitycenter.v1beta1.GroupFindingsResponse groupFindings(
Expand Down Expand Up @@ -1973,7 +1973,7 @@ public com.google.cloud.securitycenter.v1beta1.ListAssetsResponse listAssets(
* <pre>
* Lists an organization or source's findings.
* To list across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public com.google.cloud.securitycenter.v1beta1.ListFindingsResponse listFindings(
Expand Down Expand Up @@ -2221,7 +2221,7 @@ protected SecurityCenterFutureStub build(
* Filters an organization or source's findings and groups them by their
* specified properties.
* To group across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public com.google.common.util.concurrent.ListenableFuture<
Expand Down Expand Up @@ -2251,7 +2251,7 @@ protected SecurityCenterFutureStub build(
* <pre>
* Lists an organization or source's findings.
* To list across all sources provide a `-` as the source id.
* Example: /v1beta1/organizations/123/sources/-/findings
* Example: /v1beta1/organizations/{organization_id}/sources/-/findings
* </pre>
*/
public com.google.common.util.concurrent.ListenableFuture<
Expand Down
19 changes: 19 additions & 0 deletions proto-google-cloud-securitycenter-v1/clirr-ignored-differences.xml
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
<differences>
<difference>
<differenceType>7012</differenceType>
<className>com/google/cloud/securitycenter/v1/*OrBuilder</className>
<method>* get*(*)</method>
</difference>
<difference>
<differenceType>7012</differenceType>
<className>com/google/cloud/securitycenter/v1/*OrBuilder</className>
<method>boolean contains*(*)</method>
</difference>
<difference>
<differenceType>7012</differenceType>
<className>com/google/cloud/securitycenter/v1/*OrBuilder</className>
<method>boolean has*(*)</method>
</difference>
</differences>

0 comments on commit 66d9b4a

Please sign in to comment.