diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7532a5d..d7a27a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,19 +8,22 @@ on: branches: - main +permissions: + contents: read + jobs: build: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 + uses: actions/checkout@v5 + - uses: actions/setup-java@v5 with: distribution: "temurin" java-version: "18" cache: "gradle" - name: Validate Gradle wrapper # v4.4.1 - uses: gradle/actions/wrapper-validation@83c124bfb09badf85ddfbf01158b5592c1a78c4a + uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 - name: Build package run: ./gradlew build diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index c7c8e47..fb72636 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -7,6 +7,9 @@ on: - edited - synchronize +permissions: + pull-requests: read + jobs: main: name: Validate PR title @@ -14,7 +17,7 @@ jobs: steps: # Please look up the latest version from # https://github.com/amannn/action-semantic-pull-request/releases - - uses: amannn/action-semantic-pull-request@v5 + - uses: amannn/action-semantic-pull-request@v6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -41,7 +44,7 @@ jobs: # special "[WIP]" prefix to indicate this state. This will avoid the # validation of the PR title and the pull request checks remain pending. # Note that a second check will be reported if this is enabled. - wip: true + wip: false # When using "Squash and merge" on a PR with only one commit, GitHub # will suggest using that commit message instead of the PR title for the # merge commit, and it's easy to commit this by mistake. Enable this option diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 091c0d4..9813335 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,24 +2,27 @@ name: publish on: push: tags: - - 'v*.*.*' + - "v*.*.*" + +permissions: + contents: read jobs: - publish: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: '18' - cache: 'gradle' - - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6 - - name: Publish package - uses: gradle/gradle-build-action@093dfe9d598ec5a42246855d09b49dc76803c005 - with: - arguments: publish - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + publish: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v5 + - uses: actions/setup-java@v5 + with: + distribution: "temurin" + java-version: "18" + cache: "gradle" + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6 + - name: Publish package + uses: gradle/gradle-build-action@093dfe9d598ec5a42246855d09b49dc76803c005 + with: + arguments: publish + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index 1d971bd..265fdcb 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -4,18 +4,21 @@ on: - cron: "0 8 * * *" workflow_dispatch: +permissions: + contents: read + jobs: regen: timeout-minutes: 30 runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 + uses: actions/checkout@v5 + - uses: actions/setup-java@v5 with: - distribution: 'temurin' - java-version: '18' - cache: 'gradle' + distribution: "temurin" + java-version: "18" + cache: "gradle" - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6 - name: Generate code diff --git a/.github/workflows/release_pr.yml b/.github/workflows/release_pr.yml index a431fe5..5cbe3ae 100644 --- a/.github/workflows/release_pr.yml +++ b/.github/workflows/release_pr.yml @@ -4,6 +4,9 @@ on: branches: - main +permissions: + contents: read + jobs: release-please: runs-on: ubuntu-latest diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a4c7ad2..d1b9552 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.35" + ".": "0.0.36" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 200bc7e..6c1e140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.0.36](https://github.com/cloudquery/plugin-pb-java/compare/v0.0.35...v0.0.36) (2025-10-01) + + +### Bug Fixes + +* **deps:** Update dependency com.google.protobuf:protobuf-java-util to v4.32.1 ([#191](https://github.com/cloudquery/plugin-pb-java/issues/191)) ([69d402d](https://github.com/cloudquery/plugin-pb-java/commit/69d402d72c5301403ec0786b31c534856e39e794)) +* **deps:** Update dependency org.mockito:mockito-core to v5.20.0 ([#192](https://github.com/cloudquery/plugin-pb-java/issues/192)) ([0b7e1db](https://github.com/cloudquery/plugin-pb-java/commit/0b7e1dbb39219f7c6824fc78ac5d2af2d8aca12d)) +* Generate Java Code from `plugin-pb` ([#187](https://github.com/cloudquery/plugin-pb-java/issues/187)) ([96e5158](https://github.com/cloudquery/plugin-pb-java/commit/96e51581b6799f5b011170611f6f9162180bb343)) +* Generate Java Code from `plugin-pb` ([#196](https://github.com/cloudquery/plugin-pb-java/issues/196)) ([a5254cf](https://github.com/cloudquery/plugin-pb-java/commit/a5254cfc2e57dfcea7ad95fc3a838ffb4f971a5b)) + ## [0.0.35](https://github.com/cloudquery/plugin-pb-java/compare/v0.0.34...v0.0.35) (2025-09-01) diff --git a/build.gradle b/build.gradle index 16119b4..29fcad3 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ mainClassName = 'main.Main' group 'io.cloudquery' // x-release-please-start-version -version = '0.0.35' +version = '0.0.36' // x-release-please-end repositories { @@ -24,7 +24,7 @@ sourceCompatibility = 1.8 targetCompatibility = 1.8 def grpcVersion = '1.75.0' -def protobufVersion = '4.32.0' +def protobufVersion = '4.32.1' def protocVersion = protobufVersion dependencies { @@ -40,7 +40,7 @@ dependencies { testImplementation "io.grpc:grpc-testing:${grpcVersion}" testImplementation "junit:junit:4.13.2" - testImplementation "org.mockito:mockito-core:5.19.0" + testImplementation "org.mockito:mockito-core:5.20.0" } protobuf { diff --git a/build/generated/source/proto/main/grpc/io/cloudquery/discovery/v1/DiscoveryGrpc.java b/build/generated/source/proto/main/grpc/io/cloudquery/discovery/v1/DiscoveryGrpc.java index af642ae..a7c505b 100644 --- a/build/generated/source/proto/main/grpc/io/cloudquery/discovery/v1/DiscoveryGrpc.java +++ b/build/generated/source/proto/main/grpc/io/cloudquery/discovery/v1/DiscoveryGrpc.java @@ -4,9 +4,6 @@ /** */ -@javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.73.0)", - comments = "Source: cloudquery/discovery/v1/discovery.proto") @io.grpc.stub.annotations.GrpcGenerated public final class DiscoveryGrpc { @@ -180,8 +177,8 @@ protected DiscoveryBlockingV2Stub build( * Get the name of the plugin * */ - public io.cloudquery.discovery.v1.GetVersions.Response getVersions(io.cloudquery.discovery.v1.GetVersions.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.discovery.v1.GetVersions.Response getVersions(io.cloudquery.discovery.v1.GetVersions.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetVersionsMethod(), getCallOptions(), request); } } diff --git a/build/generated/source/proto/main/grpc/io/cloudquery/plugin/v3/PluginGrpc.java b/build/generated/source/proto/main/grpc/io/cloudquery/plugin/v3/PluginGrpc.java index 9f4b357..03f8d22 100644 --- a/build/generated/source/proto/main/grpc/io/cloudquery/plugin/v3/PluginGrpc.java +++ b/build/generated/source/proto/main/grpc/io/cloudquery/plugin/v3/PluginGrpc.java @@ -4,9 +4,6 @@ /** */ -@javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.73.0)", - comments = "Source: cloudquery/plugin/v3/plugin.proto") @io.grpc.stub.annotations.GrpcGenerated public final class PluginGrpc { @@ -758,8 +755,8 @@ protected PluginBlockingV2Stub build( * Get the name of the plugin * */ - public io.cloudquery.plugin.v3.GetName.Response getName(io.cloudquery.plugin.v3.GetName.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.GetName.Response getName(io.cloudquery.plugin.v3.GetName.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetNameMethod(), getCallOptions(), request); } @@ -768,8 +765,8 @@ public io.cloudquery.plugin.v3.GetName.Response getName(io.cloudquery.plugin.v3. * Get the current version of the plugin * */ - public io.cloudquery.plugin.v3.GetVersion.Response getVersion(io.cloudquery.plugin.v3.GetVersion.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.GetVersion.Response getVersion(io.cloudquery.plugin.v3.GetVersion.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetVersionMethod(), getCallOptions(), request); } @@ -780,8 +777,8 @@ public io.cloudquery.plugin.v3.GetVersion.Response getVersion(io.cloudquery.plug * Should be called before Init. * */ - public io.cloudquery.plugin.v3.GetSpecSchema.Response getSpecSchema(io.cloudquery.plugin.v3.GetSpecSchema.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.GetSpecSchema.Response getSpecSchema(io.cloudquery.plugin.v3.GetSpecSchema.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetSpecSchemaMethod(), getCallOptions(), request); } @@ -790,8 +787,8 @@ public io.cloudquery.plugin.v3.GetSpecSchema.Response getSpecSchema(io.cloudquer * Configure the plugin with the given credentials and mode * */ - public io.cloudquery.plugin.v3.Init.Response init(io.cloudquery.plugin.v3.Init.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.Init.Response init(io.cloudquery.plugin.v3.Init.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getInitMethod(), getCallOptions(), request); } @@ -800,8 +797,8 @@ public io.cloudquery.plugin.v3.Init.Response init(io.cloudquery.plugin.v3.Init.R * Get all tables the source plugin supports. Must be called after Init * */ - public io.cloudquery.plugin.v3.GetTables.Response getTables(io.cloudquery.plugin.v3.GetTables.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.GetTables.Response getTables(io.cloudquery.plugin.v3.GetTables.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getGetTablesMethod(), getCallOptions(), request); } @@ -859,8 +856,8 @@ public io.cloudquery.plugin.v3.GetTables.Response getTables(io.cloudquery.plugin * Transform schemas. * */ - public io.cloudquery.plugin.v3.TransformSchema.Response transformSchema(io.cloudquery.plugin.v3.TransformSchema.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.TransformSchema.Response transformSchema(io.cloudquery.plugin.v3.TransformSchema.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getTransformSchemaMethod(), getCallOptions(), request); } @@ -869,8 +866,8 @@ public io.cloudquery.plugin.v3.TransformSchema.Response transformSchema(io.cloud * Send signal to flush and close open connections * */ - public io.cloudquery.plugin.v3.Close.Response close(io.cloudquery.plugin.v3.Close.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.Close.Response close(io.cloudquery.plugin.v3.Close.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getCloseMethod(), getCallOptions(), request); } @@ -879,8 +876,8 @@ public io.cloudquery.plugin.v3.Close.Response close(io.cloudquery.plugin.v3.Clos * Validate and test the connections used by the plugin * */ - public io.cloudquery.plugin.v3.TestConnection.Response testConnection(io.cloudquery.plugin.v3.TestConnection.Request request) { - return io.grpc.stub.ClientCalls.blockingUnaryCall( + public io.cloudquery.plugin.v3.TestConnection.Response testConnection(io.cloudquery.plugin.v3.TestConnection.Request request) throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( getChannel(), getTestConnectionMethod(), getCallOptions(), request); } } diff --git a/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/DiscoveryOuterClass.java b/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/DiscoveryOuterClass.java index dec4f8e..712b61b 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/DiscoveryOuterClass.java +++ b/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/DiscoveryOuterClass.java @@ -1,18 +1,18 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/discovery/v1/discovery.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.discovery.v1; @com.google.protobuf.Generated -public final class DiscoveryOuterClass { +public final class DiscoveryOuterClass extends com.google.protobuf.GeneratedFile { private DiscoveryOuterClass() {} static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", DiscoveryOuterClass.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersions.java b/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersions.java index 211a819..3e6cb42 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersions.java +++ b/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersions.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/discovery/v1/discovery.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.discovery.v1; @@ -18,7 +18,7 @@ public final class GetVersions extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", GetVersions.class.getName()); @@ -59,7 +59,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -431,7 +431,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersionsOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersionsOrBuilder.java index e3cf63d..83cc7e4 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersionsOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/discovery/v1/GetVersionsOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/discovery/v1/discovery.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.discovery.v1; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Close.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Close.java index 172b2e4..d7f0fc6 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Close.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Close.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Close extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Close.class.getName()); @@ -59,7 +59,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -414,7 +414,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/CloseOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/CloseOrBuilder.java index cfb5b6c..11af12e 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/CloseOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/CloseOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetName.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetName.java index c8f9c42..19d09ad 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetName.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetName.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class GetName extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", GetName.class.getName()); @@ -59,7 +59,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -426,7 +426,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetNameOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetNameOrBuilder.java index 073a44c..6d65417 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetNameOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetNameOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchema.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchema.java index 8320263..b6868e0 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchema.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchema.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class GetSpecSchema extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", GetSpecSchema.class.getName()); @@ -59,7 +59,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -446,7 +446,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchemaOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchemaOrBuilder.java index 5e25f78..b40889d 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchemaOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetSpecSchemaOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTables.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTables.java index 47b75d5..990418e 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTables.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTables.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class GetTables extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", GetTables.class.getName()); @@ -115,7 +115,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -951,7 +951,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTablesOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTablesOrBuilder.java index 81b6d47..cf9d9cf 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTablesOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetTablesOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersion.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersion.java index d3376dd..abe7329 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersion.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersion.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class GetVersion extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", GetVersion.class.getName()); @@ -59,7 +59,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -426,7 +426,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersionOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersionOrBuilder.java index 5c355ef..078cfb3 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersionOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/GetVersionOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Init.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Init.java index 028035c..da9df5c 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Init.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Init.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Init extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Init.class.getName()); @@ -99,7 +99,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -791,7 +791,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/InitOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/InitOrBuilder.java index 85f8c64..6f54c65 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/InitOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/InitOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PluginOuterClass.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PluginOuterClass.java index 7edcd03..12ffb7a 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PluginOuterClass.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PluginOuterClass.java @@ -1,18 +1,18 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @com.google.protobuf.Generated -public final class PluginOuterClass { +public final class PluginOuterClass extends com.google.protobuf.GeneratedFile { private PluginOuterClass() {} static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", PluginOuterClass.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Predicate.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Predicate.java index 57d9af3..693f34b 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Predicate.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Predicate.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Predicate extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Predicate.class.getName()); @@ -69,7 +69,7 @@ public enum Operator com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Operator.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicateOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicateOrBuilder.java index ef95220..9e88875 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicateOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicateOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroup.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroup.java index a9b0f26..8e3b550 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroup.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroup.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class PredicatesGroup extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", PredicatesGroup.class.getName()); @@ -65,7 +65,7 @@ public enum GroupingType com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", GroupingType.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroupOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroupOrBuilder.java index 412b1eb..ae8d351 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroupOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/PredicatesGroupOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Read.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Read.java index 37303e8..d32f817 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Read.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Read.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Read extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Read.class.getName()); @@ -69,7 +69,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -524,7 +524,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/ReadOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/ReadOrBuilder.java index 12d87b2..37bd14d 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/ReadOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/ReadOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Sync.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Sync.java index e73bf69..f72398f 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Sync.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Sync.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Sync extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Sync.class.getName()); @@ -69,7 +69,7 @@ public static final class MessageInsert extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageInsert.class.getName()); @@ -524,7 +524,7 @@ public static final class MessageMigrateTable extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageMigrateTable.class.getName()); @@ -1029,7 +1029,7 @@ public static final class MessageDeleteRecord extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageDeleteRecord.class.getName()); @@ -2255,7 +2255,7 @@ public static final class MessageError extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageError.class.getName()); @@ -2929,7 +2929,7 @@ public static final class BackendOptions extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", BackendOptions.class.getName()); @@ -3721,7 +3721,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -3778,7 +3778,7 @@ public static final class Shard extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Shard.class.getName()); @@ -5624,7 +5624,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/SyncOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/SyncOrBuilder.java index f17c3cc..afffbad 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/SyncOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/SyncOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelation.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelation.java index 391747e..6b9abc9 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelation.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelation.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class TableRelation extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", TableRelation.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelationOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelationOrBuilder.java index 0e69a6f..e8d21b2 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelationOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TableRelationOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnection.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnection.java index 7775398..778d5dc 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnection.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnection.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class TestConnection extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", TestConnection.class.getName()); @@ -69,7 +69,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -544,7 +544,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnectionOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnectionOrBuilder.java index 0894c1d..f97c008 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnectionOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TestConnectionOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Transform.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Transform.java index 07ccec0..0949d41 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Transform.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Transform.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Transform extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Transform.class.getName()); @@ -69,7 +69,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -524,7 +524,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformOrBuilder.java index 9b91cbd..c5d0fd9 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchema.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchema.java index 0821bef..9bf69b6 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchema.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchema.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class TransformSchema extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", TransformSchema.class.getName()); @@ -69,7 +69,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -524,7 +524,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchemaOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchemaOrBuilder.java index 8edbc44..96a343c 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchemaOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/TransformSchemaOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Write.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Write.java index 0bf29a5..ee5b882 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Write.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/Write.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3; @@ -18,7 +18,7 @@ public final class Write extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Write.class.getName()); @@ -75,7 +75,7 @@ public static final class MessageMigrateTable extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageMigrateTable.class.getName()); @@ -597,7 +597,7 @@ public static final class MessageInsert extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageInsert.class.getName()); @@ -1093,7 +1093,7 @@ public static final class MessageDeleteStale extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageDeleteStale.class.getName()); @@ -2071,7 +2071,7 @@ public static final class MessageDeleteRecord extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", MessageDeleteRecord.class.getName()); @@ -3335,7 +3335,7 @@ public static final class Request extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Request.class.getName()); @@ -4604,7 +4604,7 @@ public static final class Response extends com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, - /* minor= */ 31, + /* minor= */ 32, /* patch= */ 1, /* suffix= */ "", Response.class.getName()); diff --git a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/WriteOrBuilder.java b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/WriteOrBuilder.java index 3eee27e..f3abcb9 100644 --- a/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/WriteOrBuilder.java +++ b/build/generated/source/proto/main/java/io/cloudquery/plugin/v3/WriteOrBuilder.java @@ -1,7 +1,7 @@ // Generated by the protocol buffer compiler. DO NOT EDIT! // NO CHECKED-IN PROTOBUF GENCODE // source: cloudquery/plugin/v3/plugin.proto -// Protobuf Java Version: 4.31.1 +// Protobuf Java Version: 4.32.1 package io.cloudquery.plugin.v3;