Skip to content

Commit c3d24b3

Browse files
1 parent d669725 commit c3d24b3

17 files changed

+1678
-92
lines changed

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

clients/google-api-services-apihub/v1/2.0.0/com/google/api/services/apihub/v1/APIhub.java

Lines changed: 479 additions & 83 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
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.apihub.v1.model;
18+
19+
/**
20+
* The additional spec content for the spec. This contains the metadata and the last update time for
21+
* the additional spec content.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the API hub API. For a detailed 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 GoogleCloudApihubV1AdditionalSpecContent extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The time at which the spec content was created.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String createTime;
39+
40+
/**
41+
* Optional. The labels of the spec content e.g. specboost addon version.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.Map<String, java.lang.String> labels;
46+
47+
/**
48+
* Required. The type of the spec content.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String specContentType;
53+
54+
/**
55+
* Optional. The additional spec contents.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private GoogleCloudApihubV1SpecContents specContents;
60+
61+
/**
62+
* Output only. The time at which the spec content was last updated.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private String updateTime;
67+
68+
/**
69+
* Output only. The time at which the spec content was created.
70+
* @return value or {@code null} for none
71+
*/
72+
public String getCreateTime() {
73+
return createTime;
74+
}
75+
76+
/**
77+
* Output only. The time at which the spec content was created.
78+
* @param createTime createTime or {@code null} for none
79+
*/
80+
public GoogleCloudApihubV1AdditionalSpecContent setCreateTime(String createTime) {
81+
this.createTime = createTime;
82+
return this;
83+
}
84+
85+
/**
86+
* Optional. The labels of the spec content e.g. specboost addon version.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.util.Map<String, java.lang.String> getLabels() {
90+
return labels;
91+
}
92+
93+
/**
94+
* Optional. The labels of the spec content e.g. specboost addon version.
95+
* @param labels labels or {@code null} for none
96+
*/
97+
public GoogleCloudApihubV1AdditionalSpecContent setLabels(java.util.Map<String, java.lang.String> labels) {
98+
this.labels = labels;
99+
return this;
100+
}
101+
102+
/**
103+
* Required. The type of the spec content.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getSpecContentType() {
107+
return specContentType;
108+
}
109+
110+
/**
111+
* Required. The type of the spec content.
112+
* @param specContentType specContentType or {@code null} for none
113+
*/
114+
public GoogleCloudApihubV1AdditionalSpecContent setSpecContentType(java.lang.String specContentType) {
115+
this.specContentType = specContentType;
116+
return this;
117+
}
118+
119+
/**
120+
* Optional. The additional spec contents.
121+
* @return value or {@code null} for none
122+
*/
123+
public GoogleCloudApihubV1SpecContents getSpecContents() {
124+
return specContents;
125+
}
126+
127+
/**
128+
* Optional. The additional spec contents.
129+
* @param specContents specContents or {@code null} for none
130+
*/
131+
public GoogleCloudApihubV1AdditionalSpecContent setSpecContents(GoogleCloudApihubV1SpecContents specContents) {
132+
this.specContents = specContents;
133+
return this;
134+
}
135+
136+
/**
137+
* Output only. The time at which the spec content was last updated.
138+
* @return value or {@code null} for none
139+
*/
140+
public String getUpdateTime() {
141+
return updateTime;
142+
}
143+
144+
/**
145+
* Output only. The time at which the spec content was last updated.
146+
* @param updateTime updateTime or {@code null} for none
147+
*/
148+
public GoogleCloudApihubV1AdditionalSpecContent setUpdateTime(String updateTime) {
149+
this.updateTime = updateTime;
150+
return this;
151+
}
152+
153+
@Override
154+
public GoogleCloudApihubV1AdditionalSpecContent set(String fieldName, Object value) {
155+
return (GoogleCloudApihubV1AdditionalSpecContent) super.set(fieldName, value);
156+
}
157+
158+
@Override
159+
public GoogleCloudApihubV1AdditionalSpecContent clone() {
160+
return (GoogleCloudApihubV1AdditionalSpecContent) super.clone();
161+
}
162+
163+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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.apihub.v1.model;
18+
19+
/**
20+
* The view of an API.
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 API hub API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudApihubV1ApiView extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. MCP server view.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudApihubV1FlattenedApiVersionDeploymentView mcpServerView;
38+
39+
/**
40+
* Output only. MCP tools view.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleCloudApihubV1FlattenedApiVersionOperationDeploymentView mcpToolView;
45+
46+
/**
47+
* Output only. MCP server view.
48+
* @return value or {@code null} for none
49+
*/
50+
public GoogleCloudApihubV1FlattenedApiVersionDeploymentView getMcpServerView() {
51+
return mcpServerView;
52+
}
53+
54+
/**
55+
* Output only. MCP server view.
56+
* @param mcpServerView mcpServerView or {@code null} for none
57+
*/
58+
public GoogleCloudApihubV1ApiView setMcpServerView(GoogleCloudApihubV1FlattenedApiVersionDeploymentView mcpServerView) {
59+
this.mcpServerView = mcpServerView;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. MCP tools view.
65+
* @return value or {@code null} for none
66+
*/
67+
public GoogleCloudApihubV1FlattenedApiVersionOperationDeploymentView getMcpToolView() {
68+
return mcpToolView;
69+
}
70+
71+
/**
72+
* Output only. MCP tools view.
73+
* @param mcpToolView mcpToolView or {@code null} for none
74+
*/
75+
public GoogleCloudApihubV1ApiView setMcpToolView(GoogleCloudApihubV1FlattenedApiVersionOperationDeploymentView mcpToolView) {
76+
this.mcpToolView = mcpToolView;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudApihubV1ApiView set(String fieldName, Object value) {
82+
return (GoogleCloudApihubV1ApiView) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudApihubV1ApiView clone() {
87+
return (GoogleCloudApihubV1ApiView) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.apihub.v1.model;
18+
19+
/**
20+
* The FetchAdditionalSpecContent method's response.
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 API hub API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudApihubV1FetchAdditionalSpecContentResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The additional spec content.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudApihubV1AdditionalSpecContent additionalSpecContent;
38+
39+
/**
40+
* The additional spec content.
41+
* @return value or {@code null} for none
42+
*/
43+
public GoogleCloudApihubV1AdditionalSpecContent getAdditionalSpecContent() {
44+
return additionalSpecContent;
45+
}
46+
47+
/**
48+
* The additional spec content.
49+
* @param additionalSpecContent additionalSpecContent or {@code null} for none
50+
*/
51+
public GoogleCloudApihubV1FetchAdditionalSpecContentResponse setAdditionalSpecContent(GoogleCloudApihubV1AdditionalSpecContent additionalSpecContent) {
52+
this.additionalSpecContent = additionalSpecContent;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudApihubV1FetchAdditionalSpecContentResponse set(String fieldName, Object value) {
58+
return (GoogleCloudApihubV1FetchAdditionalSpecContentResponse) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudApihubV1FetchAdditionalSpecContentResponse clone() {
63+
return (GoogleCloudApihubV1FetchAdditionalSpecContentResponse) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)