-
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.
Add Cloud Security Center v1 API. (#4659)
* Add Cloud Security Center v1 API. * Add securitycenter to google-cloud-bom pom.xml * Fixing code format
- Loading branch information
Showing
93 changed files
with
58,124 additions
and
4 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
google-api-grpc/grpc-google-cloud-securitycenter-v1/pom.xml
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,31 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>grpc-google-cloud-securitycenter-v1</artifactId> | ||
<version>0.47.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-securitycenter-v1:current} --> | ||
<name>grpc-google-cloud-securitycenter-v1</name> | ||
<description>GRPC library for grpc-google-cloud-securitycenter-v1</description> | ||
<parent> | ||
<groupId>com.google.api.grpc</groupId> | ||
<artifactId>google-api-grpc</artifactId> | ||
<version>0.47.1-SNAPSHOT</version><!-- {x-version-update:google-api-grpc:current} --> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-stub</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-protobuf</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.api.grpc</groupId> | ||
<artifactId>proto-google-cloud-securitycenter-v1</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
2,590 changes: 2,590 additions & 0 deletions
2,590
...ecuritycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/SecurityCenterGrpc.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
36 changes: 36 additions & 0 deletions
36
google-api-grpc/proto-google-cloud-securitycenter-v1/pom.xml
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,36 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>proto-google-cloud-securitycenter-v1</artifactId> | ||
<version>0.47.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-securitycenter-v1:current} --> | ||
<name>proto-google-cloud-securitycenter-v1</name> | ||
<description>PROTO library for proto-google-cloud-securitycenter-v1</description> | ||
<parent> | ||
<groupId>com.google.api.grpc</groupId> | ||
<artifactId>google-api-grpc</artifactId> | ||
<version>0.47.1-SNAPSHOT</version><!-- {x-version-update:google-api-grpc:current} --> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.protobuf</groupId> | ||
<artifactId>protobuf-java</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.api</groupId> | ||
<artifactId>api-common</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.api.grpc</groupId> | ||
<artifactId>proto-google-common-protos</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.api.grpc</groupId> | ||
<artifactId>proto-google-iam-v1</artifactId> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.