Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Asset client #3591

Merged
merged 5 commits into from
Aug 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ This library supports the following Google Cloud Platform services with clients
This library supports the following Google Cloud Platform services with clients at a [Beta](#versioning) quality level:

- [BigQuery Data Transfer](google-cloud-clients/google-cloud-bigquerydatatransfer) (Beta)
- [Cloud Asset](google-cloud-clients/google-cloud-asset) (Beta)
- [Cloud AutoML](google-cloud-clients/google-cloud-automl) (Beta)
- [Cloud Container Analysis](google-cloud-clients/google-cloud-containeranalysis) (Beta)
- [Cloud Data Loss Prevention](google-cloud-clients/google-cloud-dlp) (Beta)
Expand Down
31 changes: 31 additions & 0 deletions google-api-grpc/grpc-google-cloud-asset-v1beta1/pom.xml
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-asset-v1beta1</artifactId>
<version>0.23.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-asset-v1beta1:current} -->
<name>grpc-google-cloud-asset-v1beta1</name>
<description>GRPC library for grpc-google-cloud-asset-v1beta1</description>
<parent>
<groupId>com.google.api.grpc</groupId>
<artifactId>google-api-grpc</artifactId>
<version>0.23.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-asset-v1beta1</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions google-api-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,16 @@
</dependency>

<!-- API-specific dependencies -->
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-asset-v1beta1</artifactId>
<version>0.23.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-asset-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-asset-v1beta1</artifactId>
<version>0.23.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-asset-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-automl-v1beta1</artifactId>
Expand Down Expand Up @@ -560,6 +570,7 @@
</dependencyManagement>

<modules>
<module>grpc-google-cloud-asset-v1beta1</module>
<module>grpc-google-cloud-automl-v1beta1</module>
<module>grpc-google-cloud-bigquerydatatransfer-v1</module>
<module>grpc-google-cloud-bigtable-admin-v2</module>
Expand Down Expand Up @@ -603,6 +614,7 @@
<module>grpc-google-cloud-redis-v1beta1</module>
<module>grpc-google-cloud-websecurityscanner-v1alpha</module>

<module>proto-google-cloud-asset-v1beta1</module>
<module>proto-google-cloud-automl-v1beta1</module>
<module>proto-google-cloud-bigquerydatatransfer-v1</module>
<module>proto-google-cloud-bigtable-admin-v2</module>
Expand Down
36 changes: 36 additions & 0 deletions google-api-grpc/proto-google-cloud-asset-v1beta1/pom.xml
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-asset-v1beta1</artifactId>
<version>0.23.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-asset-v1beta1:current} -->
<name>proto-google-cloud-asset-v1beta1</name>
<description>PROTO library for proto-google-cloud-asset-v1beta1</description>
<parent>
<groupId>com.google.api.grpc</groupId>
<artifactId>google-api-grpc</artifactId>
<version>0.23.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>
Loading