Skip to content

Commit 34c916f

Browse files
1 parent c027bba commit 34c916f

9 files changed

+1884
-340
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-rev20251201-2.0.0</version>
25+
<version>v1-rev20260123-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-rev20251201-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datalineage:v1-rev20260123-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: 1431 additions & 334 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.datalineage.v1.model;
18+
19+
/**
20+
* Configuration for Data Lineage. Defines different configuration options for Lineage customers to
21+
* control behaviour of lineage systems.
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 Data Lineage 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 GoogleCloudDatacatalogLineageConfigmanagementV1Config extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. `etag` is used for optimistic concurrency control as a way to help prevent
35+
* simultaneous updates of a config from overwriting each other. It is required that systems make
36+
* use of the `etag` in the read-modify-write cycle to perform config updates in order to avoid
37+
* race conditions: An `etag` is returned in the response to `GetConfig`, and systems are expected
38+
* to put that etag in the request to `UpdateConfig` to ensure that their change will be applied
39+
* to the same version of the config. If an `etag` is not provided in the call to `UpdateConfig`,
40+
* then the existing config, if any, will be overwritten.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String etag;
45+
46+
/**
47+
* Optional. Ingestion rule for Data Lineage ingestion.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion ingestion;
52+
53+
/**
54+
* Identifier. The resource name of the config. Format:
55+
* `organizations/{organization_id}/locations/global/config`
56+
* `folders/{folder_id}/locations/global/config` `projects/{project_id}/locations/global/config`
57+
* `projects/{project_number}/locations/global/config`
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String name;
62+
63+
/**
64+
* Optional. `etag` is used for optimistic concurrency control as a way to help prevent
65+
* simultaneous updates of a config from overwriting each other. It is required that systems make
66+
* use of the `etag` in the read-modify-write cycle to perform config updates in order to avoid
67+
* race conditions: An `etag` is returned in the response to `GetConfig`, and systems are expected
68+
* to put that etag in the request to `UpdateConfig` to ensure that their change will be applied
69+
* to the same version of the config. If an `etag` is not provided in the call to `UpdateConfig`,
70+
* then the existing config, if any, will be overwritten.
71+
* @return value or {@code null} for none
72+
*/
73+
public java.lang.String getEtag() {
74+
return etag;
75+
}
76+
77+
/**
78+
* Optional. `etag` is used for optimistic concurrency control as a way to help prevent
79+
* simultaneous updates of a config from overwriting each other. It is required that systems make
80+
* use of the `etag` in the read-modify-write cycle to perform config updates in order to avoid
81+
* race conditions: An `etag` is returned in the response to `GetConfig`, and systems are expected
82+
* to put that etag in the request to `UpdateConfig` to ensure that their change will be applied
83+
* to the same version of the config. If an `etag` is not provided in the call to `UpdateConfig`,
84+
* then the existing config, if any, will be overwritten.
85+
* @param etag etag or {@code null} for none
86+
*/
87+
public GoogleCloudDatacatalogLineageConfigmanagementV1Config setEtag(java.lang.String etag) {
88+
this.etag = etag;
89+
return this;
90+
}
91+
92+
/**
93+
* Optional. Ingestion rule for Data Lineage ingestion.
94+
* @return value or {@code null} for none
95+
*/
96+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion getIngestion() {
97+
return ingestion;
98+
}
99+
100+
/**
101+
* Optional. Ingestion rule for Data Lineage ingestion.
102+
* @param ingestion ingestion or {@code null} for none
103+
*/
104+
public GoogleCloudDatacatalogLineageConfigmanagementV1Config setIngestion(GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion ingestion) {
105+
this.ingestion = ingestion;
106+
return this;
107+
}
108+
109+
/**
110+
* Identifier. The resource name of the config. Format:
111+
* `organizations/{organization_id}/locations/global/config`
112+
* `folders/{folder_id}/locations/global/config` `projects/{project_id}/locations/global/config`
113+
* `projects/{project_number}/locations/global/config`
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.String getName() {
117+
return name;
118+
}
119+
120+
/**
121+
* Identifier. The resource name of the config. Format:
122+
* `organizations/{organization_id}/locations/global/config`
123+
* `folders/{folder_id}/locations/global/config` `projects/{project_id}/locations/global/config`
124+
* `projects/{project_number}/locations/global/config`
125+
* @param name name or {@code null} for none
126+
*/
127+
public GoogleCloudDatacatalogLineageConfigmanagementV1Config setName(java.lang.String name) {
128+
this.name = name;
129+
return this;
130+
}
131+
132+
@Override
133+
public GoogleCloudDatacatalogLineageConfigmanagementV1Config set(String fieldName, Object value) {
134+
return (GoogleCloudDatacatalogLineageConfigmanagementV1Config) super.set(fieldName, value);
135+
}
136+
137+
@Override
138+
public GoogleCloudDatacatalogLineageConfigmanagementV1Config clone() {
139+
return (GoogleCloudDatacatalogLineageConfigmanagementV1Config) super.clone();
140+
}
141+
142+
}
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.datalineage.v1.model;
18+
19+
/**
20+
* Defines how Lineage should be ingested for a given resource.
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 Data Lineage 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 GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. List of rules for Data Lineage ingestion.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule> rules;
38+
39+
/**
40+
* Optional. List of rules for Data Lineage ingestion.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule> getRules() {
44+
return rules;
45+
}
46+
47+
/**
48+
* Optional. List of rules for Data Lineage ingestion.
49+
* @param rules rules or {@code null} for none
50+
*/
51+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion setRules(java.util.List<GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule> rules) {
52+
this.rules = rules;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion set(String fieldName, Object value) {
58+
return (GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion clone() {
63+
return (GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestion) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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+
* Ingestion rule for Data Lineage ingestion.
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 Data Lineage 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 GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Integration selector of the rule. The rule is only applied to the Integration
34+
* selected by the selector.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector integrationSelector;
39+
40+
/**
41+
* Required. Lineage enablement configuration. Defines configurations for the ingestion of lineage
42+
* for the resource and its children. If unspecified, the ingestion will be enabled only if it was
43+
* configured in the resource's parent.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleLineageEnablement lineageEnablement;
48+
49+
/**
50+
* Required. Integration selector of the rule. The rule is only applied to the Integration
51+
* selected by the selector.
52+
* @return value or {@code null} for none
53+
*/
54+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector getIntegrationSelector() {
55+
return integrationSelector;
56+
}
57+
58+
/**
59+
* Required. Integration selector of the rule. The rule is only applied to the Integration
60+
* selected by the selector.
61+
* @param integrationSelector integrationSelector or {@code null} for none
62+
*/
63+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule setIntegrationSelector(GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector integrationSelector) {
64+
this.integrationSelector = integrationSelector;
65+
return this;
66+
}
67+
68+
/**
69+
* Required. Lineage enablement configuration. Defines configurations for the ingestion of lineage
70+
* for the resource and its children. If unspecified, the ingestion will be enabled only if it was
71+
* configured in the resource's parent.
72+
* @return value or {@code null} for none
73+
*/
74+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleLineageEnablement getLineageEnablement() {
75+
return lineageEnablement;
76+
}
77+
78+
/**
79+
* Required. Lineage enablement configuration. Defines configurations for the ingestion of lineage
80+
* for the resource and its children. If unspecified, the ingestion will be enabled only if it was
81+
* configured in the resource's parent.
82+
* @param lineageEnablement lineageEnablement or {@code null} for none
83+
*/
84+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule setLineageEnablement(GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleLineageEnablement lineageEnablement) {
85+
this.lineageEnablement = lineageEnablement;
86+
return this;
87+
}
88+
89+
@Override
90+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule set(String fieldName, Object value) {
91+
return (GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule) super.set(fieldName, value);
92+
}
93+
94+
@Override
95+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule clone() {
96+
return (GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRule) super.clone();
97+
}
98+
99+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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+
* Integration selector of the rule. The rule is only applied to the Integration selected by the
21+
* selector.
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 Data Lineage 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 GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Integration to which the rule applies. This field can be used to specify the
35+
* integration against which the ingestion rule should be applied.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String integration;
40+
41+
/**
42+
* Required. Integration to which the rule applies. This field can be used to specify the
43+
* integration against which the ingestion rule should be applied.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getIntegration() {
47+
return integration;
48+
}
49+
50+
/**
51+
* Required. Integration to which the rule applies. This field can be used to specify the
52+
* integration against which the ingestion rule should be applied.
53+
* @param integration integration or {@code null} for none
54+
*/
55+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector setIntegration(java.lang.String integration) {
56+
this.integration = integration;
57+
return this;
58+
}
59+
60+
@Override
61+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector set(String fieldName, Object value) {
62+
return (GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector clone() {
67+
return (GoogleCloudDatacatalogLineageConfigmanagementV1ConfigIngestionIngestionRuleIntegrationSelector) super.clone();
68+
}
69+
70+
}

0 commit comments

Comments
 (0)