Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion .github/workflows/hermetic_library_generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
- uses: googleapis/sdk-platform-java/.github/scripts@v2.67.0
- uses: googleapis/sdk-platform-java/.github/scripts@v2.68.0
if: env.SHOULD_RUN == 'true'
with:
base_ref: ${{ github.base_ref }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ If you are using Maven without the BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies:

```Groovy
implementation platform('com.google.cloud:libraries-bom:26.77.0')
implementation platform('com.google.cloud:libraries-bom:26.78.0')

implementation 'com.google.cloud:google-cloud-bigtable'
```
Expand Down
6 changes: 3 additions & 3 deletions generation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gapic_generator_version: 2.67.0
googleapis_commitish: 6f8a554039638f4a9ca78d5f0c964281a16f4166
libraries_bom_version: 26.77.0
gapic_generator_version: 2.68.0
googleapis_commitish: 0b3dec847f1045e47991c1539d4c69d8b025cfe8
libraries_bom_version: 26.78.0
template_excludes:
- .gitignore
- .kokoro/presubmit/integration.cfg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import com.google.api.gax.rpc.ApiCallContext;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.LibraryMetadata;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.PageContext;
import com.google.api.gax.rpc.PagedCallSettings;
Expand Down Expand Up @@ -189,6 +190,7 @@
* }</pre>
*/
@Generated("by gapic-generator-java")
@SuppressWarnings("CanonicalDuration")
public class BigtableInstanceAdminStubSettings
extends StubSettings<BigtableInstanceAdminStubSettings> {
/** The default scopes of the service. */
Expand Down Expand Up @@ -867,6 +869,14 @@ protected BigtableInstanceAdminStubSettings(Builder settingsBuilder) throws IOEx
deleteMaterializedViewSettings = settingsBuilder.deleteMaterializedViewSettings().build();
}

@Override
protected LibraryMetadata getLibraryMetadata() {
return LibraryMetadata.newBuilder()
.setArtifactName("com.google.cloud:google-cloud-bigtable")
.setRepository("googleapis/java-bigtable")
.build();
}

/** Builder for BigtableInstanceAdminStubSettings. */
public static class Builder
extends StubSettings.Builder<BigtableInstanceAdminStubSettings, Builder> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import com.google.api.gax.rpc.ApiCallContext;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.LibraryMetadata;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.PageContext;
import com.google.api.gax.rpc.PagedCallSettings;
Expand Down Expand Up @@ -197,6 +198,7 @@
* }</pre>
*/
@Generated("by gapic-generator-java")
@SuppressWarnings("CanonicalDuration")
public class BigtableTableAdminStubSettings extends StubSettings<BigtableTableAdminStubSettings> {
/** The default scopes of the service. */
private static final ImmutableList<String> DEFAULT_SERVICE_SCOPES =
Expand Down Expand Up @@ -947,6 +949,14 @@ protected BigtableTableAdminStubSettings(Builder settingsBuilder) throws IOExcep
deleteSchemaBundleSettings = settingsBuilder.deleteSchemaBundleSettings().build();
}

@Override
protected LibraryMetadata getLibraryMetadata() {
return LibraryMetadata.newBuilder()
.setArtifactName("com.google.cloud:google-cloud-bigtable")
.setRepository("googleapis/java-bigtable")
.build();
}

/** Builder for BigtableTableAdminStubSettings. */
public static class Builder
extends StubSettings.Builder<BigtableTableAdminStubSettings, Builder> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.google.api.gax.retrying.RetrySettings;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.LibraryMetadata;
import com.google.api.gax.rpc.ServerStreamingCallSettings;
import com.google.api.gax.rpc.StatusCode;
import com.google.api.gax.rpc.StubSettings;
Expand Down Expand Up @@ -260,6 +261,14 @@ protected BigtableStubSettings(Builder settingsBuilder) throws IOException {
executeQuerySettings = settingsBuilder.executeQuerySettings().build();
}

@Override
protected LibraryMetadata getLibraryMetadata() {
return LibraryMetadata.newBuilder()
.setArtifactName("com.google.cloud:google-cloud-bigtable")
.setRepository("googleapis/java-bigtable")
.build();
}

/** Builder for BigtableStubSettings. */
public static class Builder extends StubSettings.Builder<BigtableStubSettings, Builder> {
private final ImmutableList<UnaryCallSettings.Builder<?, ?>> unaryMethodSettingsBuilders;
Expand Down
Loading
Loading