fastly 1.8.0 → 1.9.0

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
  SHA1:
3
- metadata.gz: 07ab59c8a33988a1cdba00d6e6e62fcedd7a2809
4
- data.tar.gz: d221e2543260cc4c304c56f83279611e46292e6d
3
+ metadata.gz: 355d052bbaabd5047f3133c9b534e38a0221f646
4
+ data.tar.gz: ce253230f60046696bcb7b46ed7fe5c2673803f4
5
5
  SHA512:
6
- metadata.gz: 2e9b68fbf8853932a05b2cecdfbd7a43915040d4e32e2ee35425875cb117efc4dff2fd9ed82254eb8d805d9aa38ba619fb022e5536c634b214a06dee60f46f7f
7
- data.tar.gz: 2df93cc60a1f698386dc1a0ea2590d7fb2060d4136386fe10ae8356e81a4378bc58517b51b34ab82c2049519ea6f2a33a6d5ae6ac60bbf137b77c13376b44c9d
6
+ metadata.gz: 4b29d57846ce5da2920a831a9f01ee90509f7843e3fe03e9e32e9498e9658e4e8f5533d4ebcb969137646f7d3c7c24742397fa2e530d2c502e46b5597e6255ee
7
+ data.tar.gz: 68d3c3c344e08c4bbddb126153feb1a8e5ca38ba2d4564d12f06eb0045a031a13f422832444c283da32628606eb6c31d1e37e16e8716eb90eb6420bf1f2bfd2f
@@ -1,4 +1,4 @@
1
1
  # The current version of the library
2
2
  class Fastly
3
- VERSION = "1.8.0"
3
+ VERSION = "1.9.0"
4
4
  end
@@ -1,7 +1,7 @@
1
1
  class Fastly
2
2
  # An s3 endpoint to stream logs to
3
3
  class S3Logging < BelongsToServiceAndVersion
4
- attr_accessor :service_id, :name, :bucket_name, :access_key, :secret_key, :path, :period, :gzip_level, :format, :format_version, :response_condition, :timestamp_format, :domain, :redundancy
4
+ attr_accessor :service_id, :name, :bucket_name, :access_key, :secret_key, :path, :period, :gzip_level, :format, :format_version, :message_type, :response_condition, :timestamp_format, :domain, :redundancy
5
5
 
6
6
  ##
7
7
  # :attr: service_id
@@ -61,6 +61,14 @@ class Fastly
61
61
  # Can be either 1 (the default, version 1 log format) or 2 (the version 2
62
62
  # log format).
63
63
 
64
+ ##
65
+ # :attr: message_type
66
+ #
67
+ # How the message should be formatted. Can be either classic (RFC 3164
68
+ # syslog prefix), loggly (RFC 5424 structured syslog), logplex (Heroku-style
69
+ # length prefixed syslog), or blank (No prefix. Useful for writing JSON and
70
+ # CSV).
71
+
64
72
  ##
65
73
  # :attr: response_condition
66
74
  #
@@ -1,7 +1,7 @@
1
1
  class Fastly
2
2
  # An endpoint to stream syslogs to
3
3
  class Syslog < BelongsToServiceAndVersion
4
- attr_accessor :service_id, :name, :comment, :ipv4, :ipv6, :hostname, :port, :token, :format, :format_version, :response_conditions, :use_tls, :tls_hostname, :tls_ca_cert
4
+ attr_accessor :service_id, :name, :comment, :ipv4, :ipv6, :hostname, :port, :token, :format, :format_version, :message_type, :response_conditions, :use_tls, :tls_hostname, :tls_ca_cert
5
5
 
6
6
  ##
7
7
  # :attr: service_id
@@ -70,6 +70,14 @@ class Fastly
70
70
  # Can be either 1 (the default, version 1 log format) or 2 (the version 2
71
71
  # log format).
72
72
 
73
+ ##
74
+ # :attr: message_type
75
+ #
76
+ # How the message should be formatted. Can be either classic (RFC 3164
77
+ # syslog prefix), loggly (RFC 5424 structured syslog), logplex (Heroku-style
78
+ # length prefixed syslog), or blank (No prefix. Useful for writing JSON and
79
+ # CSV).
80
+
73
81
  ##
74
82
  # :attr: response_condition
75
83
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastly
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fastly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-17 00:00:00.000000000 Z
11
+ date: 2017-02-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Client library for the Fastly acceleration system
14
14
  email:
@@ -21,9 +21,9 @@ executables:
21
21
  extensions: []
22
22
  extra_rdoc_files: []
23
23
  files:
24
- - ".gitignore"
25
- - ".rubocop.yml"
26
- - ".travis.yml"
24
+ - .gitignore
25
+ - .rubocop.yml
26
+ - .travis.yml
27
27
  - Appraisals
28
28
  - CHANGELOG.md
29
29
  - Gemfile
@@ -90,17 +90,17 @@ require_paths:
90
90
  - lib
91
91
  required_ruby_version: !ruby/object:Gem::Requirement
92
92
  requirements:
93
- - - ">="
93
+ - - '>='
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  requirements:
98
- - - ">="
98
+ - - '>='
99
99
  - !ruby/object:Gem::Version
100
100
  version: '0'
101
101
  requirements: []
102
102
  rubyforge_project:
103
- rubygems_version: 2.5.2
103
+ rubygems_version: 2.0.14
104
104
  signing_key:
105
105
  specification_version: 4
106
106
  summary: Client library for the Fastly acceleration system