Skip to content
Open
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-pubsub/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-pubsub</artifactId>
<version>v1-rev20260609-2.0.0</version>
<version>v1-rev20260716-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20260609-2.0.0'
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20260716-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@
public final class BigQueryConfig extends com.google.api.client.json.GenericJson {

/**
* Optional. When true and use_topic_schema is true, any fields that are a part of the topic
* schema that are not part of the BigQuery table schema are dropped when writing to BigQuery.
* Otherwise, the schemas must be kept in sync and any messages with extra fields are not written
* and remain in the subscription's backlog.
* Optional. If true and `use_topic_schema` is true, drops any fields that are part of the topic
* schema that are not part of the BigQuery table schema when writing to BigQuery. Otherwise, the
* schemas must be kept in sync and any messages with extra fields are not written and remain in
* the subscription's backlog. If true and `use_table_schema` is true, drops any fields in the
* message that are not part of the BigQuery table schema when writing to BigQuery. Otherwise, the
* write to BigQuery will fail.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -93,21 +95,25 @@ public final class BigQueryConfig extends com.google.api.client.json.GenericJson
private java.lang.Boolean writeMetadata;

/**
* Optional. When true and use_topic_schema is true, any fields that are a part of the topic
* schema that are not part of the BigQuery table schema are dropped when writing to BigQuery.
* Otherwise, the schemas must be kept in sync and any messages with extra fields are not written
* and remain in the subscription's backlog.
* Optional. If true and `use_topic_schema` is true, drops any fields that are part of the topic
* schema that are not part of the BigQuery table schema when writing to BigQuery. Otherwise, the
* schemas must be kept in sync and any messages with extra fields are not written and remain in
* the subscription's backlog. If true and `use_table_schema` is true, drops any fields in the
* message that are not part of the BigQuery table schema when writing to BigQuery. Otherwise, the
* write to BigQuery will fail.
* @return value or {@code null} for none
*/
public java.lang.Boolean getDropUnknownFields() {
return dropUnknownFields;
}

/**
* Optional. When true and use_topic_schema is true, any fields that are a part of the topic
* schema that are not part of the BigQuery table schema are dropped when writing to BigQuery.
* Otherwise, the schemas must be kept in sync and any messages with extra fields are not written
* and remain in the subscription's backlog.
* Optional. If true and `use_topic_schema` is true, drops any fields that are part of the topic
* schema that are not part of the BigQuery table schema when writing to BigQuery. Otherwise, the
* schemas must be kept in sync and any messages with extra fields are not written and remain in
* the subscription's backlog. If true and `use_table_schema` is true, drops any fields in the
* message that are not part of the BigQuery table schema when writing to BigQuery. Otherwise, the
* write to BigQuery will fail.
* @param dropUnknownFields dropUnknownFields or {@code null} for none
*/
public BigQueryConfig setDropUnknownFields(java.lang.Boolean dropUnknownFields) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-pubsub/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-pubsub</artifactId>
<version>v1-rev20260609-2.0.0</version>
<name>Cloud Pub/Sub API v1-rev20260609-2.0.0</name>
<version>v1-rev20260716-2.0.0</version>
<name>Cloud Pub/Sub API v1-rev20260716-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-pubsub/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-pubsub</artifactId>
<version>v1-rev20260609-2.0.0</version>
<version>v1-rev20260716-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20260609-2.0.0'
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20260716-2.0.0'
}
```

Expand Down
Loading