Skip to content

Commit 3cf9413

Browse files
chore: regenerate datalineage client
1 parent 38c1764 commit 3cf9413

File tree

7 files changed

+174
-15
lines changed

7 files changed

+174
-15
lines changed

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

clients/google-api-services-datalineage/v1/2.0.0/com/google/api/services/datalineage/v1/Datalineage.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Datalineage extends com.google.api.client.googleapis.services.json.
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -4792,8 +4792,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
47924792
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
47934793
* <li>Android: {@code newCompatibleTransport} from
47944794
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
4795-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
4796-
* </li>
4795+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
47974796
* </ul>
47984797
* @param jsonFactory JSON factory, which may be:
47994798
* <ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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.datalineage.v1.model;
18+
19+
/**
20+
* Profile describing the data handling characteristics of an MCP tool. When used within the
21+
* McpTool.meta field, this message should be packed into a google.protobuf.Any and associated with
22+
* the key: "google.com/tool.profiles/data_handling"
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Data Lineage API. For a detailed explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class ApiservingMcpMcpToolDataHandlingProfile extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* // The data access level of the tool's inputs.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String inputDataAccessLevel;
40+
41+
/**
42+
* The data access level of the tool's outputs.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String outputDataAccessLevel;
47+
48+
/**
49+
* // The data access level of the tool's inputs.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getInputDataAccessLevel() {
53+
return inputDataAccessLevel;
54+
}
55+
56+
/**
57+
* // The data access level of the tool's inputs.
58+
* @param inputDataAccessLevel inputDataAccessLevel or {@code null} for none
59+
*/
60+
public ApiservingMcpMcpToolDataHandlingProfile setInputDataAccessLevel(java.lang.String inputDataAccessLevel) {
61+
this.inputDataAccessLevel = inputDataAccessLevel;
62+
return this;
63+
}
64+
65+
/**
66+
* The data access level of the tool's outputs.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getOutputDataAccessLevel() {
70+
return outputDataAccessLevel;
71+
}
72+
73+
/**
74+
* The data access level of the tool's outputs.
75+
* @param outputDataAccessLevel outputDataAccessLevel or {@code null} for none
76+
*/
77+
public ApiservingMcpMcpToolDataHandlingProfile setOutputDataAccessLevel(java.lang.String outputDataAccessLevel) {
78+
this.outputDataAccessLevel = outputDataAccessLevel;
79+
return this;
80+
}
81+
82+
@Override
83+
public ApiservingMcpMcpToolDataHandlingProfile set(String fieldName, Object value) {
84+
return (ApiservingMcpMcpToolDataHandlingProfile) super.set(fieldName, value);
85+
}
86+
87+
@Override
88+
public ApiservingMcpMcpToolDataHandlingProfile clone() {
89+
return (ApiservingMcpMcpToolDataHandlingProfile) super.clone();
90+
}
91+
92+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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.datalineage.v1.model;
18+
19+
/**
20+
* Profile describing the lifecycle stage of an MCP tool. When used within the McpTool.meta field,
21+
* this message should be packed into a google.protobuf.Any and associated with the key:
22+
* "google.com/tool.profiles/lifecycle"
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Data Lineage API. For a detailed explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class ApiservingMcpMcpToolLifecycleProfile extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. The current launch state of the MCP tool.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String launchState;
40+
41+
/**
42+
* Output only. The current launch state of the MCP tool.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getLaunchState() {
46+
return launchState;
47+
}
48+
49+
/**
50+
* Output only. The current launch state of the MCP tool.
51+
* @param launchState launchState or {@code null} for none
52+
*/
53+
public ApiservingMcpMcpToolLifecycleProfile setLaunchState(java.lang.String launchState) {
54+
this.launchState = launchState;
55+
return this;
56+
}
57+
58+
@Override
59+
public ApiservingMcpMcpToolLifecycleProfile set(String fieldName, Object value) {
60+
return (ApiservingMcpMcpToolLifecycleProfile) super.set(fieldName, value);
61+
}
62+
63+
@Override
64+
public ApiservingMcpMcpToolLifecycleProfile clone() {
65+
return (ApiservingMcpMcpToolLifecycleProfile) super.clone();
66+
}
67+
68+
}

clients/google-api-services-datalineage/v1/2.0.0/com/google/api/services/datalineage/v1/model/GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleLineageEnablement.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@
3131
public final class GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleLineageEnablement extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Optional. Required. If true, ingestion of lineage should be enabled. If false, it should be
35-
* disabled. If unspecified, the system default value is used.
34+
* Optional. If true, ingestion of lineage should be enabled. If false, it should be disabled. If
35+
* unspecified, the system default value is used.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.Boolean enabled;
4040

4141
/**
42-
* Optional. Required. If true, ingestion of lineage should be enabled. If false, it should be
43-
* disabled. If unspecified, the system default value is used.
42+
* Optional. If true, ingestion of lineage should be enabled. If false, it should be disabled. If
43+
* unspecified, the system default value is used.
4444
* @return value or {@code null} for none
4545
*/
4646
public java.lang.Boolean getEnabled() {
4747
return enabled;
4848
}
4949

5050
/**
51-
* Optional. Required. If true, ingestion of lineage should be enabled. If false, it should be
52-
* disabled. If unspecified, the system default value is used.
51+
* Optional. If true, ingestion of lineage should be enabled. If false, it should be disabled. If
52+
* unspecified, the system default value is used.
5353
* @param enabled enabled or {@code null} for none
5454
*/
5555
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleLineageEnablement setEnabled(java.lang.Boolean enabled) {

clients/google-api-services-datalineage/v1/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-datalineage</artifactId>
11-
<version>v1-rev20260123-2.0.0</version>
12-
<name>Data Lineage API v1-rev20260123-2.0.0</name>
11+
<version>v1-rev20260130-2.0.0</version>
12+
<name>Data Lineage API v1-rev20260130-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)