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

Commit

Permalink
feat: add v1 client (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neenu1995 committed Apr 15, 2021
1 parent 7ba4f75 commit d89b1ac
Show file tree
Hide file tree
Showing 144 changed files with 136,108 additions and 250 deletions.
3 changes: 3 additions & 0 deletions .github/.OwlBot.lock.yaml
@@ -0,0 +1,3 @@
docker:
digest: sha256:be68f3f8f8216e2d9eb083f2721fc724c474d1b5327354fb8c7a46fcaa580316
image: gcr.io/repo-automation-bots/owlbot-java:latest
29 changes: 29 additions & 0 deletions .github/.OwlBot.yaml
@@ -0,0 +1,29 @@
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

docker:
image: "gcr.io/repo-automation-bots/owlbot-java:latest"

deep-remove-regex:
- "/grpc-google-.*/src"
- "/proto-google-.*/src"
- "/google-.*/src"

deep-copy-regex:
- source: "/google/cloud/security/privateca/(v.*)/.*-java/proto-google-.*/src"
dest: "/owl-bot-staging/$1/proto-google-cloud-security-private-ca-$1/src"
- source: "/google/cloud/security/privateca/(v.*)/.*-java/grpc-google-.*/src"
dest: "/owl-bot-staging/$1/grpc-google-cloud-security-private-ca-$1/src"
- source: "/google/cloud/security/privateca/v.*/.*-java/gapic-google-.*/src"
dest: "/owl-bot-staging/$1/google-cloud-security-private-ca/src"
19 changes: 14 additions & 5 deletions google-cloud-security-private-ca-bom/pom.xml
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?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>
Expand Down Expand Up @@ -64,21 +64,30 @@

<dependencyManagement>
<dependencies>

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-security-private-ca</artifactId>
<version>0.2.9-SNAPSHOT</version><!-- {x-version-update:google-cloud-security-private-ca:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-security-private-ca-v1beta1</artifactId>
<version>0.2.9-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-security-private-ca-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-security-private-ca-v1</artifactId>
<version>0.2.9-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-security-private-ca-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-security-private-ca-v1beta1</artifactId>
<version>0.2.9-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-security-private-ca-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-security-private-ca-v1beta1</artifactId>
<version>0.2.9-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-security-private-ca-v1beta1:current} -->
<artifactId>proto-google-cloud-security-private-ca-v1</artifactId>
<version>0.2.9-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-security-private-ca-v1:current} -->
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -94,4 +103,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
13 changes: 11 additions & 2 deletions google-cloud-security-private-ca/pom.xml
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?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>
Expand Down Expand Up @@ -42,6 +42,10 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-security-private-ca-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-security-private-ca-v1beta1</artifactId>
Expand Down Expand Up @@ -76,6 +80,11 @@
<artifactId>grpc-google-cloud-security-private-ca-v1beta1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-security-private-ca-v1</artifactId>
<scope>test</scope>
</dependency>
<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
<groupId>com.google.api</groupId>
Expand Down Expand Up @@ -108,4 +117,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit d89b1ac

Please sign in to comment.