Skip to content

Commit 67905dd

Browse files
1 parent 4c55e29 commit 67905dd

21 files changed

+10165
-6
lines changed

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

clients/google-api-services-managedkafka/v1/2.0.0/com/google/api/services/managedkafka/v1/ManagedKafka.java

Lines changed: 8170 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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.managedkafka.v1.model;
18+
19+
/**
20+
* Request for CheckCompatibility.
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 Managed Service for Apache Kafka 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 CheckCompatibilityRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The schema references used by the schema.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<SchemaReference> references;
39+
40+
/**
41+
* Required. The schema payload
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String schema;
46+
47+
/**
48+
* Optional. The schema type of the schema.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String schemaType;
53+
54+
/**
55+
* Optional. If true, the response will contain the compatibility check result with reasons for
56+
* failed checks. The default is false.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.Boolean verbose;
61+
62+
/**
63+
* Optional. The schema references used by the schema.
64+
* @return value or {@code null} for none
65+
*/
66+
public java.util.List<SchemaReference> getReferences() {
67+
return references;
68+
}
69+
70+
/**
71+
* Optional. The schema references used by the schema.
72+
* @param references references or {@code null} for none
73+
*/
74+
public CheckCompatibilityRequest setReferences(java.util.List<SchemaReference> references) {
75+
this.references = references;
76+
return this;
77+
}
78+
79+
/**
80+
* Required. The schema payload
81+
* @return value or {@code null} for none
82+
*/
83+
public java.lang.String getSchema() {
84+
return schema;
85+
}
86+
87+
/**
88+
* Required. The schema payload
89+
* @param schema schema or {@code null} for none
90+
*/
91+
public CheckCompatibilityRequest setSchema(java.lang.String schema) {
92+
this.schema = schema;
93+
return this;
94+
}
95+
96+
/**
97+
* Optional. The schema type of the schema.
98+
* @return value or {@code null} for none
99+
*/
100+
public java.lang.String getSchemaType() {
101+
return schemaType;
102+
}
103+
104+
/**
105+
* Optional. The schema type of the schema.
106+
* @param schemaType schemaType or {@code null} for none
107+
*/
108+
public CheckCompatibilityRequest setSchemaType(java.lang.String schemaType) {
109+
this.schemaType = schemaType;
110+
return this;
111+
}
112+
113+
/**
114+
* Optional. If true, the response will contain the compatibility check result with reasons for
115+
* failed checks. The default is false.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.Boolean getVerbose() {
119+
return verbose;
120+
}
121+
122+
/**
123+
* Optional. If true, the response will contain the compatibility check result with reasons for
124+
* failed checks. The default is false.
125+
* @param verbose verbose or {@code null} for none
126+
*/
127+
public CheckCompatibilityRequest setVerbose(java.lang.Boolean verbose) {
128+
this.verbose = verbose;
129+
return this;
130+
}
131+
132+
@Override
133+
public CheckCompatibilityRequest set(String fieldName, Object value) {
134+
return (CheckCompatibilityRequest) super.set(fieldName, value);
135+
}
136+
137+
@Override
138+
public CheckCompatibilityRequest clone() {
139+
return (CheckCompatibilityRequest) super.clone();
140+
}
141+
142+
}
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.managedkafka.v1.model;
18+
19+
/**
20+
* Response for CheckCompatibility.
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 Managed Service for Apache Kafka 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 CheckCompatibilityResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The compatibility check result. If true, the schema is compatible with the resource.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key("is_compatible")
38+
private java.lang.Boolean isCompatible;
39+
40+
/**
41+
* Failure reasons if verbose = true.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<java.lang.String> messages;
46+
47+
/**
48+
* The compatibility check result. If true, the schema is compatible with the resource.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Boolean getIsCompatible() {
52+
return isCompatible;
53+
}
54+
55+
/**
56+
* The compatibility check result. If true, the schema is compatible with the resource.
57+
* @param isCompatible isCompatible or {@code null} for none
58+
*/
59+
public CheckCompatibilityResponse setIsCompatible(java.lang.Boolean isCompatible) {
60+
this.isCompatible = isCompatible;
61+
return this;
62+
}
63+
64+
/**
65+
* Failure reasons if verbose = true.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.util.List<java.lang.String> getMessages() {
69+
return messages;
70+
}
71+
72+
/**
73+
* Failure reasons if verbose = true.
74+
* @param messages messages or {@code null} for none
75+
*/
76+
public CheckCompatibilityResponse setMessages(java.util.List<java.lang.String> messages) {
77+
this.messages = messages;
78+
return this;
79+
}
80+
81+
@Override
82+
public CheckCompatibilityResponse set(String fieldName, Object value) {
83+
return (CheckCompatibilityResponse) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public CheckCompatibilityResponse clone() {
88+
return (CheckCompatibilityResponse) super.clone();
89+
}
90+
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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.managedkafka.v1.model;
18+
19+
/**
20+
* Context represents an independent schema grouping in a schema registry instance.
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 Managed Service for Apache Kafka 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 Context extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Identifier. The name of the context. Structured like:
35+
* `projects/{project}/locations/{location}/schemaRegistries/{schema_registry}/contexts/{context}`
36+
* The context name {context} can contain the following: * Up to 255 characters. * Allowed
37+
* characters: letters (uppercase or lowercase), numbers, and the following special characters:
38+
* `.`, `-`, `_`, `+`, `%`, and `~`.
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String name;
43+
44+
/**
45+
* Optional. The subjects of the context.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.util.List<java.lang.String> subjects;
50+
51+
/**
52+
* Identifier. The name of the context. Structured like:
53+
* `projects/{project}/locations/{location}/schemaRegistries/{schema_registry}/contexts/{context}`
54+
* The context name {context} can contain the following: * Up to 255 characters. * Allowed
55+
* characters: letters (uppercase or lowercase), numbers, and the following special characters:
56+
* `.`, `-`, `_`, `+`, `%`, and `~`.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getName() {
60+
return name;
61+
}
62+
63+
/**
64+
* Identifier. The name of the context. Structured like:
65+
* `projects/{project}/locations/{location}/schemaRegistries/{schema_registry}/contexts/{context}`
66+
* The context name {context} can contain the following: * Up to 255 characters. * Allowed
67+
* characters: letters (uppercase or lowercase), numbers, and the following special characters:
68+
* `.`, `-`, `_`, `+`, `%`, and `~`.
69+
* @param name name or {@code null} for none
70+
*/
71+
public Context setName(java.lang.String name) {
72+
this.name = name;
73+
return this;
74+
}
75+
76+
/**
77+
* Optional. The subjects of the context.
78+
* @return value or {@code null} for none
79+
*/
80+
public java.util.List<java.lang.String> getSubjects() {
81+
return subjects;
82+
}
83+
84+
/**
85+
* Optional. The subjects of the context.
86+
* @param subjects subjects or {@code null} for none
87+
*/
88+
public Context setSubjects(java.util.List<java.lang.String> subjects) {
89+
this.subjects = subjects;
90+
return this;
91+
}
92+
93+
@Override
94+
public Context set(String fieldName, Object value) {
95+
return (Context) super.set(fieldName, value);
96+
}
97+
98+
@Override
99+
public Context clone() {
100+
return (Context) super.clone();
101+
}
102+
103+
}

0 commit comments

Comments
 (0)