Skip to content

Commit 9779d79

Browse files
1 parent 3259041 commit 9779d79

File tree

9 files changed

+772
-14
lines changed

9 files changed

+772
-14
lines changed

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

clients/google-api-services-apim/v1alpha/2.0.0/com/google/api/services/apim/v1alpha/APIManagement.java

Lines changed: 349 additions & 8 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.apim.v1alpha.model;
18+
19+
/**
20+
* Message for requesting batch edit tags for ApiObservations
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 Management 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 BatchEditTagsApiObservationsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The request message specifying the resources to update. A maximum of 1000
34+
* apiObservations can be modified in a batch.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<EditTagsApiObservationsRequest> requests;
39+
40+
/**
41+
* Required. The request message specifying the resources to update. A maximum of 1000
42+
* apiObservations can be modified in a batch.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<EditTagsApiObservationsRequest> getRequests() {
46+
return requests;
47+
}
48+
49+
/**
50+
* Required. The request message specifying the resources to update. A maximum of 1000
51+
* apiObservations can be modified in a batch.
52+
* @param requests requests or {@code null} for none
53+
*/
54+
public BatchEditTagsApiObservationsRequest setRequests(java.util.List<EditTagsApiObservationsRequest> requests) {
55+
this.requests = requests;
56+
return this;
57+
}
58+
59+
@Override
60+
public BatchEditTagsApiObservationsRequest set(String fieldName, Object value) {
61+
return (BatchEditTagsApiObservationsRequest) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public BatchEditTagsApiObservationsRequest clone() {
66+
return (BatchEditTagsApiObservationsRequest) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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.apim.v1alpha.model;
18+
19+
/**
20+
* Message for response to edit Tags for ApiObservations
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 Management 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 BatchEditTagsApiObservationsResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* ApiObservations that were changed
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<ApiObservation> apiObservations;
38+
39+
static {
40+
// hack to force ProGuard to consider ApiObservation used, since otherwise it would be stripped out
41+
// see https://github.com/google/google-api-java-client/issues/543
42+
com.google.api.client.util.Data.nullOf(ApiObservation.class);
43+
}
44+
45+
/**
46+
* ApiObservations that were changed
47+
* @return value or {@code null} for none
48+
*/
49+
public java.util.List<ApiObservation> getApiObservations() {
50+
return apiObservations;
51+
}
52+
53+
/**
54+
* ApiObservations that were changed
55+
* @param apiObservations apiObservations or {@code null} for none
56+
*/
57+
public BatchEditTagsApiObservationsResponse setApiObservations(java.util.List<ApiObservation> apiObservations) {
58+
this.apiObservations = apiObservations;
59+
return this;
60+
}
61+
62+
@Override
63+
public BatchEditTagsApiObservationsResponse set(String fieldName, Object value) {
64+
return (BatchEditTagsApiObservationsResponse) super.set(fieldName, value);
65+
}
66+
67+
@Override
68+
public BatchEditTagsApiObservationsResponse clone() {
69+
return (BatchEditTagsApiObservationsResponse) super.clone();
70+
}
71+
72+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.apim.v1alpha.model;
18+
19+
/**
20+
* Message for requesting edit tags for ApiObservation
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 Management 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 EditTagsApiObservationsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Identifier of ApiObservation need to be edit tags Format example:
34+
* "apigee.googleapis.com|us-west1|443"
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String apiObservationId;
39+
40+
/**
41+
* Required. Tag actions to be applied
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<TagAction> tagActions;
46+
47+
/**
48+
* Required. Identifier of ApiObservation need to be edit tags Format example:
49+
* "apigee.googleapis.com|us-west1|443"
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getApiObservationId() {
53+
return apiObservationId;
54+
}
55+
56+
/**
57+
* Required. Identifier of ApiObservation need to be edit tags Format example:
58+
* "apigee.googleapis.com|us-west1|443"
59+
* @param apiObservationId apiObservationId or {@code null} for none
60+
*/
61+
public EditTagsApiObservationsRequest setApiObservationId(java.lang.String apiObservationId) {
62+
this.apiObservationId = apiObservationId;
63+
return this;
64+
}
65+
66+
/**
67+
* Required. Tag actions to be applied
68+
* @return value or {@code null} for none
69+
*/
70+
public java.util.List<TagAction> getTagActions() {
71+
return tagActions;
72+
}
73+
74+
/**
75+
* Required. Tag actions to be applied
76+
* @param tagActions tagActions or {@code null} for none
77+
*/
78+
public EditTagsApiObservationsRequest setTagActions(java.util.List<TagAction> tagActions) {
79+
this.tagActions = tagActions;
80+
return this;
81+
}
82+
83+
@Override
84+
public EditTagsApiObservationsRequest set(String fieldName, Object value) {
85+
return (EditTagsApiObservationsRequest) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public EditTagsApiObservationsRequest clone() {
90+
return (EditTagsApiObservationsRequest) super.clone();
91+
}
92+
93+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.apim.v1alpha.model;
18+
19+
/**
20+
* Message for response to listing tags
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 Management 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 ListApiObservationTagsResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The tags from the specified project
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> apiObservationTags;
38+
39+
/**
40+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
41+
* there are no subsequent pages.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String nextPageToken;
46+
47+
/**
48+
* The tags from the specified project
49+
* @return value or {@code null} for none
50+
*/
51+
public java.util.List<java.lang.String> getApiObservationTags() {
52+
return apiObservationTags;
53+
}
54+
55+
/**
56+
* The tags from the specified project
57+
* @param apiObservationTags apiObservationTags or {@code null} for none
58+
*/
59+
public ListApiObservationTagsResponse setApiObservationTags(java.util.List<java.lang.String> apiObservationTags) {
60+
this.apiObservationTags = apiObservationTags;
61+
return this;
62+
}
63+
64+
/**
65+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
66+
* there are no subsequent pages.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getNextPageToken() {
70+
return nextPageToken;
71+
}
72+
73+
/**
74+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
75+
* there are no subsequent pages.
76+
* @param nextPageToken nextPageToken or {@code null} for none
77+
*/
78+
public ListApiObservationTagsResponse setNextPageToken(java.lang.String nextPageToken) {
79+
this.nextPageToken = nextPageToken;
80+
return this;
81+
}
82+
83+
@Override
84+
public ListApiObservationTagsResponse set(String fieldName, Object value) {
85+
return (ListApiObservationTagsResponse) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public ListApiObservationTagsResponse clone() {
90+
return (ListApiObservationTagsResponse) super.clone();
91+
}
92+
93+
}

0 commit comments

Comments
 (0)