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
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-bigtableadmin</artifactId>
<version>v2-rev20260708-2.0.0</version>
<version>v2-rev20260713-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260708-2.0.0'
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20260713-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7443,6 +7443,26 @@ public Create setParent(java.lang.String parent) {
return this;
}

/**
* Optional. If true, ignore optional safety checks when creating the materialized view.
*/
@com.google.api.client.util.Key
private java.lang.Boolean ignoreWarnings;

/** Optional. If true, ignore optional safety checks when creating the materialized view.
*/
public java.lang.Boolean getIgnoreWarnings() {
return ignoreWarnings;
}

/**
* Optional. If true, ignore optional safety checks when creating the materialized view.
*/
public Create setIgnoreWarnings(java.lang.Boolean ignoreWarnings) {
this.ignoreWarnings = ignoreWarnings;
return this;
}

/**
* Required. The ID to use for the materialized view, which will become the final
* component of the materialized view's resource name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class CreateMaterializedViewRequest extends com.google.api.client.json.GenericJson {

/**
* Optional. If true, ignore optional safety checks when creating the materialized view.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean ignoreWarnings;

/**
* Required. The materialized view to create.
* The value may be {@code null}.
Expand All @@ -53,6 +60,23 @@ public final class CreateMaterializedViewRequest extends com.google.api.client.j
@com.google.api.client.util.Key
private java.lang.String parent;

/**
* Optional. If true, ignore optional safety checks when creating the materialized view.
* @return value or {@code null} for none
*/
public java.lang.Boolean getIgnoreWarnings() {
return ignoreWarnings;
}

/**
* Optional. If true, ignore optional safety checks when creating the materialized view.
* @param ignoreWarnings ignoreWarnings or {@code null} for none
*/
public CreateMaterializedViewRequest setIgnoreWarnings(java.lang.Boolean ignoreWarnings) {
this.ignoreWarnings = ignoreWarnings;
return this;
}

/**
* Required. The materialized view to create.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
<version>v2-rev20260708-2.0.0</version>
<name>Cloud Bigtable Admin API v2-rev20260708-2.0.0</name>
<version>v2-rev20260713-2.0.0</version>
<name>Cloud Bigtable Admin API v2-rev20260713-2.0.0</name>
<packaging>jar</packaging>

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

Expand Down
Loading