Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9f91ae2

Browse files
feat: add v1 for configdelivery (#11691)
b/430292353 #11689 did not work due to a snapshot PR spoiling the versions file. --------- Co-authored-by: cloud-java-bot <[email protected]>
1 parent 069be0f commit 9f91ae2

File tree

262 files changed

+116119
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+116119
-6
lines changed

generation_config.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,11 +608,12 @@ libraries:
608608
library_type: GAPIC_AUTO
609609
group_id: com.google.cloud
610610
cloud_api: true
611-
GAPICs:
612-
- proto_path: google/cloud/configdelivery/v1beta
613611
requires_billing: true
614612
rest_documentation:
615613
https://cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/reference/rest
614+
GAPICs:
615+
- proto_path: google/cloud/configdelivery/v1beta
616+
- proto_path: google/cloud/configdelivery/v1
616617
- api_shortname: connectgateway
617618
name_pretty: Connect Gateway API
618619
product_documentation:

java-configdelivery/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ If you are using Maven without the BOM, add this to your dependencies:
4545
<dependency>
4646
<groupId>com.google.cloud</groupId>
4747
<artifactId>google-cloud-configdelivery</artifactId>
48-
<version>0.2.0</version>
48+
<version>0.3.0</version>
4949
</dependency>
5050
```
5151

5252
If you are using Gradle without BOM, add this to your dependencies:
5353

5454
```Groovy
55-
implementation 'com.google.cloud:google-cloud-configdelivery:0.2.0'
55+
implementation 'com.google.cloud:google-cloud-configdelivery:0.3.0'
5656
```
5757

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

6060
```Scala
61-
libraryDependencies += "com.google.cloud" % "google-cloud-configdelivery" % "0.2.0"
61+
libraryDependencies += "com.google.cloud" % "google-cloud-configdelivery" % "0.3.0"
6262
```
6363

6464
## Authentication
@@ -200,7 +200,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
200200
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
201201
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
202202
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-configdelivery.svg
203-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-configdelivery/0.2.0
203+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-configdelivery/0.3.0
204204
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
205205
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
206206
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

java-configdelivery/google-cloud-configdelivery-bom/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,21 @@
3333
<artifactId>grpc-google-cloud-configdelivery-v1beta</artifactId>
3434
<version>0.4.0-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-configdelivery-v1beta:current} -->
3535
</dependency>
36+
<dependency>
37+
<groupId>com.google.api.grpc</groupId>
38+
<artifactId>grpc-google-cloud-configdelivery-v1</artifactId>
39+
<version>0.4.0-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-configdelivery-v1:current} -->
40+
</dependency>
3641
<dependency>
3742
<groupId>com.google.api.grpc</groupId>
3843
<artifactId>proto-google-cloud-configdelivery-v1beta</artifactId>
3944
<version>0.4.0-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-configdelivery-v1beta:current} -->
4045
</dependency>
46+
<dependency>
47+
<groupId>com.google.api.grpc</groupId>
48+
<artifactId>proto-google-cloud-configdelivery-v1</artifactId>
49+
<version>0.4.0-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-configdelivery-v1:current} -->
50+
</dependency>
4151
</dependencies>
4252
</dependencyManagement>
4353
</project>

java-configdelivery/google-cloud-configdelivery/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
<artifactId>proto-google-common-protos</artifactId>
4242
</dependency>
4343

44+
<dependency>
45+
<groupId>com.google.api.grpc</groupId>
46+
<artifactId>proto-google-cloud-configdelivery-v1</artifactId>
47+
</dependency>
4448
<dependency>
4549
<groupId>com.google.api.grpc</groupId>
4650
<artifactId>proto-google-cloud-configdelivery-v1beta</artifactId>
@@ -76,6 +80,11 @@
7680
<artifactId>grpc-google-common-protos</artifactId>
7781
<scope>test</scope>
7882
</dependency>
83+
<dependency>
84+
<groupId>com.google.api.grpc</groupId>
85+
<artifactId>grpc-google-cloud-configdelivery-v1</artifactId>
86+
<scope>test</scope>
87+
</dependency>
7988
<dependency>
8089
<groupId>com.google.api.grpc</groupId>
8190
<artifactId>grpc-google-iam-v1</artifactId>

0 commit comments

Comments
 (0)