fluent-plugin-azure-storage-append-blob-lts-azurestack 0.6.2 → 0.6.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1abc7df5ad431ef47cc2ecc2224f6ebb10b848a199dba3e5eb74d7d6a9d10909
|
|
4
|
+
data.tar.gz: cc19bc1527cd975c91da06e930f73b0c60c1c699a4795bb8fcc31bffc0c243f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acf793f72fbd8f2e965f6e9438fd212d24d3ee7cba32eb1cbcdb470a119cb1a81ca829f7021451972090f1221e2d07a507100b5f98b4be1fa6c642605000fcb8
|
|
7
|
+
data.tar.gz: dbba7a618f06a4d433134f91d79db8aa7aebf4b24e8da782627090bf46e346eaf1b879dfe8b4e5b41482de80024485a10fcba12d0c66423715990ae932ea71f6
|
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = 'fluent-plugin-azure-storage-append-blob-lts-azurestack'
|
|
6
|
-
spec.version = '0.6.
|
|
6
|
+
spec.version = '0.6.3'
|
|
7
7
|
spec.authors = ['Jiaxun Song']
|
|
8
8
|
spec.email = ['jiaxun.song@outlook.com']
|
|
9
9
|
|
|
@@ -36,6 +36,7 @@ module Fluent
|
|
|
36
36
|
config_param :azure_storage_account, :string, default: nil
|
|
37
37
|
config_param :azure_storage_access_key, :string, default: nil, secret: true
|
|
38
38
|
config_param :azure_storage_connection_string, :string, default: nil, secret: true
|
|
39
|
+
config_param :azure_storage_dns_suffix, :string, default: nil
|
|
39
40
|
config_param :azure_storage_sas_token, :string, default: nil, secret: true
|
|
40
41
|
config_param :azure_cloud, :string, default: 'AZUREPUBLICCLOUD'
|
|
41
42
|
config_param :azure_msi_client_id, :string, default: nil
|
|
@@ -75,9 +76,15 @@ module Fluent
|
|
|
75
76
|
end
|
|
76
77
|
end
|
|
77
78
|
|
|
78
|
-
@
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
if @azure_cloud == 'AZURESTACKCLOUD'
|
|
80
|
+
if @azure_storage_dns_suffix.nil?
|
|
81
|
+
raise ConfigError 'azure_storage_dns_suffix invalid, must not be empty for AZURESTACKCLOUD'
|
|
82
|
+
end
|
|
83
|
+
else
|
|
84
|
+
@azure_storage_dns_suffix = @storage_endpoint_mapping[@azure_cloud]
|
|
85
|
+
if @azure_storage_dns_suffix.nil?
|
|
86
|
+
raise ConfigError 'azure_cloud invalid, must be either of AZURECHINACLOUD, AZUREGERMANCLOUD, AZUREPUBLICCLOUD, AZUREUSGOVERNMENTCLOUD'
|
|
87
|
+
end
|
|
81
88
|
end
|
|
82
89
|
|
|
83
90
|
if (@azure_storage_access_key.nil? || @azure_storage_access_key.empty?) &&
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-azure-storage-append-blob-lts-azurestack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jiaxun Song
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|