Skip to content

Commit 03db03f

Browse files
1 parent f0b3bd8 commit 03db03f

File tree

6 files changed

+22
-169
lines changed

6 files changed

+22
-169
lines changed

clients/google-api-services-cloudbuild/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-cloudbuild</artifactId>
25-
<version>v1-rev20240607-2.0.0</version>
25+
<version>v1-rev20240627-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-cloudbuild:v1-rev20240607-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbuild:v1-rev20240627-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudbuild/v1/2.0.0/com/google/api/services/cloudbuild/v1/CloudBuild.java

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1792,8 +1792,7 @@ public class GithubEnterpriseConfigs {
17921792
* This request holds the parameters needed by the cloudbuild server. After setting any optional
17931793
* parameters, call the {@link Create#execute()} method to invoke the remote operation.
17941794
*
1795-
* @param parent Required. Name of the parent project. For example: projects/{$project_number} or
1796-
* projects/{$project_id}
1795+
* @param parent Name of the parent project. For example: projects/{$project_number} or projects/{$project_id}
17971796
* @param content the {@link com.google.api.services.cloudbuild.v1.model.GitHubEnterpriseConfig}
17981797
* @return the request
17991798
*/
@@ -1821,8 +1820,7 @@ public class Create extends CloudBuildRequest<com.google.api.services.cloudbuild
18211820
* Create#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
18221821
* be called to initialize this instance immediately after invoking the constructor. </p>
18231822
*
1824-
* @param parent Required. Name of the parent project. For example: projects/{$project_number} or
1825-
* projects/{$project_id}
1823+
* @param parent Name of the parent project. For example: projects/{$project_number} or projects/{$project_id}
18261824
* @param content the {@link com.google.api.services.cloudbuild.v1.model.GitHubEnterpriseConfig}
18271825
* @since 1.13
18281826
*/
@@ -1892,21 +1890,20 @@ public Create setUploadProtocol(java.lang.String uploadProtocol) {
18921890
}
18931891

18941892
/**
1895-
* Required. Name of the parent project. For example: projects/{$project_number} or
1893+
* Name of the parent project. For example: projects/{$project_number} or
18961894
* projects/{$project_id}
18971895
*/
18981896
@com.google.api.client.util.Key
18991897
private java.lang.String parent;
19001898

1901-
/** Required. Name of the parent project. For example: projects/{$project_number} or
1902-
projects/{$project_id}
1899+
/** Name of the parent project. For example: projects/{$project_number} or projects/{$project_id}
19031900
*/
19041901
public java.lang.String getParent() {
19051902
return parent;
19061903
}
19071904

19081905
/**
1909-
* Required. Name of the parent project. For example: projects/{$project_number} or
1906+
* Name of the parent project. For example: projects/{$project_number} or
19101907
* projects/{$project_id}
19111908
*/
19121909
public Create setParent(java.lang.String parent) {
@@ -6493,8 +6490,7 @@ public class GithubEnterpriseConfigs {
64936490
* This request holds the parameters needed by the cloudbuild server. After setting any optional
64946491
* parameters, call the {@link Create#execute()} method to invoke the remote operation.
64956492
*
6496-
* @param parent Required. Name of the parent project. For example: projects/{$project_number} or
6497-
* projects/{$project_id}
6493+
* @param parent Name of the parent project. For example: projects/{$project_number} or projects/{$project_id}
64986494
* @param content the {@link com.google.api.services.cloudbuild.v1.model.GitHubEnterpriseConfig}
64996495
* @return the request
65006496
*/
@@ -6522,8 +6518,7 @@ public class Create extends CloudBuildRequest<com.google.api.services.cloudbuild
65226518
* Create#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
65236519
* be called to initialize this instance immediately after invoking the constructor. </p>
65246520
*
6525-
* @param parent Required. Name of the parent project. For example: projects/{$project_number} or
6526-
* projects/{$project_id}
6521+
* @param parent Name of the parent project. For example: projects/{$project_number} or projects/{$project_id}
65276522
* @param content the {@link com.google.api.services.cloudbuild.v1.model.GitHubEnterpriseConfig}
65286523
* @since 1.13
65296524
*/
@@ -6593,21 +6588,20 @@ public Create setUploadProtocol(java.lang.String uploadProtocol) {
65936588
}
65946589

65956590
/**
6596-
* Required. Name of the parent project. For example: projects/{$project_number} or
6591+
* Name of the parent project. For example: projects/{$project_number} or
65976592
* projects/{$project_id}
65986593
*/
65996594
@com.google.api.client.util.Key
66006595
private java.lang.String parent;
66016596

6602-
/** Required. Name of the parent project. For example: projects/{$project_number} or
6603-
projects/{$project_id}
6597+
/** Name of the parent project. For example: projects/{$project_number} or projects/{$project_id}
66046598
*/
66056599
public java.lang.String getParent() {
66066600
return parent;
66076601
}
66086602

66096603
/**
6610-
* Required. Name of the parent project. For example: projects/{$project_number} or
6604+
* Name of the parent project. For example: projects/{$project_number} or
66116605
* projects/{$project_id}
66126606
*/
66136607
public Create setParent(java.lang.String parent) {

clients/google-api-services-cloudbuild/v1/2.0.0/com/google/api/services/cloudbuild/v1/model/GCSLocation.java

Lines changed: 0 additions & 117 deletions
This file was deleted.

clients/google-api-services-cloudbuild/v1/2.0.0/com/google/api/services/cloudbuild/v1/model/HttpConfig.java

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -30,56 +30,32 @@
3030
public final class HttpConfig extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format
34-
* protocol://@]proxyhost[:port].
33+
* SecretVersion resource of the HTTP proxy URL. The Service Account should have accessor
34+
* permissions on this secret. The proxy URL should be in format protocol://@]proxyhost[:port].
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.String proxySecretVersionName;
3939

4040
/**
41-
* Optional. Cloud Storage object storing the certificate to use with the HTTP proxy.
42-
* The value may be {@code null}.
43-
*/
44-
@com.google.api.client.util.Key
45-
private GCSLocation proxySslCaInfo;
46-
47-
/**
48-
* SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format
49-
* protocol://@]proxyhost[:port].
41+
* SecretVersion resource of the HTTP proxy URL. The Service Account should have accessor
42+
* permissions on this secret. The proxy URL should be in format protocol://@]proxyhost[:port].
5043
* @return value or {@code null} for none
5144
*/
5245
public java.lang.String getProxySecretVersionName() {
5346
return proxySecretVersionName;
5447
}
5548

5649
/**
57-
* SecretVersion resource of the HTTP proxy URL. The proxy URL should be in format
58-
* protocol://@]proxyhost[:port].
50+
* SecretVersion resource of the HTTP proxy URL. The Service Account should have accessor
51+
* permissions on this secret. The proxy URL should be in format protocol://@]proxyhost[:port].
5952
* @param proxySecretVersionName proxySecretVersionName or {@code null} for none
6053
*/
6154
public HttpConfig setProxySecretVersionName(java.lang.String proxySecretVersionName) {
6255
this.proxySecretVersionName = proxySecretVersionName;
6356
return this;
6457
}
6558

66-
/**
67-
* Optional. Cloud Storage object storing the certificate to use with the HTTP proxy.
68-
* @return value or {@code null} for none
69-
*/
70-
public GCSLocation getProxySslCaInfo() {
71-
return proxySslCaInfo;
72-
}
73-
74-
/**
75-
* Optional. Cloud Storage object storing the certificate to use with the HTTP proxy.
76-
* @param proxySslCaInfo proxySslCaInfo or {@code null} for none
77-
*/
78-
public HttpConfig setProxySslCaInfo(GCSLocation proxySslCaInfo) {
79-
this.proxySslCaInfo = proxySslCaInfo;
80-
return this;
81-
}
82-
8359
@Override
8460
public HttpConfig set(String fieldName, Object value) {
8561
return (HttpConfig) super.set(fieldName, value);

clients/google-api-services-cloudbuild/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-cloudbuild</artifactId>
11-
<version>v1-rev20240607-2.0.0</version>
12-
<name>Cloud Build API v1-rev20240607-2.0.0</name>
11+
<version>v1-rev20240627-2.0.0</version>
12+
<name>Cloud Build API v1-rev20240627-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudbuild/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-cloudbuild</artifactId>
25-
<version>v1-rev20240607-2.0.0</version>
25+
<version>v1-rev20240627-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-cloudbuild:v1-rev20240607-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbuild:v1-rev20240627-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)