Skip to content

Commit 8159d54

Browse files
1 parent 5c04051 commit 8159d54

13 files changed

+596
-6
lines changed

clients/google-api-services-videointelligence/v1p2beta1/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-videointelligence</artifactId>
25-
<version>v1p2beta1-rev20231214-2.0.0</version>
25+
<version>v1p2beta1-rev20250521-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-videointelligence:v1p2beta1-rev20231214-2.0.0'
38+
implementation 'com.google.apis:google-api-services-videointelligence:v1p2beta1-rev20250521-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.videointelligence.v1p2beta1.model;
18+
19+
/**
20+
* Status of exporting annotation response to user specified `output_uri`.
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 Cloud Video Intelligence 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 GoogleCloudVideointelligenceV1ExportToOutputUriStatus extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. State of the `output_uri` export.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String state;
39+
40+
/**
41+
* Output only. Only set if state is FAILED.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleRpcStatus status;
46+
47+
/**
48+
* Output only. State of the `output_uri` export.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getState() {
52+
return state;
53+
}
54+
55+
/**
56+
* Output only. State of the `output_uri` export.
57+
* @param state state or {@code null} for none
58+
*/
59+
public GoogleCloudVideointelligenceV1ExportToOutputUriStatus setState(java.lang.String state) {
60+
this.state = state;
61+
return this;
62+
}
63+
64+
/**
65+
* Output only. Only set if state is FAILED.
66+
* @return value or {@code null} for none
67+
*/
68+
public GoogleRpcStatus getStatus() {
69+
return status;
70+
}
71+
72+
/**
73+
* Output only. Only set if state is FAILED.
74+
* @param status status or {@code null} for none
75+
*/
76+
public GoogleCloudVideointelligenceV1ExportToOutputUriStatus setStatus(GoogleRpcStatus status) {
77+
this.status = status;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleCloudVideointelligenceV1ExportToOutputUriStatus set(String fieldName, Object value) {
83+
return (GoogleCloudVideointelligenceV1ExportToOutputUriStatus) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleCloudVideointelligenceV1ExportToOutputUriStatus clone() {
88+
return (GoogleCloudVideointelligenceV1ExportToOutputUriStatus) super.clone();
89+
}
90+
91+
}

clients/google-api-services-videointelligence/v1p2beta1/2.0.0/com/google/api/services/videointelligence/v1p2beta1/model/GoogleCloudVideointelligenceV1VideoAnnotationProgress.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleCloudVideointelligenceV1VideoAnnotationProgress extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Status of exporting annotation response to user specified `output_uri`. Only set if
35+
* `output_uri` is set in the request.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private GoogleCloudVideointelligenceV1ExportToOutputUriStatus exportStatus;
40+
3341
/**
3442
* Specifies which feature is being tracked if the request contains more than one feature.
3543
* The value may be {@code null}.
@@ -72,6 +80,25 @@ public final class GoogleCloudVideointelligenceV1VideoAnnotationProgress extends
7280
@com.google.api.client.util.Key
7381
private String updateTime;
7482

83+
/**
84+
* Status of exporting annotation response to user specified `output_uri`. Only set if
85+
* `output_uri` is set in the request.
86+
* @return value or {@code null} for none
87+
*/
88+
public GoogleCloudVideointelligenceV1ExportToOutputUriStatus getExportStatus() {
89+
return exportStatus;
90+
}
91+
92+
/**
93+
* Status of exporting annotation response to user specified `output_uri`. Only set if
94+
* `output_uri` is set in the request.
95+
* @param exportStatus exportStatus or {@code null} for none
96+
*/
97+
public GoogleCloudVideointelligenceV1VideoAnnotationProgress setExportStatus(GoogleCloudVideointelligenceV1ExportToOutputUriStatus exportStatus) {
98+
this.exportStatus = exportStatus;
99+
return this;
100+
}
101+
75102
/**
76103
* Specifies which feature is being tracked if the request contains more than one feature.
77104
* @return value or {@code null} for none
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.videointelligence.v1p2beta1.model;
18+
19+
/**
20+
* Status of exporting annotation response to user specified `output_uri`.
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 Cloud Video Intelligence 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 GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. State of the `output_uri` export.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String state;
39+
40+
/**
41+
* Output only. Only set if state is FAILED.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleRpcStatus status;
46+
47+
/**
48+
* Output only. State of the `output_uri` export.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getState() {
52+
return state;
53+
}
54+
55+
/**
56+
* Output only. State of the `output_uri` export.
57+
* @param state state or {@code null} for none
58+
*/
59+
public GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus setState(java.lang.String state) {
60+
this.state = state;
61+
return this;
62+
}
63+
64+
/**
65+
* Output only. Only set if state is FAILED.
66+
* @return value or {@code null} for none
67+
*/
68+
public GoogleRpcStatus getStatus() {
69+
return status;
70+
}
71+
72+
/**
73+
* Output only. Only set if state is FAILED.
74+
* @param status status or {@code null} for none
75+
*/
76+
public GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus setStatus(GoogleRpcStatus status) {
77+
this.status = status;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus set(String fieldName, Object value) {
83+
return (GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus clone() {
88+
return (GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus) super.clone();
89+
}
90+
91+
}

clients/google-api-services-videointelligence/v1p2beta1/2.0.0/com/google/api/services/videointelligence/v1p2beta1/model/GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Status of exporting annotation response to user specified `output_uri`. Only set if
35+
* `output_uri` is set in the request.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus exportStatus;
40+
3341
/**
3442
* Specifies which feature is being tracked if the request contains more than one feature.
3543
* The value may be {@code null}.
@@ -72,6 +80,25 @@ public final class GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress ex
7280
@com.google.api.client.util.Key
7381
private String updateTime;
7482

83+
/**
84+
* Status of exporting annotation response to user specified `output_uri`. Only set if
85+
* `output_uri` is set in the request.
86+
* @return value or {@code null} for none
87+
*/
88+
public GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus getExportStatus() {
89+
return exportStatus;
90+
}
91+
92+
/**
93+
* Status of exporting annotation response to user specified `output_uri`. Only set if
94+
* `output_uri` is set in the request.
95+
* @param exportStatus exportStatus or {@code null} for none
96+
*/
97+
public GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress setExportStatus(GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus exportStatus) {
98+
this.exportStatus = exportStatus;
99+
return this;
100+
}
101+
75102
/**
76103
* Specifies which feature is being tracked if the request contains more than one feature.
77104
* @return value or {@code null} for none
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.videointelligence.v1p2beta1.model;
18+
19+
/**
20+
* Status of exporting annotation response to user specified `output_uri`.
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 Cloud Video Intelligence 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 GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. State of the `output_uri` export.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String state;
39+
40+
/**
41+
* Output only. Only set if state is FAILED.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleRpcStatus status;
46+
47+
/**
48+
* Output only. State of the `output_uri` export.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getState() {
52+
return state;
53+
}
54+
55+
/**
56+
* Output only. State of the `output_uri` export.
57+
* @param state state or {@code null} for none
58+
*/
59+
public GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus setState(java.lang.String state) {
60+
this.state = state;
61+
return this;
62+
}
63+
64+
/**
65+
* Output only. Only set if state is FAILED.
66+
* @return value or {@code null} for none
67+
*/
68+
public GoogleRpcStatus getStatus() {
69+
return status;
70+
}
71+
72+
/**
73+
* Output only. Only set if state is FAILED.
74+
* @param status status or {@code null} for none
75+
*/
76+
public GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus setStatus(GoogleRpcStatus status) {
77+
this.status = status;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus set(String fieldName, Object value) {
83+
return (GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus clone() {
88+
return (GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)