Skip to content

Commit

Permalink
chore: regenerate datalineage client (#18048)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Sep 10, 2023
1 parent 0a8ac44 commit e10b799
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 4 deletions.
4 changes: 2 additions & 2 deletions clients/google-api-services-datalineage/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-datalineage</artifactId>
<version>v1-rev20230808-2.0.0</version>
<version>v1-rev20230901-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-datalineage:v1-rev20230808-2.0.0'
implementation 'com.google.apis:google-api-services-datalineage:v1-rev20230901-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,84 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse extends com.google.api.client.json.GenericJson {

/**
* Created lineage event names. Format: `projects/{project}/locations/{location}/processes/{proces
* s}/runs/{run}/lineageEvents/{lineage_event}`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> lineageEvents;

/**
* Created process name. Format: `projects/{project}/locations/{location}/processes/{process}`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String process;

/**
* Created run name. Format:
* `projects/{project}/locations/{location}/processes/{process}/runs/{run}`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String run;

/**
* Created lineage event names. Format: `projects/{project}/locations/{location}/processes/{proces
* s}/runs/{run}/lineageEvents/{lineage_event}`.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getLineageEvents() {
return lineageEvents;
}

/**
* Created lineage event names. Format: `projects/{project}/locations/{location}/processes/{proces
* s}/runs/{run}/lineageEvents/{lineage_event}`.
* @param lineageEvents lineageEvents or {@code null} for none
*/
public GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse setLineageEvents(java.util.List<java.lang.String> lineageEvents) {
this.lineageEvents = lineageEvents;
return this;
}

/**
* Created process name. Format: `projects/{project}/locations/{location}/processes/{process}`.
* @return value or {@code null} for none
*/
public java.lang.String getProcess() {
return process;
}

/**
* Created process name. Format: `projects/{project}/locations/{location}/processes/{process}`.
* @param process process or {@code null} for none
*/
public GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse setProcess(java.lang.String process) {
this.process = process;
return this;
}

/**
* Created run name. Format:
* `projects/{project}/locations/{location}/processes/{process}/runs/{run}`.
* @return value or {@code null} for none
*/
public java.lang.String getRun() {
return run;
}

/**
* Created run name. Format:
* `projects/{project}/locations/{location}/processes/{process}/runs/{run}`.
* @param run run or {@code null} for none
*/
public GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse setRun(java.lang.String run) {
this.run = run;
return this;
}

@Override
public GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse set(String fieldName, Object value) {
return (GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse) super.set(fieldName, value);
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-datalineage/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-datalineage</artifactId>
<version>v1-rev20230808-2.0.0</version>
<name>Data Lineage API v1-rev20230808-2.0.0</name>
<version>v1-rev20230901-2.0.0</version>
<name>Data Lineage API v1-rev20230901-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down

0 comments on commit e10b799

Please sign in to comment.