Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
60cb7f2
chore: Set `rest_numeric_enums = False` for all gapic rules explicitly
gcf-owl-bot[bot] Nov 2, 2022
2ad16ac
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Nov 2, 2022
21a0d4e
feat: Add files field to finding's list of attributes
gcf-owl-bot[bot] Nov 14, 2022
46e4a90
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Nov 14, 2022
c4b5a89
chore: Enable requesting numeric enums in "transport=rest" responses …
gcf-owl-bot[bot] Dec 6, 2022
d9f8acd
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Dec 6, 2022
217a504
feat: add kernel_rootkit field to finding's list of attributes
gcf-owl-bot[bot] Dec 6, 2022
f367f52
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Dec 6, 2022
f3b3511
feat: add user_name field to the finding access
gcf-owl-bot[bot] Dec 14, 2022
0c78de2
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Dec 14, 2022
fb19e8d
chore: regenerate API index
gcf-owl-bot[bot] Jan 9, 2023
33790ef
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jan 9, 2023
c297879
docs: Update documentation for Security Command Center *.assets.list …
gcf-owl-bot[bot] Jan 12, 2023
e6366ba
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jan 12, 2023
196330d
chore(bazel): update protobuf to v3.21.12
gcf-owl-bot[bot] Jan 20, 2023
32f3c84
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jan 20, 2023
abb2407
chore: update import paths for Go targets to match open source location
gcf-owl-bot[bot] Feb 3, 2023
8a87f49
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Feb 3, 2023
e22e587
fix: Add service_yaml_parameters to `java_gapic_library` targets
gcf-owl-bot[bot] Mar 10, 2023
257af9c
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Mar 10, 2023
2acae28
chore(deps): Update gapic-generator-java to 2.15.3
gcf-owl-bot[bot] Mar 15, 2023
8f24286
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Mar 15, 2023
61f787b
chore(deps): Update gapic-generator-java to 2.16.0
gcf-owl-bot[bot] Mar 29, 2023
bbdf189
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Mar 29, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,20 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies:

```Groovy
implementation platform('com.google.cloud:libraries-bom:26.1.3')
implementation platform('com.google.cloud:libraries-bom:26.11.0')

implementation 'com.google.cloud:google-cloud-securitycenter'
```
If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-securitycenter:2.11.1'
implementation 'com.google.cloud:google-cloud-securitycenter:2.21.0'
```

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

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-securitycenter" % "2.11.1"
libraryDependencies += "com.google.cloud" % "google-cloud-securitycenter" % "2.21.0"
```

## Authentication
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@
* securityCenterSettingsBuilder
* .createSourceSettings()
* .setRetrySettings(
* securityCenterSettingsBuilder.createSourceSettings().getRetrySettings().toBuilder()
* securityCenterSettingsBuilder
* .createSourceSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* SecurityCenterSettings securityCenterSettings = securityCenterSettingsBuilder.build();
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@
* securityCenterSettingsBuilder
* .createSourceSettings()
* .setRetrySettings(
* securityCenterSettingsBuilder.createSourceSettings().getRetrySettings().toBuilder()
* securityCenterSettingsBuilder
* .createSourceSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* SecurityCenterStubSettings securityCenterSettings = securityCenterSettingsBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,7 @@
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* SecurityCenterSettings securityCenterSettings =
* SecurityCenterSettings.newBuilder()
* .setTransportChannelProvider(
* SecurityCenterSettings.defaultHttpJsonTransportProviderBuilder().build())
* .build();
* SecurityCenterSettings.newHttpJsonBuilder().build();
* SecurityCenterClient securityCenterClient = SecurityCenterClient.create(securityCenterSettings);
* }</pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@
* securityCenterSettingsBuilder
* .createSourceSettings()
* .setRetrySettings(
* securityCenterSettingsBuilder.createSourceSettings().getRetrySettings().toBuilder()
* securityCenterSettingsBuilder
* .createSourceSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* SecurityCenterSettings securityCenterSettings = securityCenterSettingsBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
*/

/**
* The interfaces provided are listed below, along with usage samples.
* A client to Security Command Center API
*
* <p>The interfaces provided are listed below, along with usage samples.
*
* <p>======================= SecurityCenterClient =======================
*
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@
* securityCenterSettingsBuilder
* .createSourceSettings()
* .setRetrySettings(
* securityCenterSettingsBuilder.createSourceSettings().getRetrySettings().toBuilder()
* securityCenterSettingsBuilder
* .createSourceSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* SecurityCenterStubSettings securityCenterSettings = securityCenterSettingsBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,7 @@
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* SecurityCenterSettings securityCenterSettings =
* SecurityCenterSettings.newBuilder()
* .setTransportChannelProvider(
* SecurityCenterSettings.defaultHttpJsonTransportProviderBuilder().build())
* .build();
* SecurityCenterSettings.newHttpJsonBuilder().build();
* SecurityCenterClient securityCenterClient = SecurityCenterClient.create(securityCenterSettings);
* }</pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@
* securityCenterSettingsBuilder
* .createSourceSettings()
* .setRetrySettings(
* securityCenterSettingsBuilder.createSourceSettings().getRetrySettings().toBuilder()
* securityCenterSettingsBuilder
* .createSourceSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* SecurityCenterSettings securityCenterSettings = securityCenterSettingsBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
*/

/**
* The interfaces provided are listed below, along with usage samples.
* A client to Security Command Center API
*
* <p>The interfaces provided are listed below, along with usage samples.
*
* <p>======================= SecurityCenterClient =======================
*
Expand Down
Loading