logstash-integration-aws 7.1.7-java → 7.1.8-java

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8f9ae63dfee1103ddee32c8ab76ba8b340bae55a552013a8ac460c88a3325c7
4
- data.tar.gz: 6d99db14db59800f5169b4a127d3ab0dca4b9f5cda9287acbb4902c2cb560ec0
3
+ metadata.gz: 66108a18e73b5e988bded6e5de34f8a9eb914218c6f1d27f7a3be9cf57763396
4
+ data.tar.gz: 11a2a73eaa92dd70459940a6f0ea5067dfd2089e7ab5cf2bd5c5ed903a21fbfd
5
5
  SHA512:
6
- metadata.gz: 5e64bef3daf41ea9870cf7c3d3b9fc32aacda2e2d110fd02640e3340c9f5136cf5848b0675a048b5f15bec7a2a58e7be21b62707108d54a93938217753bb5894
7
- data.tar.gz: 5995bc4f39a56d88b430dd64a201fce2764fc195586d35a1d042b16d90a4646ecb0524cf758d098d6712e8b8a8395e05a3f1bc1f5b978557d1791df375b2a586
6
+ metadata.gz: e3f3b447382601f2437c51acd92772eb0c12d7397d4cd8d4cfb47d664bee6e53a0bf14d76f7434a691526fd9f7c4786c508c45851f5fd057fe8a4802cb3c23d7
7
+ data.tar.gz: 55fc854162afe32be6f17f5393d50154624c411b5b9fcdd1386e42b9c212b86c56f0fe658a9b01f854fa5c101726f0d1bef7ad6534f4593d431e47dd57b5677a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 7.1.8
2
+ - adding all supported storage classes for s3 output [#49](https://github.com/logstash-plugins/logstash-integration-aws/pull/49)
3
+
1
4
  ## 7.1.7
2
5
  - Remove empty temporary dirs at plugin close [#46](https://github.com/logstash-plugins/logstash-integration-aws/pull/46)
3
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 7.1.7
1
+ 7.1.8
@@ -107,7 +107,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
107
107
  | <<plugins-{type}s-{plugin}-signature_version>> |<<string,string>>, one of `["v2", "v4"]`|No
108
108
  | <<plugins-{type}s-{plugin}-size_file>> |<<number,number>>|No
109
109
  | <<plugins-{type}s-{plugin}-ssekms_key_id>> |<<string,string>>|No
110
- | <<plugins-{type}s-{plugin}-storage_class>> |<<string,string>>, one of `["STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA"]`|No
110
+ | <<plugins-{type}s-{plugin}-storage_class>> |<<string,string>>, one of `["STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE"]`|No
111
111
  | <<plugins-{type}s-{plugin}-temporary_directory>> |<<string,string>>|No
112
112
  | <<plugins-{type}s-{plugin}-time_file>> |<<number,number>>|No
113
113
  | <<plugins-{type}s-{plugin}-upload_multipart_threshold>> |<<number,number>>|No
@@ -375,7 +375,7 @@ http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html
375
375
  [id="plugins-{type}s-{plugin}-storage_class"]
376
376
  ===== `storage_class`
377
377
 
378
- * Value can be any of: `STANDARD`, `REDUCED_REDUNDANCY`, `STANDARD_IA`, `ONEZONE_IA`
378
+ * Value can be any of: `STANDARD`, `REDUCED_REDUNDANCY`, `STANDARD_IA`, `ONEZONE_IA`, `INTELLIGENT_TIERING`, `GLACIER`, `DEEP_ARCHIVE`, `OUTPOSTS`, `GLACIER_IR`, `SNOW`, `EXPRESS_ONEZONE`
379
379
  * Default value is `"STANDARD"`
380
380
 
381
381
  Specifies what S3 storage class to use when uploading the file.
@@ -142,7 +142,7 @@ class LogStash::Outputs::S3 < LogStash::Outputs::Base
142
142
  # More information about the different storage classes can be found:
143
143
  # http://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html
144
144
  # Defaults to STANDARD.
145
- config :storage_class, :validate => ["STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA"], :default => "STANDARD"
145
+ config :storage_class, :validate => ["STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE"], :default => "STANDARD"
146
146
 
147
147
  # Set the directory where logstash will store the tmp files before sending it to S3
148
148
  # default to the current OS temporary directory in linux /tmp/logstash
@@ -1,4 +1,4 @@
1
1
  # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
2
 
3
3
  require 'jar_dependencies'
4
- require_jar('org.logstash.plugins.integration.aws', 'logstash-integration-aws', '7.1.7')
4
+ require_jar('org.logstash.plugins.integration.aws', 'logstash-integration-aws', '7.1.8')
@@ -122,7 +122,7 @@ describe LogStash::Outputs::S3 do
122
122
 
123
123
  describe "Storage Class" do
124
124
  context "when configured" do
125
- ["STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA"].each do |storage_class|
125
+ ["STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW", "EXPRESS_ONEZONE"].each do |storage_class|
126
126
  it "should return the configured storage class: #{storage_class}" do
127
127
  s3 = described_class.new(options.merge({ "storage_class" => storage_class }))
128
128
  expect(s3.upload_options).to include(:storage_class => storage_class)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-integration-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.7
4
+ version: 7.1.8
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -408,7 +408,7 @@ files:
408
408
  - spec/spec_helper.rb
409
409
  - spec/support/helpers.rb
410
410
  - spec/unit/outputs/sqs_spec.rb
411
- - vendor/jar-dependencies/org/logstash/plugins/integration/aws/logstash-integration-aws/7.1.7/logstash-integration-aws-7.1.7.jar
411
+ - vendor/jar-dependencies/org/logstash/plugins/integration/aws/logstash-integration-aws/7.1.8/logstash-integration-aws-7.1.8.jar
412
412
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
413
413
  licenses:
414
414
  - Apache-2.0