logstash-input-google_pubsub 1.3.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +7 -0
  3. data/README.md +4 -2
  4. data/docs/index.asciidoc +4 -3
  5. data/lib/logstash/inputs/google_pubsub.rb +20 -3
  6. data/lib/logstash-input-google_pubsub_jars.rb +38 -37
  7. data/logstash-input-google_pubsub.gemspec +0 -1
  8. data/spec/inputs/google_pubsub_spec.rb +8 -0
  9. data/spec/inputs/test.json +14 -0
  10. data/vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar +0 -0
  11. data/vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar +0 -0
  12. data/vendor/jar-dependencies/io/grpc/grpc-api/1.75.0/grpc-api-1.75.0.jar +0 -0
  13. data/vendor/jar-dependencies/io/grpc/grpc-netty-shaded/{1.56.1/grpc-netty-shaded-1.56.1.jar → 1.75.0/grpc-netty-shaded-1.75.0.jar} +0 -0
  14. data/vendor/jar-dependencies/io/grpc/grpc-util/1.75.0/grpc-util-1.75.0.jar +0 -0
  15. data/vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar +0 -0
  16. data/vendor/jar-dependencies/org/logstash/inputs/plugin/1.4.1/plugin-1.4.1.jar +0 -0
  17. metadata +22 -36
  18. data/vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.23.2/protobuf-java-3.23.2.jar +0 -0
  19. data/vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.23.2/protobuf-java-util-3.23.2.jar +0 -0
  20. data/vendor/jar-dependencies/io/grpc/grpc-api/1.56.1/grpc-api-1.56.1.jar +0 -0
  21. data/vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar +0 -0
  22. data/vendor/jar-dependencies/org/logstash/inputs/plugin/1.3.0/plugin-1.3.0.jar +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 939bc59bb6733b670afef19f24a3c651ed5fd984d180dbf89ceb206ee2c633ff
4
- data.tar.gz: f982db5ce84342d6c633131f7cba49e54102ece37d9ec829e7075a3830b39e91
3
+ metadata.gz: a3a35e5a5cdff1316afeb33ec758f75739b3c9f70a82b98ba6aa25231906850c
4
+ data.tar.gz: 4d7aebaa0c8dbd5535a6a75a4f7ddf3540bf126588c90ed8465b9fca0f18630a
5
5
  SHA512:
6
- metadata.gz: 6c79cc1cadb234005cce5b9ed09782c18a030919c42ea8c3bf097e3d2b178f7395362548034f0092d477e8eb9c84ad9c3c54e02aa2e855ff731e1b3f298a589f
7
- data.tar.gz: 5f7b2241d2ab581d56311129b9e7947e589d99264ee3769e07eb5ac53f040cd063bb47f831830fdfc794dcaf2c2bf94a31d8a2f3c27178fec08b4eb590479084
6
+ metadata.gz: '09a9d6a29677789f8d80dea93e72159c7d23d5b4d5f7b728007dd6b01da9231f164c1edea7909fc0e842c1b86ca394994434c72c21814d35a31f5550fdd65266'
7
+ data.tar.gz: f4fcfa827820a110d9cbfca6ab5b79fbc16166eca9900d4bf0a42674b99ce8f7a35e20c680319cffd07bd7dc951e4d23de01cf982b4230f5a522f1f21e60fda6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 1.4.1
2
+ - Re-packaging the plugin [#72](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/72)
3
+ - Removed `jar-dependencies` dependency. [#70](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/70)
4
+
5
+ ## 1.4.0
6
+ - Added optional field json_key_file_content to get Service Account JSON key as an String input. [#68](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/68)
7
+
1
8
  ## 1.3.0
2
9
  - Updated plugins dependencies [#62](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/62)
3
10
 
data/README.md CHANGED
@@ -49,7 +49,9 @@ You have two options for authentication depending on where you run Logstash.
49
49
 
50
50
  1. If you are running Logstash outside of Google Cloud Platform, then you will
51
51
  need to create a Google Cloud Platform Service Account and specify the full
52
- path to the JSON private key file in your config. You must assign sufficient
52
+ path to the JSON private key file in your config in `json_key_file` setting.
53
+ If you don't want to upload the file and use its content as a string, then add the content
54
+ of JSON private key in `json_key_file_content` setting. You must assign sufficient
53
55
  roles to the Service Account to create a subscription and to pull messages
54
56
  from the subscription. Learn more about GCP Service Accounts and IAM roles
55
57
  here:
@@ -58,7 +60,7 @@ here:
58
60
  - Creating Service Accounts [overview](https://cloud.google.com/iam/docs/creating-managing-service-accounts)
59
61
  - Granting Roles [overview](https://cloud.google.com/iam/docs/granting-roles-to-service-accounts)
60
62
 
61
- 1. If you are running Logstash on a Google Compute Engine instance, you may opt
63
+ 2. If you are running Logstash on a Google Compute Engine instance, you may opt
62
64
  to use Application Default Credentials. In this case, you will not need to
63
65
  specify a JSON private key file in your config.
64
66
 
data/docs/index.asciidoc CHANGED
@@ -78,9 +78,10 @@ plugin will return the raw text in as `raw_message` in the logstash `event`.
78
78
 
79
79
  You have two options for authentication depending on where you run Logstash.
80
80
 
81
- 1. If you are running Logstash outside of Google Cloud Platform, then you will
82
- need to create a Google Cloud Platform Service Account and specify the full
83
- path to the JSON private key file in your config. You must assign sufficient
81
+ 1. If you are running Logstash outside of Google Cloud Platform, you need to provide
82
+ the path to the JSON private key file in your config in `json_key_file` setting.
83
+ If you don't want to upload the file and use its content as a string, then add the content
84
+ of JSON private key in `json_key_file_content` setting. You must assign sufficient
84
85
  roles to the Service Account to create a subscription and to pull messages
85
86
  from the subscription. Learn more about GCP Service Accounts and IAM roles
86
87
  here:
@@ -200,10 +200,18 @@ class LogStash::Inputs::GooglePubSub < LogStash::Inputs::Base
200
200
  config :subscription, :validate => :string, :required => true
201
201
  config :max_messages, :validate => :number, :required => true, :default => 5
202
202
 
203
- # If logstash is running within Google Compute Engine, the plugin will use
204
- # GCE's Application Default Credentials. Outside of GCE, you will need to
205
- # specify a Service Account JSON key file.
203
+ # If Logstash is running within Google Compute Engine (GCE), the plugin will use
204
+ # GCE's Application Default Credentials. When running outside of GCE, you must
205
+ # provide a Service Account JSON key. This can be done in one of two ways:
206
+ #
207
+ # 1. Specify the file path to the JSON key file using the `json_key_file` option.
208
+ # 2. Provide the JSON key as a base64-encoded string using the `json_key_file_content` option.
209
+ #
210
+ # Both `json_key_file` and `json_key_file_content` are optional, but you must
211
+ # specify one of them if Logstash is running outside of GCE. It is invalid to
212
+ # provide both options simultaneously.
206
213
  config :json_key_file, :validate => :path, :required => false
214
+ config :json_key_file_content, :validate => :string, :required => false
207
215
 
208
216
  # If set true, will include the full message data in the `[@metadata][pubsub_message]` field.
209
217
  config :include_metadata, :validate => :boolean, :required => false, :default => false
@@ -221,11 +229,20 @@ class LogStash::Inputs::GooglePubSub < LogStash::Inputs::Base
221
229
  @logger.debug("Registering Google PubSub Input: project_id=#{@project_id}, topic=#{@topic}, subscription=#{@subscription}")
222
230
  @subscription_id = "projects/#{@project_id}/subscriptions/#{@subscription}"
223
231
 
232
+ if json_key_file && json_key_file_content
233
+ raise LogStash::ConfigurationError, "Specify either 'json_key_file' or 'json_key_file_content', defining both simultanously is not permitted."
234
+ end
235
+
224
236
  if @json_key_file
225
237
  @credentialsProvider = FixedCredentialsProvider.create(
226
238
  ServiceAccountCredentials.fromStream(java.io.FileInputStream.new(@json_key_file))
227
239
  )
240
+ elsif @json_key_file_content
241
+ @credentialsProvider = FixedCredentialsProvider.create(
242
+ ServiceAccountCredentials.fromStream(java.io.ByteArrayInputStream.new((@json_key_file_content).to_java_bytes))
243
+ )
228
244
  end
245
+
229
246
  @topic_name = ProjectTopicName.of(@project_id, @topic)
230
247
  @subscription_name = ProjectSubscriptionName.of(@project_id, @subscription)
231
248
  end
@@ -2,53 +2,54 @@
2
2
 
3
3
  require 'jar_dependencies'
4
4
  require_jar('com.google.cloud', 'google-cloud-pubsub', '1.124.1')
5
- require_jar('com.google.android', 'annotations', '4.1.1.4')
6
- require_jar('com.google.api.grpc', 'proto-google-cloud-pubsub-v1', '1.106.1')
7
- require_jar('com.google.api.grpc', 'proto-google-common-protos', '2.23.0')
8
- require_jar('com.google.api.grpc', 'proto-google-iam-v1', '1.18.0')
5
+ require_jar('com.google.protobuf', 'protobuf-java', '3.25.5')
6
+ require_jar('com.google.protobuf', 'protobuf-java-util', '3.25.5')
7
+ require_jar('io.grpc', 'grpc-netty-shaded', '1.75.0')
8
+ require_jar('io.grpc', 'grpc-util', '1.75.0')
9
+ require_jar('io.grpc', 'grpc-api', '1.75.0')
10
+ require_jar('io.grpc', 'grpc-context', '1.56.1')
11
+ require_jar('io.grpc', 'grpc-stub', '1.56.1')
12
+ require_jar('io.grpc', 'grpc-protobuf', '1.56.1')
13
+ require_jar('io.grpc', 'grpc-protobuf-lite', '1.56.1')
9
14
  require_jar('com.google.api', 'api-common', '2.15.0')
10
- require_jar('com.google.api', 'gax-grpc', '2.32.0')
11
- require_jar('com.google.api', 'gax-httpjson', '2.32.0')
12
- require_jar('com.google.api', 'gax', '2.32.0')
13
- require_jar('com.google.auth', 'google-auth-library-credentials', '1.19.0')
15
+ require_jar('com.google.api.grpc', 'proto-google-common-protos', '2.23.0')
14
16
  require_jar('com.google.auth', 'google-auth-library-oauth2-http', '1.19.0')
15
- require_jar('com.google.auto.value', 'auto-value-annotations', '1.10.2')
16
- require_jar('com.google.code.findbugs', 'jsr305', '3.0.2')
17
- require_jar('com.google.code.gson', 'gson', '2.10.1')
18
- require_jar('com.google.errorprone', 'error_prone_annotations', '2.18.0')
19
- require_jar('com.google.guava', 'failureaccess', '1.0.1')
17
+ require_jar('com.google.auth', 'google-auth-library-credentials', '1.19.0')
18
+ require_jar('com.google.http-client', 'google-http-client-gson', '1.43.3')
19
+ require_jar('com.google.api.grpc', 'proto-google-cloud-pubsub-v1', '1.106.1')
20
+ require_jar('com.google.api.grpc', 'proto-google-iam-v1', '1.18.0')
20
21
  require_jar('com.google.guava', 'guava', '32.1.2-jre')
22
+ require_jar('com.google.guava', 'failureaccess', '1.0.1')
21
23
  require_jar('com.google.guava', 'listenablefuture', '9999.0-empty-to-avoid-conflict-with-guava')
22
- require_jar('com.google.http-client', 'google-http-client-gson', '1.43.3')
23
- require_jar('com.google.http-client', 'google-http-client', '1.43.3')
24
+ require_jar('org.checkerframework', 'checker-qual', '3.33.0')
24
25
  require_jar('com.google.j2objc', 'j2objc-annotations', '2.8')
25
- require_jar('com.google.protobuf', 'protobuf-java-util', '3.23.2')
26
- require_jar('com.google.protobuf', 'protobuf-java', '3.23.2')
27
- require_jar('com.google.re2j', 're2j', '1.7')
28
- require_jar('commons-codec', 'commons-codec', '1.15')
29
- require_jar('commons-logging', 'commons-logging', '1.2')
26
+ require_jar('com.google.api', 'gax', '2.32.0')
27
+ require_jar('com.google.api', 'gax-grpc', '2.32.0')
30
28
  require_jar('io.grpc', 'grpc-alts', '1.56.1')
31
- require_jar('io.grpc', 'grpc-api', '1.56.1')
29
+ require_jar('io.grpc', 'grpc-grpclb', '1.56.1')
30
+ require_jar('org.conscrypt', 'conscrypt-openjdk-uber', '2.5.2')
32
31
  require_jar('io.grpc', 'grpc-auth', '1.56.1')
33
- require_jar('io.grpc', 'grpc-context', '1.56.1')
34
- require_jar('io.grpc', 'grpc-core', '1.56.1')
35
32
  require_jar('io.grpc', 'grpc-googleapis', '1.56.1')
36
- require_jar('io.grpc', 'grpc-grpclb', '1.56.1')
37
- require_jar('io.grpc', 'grpc-netty-shaded', '1.56.1')
38
- require_jar('io.grpc', 'grpc-protobuf-lite', '1.56.1')
39
- require_jar('io.grpc', 'grpc-protobuf', '1.56.1')
40
- require_jar('io.grpc', 'grpc-services', '1.56.1')
41
- require_jar('io.grpc', 'grpc-stub', '1.56.1')
42
33
  require_jar('io.grpc', 'grpc-xds', '1.56.1')
43
- require_jar('io.opencensus', 'opencensus-api', '0.31.1')
44
- require_jar('io.opencensus', 'opencensus-contrib-http-util', '0.31.1')
45
34
  require_jar('io.opencensus', 'opencensus-proto', '0.2.0')
35
+ require_jar('io.grpc', 'grpc-services', '1.56.1')
36
+ require_jar('com.google.re2j', 're2j', '1.7')
37
+ require_jar('com.google.api', 'gax-httpjson', '2.32.0')
38
+ require_jar('com.google.code.gson', 'gson', '2.10.1')
39
+ require_jar('org.threeten', 'threetenbp', '1.6.8')
40
+ require_jar('com.google.code.findbugs', 'jsr305', '3.0.2')
41
+ require_jar('io.opencensus', 'opencensus-api', '0.31.1')
42
+ require_jar('io.grpc', 'grpc-core', '1.56.1')
43
+ require_jar('com.google.android', 'annotations', '4.1.1.4')
44
+ require_jar('org.codehaus.mojo', 'animal-sniffer-annotations', '1.24')
46
45
  require_jar('io.perfmark', 'perfmark-api', '0.26.0')
47
- require_jar('javax.annotation', 'javax.annotation-api', '1.3.2')
46
+ require_jar('com.google.errorprone', 'error_prone_annotations', '2.18.0')
47
+ require_jar('com.google.auto.value', 'auto-value-annotations', '1.10.2')
48
+ require_jar('com.google.http-client', 'google-http-client', '1.43.3')
48
49
  require_jar('org.apache.httpcomponents', 'httpclient', '4.5.14')
50
+ require_jar('commons-logging', 'commons-logging', '1.2')
51
+ require_jar('commons-codec', 'commons-codec', '1.15')
49
52
  require_jar('org.apache.httpcomponents', 'httpcore', '4.4.16')
50
- require_jar('org.checkerframework', 'checker-qual', '3.33.0')
51
- require_jar('org.codehaus.mojo', 'animal-sniffer-annotations', '1.23')
52
- require_jar('org.conscrypt', 'conscrypt-openjdk-uber', '2.5.2')
53
- require_jar('org.threeten', 'threetenbp', '1.6.8')
54
- require_jar('org.logstash.inputs', 'plugin', '1.3.0')
53
+ require_jar('io.opencensus', 'opencensus-contrib-http-util', '0.31.1')
54
+ require_jar('javax.annotation', 'javax.annotation-api', '1.3.2')
55
+ require_jar('org.logstash.inputs', 'plugin', '1.4.1')
@@ -31,5 +31,4 @@ Gem::Specification.new do |s|
31
31
  s.requirements << "jar 'com.google.api:api-common', '1.2.0'"
32
32
  s.requirements << "jar 'com.google.auth:google-auth-library-oauth2-http', '0.9.0'"
33
33
  s.add_development_dependency 'logstash-devutils'
34
- s.add_development_dependency 'jar-dependencies', '~> 0.4'
35
34
  end
@@ -34,4 +34,12 @@ describe LogStash::Inputs::GooglePubSub do
34
34
  plugin = LogStash::Inputs::GooglePubSub.new(bad3)
35
35
  }.to raise_error(LogStash::ConfigurationError)
36
36
  end
37
+
38
+ let(:file_and_content_config_settings) { { 'project_id' => 'myproj', 'subscription' => 'foo', 'topic' => 'bar', 'json_key_file' => 'spec/inputs/test.json', 'json_key_file_content' => '{}' } }
39
+ it "raise a configuration error if both 'json_key_file' and 'json_key_file_content' are present" do
40
+ expect {
41
+ plugin = LogStash::Inputs::GooglePubSub.new(file_and_content_config_settings)
42
+ plugin.register()
43
+ }.to raise_error(LogStash::ConfigurationError)
44
+ end
37
45
  end
@@ -0,0 +1,14 @@
1
+ {
2
+ "type": "service_account",
3
+ "project_id": "test-project-id",
4
+ "private_key_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
5
+ "private_key": "-----BEGIN PRIVATE KEY-----\nxxxxxxxxxxx\n-----END PRIVATE KEY-----\n",
6
+ "client_email": "test-username@test-project-id.iam.gserviceaccount.com",
7
+ "client_id": "111111111111111111111",
8
+ "auth_uri": "https://accounts.google.com/o/oauth2/auth",
9
+ "token_uri": "https://oauth2.googleapis.com/token",
10
+ "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
11
+ "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/apachesolrgcp-pubsub%40charged-mind-281913.iam.gserviceaccount.com",
12
+ "universe_domain": "googleapis.com"
13
+ }
14
+
metadata CHANGED
@@ -1,30 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-google_pubsub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Johnson
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-08-22 00:00:00.000000000 Z
10
+ date: 2026-01-31 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
13
+ name: logstash-core
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
18
  version: 8.2.0
19
- name: logstash-core
20
- prerelease: false
21
19
  type: :runtime
20
+ prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
25
  version: 8.2.0
27
26
  - !ruby/object:Gem::Dependency
27
+ name: logstash-core-plugin-api
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - ">="
@@ -33,9 +33,8 @@ dependencies:
33
33
  - - "<="
34
34
  - !ruby/object:Gem::Version
35
35
  version: '2.99'
36
- name: logstash-core-plugin-api
37
- prerelease: false
38
36
  type: :runtime
37
+ prerelease: false
39
38
  version_requirements: !ruby/object:Gem::Requirement
40
39
  requirements:
41
40
  - - ">="
@@ -45,61 +44,47 @@ dependencies:
45
44
  - !ruby/object:Gem::Version
46
45
  version: '2.99'
47
46
  - !ruby/object:Gem::Dependency
47
+ name: logstash-codec-plain
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: '0'
53
- name: logstash-codec-plain
54
- prerelease: false
55
53
  type: :runtime
54
+ prerelease: false
56
55
  version_requirements: !ruby/object:Gem::Requirement
57
56
  requirements:
58
57
  - - ">="
59
58
  - !ruby/object:Gem::Version
60
59
  version: '0'
61
60
  - !ruby/object:Gem::Dependency
61
+ name: stud
62
62
  requirement: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: 0.0.22
67
- name: stud
68
- prerelease: false
69
67
  type: :runtime
68
+ prerelease: false
70
69
  version_requirements: !ruby/object:Gem::Requirement
71
70
  requirements:
72
71
  - - ">="
73
72
  - !ruby/object:Gem::Version
74
73
  version: 0.0.22
75
74
  - !ruby/object:Gem::Dependency
75
+ name: logstash-devutils
76
76
  requirement: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
80
  version: '0'
81
- name: logstash-devutils
82
- prerelease: false
83
81
  type: :development
82
+ prerelease: false
84
83
  version_requirements: !ruby/object:Gem::Requirement
85
84
  requirements:
86
85
  - - ">="
87
86
  - !ruby/object:Gem::Version
88
87
  version: '0'
89
- - !ruby/object:Gem::Dependency
90
- requirement: !ruby/object:Gem::Requirement
91
- requirements:
92
- - - "~>"
93
- - !ruby/object:Gem::Version
94
- version: '0.4'
95
- name: jar-dependencies
96
- prerelease: false
97
- type: :development
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '0.4'
103
88
  description: This gem is a Logstash input plugin required to be installed on top of
104
89
  the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
105
90
  gem is not a stand-alone program.
@@ -120,6 +105,7 @@ files:
120
105
  - lib/logstash/inputs/google_pubsub.rb
121
106
  - logstash-input-google_pubsub.gemspec
122
107
  - spec/inputs/google_pubsub_spec.rb
108
+ - spec/inputs/test.json
123
109
  - vendor/jar-dependencies/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar
124
110
  - vendor/jar-dependencies/com/google/api/api-common/2.15.0/api-common-2.15.0.jar
125
111
  - vendor/jar-dependencies/com/google/api/gax-grpc/2.32.0/gax-grpc-2.32.0.jar
@@ -141,23 +127,24 @@ files:
141
127
  - vendor/jar-dependencies/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar
142
128
  - vendor/jar-dependencies/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar
143
129
  - vendor/jar-dependencies/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar
144
- - vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.23.2/protobuf-java-util-3.23.2.jar
145
- - vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.23.2/protobuf-java-3.23.2.jar
130
+ - vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar
131
+ - vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar
146
132
  - vendor/jar-dependencies/com/google/re2j/re2j/1.7/re2j-1.7.jar
147
133
  - vendor/jar-dependencies/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
148
134
  - vendor/jar-dependencies/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
149
135
  - vendor/jar-dependencies/io/grpc/grpc-alts/1.56.1/grpc-alts-1.56.1.jar
150
- - vendor/jar-dependencies/io/grpc/grpc-api/1.56.1/grpc-api-1.56.1.jar
136
+ - vendor/jar-dependencies/io/grpc/grpc-api/1.75.0/grpc-api-1.75.0.jar
151
137
  - vendor/jar-dependencies/io/grpc/grpc-auth/1.56.1/grpc-auth-1.56.1.jar
152
138
  - vendor/jar-dependencies/io/grpc/grpc-context/1.56.1/grpc-context-1.56.1.jar
153
139
  - vendor/jar-dependencies/io/grpc/grpc-core/1.56.1/grpc-core-1.56.1.jar
154
140
  - vendor/jar-dependencies/io/grpc/grpc-googleapis/1.56.1/grpc-googleapis-1.56.1.jar
155
141
  - vendor/jar-dependencies/io/grpc/grpc-grpclb/1.56.1/grpc-grpclb-1.56.1.jar
156
- - vendor/jar-dependencies/io/grpc/grpc-netty-shaded/1.56.1/grpc-netty-shaded-1.56.1.jar
142
+ - vendor/jar-dependencies/io/grpc/grpc-netty-shaded/1.75.0/grpc-netty-shaded-1.75.0.jar
157
143
  - vendor/jar-dependencies/io/grpc/grpc-protobuf-lite/1.56.1/grpc-protobuf-lite-1.56.1.jar
158
144
  - vendor/jar-dependencies/io/grpc/grpc-protobuf/1.56.1/grpc-protobuf-1.56.1.jar
159
145
  - vendor/jar-dependencies/io/grpc/grpc-services/1.56.1/grpc-services-1.56.1.jar
160
146
  - vendor/jar-dependencies/io/grpc/grpc-stub/1.56.1/grpc-stub-1.56.1.jar
147
+ - vendor/jar-dependencies/io/grpc/grpc-util/1.75.0/grpc-util-1.75.0.jar
161
148
  - vendor/jar-dependencies/io/grpc/grpc-xds/1.56.1/grpc-xds-1.56.1.jar
162
149
  - vendor/jar-dependencies/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar
163
150
  - vendor/jar-dependencies/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar
@@ -167,9 +154,9 @@ files:
167
154
  - vendor/jar-dependencies/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
168
155
  - vendor/jar-dependencies/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
169
156
  - vendor/jar-dependencies/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
170
- - vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar
157
+ - vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar
171
158
  - vendor/jar-dependencies/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar
172
- - vendor/jar-dependencies/org/logstash/inputs/plugin/1.3.0/plugin-1.3.0.jar
159
+ - vendor/jar-dependencies/org/logstash/inputs/plugin/1.4.1/plugin-1.4.1.jar
173
160
  - vendor/jar-dependencies/org/threeten/threetenbp/1.6.8/threetenbp-1.6.8.jar
174
161
  homepage: https://cloud.google.com/pubsub/overview
175
162
  licenses:
@@ -177,7 +164,6 @@ licenses:
177
164
  metadata:
178
165
  logstash_plugin: 'true'
179
166
  logstash_group: input
180
- post_install_message:
181
167
  rdoc_options: []
182
168
  require_paths:
183
169
  - lib
@@ -199,9 +185,9 @@ requirements:
199
185
  - jar 'com.google.guava:guava', '20.0'
200
186
  - jar 'com.google.api:api-common', '1.2.0'
201
187
  - jar 'com.google.auth:google-auth-library-oauth2-http', '0.9.0'
202
- rubygems_version: 3.2.33
203
- signing_key:
188
+ rubygems_version: 3.6.3
204
189
  specification_version: 4
205
190
  summary: Consume events from a Google Cloud PubSub service
206
191
  test_files:
207
192
  - spec/inputs/google_pubsub_spec.rb
193
+ - spec/inputs/test.json