Skip to content

Commit 3292eea

Browse files
1 parent dd86b61 commit 3292eea

File tree

8 files changed

+60
-12
lines changed

8 files changed

+60
-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-rev20240708-2.0.0</version>
25+
<version>v1-rev20240717-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-rev20240708-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240717-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class ProjectSettings extends com.google.api.client.json.GenericJso
4545
@com.google.api.client.util.Key
4646
private java.lang.String name;
4747

48+
/**
49+
* The percentage of pull traffic to redirect from GCR to AR when using partial redirection.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Integer pullPercent;
54+
4855
/**
4956
* The redirection state of the legacy repositories in this project.
5057
* @return value or {@code null} for none
@@ -81,6 +88,23 @@ public ProjectSettings setName(java.lang.String name) {
8188
return this;
8289
}
8390

91+
/**
92+
* The percentage of pull traffic to redirect from GCR to AR when using partial redirection.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.Integer getPullPercent() {
96+
return pullPercent;
97+
}
98+
99+
/**
100+
* The percentage of pull traffic to redirect from GCR to AR when using partial redirection.
101+
* @param pullPercent pullPercent or {@code null} for none
102+
*/
103+
public ProjectSettings setPullPercent(java.lang.Integer pullPercent) {
104+
this.pullPercent = pullPercent;
105+
return this;
106+
}
107+
84108
@Override
85109
public ProjectSettings set(String fieldName, Object value) {
86110
return (ProjectSettings) super.set(fieldName, value);

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-rev20240708-2.0.0</version>
12-
<name>Artifact Registry API v1-rev20240708-2.0.0</name>
11+
<version>v1-rev20240717-2.0.0</version>
12+
<name>Artifact Registry API v1-rev20240717-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-rev20240708-2.0.0</version>
25+
<version>v1-rev20240717-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-rev20240708-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240717-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-rev20240603-2.0.0</version>
25+
<version>v1beta2-rev20240717-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-rev20240603-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20240717-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class ProjectSettings extends com.google.api.client.json.GenericJso
4545
@com.google.api.client.util.Key
4646
private java.lang.String name;
4747

48+
/**
49+
* The percentage of pull traffic to redirect from GCR to AR when using partial redirection.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Integer pullPercent;
54+
4855
/**
4956
* The redirection state of the legacy repositories in this project.
5057
* @return value or {@code null} for none
@@ -81,6 +88,23 @@ public ProjectSettings setName(java.lang.String name) {
8188
return this;
8289
}
8390

91+
/**
92+
* The percentage of pull traffic to redirect from GCR to AR when using partial redirection.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.Integer getPullPercent() {
96+
return pullPercent;
97+
}
98+
99+
/**
100+
* The percentage of pull traffic to redirect from GCR to AR when using partial redirection.
101+
* @param pullPercent pullPercent or {@code null} for none
102+
*/
103+
public ProjectSettings setPullPercent(java.lang.Integer pullPercent) {
104+
this.pullPercent = pullPercent;
105+
return this;
106+
}
107+
84108
@Override
85109
public ProjectSettings set(String fieldName, Object value) {
86110
return (ProjectSettings) super.set(fieldName, value);

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-rev20240603-2.0.0</version>
12-
<name>Artifact Registry API v1beta2-rev20240603-2.0.0</name>
11+
<version>v1beta2-rev20240717-2.0.0</version>
12+
<name>Artifact Registry API v1beta2-rev20240717-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-rev20240603-2.0.0</version>
25+
<version>v1beta2-rev20240717-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-rev20240603-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1beta2-rev20240717-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)