Skip to content

Commit 024606e

Browse files
1 parent bedf2ea commit 024606e

File tree

12 files changed

+375
-18
lines changed

12 files changed

+375
-18
lines changed

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

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.appengine.v1.model;
18+
19+
/**
20+
* The request that is passed to CLH during per-resource events. The request will be sent with
21+
* update semantics in all cases except for data governance purge events. These events will be sent
22+
* with delete semantics and the CLH is expected to delete the resource receiving this event.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the App Engine Admin API. For a detailed explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class ResourceEvent extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls.
36+
* required
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String eventId;
41+
42+
/**
43+
* The name of the resource for which this event is. required
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String name;
48+
49+
/**
50+
* The state of the project that led to this event.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private ContainerState state;
55+
56+
/**
57+
* The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls.
58+
* required
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.String getEventId() {
62+
return eventId;
63+
}
64+
65+
/**
66+
* The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls.
67+
* required
68+
* @param eventId eventId or {@code null} for none
69+
*/
70+
public ResourceEvent setEventId(java.lang.String eventId) {
71+
this.eventId = eventId;
72+
return this;
73+
}
74+
75+
/**
76+
* The name of the resource for which this event is. required
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.String getName() {
80+
return name;
81+
}
82+
83+
/**
84+
* The name of the resource for which this event is. required
85+
* @param name name or {@code null} for none
86+
*/
87+
public ResourceEvent setName(java.lang.String name) {
88+
this.name = name;
89+
return this;
90+
}
91+
92+
/**
93+
* The state of the project that led to this event.
94+
* @return value or {@code null} for none
95+
*/
96+
public ContainerState getState() {
97+
return state;
98+
}
99+
100+
/**
101+
* The state of the project that led to this event.
102+
* @param state state or {@code null} for none
103+
*/
104+
public ResourceEvent setState(ContainerState state) {
105+
this.state = state;
106+
return this;
107+
}
108+
109+
@Override
110+
public ResourceEvent set(String fieldName, Object value) {
111+
return (ResourceEvent) super.set(fieldName, value);
112+
}
113+
114+
@Override
115+
public ResourceEvent clone() {
116+
return (ResourceEvent) super.clone();
117+
}
118+
119+
}

clients/google-api-services-appengine/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-appengine</artifactId>
11-
<version>v1-rev20241007-2.0.0</version>
12-
<name>App Engine Admin API v1-rev20241007-2.0.0</name>
11+
<version>v1-rev20241118-2.0.0</version>
12+
<name>App Engine Admin API v1-rev20241118-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-appengine/v1alpha/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-appengine</artifactId>
25-
<version>v1alpha-rev20240906-2.0.0</version>
25+
<version>v1alpha-rev20241118-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-appengine:v1alpha-rev20240906-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appengine:v1alpha-rev20241118-2.0.0'
3939
}
4040
```
4141

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.appengine.model;
18+
19+
/**
20+
* The request that is passed to CLH during per-resource events. The request will be sent with
21+
* update semantics in all cases except for data governance purge events. These events will be sent
22+
* with delete semantics and the CLH is expected to delete the resource receiving this event.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the App Engine Admin API. For a detailed explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class ResourceEvent extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls.
36+
* required
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String eventId;
41+
42+
/**
43+
* The name of the resource for which this event is. required
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String name;
48+
49+
/**
50+
* The state of the project that led to this event.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private ContainerState state;
55+
56+
/**
57+
* The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls.
58+
* required
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.String getEventId() {
62+
return eventId;
63+
}
64+
65+
/**
66+
* The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls.
67+
* required
68+
* @param eventId eventId or {@code null} for none
69+
*/
70+
public ResourceEvent setEventId(java.lang.String eventId) {
71+
this.eventId = eventId;
72+
return this;
73+
}
74+
75+
/**
76+
* The name of the resource for which this event is. required
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.String getName() {
80+
return name;
81+
}
82+
83+
/**
84+
* The name of the resource for which this event is. required
85+
* @param name name or {@code null} for none
86+
*/
87+
public ResourceEvent setName(java.lang.String name) {
88+
this.name = name;
89+
return this;
90+
}
91+
92+
/**
93+
* The state of the project that led to this event.
94+
* @return value or {@code null} for none
95+
*/
96+
public ContainerState getState() {
97+
return state;
98+
}
99+
100+
/**
101+
* The state of the project that led to this event.
102+
* @param state state or {@code null} for none
103+
*/
104+
public ResourceEvent setState(ContainerState state) {
105+
this.state = state;
106+
return this;
107+
}
108+
109+
@Override
110+
public ResourceEvent set(String fieldName, Object value) {
111+
return (ResourceEvent) super.set(fieldName, value);
112+
}
113+
114+
@Override
115+
public ResourceEvent clone() {
116+
return (ResourceEvent) super.clone();
117+
}
118+
119+
}

clients/google-api-services-appengine/v1alpha/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-appengine</artifactId>
11-
<version>v1alpha-rev20240906-2.0.0</version>
12-
<name>App Engine Admin API v1alpha-rev20240906-2.0.0</name>
11+
<version>v1alpha-rev20241118-2.0.0</version>
12+
<name>App Engine Admin API v1alpha-rev20241118-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-appengine/v1alpha/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-appengine</artifactId>
25-
<version>v1alpha-rev20240906-2.0.0</version>
25+
<version>v1alpha-rev20241118-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-appengine:v1alpha-rev20240906-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appengine:v1alpha-rev20241118-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-appengine/v1beta/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-appengine</artifactId>
25-
<version>v1beta-rev20241007-2.0.0</version>
25+
<version>v1beta-rev20241118-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-appengine:v1beta-rev20241007-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appengine:v1beta-rev20241118-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)