Skip to content

Commit 89f9967

Browse files
1 parent 8d579b6 commit 89f9967

File tree

6 files changed

+351
-6
lines changed

6 files changed

+351
-6
lines changed

clients/google-api-services-alertcenter/v1beta1/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-alertcenter</artifactId>
25-
<version>v1beta1-rev20251117-2.0.0</version>
25+
<version>v1beta1-rev20260316-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-alertcenter:v1beta1-rev20251117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alertcenter:v1beta1-rev20260316-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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.alertcenter.v1beta1.model;
18+
19+
/**
20+
* Alerts for client-side encryption outages.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Workspace Alert Center API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ClientSideEncryptionServiceUnavailable extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Identity providers impacted by an outage or misconfiguration.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<IdentityProviderError> idpError;
39+
40+
/**
41+
* External key services impacted by an outage or misconfiguration.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<KeyServiceError> keyServiceError;
46+
47+
/**
48+
* Identity providers impacted by an outage or misconfiguration.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.util.List<IdentityProviderError> getIdpError() {
52+
return idpError;
53+
}
54+
55+
/**
56+
* Identity providers impacted by an outage or misconfiguration.
57+
* @param idpError idpError or {@code null} for none
58+
*/
59+
public ClientSideEncryptionServiceUnavailable setIdpError(java.util.List<IdentityProviderError> idpError) {
60+
this.idpError = idpError;
61+
return this;
62+
}
63+
64+
/**
65+
* External key services impacted by an outage or misconfiguration.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.util.List<KeyServiceError> getKeyServiceError() {
69+
return keyServiceError;
70+
}
71+
72+
/**
73+
* External key services impacted by an outage or misconfiguration.
74+
* @param keyServiceError keyServiceError or {@code null} for none
75+
*/
76+
public ClientSideEncryptionServiceUnavailable setKeyServiceError(java.util.List<KeyServiceError> keyServiceError) {
77+
this.keyServiceError = keyServiceError;
78+
return this;
79+
}
80+
81+
@Override
82+
public ClientSideEncryptionServiceUnavailable set(String fieldName, Object value) {
83+
return (ClientSideEncryptionServiceUnavailable) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public ClientSideEncryptionServiceUnavailable clone() {
88+
return (ClientSideEncryptionServiceUnavailable) super.clone();
89+
}
90+
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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.alertcenter.v1beta1.model;
18+
19+
/**
20+
* Error related to an identity provider.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Workspace Alert Center API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class IdentityProviderError extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Authorization base url of the identity provider.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String authorizationBaseUrl;
39+
40+
/**
41+
* Number of similar errors encountered.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
45+
private java.lang.Long errorCount;
46+
47+
/**
48+
* Info on the identity provider error.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String errorInfo;
53+
54+
/**
55+
* Authorization base url of the identity provider.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getAuthorizationBaseUrl() {
59+
return authorizationBaseUrl;
60+
}
61+
62+
/**
63+
* Authorization base url of the identity provider.
64+
* @param authorizationBaseUrl authorizationBaseUrl or {@code null} for none
65+
*/
66+
public IdentityProviderError setAuthorizationBaseUrl(java.lang.String authorizationBaseUrl) {
67+
this.authorizationBaseUrl = authorizationBaseUrl;
68+
return this;
69+
}
70+
71+
/**
72+
* Number of similar errors encountered.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.Long getErrorCount() {
76+
return errorCount;
77+
}
78+
79+
/**
80+
* Number of similar errors encountered.
81+
* @param errorCount errorCount or {@code null} for none
82+
*/
83+
public IdentityProviderError setErrorCount(java.lang.Long errorCount) {
84+
this.errorCount = errorCount;
85+
return this;
86+
}
87+
88+
/**
89+
* Info on the identity provider error.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getErrorInfo() {
93+
return errorInfo;
94+
}
95+
96+
/**
97+
* Info on the identity provider error.
98+
* @param errorInfo errorInfo or {@code null} for none
99+
*/
100+
public IdentityProviderError setErrorInfo(java.lang.String errorInfo) {
101+
this.errorInfo = errorInfo;
102+
return this;
103+
}
104+
105+
@Override
106+
public IdentityProviderError set(String fieldName, Object value) {
107+
return (IdentityProviderError) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public IdentityProviderError clone() {
112+
return (IdentityProviderError) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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.alertcenter.v1beta1.model;
18+
19+
/**
20+
* Error related to an external key service.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Google Workspace Alert Center API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class KeyServiceError extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Number of similar errors encountered.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long errorCount;
39+
40+
/**
41+
* Info on the key service error.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String errorInfo;
46+
47+
/**
48+
* HTTP response status code from the key service.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
52+
private java.lang.Long httpResponseCode;
53+
54+
/**
55+
* Url of the external key service.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String keyServiceUrl;
60+
61+
/**
62+
* Number of similar errors encountered.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.Long getErrorCount() {
66+
return errorCount;
67+
}
68+
69+
/**
70+
* Number of similar errors encountered.
71+
* @param errorCount errorCount or {@code null} for none
72+
*/
73+
public KeyServiceError setErrorCount(java.lang.Long errorCount) {
74+
this.errorCount = errorCount;
75+
return this;
76+
}
77+
78+
/**
79+
* Info on the key service error.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.String getErrorInfo() {
83+
return errorInfo;
84+
}
85+
86+
/**
87+
* Info on the key service error.
88+
* @param errorInfo errorInfo or {@code null} for none
89+
*/
90+
public KeyServiceError setErrorInfo(java.lang.String errorInfo) {
91+
this.errorInfo = errorInfo;
92+
return this;
93+
}
94+
95+
/**
96+
* HTTP response status code from the key service.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.Long getHttpResponseCode() {
100+
return httpResponseCode;
101+
}
102+
103+
/**
104+
* HTTP response status code from the key service.
105+
* @param httpResponseCode httpResponseCode or {@code null} for none
106+
*/
107+
public KeyServiceError setHttpResponseCode(java.lang.Long httpResponseCode) {
108+
this.httpResponseCode = httpResponseCode;
109+
return this;
110+
}
111+
112+
/**
113+
* Url of the external key service.
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.String getKeyServiceUrl() {
117+
return keyServiceUrl;
118+
}
119+
120+
/**
121+
* Url of the external key service.
122+
* @param keyServiceUrl keyServiceUrl or {@code null} for none
123+
*/
124+
public KeyServiceError setKeyServiceUrl(java.lang.String keyServiceUrl) {
125+
this.keyServiceUrl = keyServiceUrl;
126+
return this;
127+
}
128+
129+
@Override
130+
public KeyServiceError set(String fieldName, Object value) {
131+
return (KeyServiceError) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public KeyServiceError clone() {
136+
return (KeyServiceError) super.clone();
137+
}
138+
139+
}

clients/google-api-services-alertcenter/v1beta1/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-alertcenter</artifactId>
11-
<version>v1beta1-rev20251117-2.0.0</version>
12-
<name>Google Workspace Alert Center API v1beta1-rev20251117-2.0.0</name>
11+
<version>v1beta1-rev20260316-2.0.0</version>
12+
<name>Google Workspace Alert Center API v1beta1-rev20260316-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-alertcenter/v1beta1/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-alertcenter</artifactId>
25-
<version>v1beta1-rev20251117-2.0.0</version>
25+
<version>v1beta1-rev20260316-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-alertcenter:v1beta1-rev20251117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alertcenter:v1beta1-rev20260316-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)