fastly 5.2.0 → 5.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/docs/RelationshipTlsConfigurationForTlsSubscription.md +10 -0
- data/docs/RelationshipsForTlsActivation.md +2 -0
- data/docs/RelationshipsForTlsSubscription.md +2 -1
- data/lib/fastly/models/relationship_common_name.rb +1 -0
- data/lib/fastly/models/relationship_mutual_authentication.rb +1 -0
- data/lib/fastly/models/relationship_tls_certificate.rb +1 -0
- data/lib/fastly/models/relationship_tls_configuration.rb +1 -0
- data/lib/fastly/models/relationship_tls_configuration_for_tls_subscription.rb +217 -0
- data/lib/fastly/models/relationship_tls_domain.rb +1 -0
- data/lib/fastly/models/relationships_for_tls_activation.rb +31 -4
- data/lib/fastly/models/relationships_for_tls_subscription.rb +23 -14
- data/lib/fastly/version.rb +1 -1
- data/lib/fastly.rb +1 -0
- data/sig.json +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fff4b181bef5d860ddd9253c3cfa50c1dc9e3779b9d4aed2f86bf65b71b75fcf
|
4
|
+
data.tar.gz: 2b42d0accade248081949656743b269e197aa02516e0ead6f435f5c6c8351161
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1af89277b82ddce9c72a90de9a1af1fa9e35cffc914a31d86287e0022715424ecdab5a3ccde38ed1fc650a270c8a9316a800ead19eb74581cf9d56fcd01ecb0
|
7
|
+
data.tar.gz: 5ab546da4cc53670559f00cc2e1a9d81c65304cd9abf3329a52bb5649187a62f9f09b26530114f64a3ce0e713309e4ad41cfdc7f862df7feaf802468389608da
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v5.2.1](https://github.com/fastly/fastly-ruby/releases/tag/release/v5.2.1) (2023-06-21)
|
4
|
+
|
5
|
+
**Bug fixes:**
|
6
|
+
|
7
|
+
- fix(tls_activation): add tls_configuration and tls_domains.
|
8
|
+
- fix(tls_subscription): add tls_configuration and common name.
|
9
|
+
|
3
10
|
## [v5.2.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v5.2.0) (2023-06-20)
|
4
11
|
|
5
12
|
**Enhancements:**
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
# Fastly::RelationshipTlsConfigurationForTlsSubscription
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional] |
|
8
|
+
|
9
|
+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
|
10
|
+
|
@@ -5,6 +5,8 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **tls_certificate** | [**RelationshipTlsCertificateTlsCertificate**](RelationshipTlsCertificateTlsCertificate.md) | | [optional] |
|
8
|
+
| **tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional] |
|
9
|
+
| **tls_domain** | [**RelationshipTlsDomainTlsDomain**](RelationshipTlsDomainTlsDomain.md) | | [optional] |
|
8
10
|
|
9
11
|
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
|
10
12
|
|
@@ -4,9 +4,10 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional] |
|
8
|
+
| **common_name** | [**RelationshipMemberTlsDomain**](RelationshipMemberTlsDomain.md) | | [optional] |
|
7
9
|
| **tls_domains** | [**RelationshipTlsDomainsTlsDomains**](RelationshipTlsDomainsTlsDomains.md) | | [optional] |
|
8
10
|
| **tls_certificates** | [**RelationshipTlsCertificatesTlsCertificates**](RelationshipTlsCertificatesTlsCertificates.md) | | [optional] |
|
9
|
-
| **tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional] |
|
10
11
|
|
11
12
|
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
|
12
13
|
|
@@ -12,6 +12,7 @@ require 'date'
|
|
12
12
|
require 'time'
|
13
13
|
|
14
14
|
module Fastly
|
15
|
+
# The common name associated with the subscription generated by Fastly TLS. Optional. If you do not pass a common name on create, we will default to the first TLS domain included. If provided, the domain chosen as the common name must be included in TLS domains.
|
15
16
|
class RelationshipCommonName
|
16
17
|
attr_accessor :common_name
|
17
18
|
|
@@ -12,6 +12,7 @@ require 'date'
|
|
12
12
|
require 'time'
|
13
13
|
|
14
14
|
module Fastly
|
15
|
+
# The [Mutual Authentication](/reference/api/tls/mutual-tls/authentication/) for client-to-server authentication. Optional.
|
15
16
|
class RelationshipMutualAuthentication
|
16
17
|
attr_accessor :mutual_authentication
|
17
18
|
|
@@ -0,0 +1,217 @@
|
|
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
|
+
# The unique identifier for the set of TLS configuration options that apply to the enabled domains on this subscription. Write-only on create.
|
16
|
+
class RelationshipTlsConfigurationForTlsSubscription
|
17
|
+
attr_accessor :tls_configuration
|
18
|
+
|
19
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
20
|
+
def self.attribute_map
|
21
|
+
{
|
22
|
+
:'tls_configuration' => :'tls_configuration'
|
23
|
+
}
|
24
|
+
end
|
25
|
+
|
26
|
+
# Returns all the JSON keys this model knows about
|
27
|
+
def self.acceptable_attributes
|
28
|
+
attribute_map.values
|
29
|
+
end
|
30
|
+
|
31
|
+
# Attribute type mapping.
|
32
|
+
def self.fastly_types
|
33
|
+
{
|
34
|
+
:'tls_configuration' => :'RelationshipTlsConfigurationTlsConfiguration'
|
35
|
+
}
|
36
|
+
end
|
37
|
+
|
38
|
+
# List of attributes with nullable: true
|
39
|
+
def self.fastly_nullable
|
40
|
+
Set.new([
|
41
|
+
])
|
42
|
+
end
|
43
|
+
|
44
|
+
# Initializes the object
|
45
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
46
|
+
def initialize(attributes = {})
|
47
|
+
if (!attributes.is_a?(Hash))
|
48
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::RelationshipTlsConfigurationForTlsSubscription` initialize method"
|
49
|
+
end
|
50
|
+
|
51
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
52
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
53
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
54
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::RelationshipTlsConfigurationForTlsSubscription`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
55
|
+
end
|
56
|
+
h[k.to_sym] = v
|
57
|
+
}
|
58
|
+
|
59
|
+
if attributes.key?(:'tls_configuration')
|
60
|
+
self.tls_configuration = attributes[:'tls_configuration']
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
65
|
+
# @return Array for valid properties with the reasons
|
66
|
+
def list_invalid_properties
|
67
|
+
invalid_properties = Array.new
|
68
|
+
invalid_properties
|
69
|
+
end
|
70
|
+
|
71
|
+
# Check to see if the all the properties in the model are valid
|
72
|
+
# @return true if the model is valid
|
73
|
+
def valid?
|
74
|
+
true
|
75
|
+
end
|
76
|
+
|
77
|
+
# Checks equality by comparing each attribute.
|
78
|
+
# @param [Object] Object to be compared
|
79
|
+
def ==(o)
|
80
|
+
return true if self.equal?(o)
|
81
|
+
self.class == o.class &&
|
82
|
+
tls_configuration == o.tls_configuration
|
83
|
+
end
|
84
|
+
|
85
|
+
# @see the `==` method
|
86
|
+
# @param [Object] Object to be compared
|
87
|
+
def eql?(o)
|
88
|
+
self == o
|
89
|
+
end
|
90
|
+
|
91
|
+
# Calculates hash code according to all attributes.
|
92
|
+
# @return [Integer] Hash code
|
93
|
+
def hash
|
94
|
+
[tls_configuration].hash
|
95
|
+
end
|
96
|
+
|
97
|
+
# Builds the object from hash
|
98
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
99
|
+
# @return [Object] Returns the model itself
|
100
|
+
def self.build_from_hash(attributes)
|
101
|
+
new.build_from_hash(attributes)
|
102
|
+
end
|
103
|
+
|
104
|
+
# Builds the object from hash
|
105
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
106
|
+
# @return [Object] Returns the model itself
|
107
|
+
def build_from_hash(attributes)
|
108
|
+
return nil unless attributes.is_a?(Hash)
|
109
|
+
self.class.fastly_types.each_pair do |key, type|
|
110
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.fastly_nullable.include?(key)
|
111
|
+
self.send("#{key}=", nil)
|
112
|
+
elsif type =~ /\AArray<(.*)>/i
|
113
|
+
# check to ensure the input is an array given that the attribute
|
114
|
+
# is documented as an array but the input is not
|
115
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
116
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
117
|
+
end
|
118
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
119
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
self
|
124
|
+
end
|
125
|
+
|
126
|
+
# Deserializes the data based on type
|
127
|
+
# @param string type Data type
|
128
|
+
# @param string value Value to be deserialized
|
129
|
+
# @return [Object] Deserialized data
|
130
|
+
def _deserialize(type, value)
|
131
|
+
case type.to_sym
|
132
|
+
when :Time
|
133
|
+
Time.parse(value)
|
134
|
+
when :Date
|
135
|
+
Date.parse(value)
|
136
|
+
when :String
|
137
|
+
value.to_s
|
138
|
+
when :Integer
|
139
|
+
value.to_i
|
140
|
+
when :Float
|
141
|
+
value.to_f
|
142
|
+
when :Boolean
|
143
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
144
|
+
true
|
145
|
+
else
|
146
|
+
false
|
147
|
+
end
|
148
|
+
when :Object
|
149
|
+
# generic object (usually a Hash), return directly
|
150
|
+
value
|
151
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
152
|
+
inner_type = Regexp.last_match[:inner_type]
|
153
|
+
value.map { |v| _deserialize(inner_type, v) }
|
154
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
155
|
+
k_type = Regexp.last_match[:k_type]
|
156
|
+
v_type = Regexp.last_match[:v_type]
|
157
|
+
{}.tap do |hash|
|
158
|
+
value.each do |k, v|
|
159
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
160
|
+
end
|
161
|
+
end
|
162
|
+
else # model
|
163
|
+
# models (e.g. Pet) or oneOf
|
164
|
+
klass = Fastly.const_get(type)
|
165
|
+
klass.respond_to?(:fastly_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
# Returns the string representation of the object
|
170
|
+
# @return [String] String presentation of the object
|
171
|
+
def to_s
|
172
|
+
to_hash.to_s
|
173
|
+
end
|
174
|
+
|
175
|
+
# to_body is an alias to to_hash (backward compatibility)
|
176
|
+
# @return [Hash] Returns the object in the form of hash
|
177
|
+
def to_body
|
178
|
+
to_hash
|
179
|
+
end
|
180
|
+
|
181
|
+
# Returns the object in the form of hash
|
182
|
+
# @return [Hash] Returns the object in the form of hash
|
183
|
+
def to_hash
|
184
|
+
hash = {}
|
185
|
+
self.class.attribute_map.each_pair do |attr, param|
|
186
|
+
value = self.send(attr)
|
187
|
+
if value.nil?
|
188
|
+
is_nullable = self.class.fastly_nullable.include?(attr)
|
189
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
190
|
+
end
|
191
|
+
|
192
|
+
hash[param] = _to_hash(value)
|
193
|
+
end
|
194
|
+
hash
|
195
|
+
end
|
196
|
+
|
197
|
+
# Outputs non-array value in the form of hash
|
198
|
+
# For object, use to_hash. Otherwise, just return the value
|
199
|
+
# @param [Object] value Any valid value
|
200
|
+
# @return [Hash] Returns the value in the form of hash
|
201
|
+
def _to_hash(value)
|
202
|
+
if value.is_a?(Array)
|
203
|
+
value.compact.map { |v| _to_hash(v) }
|
204
|
+
elsif value.is_a?(Hash)
|
205
|
+
{}.tap do |hash|
|
206
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
207
|
+
end
|
208
|
+
elsif value.respond_to? :to_hash
|
209
|
+
value.to_hash
|
210
|
+
else
|
211
|
+
value
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
end
|
216
|
+
|
217
|
+
end
|
@@ -15,10 +15,16 @@ module Fastly
|
|
15
15
|
class RelationshipsForTlsActivation
|
16
16
|
attr_accessor :tls_certificate
|
17
17
|
|
18
|
+
attr_accessor :tls_configuration
|
19
|
+
|
20
|
+
attr_accessor :tls_domain
|
21
|
+
|
18
22
|
# Attribute mapping from ruby-style variable name to JSON key.
|
19
23
|
def self.attribute_map
|
20
24
|
{
|
21
|
-
:'tls_certificate' => :'tls_certificate'
|
25
|
+
:'tls_certificate' => :'tls_certificate',
|
26
|
+
:'tls_configuration' => :'tls_configuration',
|
27
|
+
:'tls_domain' => :'tls_domain'
|
22
28
|
}
|
23
29
|
end
|
24
30
|
|
@@ -30,7 +36,9 @@ module Fastly
|
|
30
36
|
# Attribute type mapping.
|
31
37
|
def self.fastly_types
|
32
38
|
{
|
33
|
-
:'tls_certificate' => :'RelationshipTlsCertificateTlsCertificate'
|
39
|
+
:'tls_certificate' => :'RelationshipTlsCertificateTlsCertificate',
|
40
|
+
:'tls_configuration' => :'RelationshipTlsConfigurationTlsConfiguration',
|
41
|
+
:'tls_domain' => :'RelationshipTlsDomainTlsDomain'
|
34
42
|
}
|
35
43
|
end
|
36
44
|
|
@@ -40,6 +48,15 @@ module Fastly
|
|
40
48
|
])
|
41
49
|
end
|
42
50
|
|
51
|
+
# List of class defined in allOf (OpenAPI v3)
|
52
|
+
def self.fastly_all_of
|
53
|
+
[
|
54
|
+
:'RelationshipTlsCertificate',
|
55
|
+
:'RelationshipTlsConfiguration',
|
56
|
+
:'RelationshipTlsDomain'
|
57
|
+
]
|
58
|
+
end
|
59
|
+
|
43
60
|
# Initializes the object
|
44
61
|
# @param [Hash] attributes Model attributes in the form of hash
|
45
62
|
def initialize(attributes = {})
|
@@ -58,6 +75,14 @@ module Fastly
|
|
58
75
|
if attributes.key?(:'tls_certificate')
|
59
76
|
self.tls_certificate = attributes[:'tls_certificate']
|
60
77
|
end
|
78
|
+
|
79
|
+
if attributes.key?(:'tls_configuration')
|
80
|
+
self.tls_configuration = attributes[:'tls_configuration']
|
81
|
+
end
|
82
|
+
|
83
|
+
if attributes.key?(:'tls_domain')
|
84
|
+
self.tls_domain = attributes[:'tls_domain']
|
85
|
+
end
|
61
86
|
end
|
62
87
|
|
63
88
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -78,7 +103,9 @@ module Fastly
|
|
78
103
|
def ==(o)
|
79
104
|
return true if self.equal?(o)
|
80
105
|
self.class == o.class &&
|
81
|
-
tls_certificate == o.tls_certificate
|
106
|
+
tls_certificate == o.tls_certificate &&
|
107
|
+
tls_configuration == o.tls_configuration &&
|
108
|
+
tls_domain == o.tls_domain
|
82
109
|
end
|
83
110
|
|
84
111
|
# @see the `==` method
|
@@ -90,7 +117,7 @@ module Fastly
|
|
90
117
|
# Calculates hash code according to all attributes.
|
91
118
|
# @return [Integer] Hash code
|
92
119
|
def hash
|
93
|
-
[tls_certificate].hash
|
120
|
+
[tls_certificate, tls_configuration, tls_domain].hash
|
94
121
|
end
|
95
122
|
|
96
123
|
# Builds the object from hash
|
@@ -13,18 +13,21 @@ require 'time'
|
|
13
13
|
|
14
14
|
module Fastly
|
15
15
|
class RelationshipsForTlsSubscription
|
16
|
+
attr_accessor :tls_configuration
|
17
|
+
|
18
|
+
attr_accessor :common_name
|
19
|
+
|
16
20
|
attr_accessor :tls_domains
|
17
21
|
|
18
22
|
attr_accessor :tls_certificates
|
19
23
|
|
20
|
-
attr_accessor :tls_configuration
|
21
|
-
|
22
24
|
# Attribute mapping from ruby-style variable name to JSON key.
|
23
25
|
def self.attribute_map
|
24
26
|
{
|
27
|
+
:'tls_configuration' => :'tls_configuration',
|
28
|
+
:'common_name' => :'common_name',
|
25
29
|
:'tls_domains' => :'tls_domains',
|
26
|
-
:'tls_certificates' => :'tls_certificates'
|
27
|
-
:'tls_configuration' => :'tls_configuration'
|
30
|
+
:'tls_certificates' => :'tls_certificates'
|
28
31
|
}
|
29
32
|
end
|
30
33
|
|
@@ -36,9 +39,10 @@ module Fastly
|
|
36
39
|
# Attribute type mapping.
|
37
40
|
def self.fastly_types
|
38
41
|
{
|
42
|
+
:'tls_configuration' => :'RelationshipTlsConfigurationTlsConfiguration',
|
43
|
+
:'common_name' => :'RelationshipMemberTlsDomain',
|
39
44
|
:'tls_domains' => :'RelationshipTlsDomainsTlsDomains',
|
40
|
-
:'tls_certificates' => :'RelationshipTlsCertificatesTlsCertificates'
|
41
|
-
:'tls_configuration' => :'RelationshipTlsConfigurationTlsConfiguration'
|
45
|
+
:'tls_certificates' => :'RelationshipTlsCertificatesTlsCertificates'
|
42
46
|
}
|
43
47
|
end
|
44
48
|
|
@@ -53,7 +57,7 @@ module Fastly
|
|
53
57
|
[
|
54
58
|
:'RelationshipCommonName',
|
55
59
|
:'RelationshipTlsCertificates',
|
56
|
-
:'
|
60
|
+
:'RelationshipTlsConfigurationForTlsSubscription',
|
57
61
|
:'RelationshipTlsDomains'
|
58
62
|
]
|
59
63
|
end
|
@@ -73,6 +77,14 @@ module Fastly
|
|
73
77
|
h[k.to_sym] = v
|
74
78
|
}
|
75
79
|
|
80
|
+
if attributes.key?(:'tls_configuration')
|
81
|
+
self.tls_configuration = attributes[:'tls_configuration']
|
82
|
+
end
|
83
|
+
|
84
|
+
if attributes.key?(:'common_name')
|
85
|
+
self.common_name = attributes[:'common_name']
|
86
|
+
end
|
87
|
+
|
76
88
|
if attributes.key?(:'tls_domains')
|
77
89
|
self.tls_domains = attributes[:'tls_domains']
|
78
90
|
end
|
@@ -80,10 +92,6 @@ module Fastly
|
|
80
92
|
if attributes.key?(:'tls_certificates')
|
81
93
|
self.tls_certificates = attributes[:'tls_certificates']
|
82
94
|
end
|
83
|
-
|
84
|
-
if attributes.key?(:'tls_configuration')
|
85
|
-
self.tls_configuration = attributes[:'tls_configuration']
|
86
|
-
end
|
87
95
|
end
|
88
96
|
|
89
97
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -116,9 +124,10 @@ module Fastly
|
|
116
124
|
def ==(o)
|
117
125
|
return true if self.equal?(o)
|
118
126
|
self.class == o.class &&
|
127
|
+
tls_configuration == o.tls_configuration &&
|
128
|
+
common_name == o.common_name &&
|
119
129
|
tls_domains == o.tls_domains &&
|
120
|
-
tls_certificates == o.tls_certificates
|
121
|
-
tls_configuration == o.tls_configuration
|
130
|
+
tls_certificates == o.tls_certificates
|
122
131
|
end
|
123
132
|
|
124
133
|
# @see the `==` method
|
@@ -130,7 +139,7 @@ module Fastly
|
|
130
139
|
# Calculates hash code according to all attributes.
|
131
140
|
# @return [Integer] Hash code
|
132
141
|
def hash
|
133
|
-
[tls_domains, tls_certificates
|
142
|
+
[tls_configuration, common_name, tls_domains, tls_certificates].hash
|
134
143
|
end
|
135
144
|
|
136
145
|
# Builds the object from hash
|
data/lib/fastly/version.rb
CHANGED
data/lib/fastly.rb
CHANGED
@@ -331,6 +331,7 @@ require 'fastly/models/relationship_tls_certificate_tls_certificate'
|
|
331
331
|
require 'fastly/models/relationship_tls_certificates'
|
332
332
|
require 'fastly/models/relationship_tls_certificates_tls_certificates'
|
333
333
|
require 'fastly/models/relationship_tls_configuration'
|
334
|
+
require 'fastly/models/relationship_tls_configuration_for_tls_subscription'
|
334
335
|
require 'fastly/models/relationship_tls_configuration_tls_configuration'
|
335
336
|
require 'fastly/models/relationship_tls_configurations'
|
336
337
|
require 'fastly/models/relationship_tls_configurations_tls_configurations'
|
data/sig.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"G": "
|
1
|
+
{"G": "7a7ec0a2", "D": "a64b7e5f"}
|
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: 5.2.
|
4
|
+
version: 5.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fastly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -438,6 +438,7 @@ files:
|
|
438
438
|
- docs/RelationshipTlsCertificates.md
|
439
439
|
- docs/RelationshipTlsCertificatesTlsCertificates.md
|
440
440
|
- docs/RelationshipTlsConfiguration.md
|
441
|
+
- docs/RelationshipTlsConfigurationForTlsSubscription.md
|
441
442
|
- docs/RelationshipTlsConfigurationTlsConfiguration.md
|
442
443
|
- docs/RelationshipTlsConfigurations.md
|
443
444
|
- docs/RelationshipTlsConfigurationsTlsConfigurations.md
|
@@ -1171,6 +1172,7 @@ files:
|
|
1171
1172
|
- lib/fastly/models/relationship_tls_certificates.rb
|
1172
1173
|
- lib/fastly/models/relationship_tls_certificates_tls_certificates.rb
|
1173
1174
|
- lib/fastly/models/relationship_tls_configuration.rb
|
1175
|
+
- lib/fastly/models/relationship_tls_configuration_for_tls_subscription.rb
|
1174
1176
|
- lib/fastly/models/relationship_tls_configuration_tls_configuration.rb
|
1175
1177
|
- lib/fastly/models/relationship_tls_configurations.rb
|
1176
1178
|
- lib/fastly/models/relationship_tls_configurations_tls_configurations.rb
|