connectors_utility 8.6.0.4.pre.20221115T001453Z → 8.6.0.4.pre.20221115T001812Z
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 +4 -4
- data/lib/core/filtering/validation_status.rb +17 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac5e3edace211b9ddceef02ec8785a9967ddbce0c346f629f40bce93bb1e4951
|
4
|
+
data.tar.gz: e766607f3784e051d52beedb5acec6a8e1fdbfc8334245980c21ac2e06777c10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8cb0768b2bd020d16b54bde70b396f88316fa68092663d0cf05045140b932e94e4aeb3646700527bc07517fff04e7296efccf77d22df8aad6ddbb7b7eaaa7b1
|
7
|
+
data.tar.gz: ae307da6fdec1df3733d910ee7df68aad9fb52f15710539dabde845a405359534c63793649da5445c0191b2c51252ca3616e1f515177038dc317302e95cfcd64
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#
|
2
|
+
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
3
|
+
# or more contributor license agreements. Licensed under the Elastic License;
|
4
|
+
# you may not use this file except in compliance with the Elastic License.
|
5
|
+
#
|
6
|
+
|
7
|
+
# frozen_string_literal: true
|
8
|
+
|
9
|
+
module Core
|
10
|
+
module Filtering
|
11
|
+
class ValidationStatus
|
12
|
+
INVALID = 'invalid'
|
13
|
+
VALID = 'valid'
|
14
|
+
EDITED = 'edited'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: connectors_utility
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.6.0.4.pre.
|
4
|
+
version: 8.6.0.4.pre.20221115T001812Z
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
@@ -108,6 +108,7 @@ files:
|
|
108
108
|
- lib/connectors_utility.rb
|
109
109
|
- lib/core/connector_settings.rb
|
110
110
|
- lib/core/elastic_connector_actions.rb
|
111
|
+
- lib/core/filtering/validation_status.rb
|
111
112
|
- lib/core/scheduler.rb
|
112
113
|
- lib/utility.rb
|
113
114
|
- lib/utility/bulk_queue.rb
|