statuscake-rb 1.0.0.pre.beta.4

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 (58) hide show
  1. checksums.yaml +7 -0
  2. data/lib/statuscake/api/contact_groups_api.rb +411 -0
  3. data/lib/statuscake/api/locations_api.rb +166 -0
  4. data/lib/statuscake/api/maintenance_windows_api.rb +444 -0
  5. data/lib/statuscake/api/pagespeed_api.rb +550 -0
  6. data/lib/statuscake/api/ssl_api.rb +458 -0
  7. data/lib/statuscake/api/uptime_api.rb +881 -0
  8. data/lib/statuscake/api_client.rb +407 -0
  9. data/lib/statuscake/api_error.rb +75 -0
  10. data/lib/statuscake/configuration.rb +296 -0
  11. data/lib/statuscake/models/api_error.rb +249 -0
  12. data/lib/statuscake/models/api_response.rb +241 -0
  13. data/lib/statuscake/models/api_response_data.rb +243 -0
  14. data/lib/statuscake/models/contact_group.rb +318 -0
  15. data/lib/statuscake/models/contact_group_response.rb +241 -0
  16. data/lib/statuscake/models/contact_groups.rb +258 -0
  17. data/lib/statuscake/models/links.rb +242 -0
  18. data/lib/statuscake/models/maintenance_window.rb +364 -0
  19. data/lib/statuscake/models/maintenance_window_repeat_interval.rb +59 -0
  20. data/lib/statuscake/models/maintenance_window_response.rb +241 -0
  21. data/lib/statuscake/models/maintenance_window_state.rb +57 -0
  22. data/lib/statuscake/models/maintenance_windows.rb +258 -0
  23. data/lib/statuscake/models/monitoring_location.rb +306 -0
  24. data/lib/statuscake/models/monitoring_location_status.rb +56 -0
  25. data/lib/statuscake/models/monitoring_locations.rb +244 -0
  26. data/lib/statuscake/models/pagespeed_test.rb +444 -0
  27. data/lib/statuscake/models/pagespeed_test_check_rate.rb +61 -0
  28. data/lib/statuscake/models/pagespeed_test_history.rb +269 -0
  29. data/lib/statuscake/models/pagespeed_test_history_result.rb +373 -0
  30. data/lib/statuscake/models/pagespeed_test_region.rb +64 -0
  31. data/lib/statuscake/models/pagespeed_test_response.rb +241 -0
  32. data/lib/statuscake/models/pagespeed_test_stats.rb +354 -0
  33. data/lib/statuscake/models/pagespeed_test_throttling.rb +60 -0
  34. data/lib/statuscake/models/pagespeed_tests.rb +258 -0
  35. data/lib/statuscake/models/pagination.rb +363 -0
  36. data/lib/statuscake/models/ssl_test.rb +594 -0
  37. data/lib/statuscake/models/ssl_test_check_rate.rb +60 -0
  38. data/lib/statuscake/models/ssl_test_flags.rb +347 -0
  39. data/lib/statuscake/models/ssl_test_mixed_content.rb +257 -0
  40. data/lib/statuscake/models/ssl_test_response.rb +241 -0
  41. data/lib/statuscake/models/ssl_tests.rb +258 -0
  42. data/lib/statuscake/models/uptime_test.rb +811 -0
  43. data/lib/statuscake/models/uptime_test_alert.rb +300 -0
  44. data/lib/statuscake/models/uptime_test_alerts.rb +269 -0
  45. data/lib/statuscake/models/uptime_test_check_rate.rb +62 -0
  46. data/lib/statuscake/models/uptime_test_history.rb +269 -0
  47. data/lib/statuscake/models/uptime_test_history_result.rb +302 -0
  48. data/lib/statuscake/models/uptime_test_overview.rb +388 -0
  49. data/lib/statuscake/models/uptime_test_period.rb +291 -0
  50. data/lib/statuscake/models/uptime_test_periods.rb +269 -0
  51. data/lib/statuscake/models/uptime_test_processing_state.rb +58 -0
  52. data/lib/statuscake/models/uptime_test_response.rb +241 -0
  53. data/lib/statuscake/models/uptime_test_status.rb +56 -0
  54. data/lib/statuscake/models/uptime_test_type.rb +61 -0
  55. data/lib/statuscake/models/uptime_tests.rb +258 -0
  56. data/lib/statuscake/version.rb +32 -0
  57. data/lib/statuscake.rb +107 -0
  58. metadata +221 -0
@@ -0,0 +1,258 @@
1
+ # frozen_string_literal: true
2
+
3
+ # StatusCake API
4
+ #
5
+ # Copyright (c) 2022
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to
9
+ # deal in the Software without restriction, including without limitation the
10
+ # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11
+ # sell copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23
+ # IN THE SOFTWARE.
24
+ #
25
+ # API version: 1.0.0
26
+ # Contact: support@statuscake.com
27
+ #
28
+ # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
29
+
30
+ require 'date'
31
+ require 'time'
32
+
33
+ module StatusCake
34
+ # :nodoc
35
+ class UptimeTests
36
+ # List of uptime checks
37
+ attr_accessor :data
38
+
39
+ attr_accessor :metadata
40
+
41
+ # Attribute mapping from ruby-style variable name to JSON key.
42
+ def self.attribute_map
43
+ {
44
+ :'data' => :'data',
45
+ :'metadata' => :'metadata',
46
+ }
47
+ end
48
+
49
+ # Returns all the JSON keys this model knows about
50
+ def self.acceptable_attributes
51
+ attribute_map.values
52
+ end
53
+
54
+ # Attribute type mapping.
55
+ def self.openapi_types
56
+ {
57
+ :'data' => :'Array<UptimeTestOverview>',
58
+ :'metadata' => :'Pagination',
59
+ }
60
+ end
61
+
62
+ # List of attributes with nullable: true
63
+ def self.openapi_nullable
64
+ Set.new([])
65
+ end
66
+
67
+ # Initializes the object
68
+ # @param [Hash] attributes Model attributes in the form of hash
69
+ def initialize(attributes = {})
70
+ unless attributes.is_a?(Hash)
71
+ raise ArgumentError, "The input argument (attributes) must be a hash in `StatusCake::UptimeTests` initialize method"
72
+ end
73
+
74
+ # check to see if the attribute exists and convert string to symbol for hash key
75
+ attributes = attributes.each_with_object({}) { |(k, v), h|
76
+ unless self.class.attribute_map.key?(k.to_sym)
77
+ raise ArgumentError, "`#{k}` is not a valid attribute in `StatusCake::UptimeTests`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
78
+ end
79
+ h[k.to_sym] = v
80
+ }
81
+
82
+ if attributes.key?(:'data')
83
+ if (value = attributes[:'data']).is_a?(Array)
84
+ self.data = value
85
+ end
86
+ end
87
+
88
+ if attributes.key?(:'metadata')
89
+ self.metadata = attributes[:'metadata']
90
+ end
91
+ end
92
+
93
+ # Show invalid properties with the reasons. Usually used together with valid?
94
+ # @return Array for valid properties with the reasons
95
+ def list_invalid_properties
96
+ invalid_properties = []
97
+ if @data.nil?
98
+ invalid_properties.push('invalid value for "data", data cannot be nil.')
99
+ end
100
+
101
+ if @metadata.nil?
102
+ invalid_properties.push('invalid value for "metadata", metadata cannot be nil.')
103
+ end
104
+
105
+ invalid_properties
106
+ end
107
+
108
+ # Check to see if the all the properties in the model are valid
109
+ # @return true if the model is valid
110
+ def valid?
111
+ return false if @data.nil?
112
+ return false if @metadata.nil?
113
+ true
114
+ end
115
+
116
+ # Checks equality by comparing each attribute.
117
+ # @param [Object] Object to be compared
118
+ def ==(other)
119
+ return true if equal?(other)
120
+ self.class == other.class &&
121
+ data == other.data &&
122
+ metadata == other.metadata
123
+ end
124
+
125
+ # @see the `==` method
126
+ # @param [Object] Object to be compared
127
+ def eql?(other)
128
+ self == other
129
+ end
130
+
131
+ # Calculates hash code according to all attributes.
132
+ # @return [Integer] Hash code
133
+ def hash
134
+ [data, metadata].hash
135
+ end
136
+
137
+ # Builds the object from hash
138
+ # @param [Hash] attributes Model attributes in the form of hash
139
+ # @return [Object] Returns the model itself
140
+ def self.build_from_hash(attributes)
141
+ new.build_from_hash(attributes)
142
+ end
143
+
144
+ # Builds the object from hash
145
+ # @param [Hash] attributes Model attributes in the form of hash
146
+ # @return [Object] Returns the model itself
147
+ def build_from_hash(attributes)
148
+ return nil unless attributes.is_a?(Hash)
149
+ attributes = attributes.transform_keys(&:to_sym)
150
+ self.class.openapi_types.each_pair do |key, type|
151
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
152
+ send("#{key}=", nil)
153
+ elsif type =~ /\AArray<(.*)>/i
154
+ # check to ensure the input is an array given that the attribute
155
+ # is documented as an array but the input is not
156
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
157
+ send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize(Regexp.last_match(1), v) })
158
+ end
159
+ elsif !attributes[self.class.attribute_map[key]].nil?
160
+ send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
161
+ end
162
+ end
163
+
164
+ self
165
+ end
166
+
167
+ # Deserializes the data based on type
168
+ # @param string type Data type
169
+ # @param string value Value to be deserialized
170
+ # @return [Object] Deserialized data
171
+ def _deserialize(type, value)
172
+ case type.to_sym
173
+ when :Time
174
+ Time.parse(value)
175
+ when :Date
176
+ Date.parse(value)
177
+ when :String
178
+ value.to_s
179
+ when :Integer
180
+ value.to_i
181
+ when :Float
182
+ value.to_f
183
+ when :Boolean
184
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
185
+ true
186
+ else
187
+ false
188
+ end
189
+ when :Object
190
+ # generic object (usually a Hash), return directly
191
+ value
192
+ when /\AArray<(?<inner_type>.+)>\z/
193
+ inner_type = Regexp.last_match[:inner_type]
194
+ value.map { |v| _deserialize(inner_type, v) }
195
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
196
+ k_type = Regexp.last_match[:k_type]
197
+ v_type = Regexp.last_match[:v_type]
198
+ {}.tap do |hash|
199
+ value.each do |k, v|
200
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
201
+ end
202
+ end
203
+ else # model
204
+ # models (e.g. Pet) or oneOf
205
+ klass = StatusCake.const_get(type)
206
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
207
+ end
208
+ end
209
+
210
+ # Returns the string representation of the object
211
+ # @return [String] String presentation of the object
212
+ def to_s
213
+ to_hash.to_s
214
+ end
215
+
216
+ # to_body is an alias to to_hash (backward compatibility)
217
+ # @return [Hash] Returns the object in the form of hash
218
+ def to_body
219
+ to_hash
220
+ end
221
+
222
+ # Returns the object in the form of hash
223
+ # @return [Hash] Returns the object in the form of hash
224
+ def to_hash
225
+ hash = {}
226
+ self.class.attribute_map.each_pair do |attr, param|
227
+ value = send(attr)
228
+ if value.nil?
229
+ is_nullable = self.class.openapi_nullable.include?(attr)
230
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
231
+ end
232
+
233
+ hash[param] = _to_hash(value)
234
+ end
235
+ hash
236
+ end
237
+
238
+ # Outputs non-array value in the form of hash
239
+ # For object, use to_hash. Otherwise, just return the value
240
+ # @param [Object] value Any valid value
241
+ # @return [Hash] Returns the value in the form of hash
242
+ def _to_hash(value)
243
+ if value.is_a?(Array)
244
+ value.compact.map { |v| _to_hash(v) }
245
+ elsif value.is_a?(Hash)
246
+ {}.tap do |hash|
247
+ value.each { |k, v| hash[k] = _to_hash(v) }
248
+ end
249
+ elsif value.respond_to? :to_hash
250
+ value.to_hash
251
+ else
252
+ value
253
+ end
254
+ end
255
+
256
+ end
257
+
258
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ # StatusCake API
4
+ #
5
+ # Copyright (c) 2022
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to
9
+ # deal in the Software without restriction, including without limitation the
10
+ # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11
+ # sell copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23
+ # IN THE SOFTWARE.
24
+ #
25
+ # API version: 1.0.0
26
+ # Contact: support@statuscake.com
27
+ #
28
+ # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
29
+
30
+ module StatusCake
31
+ VERSION = '1.0.0-beta.4'
32
+ end
data/lib/statuscake.rb ADDED
@@ -0,0 +1,107 @@
1
+ # frozen_string_literal: true
2
+
3
+ # StatusCake API
4
+ #
5
+ # Copyright (c) 2022
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to
9
+ # deal in the Software without restriction, including without limitation the
10
+ # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11
+ # sell copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23
+ # IN THE SOFTWARE.
24
+ #
25
+ # API version: 1.0.0
26
+ # Contact: support@statuscake.com
27
+ #
28
+ # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
29
+
30
+ # Common files
31
+ require 'statuscake/api_client'
32
+ require 'statuscake/api_error'
33
+ require 'statuscake/version'
34
+ require 'statuscake/configuration'
35
+
36
+ # Models
37
+ require 'statuscake/models/api_error'
38
+ require 'statuscake/models/api_response'
39
+ require 'statuscake/models/api_response_data'
40
+ require 'statuscake/models/contact_group'
41
+ require 'statuscake/models/contact_group_response'
42
+ require 'statuscake/models/contact_groups'
43
+ require 'statuscake/models/links'
44
+ require 'statuscake/models/maintenance_window'
45
+ require 'statuscake/models/maintenance_window_repeat_interval'
46
+ require 'statuscake/models/maintenance_window_response'
47
+ require 'statuscake/models/maintenance_window_state'
48
+ require 'statuscake/models/maintenance_windows'
49
+ require 'statuscake/models/monitoring_location'
50
+ require 'statuscake/models/monitoring_location_status'
51
+ require 'statuscake/models/monitoring_locations'
52
+ require 'statuscake/models/pagespeed_test'
53
+ require 'statuscake/models/pagespeed_test_check_rate'
54
+ require 'statuscake/models/pagespeed_test_history'
55
+ require 'statuscake/models/pagespeed_test_history_result'
56
+ require 'statuscake/models/pagespeed_test_response'
57
+ require 'statuscake/models/pagespeed_test_stats'
58
+ require 'statuscake/models/pagespeed_test_throttling'
59
+ require 'statuscake/models/pagespeed_tests'
60
+ require 'statuscake/models/pagination'
61
+ require 'statuscake/models/ssl_test'
62
+ require 'statuscake/models/ssl_test_check_rate'
63
+ require 'statuscake/models/ssl_test_flags'
64
+ require 'statuscake/models/ssl_test_mixed_content'
65
+ require 'statuscake/models/ssl_test_response'
66
+ require 'statuscake/models/ssl_tests'
67
+ require 'statuscake/models/uptime_test'
68
+ require 'statuscake/models/uptime_test_alert'
69
+ require 'statuscake/models/uptime_test_alerts'
70
+ require 'statuscake/models/uptime_test_check_rate'
71
+ require 'statuscake/models/uptime_test_history'
72
+ require 'statuscake/models/uptime_test_history_result'
73
+ require 'statuscake/models/uptime_test_overview'
74
+ require 'statuscake/models/uptime_test_period'
75
+ require 'statuscake/models/uptime_test_periods'
76
+ require 'statuscake/models/uptime_test_processing_state'
77
+ require 'statuscake/models/uptime_test_response'
78
+ require 'statuscake/models/uptime_test_status'
79
+ require 'statuscake/models/uptime_test_type'
80
+ require 'statuscake/models/uptime_tests'
81
+
82
+ # APIs
83
+ require 'statuscake/api/contact_groups_api'
84
+ require 'statuscake/api/locations_api'
85
+ require 'statuscake/api/maintenance_windows_api'
86
+ require 'statuscake/api/pagespeed_api'
87
+ require 'statuscake/api/ssl_api'
88
+ require 'statuscake/api/uptime_api'
89
+
90
+ # :nodoc
91
+ module StatusCake
92
+ class << self
93
+ # Customize default settings for the SDK using block.
94
+ # StatusCake.configure do |config|
95
+ # config.username = "xxx"
96
+ # config.password = "xxx"
97
+ # end
98
+ # If no block given, return the default Configuration object.
99
+ def configure
100
+ if block_given?
101
+ yield(Configuration.default)
102
+ else
103
+ Configuration.default
104
+ end
105
+ end
106
+ end
107
+ end
metadata ADDED
@@ -0,0 +1,221 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: statuscake-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.pre.beta.4
5
+ platform: ruby
6
+ authors:
7
+ - StatusCake
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-09-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: rake
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '13.0'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 13.0.1
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '13.0'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 13.0.1
53
+ - !ruby/object:Gem::Dependency
54
+ name: rspec
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '3.6'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 3.6.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.6'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.6.0
73
+ - !ruby/object:Gem::Dependency
74
+ name: rubocop
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '1.36'
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 1.36.0
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.36'
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 1.36.0
93
+ - !ruby/object:Gem::Dependency
94
+ name: rubocop-rake
95
+ requirement: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - "~>"
98
+ - !ruby/object:Gem::Version
99
+ version: '0.5'
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 0.5.1
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '0.5'
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 0.5.1
113
+ - !ruby/object:Gem::Dependency
114
+ name: rubocop-rspec
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '2.12'
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: 2.12.1
123
+ type: :development
124
+ prerelease: false
125
+ version_requirements: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '2.12'
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: 2.12.1
133
+ description: StatusCake is a website monitoring and APM platform optimized for developer
134
+ and operations productivity.
135
+ email:
136
+ - support@statuscake.com
137
+ executables: []
138
+ extensions: []
139
+ extra_rdoc_files: []
140
+ files:
141
+ - lib/statuscake.rb
142
+ - lib/statuscake/api/contact_groups_api.rb
143
+ - lib/statuscake/api/locations_api.rb
144
+ - lib/statuscake/api/maintenance_windows_api.rb
145
+ - lib/statuscake/api/pagespeed_api.rb
146
+ - lib/statuscake/api/ssl_api.rb
147
+ - lib/statuscake/api/uptime_api.rb
148
+ - lib/statuscake/api_client.rb
149
+ - lib/statuscake/api_error.rb
150
+ - lib/statuscake/configuration.rb
151
+ - lib/statuscake/models/api_error.rb
152
+ - lib/statuscake/models/api_response.rb
153
+ - lib/statuscake/models/api_response_data.rb
154
+ - lib/statuscake/models/contact_group.rb
155
+ - lib/statuscake/models/contact_group_response.rb
156
+ - lib/statuscake/models/contact_groups.rb
157
+ - lib/statuscake/models/links.rb
158
+ - lib/statuscake/models/maintenance_window.rb
159
+ - lib/statuscake/models/maintenance_window_repeat_interval.rb
160
+ - lib/statuscake/models/maintenance_window_response.rb
161
+ - lib/statuscake/models/maintenance_window_state.rb
162
+ - lib/statuscake/models/maintenance_windows.rb
163
+ - lib/statuscake/models/monitoring_location.rb
164
+ - lib/statuscake/models/monitoring_location_status.rb
165
+ - lib/statuscake/models/monitoring_locations.rb
166
+ - lib/statuscake/models/pagespeed_test.rb
167
+ - lib/statuscake/models/pagespeed_test_check_rate.rb
168
+ - lib/statuscake/models/pagespeed_test_history.rb
169
+ - lib/statuscake/models/pagespeed_test_history_result.rb
170
+ - lib/statuscake/models/pagespeed_test_region.rb
171
+ - lib/statuscake/models/pagespeed_test_response.rb
172
+ - lib/statuscake/models/pagespeed_test_stats.rb
173
+ - lib/statuscake/models/pagespeed_test_throttling.rb
174
+ - lib/statuscake/models/pagespeed_tests.rb
175
+ - lib/statuscake/models/pagination.rb
176
+ - lib/statuscake/models/ssl_test.rb
177
+ - lib/statuscake/models/ssl_test_check_rate.rb
178
+ - lib/statuscake/models/ssl_test_flags.rb
179
+ - lib/statuscake/models/ssl_test_mixed_content.rb
180
+ - lib/statuscake/models/ssl_test_response.rb
181
+ - lib/statuscake/models/ssl_tests.rb
182
+ - lib/statuscake/models/uptime_test.rb
183
+ - lib/statuscake/models/uptime_test_alert.rb
184
+ - lib/statuscake/models/uptime_test_alerts.rb
185
+ - lib/statuscake/models/uptime_test_check_rate.rb
186
+ - lib/statuscake/models/uptime_test_history.rb
187
+ - lib/statuscake/models/uptime_test_history_result.rb
188
+ - lib/statuscake/models/uptime_test_overview.rb
189
+ - lib/statuscake/models/uptime_test_period.rb
190
+ - lib/statuscake/models/uptime_test_periods.rb
191
+ - lib/statuscake/models/uptime_test_processing_state.rb
192
+ - lib/statuscake/models/uptime_test_response.rb
193
+ - lib/statuscake/models/uptime_test_status.rb
194
+ - lib/statuscake/models/uptime_test_type.rb
195
+ - lib/statuscake/models/uptime_tests.rb
196
+ - lib/statuscake/version.rb
197
+ homepage: https://github.com/StatusCakeDev/statuscake-rb
198
+ licenses:
199
+ - MIT
200
+ metadata:
201
+ rubygems_mfa_required: 'true'
202
+ post_install_message:
203
+ rdoc_options: []
204
+ require_paths:
205
+ - lib
206
+ required_ruby_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: '2.4'
211
+ required_rubygems_version: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">"
214
+ - !ruby/object:Gem::Version
215
+ version: 1.3.1
216
+ requirements: []
217
+ rubygems_version: 3.3.7
218
+ signing_key:
219
+ specification_version: 4
220
+ summary: StatusCake API client
221
+ test_files: []