Skip to content

Commit 1d8df41

Browse files
1 parent dcfa603 commit 1d8df41

File tree

8 files changed

+288
-12
lines changed

8 files changed

+288
-12
lines changed

clients/google-api-services-artifactregistry/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1-rev20240809-2.0.0</version>
25+
<version>v1-rev20240826-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240809-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240826-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1/2.0.0/com/google/api/services/artifactregistry/v1/ArtifactRegistry.java

Lines changed: 244 additions & 0 deletions
Large diffs are not rendered by default.

clients/google-api-services-artifactregistry/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-artifactregistry</artifactId>
11-
<version>v1-rev20240809-2.0.0</version>
12-
<name>Artifact Registry API v1-rev20240809-2.0.0</name>
11+
<version>v1-rev20240826-2.0.0</version>
12+
<name>Artifact Registry API v1-rev20240826-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-artifactregistry/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1-rev20240809-2.0.0</version>
25+
<version>v1-rev20240826-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240809-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240826-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1beta2/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1beta2-rev20240809-2.0.0</version>
25+
<version>v1beta2-rev20240826-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20240809-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20240826-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1beta2/2.0.0/com/google/api/services/artifactregistry/v1beta2/ArtifactRegistry.java

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1744,6 +1744,22 @@ public List setParent(java.lang.String parent) {
17441744
return this;
17451745
}
17461746

1747+
/** Optional. The field to order the results by. */
1748+
@com.google.api.client.util.Key
1749+
private java.lang.String orderBy;
1750+
1751+
/** Optional. The field to order the results by.
1752+
*/
1753+
public java.lang.String getOrderBy() {
1754+
return orderBy;
1755+
}
1756+
1757+
/** Optional. The field to order the results by. */
1758+
public List setOrderBy(java.lang.String orderBy) {
1759+
this.orderBy = orderBy;
1760+
return this;
1761+
}
1762+
17471763
/** The maximum number of repositories to return. Maximum page size is 1,000. */
17481764
@com.google.api.client.util.Key
17491765
private java.lang.Integer pageSize;
@@ -3600,6 +3616,22 @@ public List setParent(java.lang.String parent) {
36003616
return this;
36013617
}
36023618

3619+
/** Optional. The field to order the results by. */
3620+
@com.google.api.client.util.Key
3621+
private java.lang.String orderBy;
3622+
3623+
/** Optional. The field to order the results by.
3624+
*/
3625+
public java.lang.String getOrderBy() {
3626+
return orderBy;
3627+
}
3628+
3629+
/** Optional. The field to order the results by. */
3630+
public List setOrderBy(java.lang.String orderBy) {
3631+
this.orderBy = orderBy;
3632+
return this;
3633+
}
3634+
36033635
/** The maximum number of packages to return. Maximum page size is 1,000. */
36043636
@com.google.api.client.util.Key
36053637
private java.lang.Integer pageSize;

clients/google-api-services-artifactregistry/v1beta2/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-artifactregistry</artifactId>
11-
<version>v1beta2-rev20240809-2.0.0</version>
12-
<name>Artifact Registry API v1beta2-rev20240809-2.0.0</name>
11+
<version>v1beta2-rev20240826-2.0.0</version>
12+
<name>Artifact Registry API v1beta2-rev20240826-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-artifactregistry/v1beta2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1beta2-rev20240809-2.0.0</version>
25+
<version>v1beta2-rev20240826-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20240809-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20240826-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)