@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919 <dependency >
2020 <groupId >com.google.cloud</groupId >
2121 <artifactId >libraries-bom</artifactId >
22- <version >26.43 .0</version >
22+ <version >26.44 .0</version >
2323 <type >pom</type >
2424 <scope >import</scope >
2525 </dependency >
@@ -35,7 +35,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
3535 <groupId >com.google.cloud</groupId >
3636 <artifactId >google-cloud-storage-control</artifactId >
3737 </dependency >
38-
38+ </ dependencies >
3939```
4040
4141If you are using Maven without the BOM, add this to your dependencies:
@@ -51,28 +51,31 @@ If you are using Maven without the BOM, add this to your dependencies:
5151<dependency >
5252 <groupId >com.google.cloud</groupId >
5353 <artifactId >google-cloud-storage-control</artifactId >
54- <version >2.41.1-SNAPSHOT </version > <!-- {x-version-update:google-cloud-storage:current} -- >
54+ <version >2.41.0 </version >
5555</dependency >
5656
5757```
5858
5959If you are using Gradle 5.x or later, add this to your dependencies:
6060
6161``` Groovy
62- implementation platform('com.google.cloud:libraries-bom:2.41 .0')
62+ implementation platform('com.google.cloud:libraries-bom:26.44 .0')
6363
6464implementation 'com.google.cloud:google-cloud-storage'
65+ implementation 'com.google.cloud:google-cloud-storage-control'
6566```
6667If you are using Gradle without BOM, add this to your dependencies:
6768
6869``` Groovy
6970implementation 'com.google.cloud:google-cloud-storage:2.41.0'
71+ implementation 'com.google.cloud:google-cloud-storage-control:2.41.0'
7072```
7173
7274If you are using SBT, add this to your dependencies:
7375
7476``` Scala
7577libraryDependencies += " com.google.cloud" % " google-cloud-storage" % " 2.41.0"
78+ libraryDependencies += " com.google.cloud" % " google-cloud-storage-control" % " 2.41.0"
7679```
7780<!-- {x-version-update-end} -->
7881
@@ -121,7 +124,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
121124 <dependency >
122125 <groupId >com.google.cloud</groupId >
123126 <artifactId >libraries-bom</artifactId >
124- <version >26.37 .0</version >
127+ <version >26.44 .0</version >
125128 <type >pom</type >
126129 <scope >import</scope >
127130 </dependency >
@@ -130,9 +133,10 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
130133
131134<dependencies >
132135 <dependency >
133- <groupId >com.google.cloud</groupId >
134- <artifactId >google-cloud-storage-control</artifactId >
135- </dependency >
136+ <groupId >com.google.cloud</groupId >
137+ <artifactId >google-cloud-storage-control</artifactId >
138+ </dependency >
139+ </dependencies >
136140```
137141
138142If you are using Maven without the BOM, add this to your dependencies:
@@ -141,19 +145,19 @@ If you are using Maven without the BOM, add this to your dependencies:
141145<dependency >
142146 <groupId >com.google.cloud</groupId >
143147 <artifactId >google-cloud-storage-control</artifactId >
144- <version >2.41.1-SNAPSHOT </version > <!-- {x-version-update:google-cloud-storage-control:current} -- >
148+ <version >2.41.0 </version >
145149</dependency >
146150```
147151
148152If you are using Gradle 5.x or later, add this to your dependencies:
149153``` Groovy
150- implementation platform('com.google.cloud:libraries-bom:2.41 .0')
154+ implementation platform('com.google.cloud:libraries-bom:26.44 .0')
151155implementation 'com.google.cloud:google-cloud-storage-control'
152156```
153157If you are using Gradle without BOM, add this to your dependencies:
154158
155159``` Groovy
156- implementation 'com.google.cloud:google-cloud-storage-control:2.41.1-SNAPSHOT' <!-- {x-version-update:google-cloud-storage-control:current} -->
160+ implementation 'com.google.cloud:google-cloud-storage-control:2.41.0'
157161```
158162
159163#### Creating an authorized service object
0 commit comments