Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-rev20260511-2.0.0</version>
<version>v1-rev20260515-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-rev20260511-2.0.0'
implementation 'com.google.apis:google-api-services-datalineage:v1-rev20260515-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ public class DatalineageScopes {
/** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */
public static final String CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform";

/** See, edit, configure, and delete your Google Cloud Data Lineage data and see the email address for your Google Account. */
public static final String DATALINEAGE_READ_WRITE = "https://www.googleapis.com/auth/datalineage.read-write";

/** See your Google Cloud Data Lineage data and the email address of your Google Account. */
public static final String DATALINEAGE_READONLY = "https://www.googleapis.com/auth/datalineage.readonly";

/**
* Returns an unmodifiable set that contains all scopes declared by this class.
*
Expand All @@ -34,6 +40,8 @@ public class DatalineageScopes {
public static java.util.Set<String> all() {
java.util.Set<String> set = new java.util.HashSet<String>();
set.add(CLOUD_PLATFORM);
set.add(DATALINEAGE_READ_WRITE);
set.add(DATALINEAGE_READONLY);
return java.util.Collections.unmodifiableSet(set);
}

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-rev20260511-2.0.0</version>
<name>Data Lineage API v1-rev20260511-2.0.0</name>
<version>v1-rev20260515-2.0.0</version>
<name>Data Lineage API v1-rev20260515-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-datalineage/v1/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-rev20260511-2.0.0</version>
<version>v1-rev20260515-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-rev20260511-2.0.0'
implementation 'com.google.apis:google-api-services-datalineage:v1-rev20260515-2.0.0'
}
```

Expand Down