Skip to content

Commit 76b3dc9

Browse files
1 parent 2181706 commit 76b3dc9

31 files changed

+351
-54
lines changed

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

clients/google-api-services-cloudfunctions/v1/2.0.0/com/google/api/services/cloudfunctions/v1/model/CloudFunction.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ public final class CloudFunction extends com.google.api.client.json.GenericJson
6565
private java.lang.String buildName;
6666

6767
/**
68-
* Optional. A service account the user provides for use with Cloud Build.
68+
* A service account the user provides for use with Cloud Build. The format of this field is
69+
* `projects/{projectId}/serviceAccounts/{serviceAccountEmail}`.
6970
* The value may be {@code null}.
7071
*/
7172
@com.google.api.client.util.Key
@@ -414,15 +415,17 @@ public CloudFunction setBuildName(java.lang.String buildName) {
414415
}
415416

416417
/**
417-
* Optional. A service account the user provides for use with Cloud Build.
418+
* A service account the user provides for use with Cloud Build. The format of this field is
419+
* `projects/{projectId}/serviceAccounts/{serviceAccountEmail}`.
418420
* @return value or {@code null} for none
419421
*/
420422
public java.lang.String getBuildServiceAccount() {
421423
return buildServiceAccount;
422424
}
423425

424426
/**
425-
* Optional. A service account the user provides for use with Cloud Build.
427+
* A service account the user provides for use with Cloud Build. The format of this field is
428+
* `projects/{projectId}/serviceAccounts/{serviceAccountEmail}`.
426429
* @param buildServiceAccount buildServiceAccount or {@code null} for none
427430
*/
428431
public CloudFunction setBuildServiceAccount(java.lang.String buildServiceAccount) {

clients/google-api-services-cloudfunctions/v1/2.0.0/com/google/api/services/cloudfunctions/v1/model/GoogleCloudFunctionsV2OperationMetadata.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudFunctionsV2OperationMetadata extends com.google.ap
3636
@com.google.api.client.util.Key
3737
private java.lang.String apiVersion;
3838

39+
/**
40+
* The build name of the function for create and update operations.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String buildName;
45+
3946
/**
4047
* Identifies whether the user has requested cancellation of the operation. Operations that have
4148
* successfully been cancelled have google.longrunning.Operation.error value with a
@@ -126,6 +133,23 @@ public GoogleCloudFunctionsV2OperationMetadata setApiVersion(java.lang.String ap
126133
return this;
127134
}
128135

136+
/**
137+
* The build name of the function for create and update operations.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.String getBuildName() {
141+
return buildName;
142+
}
143+
144+
/**
145+
* The build name of the function for create and update operations.
146+
* @param buildName buildName or {@code null} for none
147+
*/
148+
public GoogleCloudFunctionsV2OperationMetadata setBuildName(java.lang.String buildName) {
149+
this.buildName = buildName;
150+
return this;
151+
}
152+
129153
/**
130154
* Identifies whether the user has requested cancellation of the operation. Operations that have
131155
* successfully been cancelled have google.longrunning.Operation.error value with a

clients/google-api-services-cloudfunctions/v1/2.0.0/com/google/api/services/cloudfunctions/v1/model/GoogleCloudFunctionsV2alphaOperationMetadata.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudFunctionsV2alphaOperationMetadata extends com.goog
3636
@com.google.api.client.util.Key
3737
private java.lang.String apiVersion;
3838

39+
/**
40+
* The build name of the function for create and update operations.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String buildName;
45+
3946
/**
4047
* Identifies whether the user has requested cancellation of the operation. Operations that have
4148
* successfully been cancelled have google.longrunning.Operation.error value with a
@@ -126,6 +133,23 @@ public GoogleCloudFunctionsV2alphaOperationMetadata setApiVersion(java.lang.Stri
126133
return this;
127134
}
128135

136+
/**
137+
* The build name of the function for create and update operations.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.String getBuildName() {
141+
return buildName;
142+
}
143+
144+
/**
145+
* The build name of the function for create and update operations.
146+
* @param buildName buildName or {@code null} for none
147+
*/
148+
public GoogleCloudFunctionsV2alphaOperationMetadata setBuildName(java.lang.String buildName) {
149+
this.buildName = buildName;
150+
return this;
151+
}
152+
129153
/**
130154
* Identifies whether the user has requested cancellation of the operation. Operations that have
131155
* successfully been cancelled have google.longrunning.Operation.error value with a

clients/google-api-services-cloudfunctions/v1/2.0.0/com/google/api/services/cloudfunctions/v1/model/GoogleCloudFunctionsV2betaOperationMetadata.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleCloudFunctionsV2betaOperationMetadata extends com.googl
3636
@com.google.api.client.util.Key
3737
private java.lang.String apiVersion;
3838

39+
/**
40+
* The build name of the function for create and update operations.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String buildName;
45+
3946
/**
4047
* Identifies whether the user has requested cancellation of the operation. Operations that have
4148
* successfully been cancelled have google.longrunning.Operation.error value with a
@@ -126,6 +133,23 @@ public GoogleCloudFunctionsV2betaOperationMetadata setApiVersion(java.lang.Strin
126133
return this;
127134
}
128135

136+
/**
137+
* The build name of the function for create and update operations.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.String getBuildName() {
141+
return buildName;
142+
}
143+
144+
/**
145+
* The build name of the function for create and update operations.
146+
* @param buildName buildName or {@code null} for none
147+
*/
148+
public GoogleCloudFunctionsV2betaOperationMetadata setBuildName(java.lang.String buildName) {
149+
this.buildName = buildName;
150+
return this;
151+
}
152+
129153
/**
130154
* Identifies whether the user has requested cancellation of the operation. Operations that have
131155
* successfully been cancelled have google.longrunning.Operation.error value with a

clients/google-api-services-cloudfunctions/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-cloudfunctions</artifactId>
11-
<version>v1-rev20240711-2.0.0</version>
12-
<name>Cloud Functions API v1-rev20240711-2.0.0</name>
11+
<version>v1-rev20240725-2.0.0</version>
12+
<name>Cloud Functions API v1-rev20240725-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-cloudfunctions/v2/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-cloudfunctions</artifactId>
25-
<version>v2-rev20240523-2.0.0</version>
25+
<version>v2-rev20240725-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-cloudfunctions:v2-rev20240523-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudfunctions:v2-rev20240725-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudfunctions/v2/2.0.0/com/google/api/services/cloudfunctions/v2/CloudFunctions.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2033,22 +2033,21 @@ public Patch setName(java.lang.String name) {
20332033
}
20342034

20352035
/**
2036-
* The list of fields to be updated. If no field mask is provided, all provided fields in
2037-
* the request will be updated.
2036+
* The list of fields to be updated. If no field mask is provided, all fields will be
2037+
* updated.
20382038
*/
20392039
@com.google.api.client.util.Key
20402040
private String updateMask;
20412041

2042-
/** The list of fields to be updated. If no field mask is provided, all provided fields in the request
2043-
will be updated.
2042+
/** The list of fields to be updated. If no field mask is provided, all fields will be updated.
20442043
*/
20452044
public String getUpdateMask() {
20462045
return updateMask;
20472046
}
20482047

20492048
/**
2050-
* The list of fields to be updated. If no field mask is provided, all provided fields in
2051-
* the request will be updated.
2049+
* The list of fields to be updated. If no field mask is provided, all fields will be
2050+
* updated.
20522051
*/
20532052
public Patch setUpdateMask(String updateMask) {
20542053
this.updateMask = updateMask;

clients/google-api-services-cloudfunctions/v2/2.0.0/com/google/api/services/cloudfunctions/v2/model/BuildConfig.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ public final class BuildConfig extends com.google.api.client.json.GenericJson {
9898
private java.lang.String runtime;
9999

100100
/**
101-
* [Preview] Service account to be used for building the container
101+
* Service account to be used for building the container. The format of this field is
102+
* `projects/{projectId}/serviceAccounts/{serviceAccountEmail}`.
102103
* The value may be {@code null}.
103104
*/
104105
@com.google.api.client.util.Key
@@ -300,15 +301,17 @@ public BuildConfig setRuntime(java.lang.String runtime) {
300301
}
301302

302303
/**
303-
* [Preview] Service account to be used for building the container
304+
* Service account to be used for building the container. The format of this field is
305+
* `projects/{projectId}/serviceAccounts/{serviceAccountEmail}`.
304306
* @return value or {@code null} for none
305307
*/
306308
public java.lang.String getServiceAccount() {
307309
return serviceAccount;
308310
}
309311

310312
/**
311-
* [Preview] Service account to be used for building the container
313+
* Service account to be used for building the container. The format of this field is
314+
* `projects/{projectId}/serviceAccounts/{serviceAccountEmail}`.
312315
* @param serviceAccount serviceAccount or {@code null} for none
313316
*/
314317
public BuildConfig setServiceAccount(java.lang.String serviceAccount) {

0 commit comments

Comments
 (0)