fastly 6.0.0 → 6.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/docs/{BillingEstimateResponseAllOfLines.md → BillingEstimateLines.md} +2 -2
- data/docs/{BillingEstimateResponseAllOfLine.md → BillingEstimateLinesLineItems.md} +1 -1
- data/docs/BillingEstimateResponse.md +1 -1
- data/docs/{BillingResponseAllOf.md → BillingResponseItemItemsData.md} +1 -1
- data/docs/BillingResponseLineItem.md +1 -1
- data/docs/BillingStatus.md +1 -1
- data/docs/{BillingResponseLineItemAllOf.md → LineItemData.md} +2 -2
- data/docs/{BillingEstimateResponseAllOf.md → LineItemDataReadOnlyInvoiceId.md} +1 -2
- data/docs/LoggingGcs.md +1 -1
- data/docs/LoggingGcsAllOf.md +1 -1
- data/docs/LoggingGcsApi.md +4 -4
- data/docs/LoggingGcsResponse.md +1 -1
- data/docs/OriginInspectorHistoricalData.md +1 -1
- data/docs/SchemasUserResponseReadOnly.md +12 -0
- data/docs/TlsSubscriptionsApi.md +2 -2
- data/docs/{UserResponseAllOf.md → UserResponseReadOnly.md} +1 -1
- data/lib/fastly/api/logging_gcs_api.rb +4 -4
- data/lib/fastly/api/tls_subscriptions_api.rb +8 -8
- data/lib/fastly/models/{billing_response_all_of.rb → billing_estimate_lines.rb} +4 -4
- data/lib/fastly/models/{billing_estimate_response_all_of_line.rb → billing_estimate_lines_line_items.rb} +3 -3
- data/lib/fastly/models/billing_estimate_response.rb +9 -9
- data/lib/fastly/models/billing_response.rb +1 -1
- data/lib/fastly/models/{billing_estimate_response_all_of.rb → billing_response_item_items_data.rb} +11 -11
- data/lib/fastly/models/billing_response_line_item.rb +2 -2
- data/lib/fastly/models/billing_status.rb +2 -0
- data/lib/fastly/models/{billing_response_line_item_all_of.rb → line_item_data.rb} +4 -4
- data/lib/fastly/models/{billing_estimate_response_all_of_lines.rb → line_item_data_read_only_invoice_id.rb} +5 -14
- data/lib/fastly/models/logging_gcs.rb +2 -1
- data/lib/fastly/models/logging_gcs_all_of.rb +2 -1
- data/lib/fastly/models/logging_gcs_response.rb +2 -1
- data/lib/fastly/models/origin_inspector_historical_data.rb +5 -2
- data/lib/fastly/models/schemas_user_response.rb +5 -2
- data/lib/fastly/models/schemas_user_response_read_only.rb +235 -0
- data/lib/fastly/models/user.rb +3 -0
- data/lib/fastly/models/user_response.rb +4 -1
- data/lib/fastly/models/{user_response_all_of.rb → user_response_read_only.rb} +3 -3
- data/lib/fastly/version.rb +1 -1
- data/lib/fastly.rb +7 -6
- data/sig.json +1 -1
- metadata +16 -14
@@ -12,13 +12,10 @@ require 'date'
|
|
12
12
|
require 'time'
|
13
13
|
|
14
14
|
module Fastly
|
15
|
-
class
|
16
|
-
attr_accessor :line
|
17
|
-
|
15
|
+
class LineItemDataReadOnlyInvoiceId
|
18
16
|
# Attribute mapping from ruby-style variable name to JSON key.
|
19
17
|
def self.attribute_map
|
20
18
|
{
|
21
|
-
:'line' => :'line'
|
22
19
|
}
|
23
20
|
end
|
24
21
|
|
@@ -30,7 +27,6 @@ module Fastly
|
|
30
27
|
# Attribute type mapping.
|
31
28
|
def self.fastly_types
|
32
29
|
{
|
33
|
-
:'line' => :'BillingEstimateResponseAllOfLine'
|
34
30
|
}
|
35
31
|
end
|
36
32
|
|
@@ -44,20 +40,16 @@ module Fastly
|
|
44
40
|
# @param [Hash] attributes Model attributes in the form of hash
|
45
41
|
def initialize(attributes = {})
|
46
42
|
if (!attributes.is_a?(Hash))
|
47
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::
|
43
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::LineItemDataReadOnlyInvoiceId` initialize method"
|
48
44
|
end
|
49
45
|
|
50
46
|
# check to see if the attribute exists and convert string to symbol for hash key
|
51
47
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
52
48
|
if (!self.class.attribute_map.key?(k.to_sym))
|
53
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::
|
49
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::LineItemDataReadOnlyInvoiceId`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
54
50
|
end
|
55
51
|
h[k.to_sym] = v
|
56
52
|
}
|
57
|
-
|
58
|
-
if attributes.key?(:'line')
|
59
|
-
self.line = attributes[:'line']
|
60
|
-
end
|
61
53
|
end
|
62
54
|
|
63
55
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -77,8 +69,7 @@ module Fastly
|
|
77
69
|
# @param [Object] Object to be compared
|
78
70
|
def ==(o)
|
79
71
|
return true if self.equal?(o)
|
80
|
-
self.class == o.class
|
81
|
-
line == o.line
|
72
|
+
self.class == o.class
|
82
73
|
end
|
83
74
|
|
84
75
|
# @see the `==` method
|
@@ -90,7 +81,7 @@ module Fastly
|
|
90
81
|
# Calculates hash code according to all attributes.
|
91
82
|
# @return [Integer] Hash code
|
92
83
|
def hash
|
93
|
-
[
|
84
|
+
[].hash
|
94
85
|
end
|
95
86
|
|
96
87
|
# Builds the object from hash
|
@@ -55,7 +55,6 @@ module Fastly
|
|
55
55
|
# The name of the GCS bucket.
|
56
56
|
attr_accessor :bucket_name
|
57
57
|
|
58
|
-
# The path to upload logs to.
|
59
58
|
attr_accessor :path
|
60
59
|
|
61
60
|
# A PGP public key that Fastly will use to encrypt your log files before writing them to disk.
|
@@ -240,6 +239,8 @@ module Fastly
|
|
240
239
|
|
241
240
|
if attributes.key?(:'path')
|
242
241
|
self.path = attributes[:'path']
|
242
|
+
else
|
243
|
+
self.path = '/'
|
243
244
|
end
|
244
245
|
|
245
246
|
if attributes.key?(:'public_key')
|
@@ -16,7 +16,6 @@ module Fastly
|
|
16
16
|
# The name of the GCS bucket.
|
17
17
|
attr_accessor :bucket_name
|
18
18
|
|
19
|
-
# The path to upload logs to.
|
20
19
|
attr_accessor :path
|
21
20
|
|
22
21
|
# A PGP public key that Fastly will use to encrypt your log files before writing them to disk.
|
@@ -78,6 +77,8 @@ module Fastly
|
|
78
77
|
|
79
78
|
if attributes.key?(:'path')
|
80
79
|
self.path = attributes[:'path']
|
80
|
+
else
|
81
|
+
self.path = '/'
|
81
82
|
end
|
82
83
|
|
83
84
|
if attributes.key?(:'public_key')
|
@@ -55,7 +55,6 @@ module Fastly
|
|
55
55
|
# The name of the GCS bucket.
|
56
56
|
attr_accessor :bucket_name
|
57
57
|
|
58
|
-
# The path to upload logs to.
|
59
58
|
attr_accessor :path
|
60
59
|
|
61
60
|
# A PGP public key that Fastly will use to encrypt your log files before writing them to disk.
|
@@ -265,6 +264,8 @@ module Fastly
|
|
265
264
|
|
266
265
|
if attributes.key?(:'path')
|
267
266
|
self.path = attributes[:'path']
|
267
|
+
else
|
268
|
+
self.path = '/'
|
268
269
|
end
|
269
270
|
|
270
271
|
if attributes.key?(:'public_key')
|
@@ -15,6 +15,7 @@ module Fastly
|
|
15
15
|
class OriginInspectorHistoricalData
|
16
16
|
attr_accessor :dimensions
|
17
17
|
|
18
|
+
# An array of values representing the metric values at each point in time. Note that this dataset is sparse: only the keys with non-zero values will be included in the record.
|
18
19
|
attr_accessor :values
|
19
20
|
|
20
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -34,7 +35,7 @@ module Fastly
|
|
34
35
|
def self.fastly_types
|
35
36
|
{
|
36
37
|
:'dimensions' => :'OriginInspectorDimensions',
|
37
|
-
:'values' => :'
|
38
|
+
:'values' => :'Array<OriginInspectorValues>'
|
38
39
|
}
|
39
40
|
end
|
40
41
|
|
@@ -64,7 +65,9 @@ module Fastly
|
|
64
65
|
end
|
65
66
|
|
66
67
|
if attributes.key?(:'values')
|
67
|
-
|
68
|
+
if (value = attributes[:'values']).is_a?(Array)
|
69
|
+
self.values = value
|
70
|
+
end
|
68
71
|
end
|
69
72
|
end
|
70
73
|
|
@@ -99,6 +99,9 @@ module Fastly
|
|
99
99
|
# List of attributes with nullable: true
|
100
100
|
def self.fastly_nullable
|
101
101
|
Set.new([
|
102
|
+
:'locked',
|
103
|
+
:'require_new_password',
|
104
|
+
:'two_factor_auth_enabled',
|
102
105
|
:'created_at',
|
103
106
|
:'deleted_at',
|
104
107
|
:'updated_at',
|
@@ -108,9 +111,9 @@ module Fastly
|
|
108
111
|
# List of class defined in allOf (OpenAPI v3)
|
109
112
|
def self.fastly_all_of
|
110
113
|
[
|
114
|
+
:'SchemasUserResponseReadOnly',
|
111
115
|
:'Timestamps',
|
112
|
-
:'User'
|
113
|
-
:'UserResponseAllOf'
|
116
|
+
:'User'
|
114
117
|
]
|
115
118
|
end
|
116
119
|
|
@@ -0,0 +1,235 @@
|
|
1
|
+
=begin
|
2
|
+
#Fastly API
|
3
|
+
|
4
|
+
#Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: oss@fastly.com
|
8
|
+
|
9
|
+
=end
|
10
|
+
|
11
|
+
require 'date'
|
12
|
+
require 'time'
|
13
|
+
|
14
|
+
module Fastly
|
15
|
+
class SchemasUserResponseReadOnly
|
16
|
+
attr_accessor :id
|
17
|
+
|
18
|
+
# The alphanumeric string identifying a email login.
|
19
|
+
attr_accessor :email_hash
|
20
|
+
|
21
|
+
attr_accessor :customer_id
|
22
|
+
|
23
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
24
|
+
def self.attribute_map
|
25
|
+
{
|
26
|
+
:'id' => :'id',
|
27
|
+
:'email_hash' => :'email_hash',
|
28
|
+
:'customer_id' => :'customer_id'
|
29
|
+
}
|
30
|
+
end
|
31
|
+
|
32
|
+
# Returns all the JSON keys this model knows about
|
33
|
+
def self.acceptable_attributes
|
34
|
+
attribute_map.values
|
35
|
+
end
|
36
|
+
|
37
|
+
# Attribute type mapping.
|
38
|
+
def self.fastly_types
|
39
|
+
{
|
40
|
+
:'id' => :'String',
|
41
|
+
:'email_hash' => :'String',
|
42
|
+
:'customer_id' => :'String'
|
43
|
+
}
|
44
|
+
end
|
45
|
+
|
46
|
+
# List of attributes with nullable: true
|
47
|
+
def self.fastly_nullable
|
48
|
+
Set.new([
|
49
|
+
])
|
50
|
+
end
|
51
|
+
|
52
|
+
# Initializes the object
|
53
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
54
|
+
def initialize(attributes = {})
|
55
|
+
if (!attributes.is_a?(Hash))
|
56
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::SchemasUserResponseReadOnly` initialize method"
|
57
|
+
end
|
58
|
+
|
59
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
60
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
61
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::SchemasUserResponseReadOnly`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
63
|
+
end
|
64
|
+
h[k.to_sym] = v
|
65
|
+
}
|
66
|
+
|
67
|
+
if attributes.key?(:'id')
|
68
|
+
self.id = attributes[:'id']
|
69
|
+
end
|
70
|
+
|
71
|
+
if attributes.key?(:'email_hash')
|
72
|
+
self.email_hash = attributes[:'email_hash']
|
73
|
+
end
|
74
|
+
|
75
|
+
if attributes.key?(:'customer_id')
|
76
|
+
self.customer_id = attributes[:'customer_id']
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
81
|
+
# @return Array for valid properties with the reasons
|
82
|
+
def list_invalid_properties
|
83
|
+
invalid_properties = Array.new
|
84
|
+
invalid_properties
|
85
|
+
end
|
86
|
+
|
87
|
+
# Check to see if the all the properties in the model are valid
|
88
|
+
# @return true if the model is valid
|
89
|
+
def valid?
|
90
|
+
true
|
91
|
+
end
|
92
|
+
|
93
|
+
# Checks equality by comparing each attribute.
|
94
|
+
# @param [Object] Object to be compared
|
95
|
+
def ==(o)
|
96
|
+
return true if self.equal?(o)
|
97
|
+
self.class == o.class &&
|
98
|
+
id == o.id &&
|
99
|
+
email_hash == o.email_hash &&
|
100
|
+
customer_id == o.customer_id
|
101
|
+
end
|
102
|
+
|
103
|
+
# @see the `==` method
|
104
|
+
# @param [Object] Object to be compared
|
105
|
+
def eql?(o)
|
106
|
+
self == o
|
107
|
+
end
|
108
|
+
|
109
|
+
# Calculates hash code according to all attributes.
|
110
|
+
# @return [Integer] Hash code
|
111
|
+
def hash
|
112
|
+
[id, email_hash, customer_id].hash
|
113
|
+
end
|
114
|
+
|
115
|
+
# Builds the object from hash
|
116
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
117
|
+
# @return [Object] Returns the model itself
|
118
|
+
def self.build_from_hash(attributes)
|
119
|
+
new.build_from_hash(attributes)
|
120
|
+
end
|
121
|
+
|
122
|
+
# Builds the object from hash
|
123
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
124
|
+
# @return [Object] Returns the model itself
|
125
|
+
def build_from_hash(attributes)
|
126
|
+
return nil unless attributes.is_a?(Hash)
|
127
|
+
self.class.fastly_types.each_pair do |key, type|
|
128
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.fastly_nullable.include?(key)
|
129
|
+
self.send("#{key}=", nil)
|
130
|
+
elsif type =~ /\AArray<(.*)>/i
|
131
|
+
# check to ensure the input is an array given that the attribute
|
132
|
+
# is documented as an array but the input is not
|
133
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
134
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
135
|
+
end
|
136
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
137
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
self
|
142
|
+
end
|
143
|
+
|
144
|
+
# Deserializes the data based on type
|
145
|
+
# @param string type Data type
|
146
|
+
# @param string value Value to be deserialized
|
147
|
+
# @return [Object] Deserialized data
|
148
|
+
def _deserialize(type, value)
|
149
|
+
case type.to_sym
|
150
|
+
when :Time
|
151
|
+
Time.parse(value)
|
152
|
+
when :Date
|
153
|
+
Date.parse(value)
|
154
|
+
when :String
|
155
|
+
value.to_s
|
156
|
+
when :Integer
|
157
|
+
value.to_i
|
158
|
+
when :Float
|
159
|
+
value.to_f
|
160
|
+
when :Boolean
|
161
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
162
|
+
true
|
163
|
+
else
|
164
|
+
false
|
165
|
+
end
|
166
|
+
when :Object
|
167
|
+
# generic object (usually a Hash), return directly
|
168
|
+
value
|
169
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
170
|
+
inner_type = Regexp.last_match[:inner_type]
|
171
|
+
value.map { |v| _deserialize(inner_type, v) }
|
172
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
173
|
+
k_type = Regexp.last_match[:k_type]
|
174
|
+
v_type = Regexp.last_match[:v_type]
|
175
|
+
{}.tap do |hash|
|
176
|
+
value.each do |k, v|
|
177
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
178
|
+
end
|
179
|
+
end
|
180
|
+
else # model
|
181
|
+
# models (e.g. Pet) or oneOf
|
182
|
+
klass = Fastly.const_get(type)
|
183
|
+
klass.respond_to?(:fastly_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
# Returns the string representation of the object
|
188
|
+
# @return [String] String presentation of the object
|
189
|
+
def to_s
|
190
|
+
to_hash.to_s
|
191
|
+
end
|
192
|
+
|
193
|
+
# to_body is an alias to to_hash (backward compatibility)
|
194
|
+
# @return [Hash] Returns the object in the form of hash
|
195
|
+
def to_body
|
196
|
+
to_hash
|
197
|
+
end
|
198
|
+
|
199
|
+
# Returns the object in the form of hash
|
200
|
+
# @return [Hash] Returns the object in the form of hash
|
201
|
+
def to_hash
|
202
|
+
hash = {}
|
203
|
+
self.class.attribute_map.each_pair do |attr, param|
|
204
|
+
value = self.send(attr)
|
205
|
+
if value.nil?
|
206
|
+
is_nullable = self.class.fastly_nullable.include?(attr)
|
207
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
208
|
+
end
|
209
|
+
|
210
|
+
hash[param] = _to_hash(value)
|
211
|
+
end
|
212
|
+
hash
|
213
|
+
end
|
214
|
+
|
215
|
+
# Outputs non-array value in the form of hash
|
216
|
+
# For object, use to_hash. Otherwise, just return the value
|
217
|
+
# @param [Object] value Any valid value
|
218
|
+
# @return [Hash] Returns the value in the form of hash
|
219
|
+
def _to_hash(value)
|
220
|
+
if value.is_a?(Array)
|
221
|
+
value.compact.map { |v| _to_hash(v) }
|
222
|
+
elsif value.is_a?(Hash)
|
223
|
+
{}.tap do |hash|
|
224
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
225
|
+
end
|
226
|
+
elsif value.respond_to? :to_hash
|
227
|
+
value.to_hash
|
228
|
+
else
|
229
|
+
value
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
end
|
234
|
+
|
235
|
+
end
|
data/lib/fastly/models/user.rb
CHANGED
@@ -99,6 +99,9 @@ module Fastly
|
|
99
99
|
# List of attributes with nullable: true
|
100
100
|
def self.fastly_nullable
|
101
101
|
Set.new([
|
102
|
+
:'locked',
|
103
|
+
:'require_new_password',
|
104
|
+
:'two_factor_auth_enabled',
|
102
105
|
:'created_at',
|
103
106
|
:'deleted_at',
|
104
107
|
:'updated_at',
|
@@ -110,7 +113,7 @@ module Fastly
|
|
110
113
|
[
|
111
114
|
:'Timestamps',
|
112
115
|
:'User',
|
113
|
-
:'
|
116
|
+
:'UserResponseReadOnly'
|
114
117
|
]
|
115
118
|
end
|
116
119
|
|
@@ -12,7 +12,7 @@ require 'date'
|
|
12
12
|
require 'time'
|
13
13
|
|
14
14
|
module Fastly
|
15
|
-
class
|
15
|
+
class UserResponseReadOnly
|
16
16
|
attr_accessor :id
|
17
17
|
|
18
18
|
# The alphanumeric string identifying a email login.
|
@@ -53,13 +53,13 @@ module Fastly
|
|
53
53
|
# @param [Hash] attributes Model attributes in the form of hash
|
54
54
|
def initialize(attributes = {})
|
55
55
|
if (!attributes.is_a?(Hash))
|
56
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::
|
56
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::UserResponseReadOnly` initialize method"
|
57
57
|
end
|
58
58
|
|
59
59
|
# check to see if the attribute exists and convert string to symbol for hash key
|
60
60
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
61
61
|
if (!self.class.attribute_map.key?(k.to_sym))
|
62
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::UserResponseReadOnly`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
63
63
|
end
|
64
64
|
h[k.to_sym] = v
|
65
65
|
}
|
data/lib/fastly/version.rb
CHANGED
data/lib/fastly.rb
CHANGED
@@ -44,14 +44,12 @@ require 'fastly/models/billing_address_response'
|
|
44
44
|
require 'fastly/models/billing_address_response_data'
|
45
45
|
require 'fastly/models/billing_address_verification_error_response'
|
46
46
|
require 'fastly/models/billing_address_verification_error_response_errors'
|
47
|
+
require 'fastly/models/billing_estimate_lines'
|
48
|
+
require 'fastly/models/billing_estimate_lines_line_items'
|
47
49
|
require 'fastly/models/billing_estimate_response'
|
48
|
-
require 'fastly/models/billing_estimate_response_all_of'
|
49
|
-
require 'fastly/models/billing_estimate_response_all_of_line'
|
50
|
-
require 'fastly/models/billing_estimate_response_all_of_lines'
|
51
50
|
require 'fastly/models/billing_response'
|
52
|
-
require 'fastly/models/
|
51
|
+
require 'fastly/models/billing_response_item_items_data'
|
53
52
|
require 'fastly/models/billing_response_line_item'
|
54
|
-
require 'fastly/models/billing_response_line_item_all_of'
|
55
53
|
require 'fastly/models/billing_status'
|
56
54
|
require 'fastly/models/billing_total'
|
57
55
|
require 'fastly/models/billing_total_extras'
|
@@ -195,6 +193,8 @@ require 'fastly/models/legacy_waf_rule_status'
|
|
195
193
|
require 'fastly/models/legacy_waf_ruleset'
|
196
194
|
require 'fastly/models/legacy_waf_tag'
|
197
195
|
require 'fastly/models/legacy_waf_update_status'
|
196
|
+
require 'fastly/models/line_item_data'
|
197
|
+
require 'fastly/models/line_item_data_read_only_invoice_id'
|
198
198
|
require 'fastly/models/logging_address_and_port'
|
199
199
|
require 'fastly/models/logging_azureblob'
|
200
200
|
require 'fastly/models/logging_azureblob_all_of'
|
@@ -442,6 +442,7 @@ require 'fastly/models/role_user'
|
|
442
442
|
require 'fastly/models/schemas_contact_response'
|
443
443
|
require 'fastly/models/schemas_snippet_response'
|
444
444
|
require 'fastly/models/schemas_user_response'
|
445
|
+
require 'fastly/models/schemas_user_response_read_only'
|
445
446
|
require 'fastly/models/schemas_vcl_response'
|
446
447
|
require 'fastly/models/schemas_version'
|
447
448
|
require 'fastly/models/schemas_version_response'
|
@@ -601,7 +602,7 @@ require 'fastly/models/update_billing_address_request'
|
|
601
602
|
require 'fastly/models/update_billing_address_request_data'
|
602
603
|
require 'fastly/models/user'
|
603
604
|
require 'fastly/models/user_response'
|
604
|
-
require 'fastly/models/
|
605
|
+
require 'fastly/models/user_response_read_only'
|
605
606
|
require 'fastly/models/validator_result'
|
606
607
|
require 'fastly/models/validator_result_data'
|
607
608
|
require 'fastly/models/validator_result_data_attributes'
|
data/sig.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"G": "
|
1
|
+
{"G": "59fc714d", "D": "3bd4fb97"}
|
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: 6.0.
|
4
|
+
version: 6.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fastly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -88,14 +88,12 @@ files:
|
|
88
88
|
- docs/BillingAddressVerificationErrorResponse.md
|
89
89
|
- docs/BillingAddressVerificationErrorResponseErrors.md
|
90
90
|
- docs/BillingApi.md
|
91
|
+
- docs/BillingEstimateLines.md
|
92
|
+
- docs/BillingEstimateLinesLineItems.md
|
91
93
|
- docs/BillingEstimateResponse.md
|
92
|
-
- docs/BillingEstimateResponseAllOf.md
|
93
|
-
- docs/BillingEstimateResponseAllOfLine.md
|
94
|
-
- docs/BillingEstimateResponseAllOfLines.md
|
95
94
|
- docs/BillingResponse.md
|
96
|
-
- docs/
|
95
|
+
- docs/BillingResponseItemItemsData.md
|
97
96
|
- docs/BillingResponseLineItem.md
|
98
|
-
- docs/BillingResponseLineItemAllOf.md
|
99
97
|
- docs/BillingStatus.md
|
100
98
|
- docs/BillingTotal.md
|
101
99
|
- docs/BillingTotalExtras.md
|
@@ -278,6 +276,8 @@ files:
|
|
278
276
|
- docs/LegacyWafTagApi.md
|
279
277
|
- docs/LegacyWafUpdateStatus.md
|
280
278
|
- docs/LegacyWafUpdateStatusApi.md
|
279
|
+
- docs/LineItemData.md
|
280
|
+
- docs/LineItemDataReadOnlyInvoiceId.md
|
281
281
|
- docs/LoggingAddressAndPort.md
|
282
282
|
- docs/LoggingAzureblob.md
|
283
283
|
- docs/LoggingAzureblobAllOf.md
|
@@ -565,6 +565,7 @@ files:
|
|
565
565
|
- docs/SchemasContactResponse.md
|
566
566
|
- docs/SchemasSnippetResponse.md
|
567
567
|
- docs/SchemasUserResponse.md
|
568
|
+
- docs/SchemasUserResponseReadOnly.md
|
568
569
|
- docs/SchemasVclResponse.md
|
569
570
|
- docs/SchemasVersion.md
|
570
571
|
- docs/SchemasVersionResponse.md
|
@@ -743,7 +744,7 @@ files:
|
|
743
744
|
- docs/User.md
|
744
745
|
- docs/UserApi.md
|
745
746
|
- docs/UserResponse.md
|
746
|
-
- docs/
|
747
|
+
- docs/UserResponseReadOnly.md
|
747
748
|
- docs/ValidatorResult.md
|
748
749
|
- docs/ValidatorResultData.md
|
749
750
|
- docs/ValidatorResultDataAttributes.md
|
@@ -982,14 +983,12 @@ files:
|
|
982
983
|
- lib/fastly/models/billing_address_response_data.rb
|
983
984
|
- lib/fastly/models/billing_address_verification_error_response.rb
|
984
985
|
- lib/fastly/models/billing_address_verification_error_response_errors.rb
|
986
|
+
- lib/fastly/models/billing_estimate_lines.rb
|
987
|
+
- lib/fastly/models/billing_estimate_lines_line_items.rb
|
985
988
|
- lib/fastly/models/billing_estimate_response.rb
|
986
|
-
- lib/fastly/models/billing_estimate_response_all_of.rb
|
987
|
-
- lib/fastly/models/billing_estimate_response_all_of_line.rb
|
988
|
-
- lib/fastly/models/billing_estimate_response_all_of_lines.rb
|
989
989
|
- lib/fastly/models/billing_response.rb
|
990
|
-
- lib/fastly/models/
|
990
|
+
- lib/fastly/models/billing_response_item_items_data.rb
|
991
991
|
- lib/fastly/models/billing_response_line_item.rb
|
992
|
-
- lib/fastly/models/billing_response_line_item_all_of.rb
|
993
992
|
- lib/fastly/models/billing_status.rb
|
994
993
|
- lib/fastly/models/billing_total.rb
|
995
994
|
- lib/fastly/models/billing_total_extras.rb
|
@@ -1133,6 +1132,8 @@ files:
|
|
1133
1132
|
- lib/fastly/models/legacy_waf_ruleset.rb
|
1134
1133
|
- lib/fastly/models/legacy_waf_tag.rb
|
1135
1134
|
- lib/fastly/models/legacy_waf_update_status.rb
|
1135
|
+
- lib/fastly/models/line_item_data.rb
|
1136
|
+
- lib/fastly/models/line_item_data_read_only_invoice_id.rb
|
1136
1137
|
- lib/fastly/models/logging_address_and_port.rb
|
1137
1138
|
- lib/fastly/models/logging_azureblob.rb
|
1138
1139
|
- lib/fastly/models/logging_azureblob_all_of.rb
|
@@ -1380,6 +1381,7 @@ files:
|
|
1380
1381
|
- lib/fastly/models/schemas_contact_response.rb
|
1381
1382
|
- lib/fastly/models/schemas_snippet_response.rb
|
1382
1383
|
- lib/fastly/models/schemas_user_response.rb
|
1384
|
+
- lib/fastly/models/schemas_user_response_read_only.rb
|
1383
1385
|
- lib/fastly/models/schemas_vcl_response.rb
|
1384
1386
|
- lib/fastly/models/schemas_version.rb
|
1385
1387
|
- lib/fastly/models/schemas_version_response.rb
|
@@ -1539,7 +1541,7 @@ files:
|
|
1539
1541
|
- lib/fastly/models/update_billing_address_request_data.rb
|
1540
1542
|
- lib/fastly/models/user.rb
|
1541
1543
|
- lib/fastly/models/user_response.rb
|
1542
|
-
- lib/fastly/models/
|
1544
|
+
- lib/fastly/models/user_response_read_only.rb
|
1543
1545
|
- lib/fastly/models/validator_result.rb
|
1544
1546
|
- lib/fastly/models/validator_result_data.rb
|
1545
1547
|
- lib/fastly/models/validator_result_data_attributes.rb
|