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

Commit

Permalink
feat: add v2beta client (#364)
Browse files Browse the repository at this point in the history
* Update .OwlBot.yaml

* chore: add v2beta client
  • Loading branch information
Neenu1995 committed Jun 22, 2022
1 parent 901b2c2 commit 0904baa
Show file tree
Hide file tree
Showing 46 changed files with 19,623 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/.OwlBot.yaml
Expand Up @@ -33,3 +33,5 @@ deep-copy-regex:
dest: "/owl-bot-staging/v2beta/grpc-google-iam-v2beta/src"
- source: "/google/iam/v2beta/google-cloud-iam-v2beta-java/proto-google-cloud-iam-v2beta-java/src"
dest: "/owl-bot-staging/v2beta/proto-google-iam-v2beta/src"
- source: "/google/iam/v2beta/google-cloud-iam-v2beta-java/gapic-google-cloud-iam-v2beta-java/src"
dest: "/owl-bot-staging/v2beta/google-iam-policy/src"
2 changes: 1 addition & 1 deletion .repo-metadata.json
Expand Up @@ -12,6 +12,6 @@
"repo_short": "java-iam",
"library_type": "OTHER",
"distribution_name": "com.google.api.grpc:proto-google-iam-v1",
"excluded_poms": "proto-google-iam-v1-bom",
"excluded_poms": "proto-google-iam-v1-bom,google-iam-policy,proto-google-iam-v1",
"excluded_dependencies": "grpc-google-iam-v1"
}
111 changes: 111 additions & 0 deletions google-iam-policy/pom.xml
@@ -0,0 +1,111 @@
<?xml version='1.0' encoding='UTF-8'?>
<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>
<groupId>com.google.cloud</groupId>
<artifactId>google-iam-policy</artifactId>
<version>1.4.2-SNAPSHOT</version><!-- {x-version-update:google-iam-policy:current} -->
<packaging>jar</packaging>
<name>Google IAM Policy</name>
<url>https://github.com/googleapis/java-eventarc</url>
<description>Eventarc lets you asynchronously deliver events from Google services, SaaS, and your own apps using loosely coupled services that react to state changes.</description>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-iam-parent</artifactId>
<version>1.4.2-SNAPSHOT</version><!-- {x-version-update:proto-google-iam-v1:current} -->
</parent>
<properties>
<site.installationModule>google-iam-policy</site.installationModule>
</properties>
<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>api-common</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v2beta</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax-grpc</artifactId>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.13.2</version>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-iam-v2beta</artifactId>
<scope>test</scope>
</dependency>
<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
<groupId>com.google.api</groupId>
<artifactId>gax-grpc</artifactId>
<classifier>testlib</classifier>
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>java9</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0904baa

Please sign in to comment.