fastly 4.2.0 → 4.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -5
  3. data/Gemfile.lock +1 -1
  4. data/README.md +87 -8
  5. data/docs/AclEntryApi.md +1 -1
  6. data/docs/DomainOwnershipsApi.md +47 -0
  7. data/docs/InlineResponse2002.md +1 -2
  8. data/docs/InlineResponse2003.md +11 -0
  9. data/docs/{InlineResponse2002Meta.md → InlineResponse2003Meta.md} +1 -1
  10. data/docs/{ErrorResponseData.md → InlineResponse2004.md} +3 -3
  11. data/docs/{ErrorResponse.md → InlineResponse2004Meta.md} +3 -2
  12. data/docs/ObjectStoreApi.md +6 -2
  13. data/docs/ObjectStoreItemApi.md +195 -0
  14. data/docs/RealtimeMeasurements.md +6 -0
  15. data/docs/Results.md +6 -0
  16. data/lib/fastly/api/acl_entry_api.rb +2 -2
  17. data/lib/fastly/api/{tls_csrs_api.rb → domain_ownerships_api.rb} +17 -24
  18. data/lib/fastly/api/object_store_api.rb +9 -3
  19. data/lib/fastly/api/object_store_item_api.rb +331 -0
  20. data/lib/fastly/api/purge_api.rb +1 -1
  21. data/lib/fastly/models/inline_response2002.rb +8 -18
  22. data/lib/fastly/models/{tls_csr_response.rb → inline_response2003.rb} +19 -8
  23. data/lib/fastly/models/{inline_response2002_meta.rb → inline_response2003_meta.rb} +3 -3
  24. data/lib/fastly/models/{tls_csr.rb → inline_response2004.rb} +19 -8
  25. data/lib/fastly/models/{error_response_data.rb → inline_response2004_meta.rb} +16 -16
  26. data/lib/fastly/models/realtime_measurements.rb +64 -4
  27. data/lib/fastly/models/results.rb +64 -4
  28. data/lib/fastly/version.rb +1 -1
  29. data/lib/fastly.rb +6 -12
  30. data/sig.json +1 -1
  31. metadata +14 -26
  32. data/docs/RelationshipsForTlsCsr.md +0 -10
  33. data/docs/TlsCsr.md +0 -10
  34. data/docs/TlsCsrData.md +0 -12
  35. data/docs/TlsCsrDataAttributes.md +0 -19
  36. data/docs/TlsCsrResponse.md +0 -10
  37. data/docs/TlsCsrResponseAttributes.md +0 -10
  38. data/docs/TlsCsrResponseData.md +0 -13
  39. data/docs/TlsCsrsApi.md +0 -52
  40. data/docs/TypeTlsCsr.md +0 -9
  41. data/lib/fastly/models/error_response.rb +0 -218
  42. data/lib/fastly/models/relationships_for_tls_csr.rb +0 -235
  43. data/lib/fastly/models/tls_csr_data.rb +0 -236
  44. data/lib/fastly/models/tls_csr_data_attributes.rb +0 -314
  45. data/lib/fastly/models/tls_csr_response_attributes.rb +0 -217
  46. data/lib/fastly/models/tls_csr_response_data.rb +0 -245
  47. data/lib/fastly/models/type_tls_csr.rb +0 -34
@@ -12,13 +12,16 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class TlsCsr
15
+ class InlineResponse2004
16
16
  attr_accessor :data
17
17
 
18
+ attr_accessor :meta
19
+
18
20
  # Attribute mapping from ruby-style variable name to JSON key.
19
21
  def self.attribute_map
20
22
  {
21
- :'data' => :'data'
23
+ :'data' => :'data',
24
+ :'meta' => :'meta'
22
25
  }
23
26
  end
24
27
 
@@ -30,7 +33,8 @@ module Fastly
30
33
  # Attribute type mapping.
31
34
  def self.fastly_types
32
35
  {
33
- :'data' => :'TlsCsrData'
36
+ :'data' => :'Array<String>',
37
+ :'meta' => :'InlineResponse2004Meta'
34
38
  }
35
39
  end
36
40
 
@@ -44,19 +48,25 @@ module Fastly
44
48
  # @param [Hash] attributes Model attributes in the form of hash
45
49
  def initialize(attributes = {})
46
50
  if (!attributes.is_a?(Hash))
47
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::TlsCsr` initialize method"
51
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::InlineResponse2004` initialize method"
48
52
  end
49
53
 
50
54
  # check to see if the attribute exists and convert string to symbol for hash key
51
55
  attributes = attributes.each_with_object({}) { |(k, v), h|
52
56
  if (!self.class.attribute_map.key?(k.to_sym))
53
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::TlsCsr`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
57
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::InlineResponse2004`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
54
58
  end
55
59
  h[k.to_sym] = v
56
60
  }
57
61
 
58
62
  if attributes.key?(:'data')
59
- self.data = attributes[:'data']
63
+ if (value = attributes[:'data']).is_a?(Array)
64
+ self.data = value
65
+ end
66
+ end
67
+
68
+ if attributes.key?(:'meta')
69
+ self.meta = attributes[:'meta']
60
70
  end
61
71
  end
62
72
 
@@ -78,7 +88,8 @@ module Fastly
78
88
  def ==(o)
79
89
  return true if self.equal?(o)
80
90
  self.class == o.class &&
81
- data == o.data
91
+ data == o.data &&
92
+ meta == o.meta
82
93
  end
83
94
 
84
95
  # @see the `==` method
@@ -90,7 +101,7 @@ module Fastly
90
101
  # Calculates hash code according to all attributes.
91
102
  # @return [Integer] Hash code
92
103
  def hash
93
- [data].hash
104
+ [data, meta].hash
94
105
  end
95
106
 
96
107
  # Builds the object from hash
@@ -12,16 +12,16 @@ require 'date'
12
12
  require 'time'
13
13
 
14
14
  module Fastly
15
- class ErrorResponseData
16
- attr_accessor :title
15
+ class InlineResponse2004Meta
16
+ attr_accessor :next_cursor
17
17
 
18
- attr_accessor :detail
18
+ attr_accessor :limit
19
19
 
20
20
  # Attribute mapping from ruby-style variable name to JSON key.
21
21
  def self.attribute_map
22
22
  {
23
- :'title' => :'title',
24
- :'detail' => :'detail'
23
+ :'next_cursor' => :'next_cursor',
24
+ :'limit' => :'limit'
25
25
  }
26
26
  end
27
27
 
@@ -33,8 +33,8 @@ module Fastly
33
33
  # Attribute type mapping.
34
34
  def self.fastly_types
35
35
  {
36
- :'title' => :'String',
37
- :'detail' => :'String'
36
+ :'next_cursor' => :'String',
37
+ :'limit' => :'Integer'
38
38
  }
39
39
  end
40
40
 
@@ -48,23 +48,23 @@ module Fastly
48
48
  # @param [Hash] attributes Model attributes in the form of hash
49
49
  def initialize(attributes = {})
50
50
  if (!attributes.is_a?(Hash))
51
- fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::ErrorResponseData` initialize method"
51
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Fastly::InlineResponse2004Meta` initialize method"
52
52
  end
53
53
 
54
54
  # check to see if the attribute exists and convert string to symbol for hash key
55
55
  attributes = attributes.each_with_object({}) { |(k, v), h|
56
56
  if (!self.class.attribute_map.key?(k.to_sym))
57
- fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::ErrorResponseData`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
57
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Fastly::InlineResponse2004Meta`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
58
58
  end
59
59
  h[k.to_sym] = v
60
60
  }
61
61
 
62
- if attributes.key?(:'title')
63
- self.title = attributes[:'title']
62
+ if attributes.key?(:'next_cursor')
63
+ self.next_cursor = attributes[:'next_cursor']
64
64
  end
65
65
 
66
- if attributes.key?(:'detail')
67
- self.detail = attributes[:'detail']
66
+ if attributes.key?(:'limit')
67
+ self.limit = attributes[:'limit']
68
68
  end
69
69
  end
70
70
 
@@ -86,8 +86,8 @@ module Fastly
86
86
  def ==(o)
87
87
  return true if self.equal?(o)
88
88
  self.class == o.class &&
89
- title == o.title &&
90
- detail == o.detail
89
+ next_cursor == o.next_cursor &&
90
+ limit == o.limit
91
91
  end
92
92
 
93
93
  # @see the `==` method
@@ -99,7 +99,7 @@ module Fastly
99
99
  # Calculates hash code according to all attributes.
100
100
  # @return [Integer] Hash code
101
101
  def hash
102
- [title, detail].hash
102
+ [next_cursor, limit].hash
103
103
  end
104
104
 
105
105
  # Builds the object from hash
@@ -647,6 +647,24 @@ module Fastly
647
647
  # Total duration of Fanout connections with end users.
648
648
  attr_accessor :fanout_conn_time_ms
649
649
 
650
+ # For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection.
651
+ attr_accessor :ddos_action_limit_streams_connections
652
+
653
+ # For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection.
654
+ attr_accessor :ddos_action_limit_streams_requests
655
+
656
+ # The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections.
657
+ attr_accessor :ddos_action_tarpit_accept
658
+
659
+ # The number of times the tarpit action was taken. The tarpit action delays writing the response to the client.
660
+ attr_accessor :ddos_action_tarpit
661
+
662
+ # The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent.
663
+ attr_accessor :ddos_action_close
664
+
665
+ # The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped).
666
+ attr_accessor :ddos_action_blackhole
667
+
650
668
  # Attribute mapping from ruby-style variable name to JSON key.
651
669
  def self.attribute_map
652
670
  {
@@ -860,7 +878,13 @@ module Fastly
860
878
  :'fanout_bereq_body_bytes' => :'fanout_bereq_body_bytes',
861
879
  :'fanout_beresp_header_bytes' => :'fanout_beresp_header_bytes',
862
880
  :'fanout_beresp_body_bytes' => :'fanout_beresp_body_bytes',
863
- :'fanout_conn_time_ms' => :'fanout_conn_time_ms'
881
+ :'fanout_conn_time_ms' => :'fanout_conn_time_ms',
882
+ :'ddos_action_limit_streams_connections' => :'ddos_action_limit_streams_connections',
883
+ :'ddos_action_limit_streams_requests' => :'ddos_action_limit_streams_requests',
884
+ :'ddos_action_tarpit_accept' => :'ddos_action_tarpit_accept',
885
+ :'ddos_action_tarpit' => :'ddos_action_tarpit',
886
+ :'ddos_action_close' => :'ddos_action_close',
887
+ :'ddos_action_blackhole' => :'ddos_action_blackhole'
864
888
  }
865
889
  end
866
890
 
@@ -1082,7 +1106,13 @@ module Fastly
1082
1106
  :'fanout_bereq_body_bytes' => :'Integer',
1083
1107
  :'fanout_beresp_header_bytes' => :'Integer',
1084
1108
  :'fanout_beresp_body_bytes' => :'Integer',
1085
- :'fanout_conn_time_ms' => :'Integer'
1109
+ :'fanout_conn_time_ms' => :'Integer',
1110
+ :'ddos_action_limit_streams_connections' => :'Integer',
1111
+ :'ddos_action_limit_streams_requests' => :'Integer',
1112
+ :'ddos_action_tarpit_accept' => :'Integer',
1113
+ :'ddos_action_tarpit' => :'Integer',
1114
+ :'ddos_action_close' => :'Integer',
1115
+ :'ddos_action_blackhole' => :'Integer'
1086
1116
  }
1087
1117
  end
1088
1118
 
@@ -1950,6 +1980,30 @@ module Fastly
1950
1980
  if attributes.key?(:'fanout_conn_time_ms')
1951
1981
  self.fanout_conn_time_ms = attributes[:'fanout_conn_time_ms']
1952
1982
  end
1983
+
1984
+ if attributes.key?(:'ddos_action_limit_streams_connections')
1985
+ self.ddos_action_limit_streams_connections = attributes[:'ddos_action_limit_streams_connections']
1986
+ end
1987
+
1988
+ if attributes.key?(:'ddos_action_limit_streams_requests')
1989
+ self.ddos_action_limit_streams_requests = attributes[:'ddos_action_limit_streams_requests']
1990
+ end
1991
+
1992
+ if attributes.key?(:'ddos_action_tarpit_accept')
1993
+ self.ddos_action_tarpit_accept = attributes[:'ddos_action_tarpit_accept']
1994
+ end
1995
+
1996
+ if attributes.key?(:'ddos_action_tarpit')
1997
+ self.ddos_action_tarpit = attributes[:'ddos_action_tarpit']
1998
+ end
1999
+
2000
+ if attributes.key?(:'ddos_action_close')
2001
+ self.ddos_action_close = attributes[:'ddos_action_close']
2002
+ end
2003
+
2004
+ if attributes.key?(:'ddos_action_blackhole')
2005
+ self.ddos_action_blackhole = attributes[:'ddos_action_blackhole']
2006
+ end
1953
2007
  end
1954
2008
 
1955
2009
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -2180,7 +2234,13 @@ module Fastly
2180
2234
  fanout_bereq_body_bytes == o.fanout_bereq_body_bytes &&
2181
2235
  fanout_beresp_header_bytes == o.fanout_beresp_header_bytes &&
2182
2236
  fanout_beresp_body_bytes == o.fanout_beresp_body_bytes &&
2183
- fanout_conn_time_ms == o.fanout_conn_time_ms
2237
+ fanout_conn_time_ms == o.fanout_conn_time_ms &&
2238
+ ddos_action_limit_streams_connections == o.ddos_action_limit_streams_connections &&
2239
+ ddos_action_limit_streams_requests == o.ddos_action_limit_streams_requests &&
2240
+ ddos_action_tarpit_accept == o.ddos_action_tarpit_accept &&
2241
+ ddos_action_tarpit == o.ddos_action_tarpit &&
2242
+ ddos_action_close == o.ddos_action_close &&
2243
+ ddos_action_blackhole == o.ddos_action_blackhole
2184
2244
  end
2185
2245
 
2186
2246
  # @see the `==` method
@@ -2192,7 +2252,7 @@ module Fastly
2192
2252
  # Calculates hash code according to all attributes.
2193
2253
  # @return [Integer] Hash code
2194
2254
  def hash
2195
- [requests, logging, log, resp_header_bytes, header_size, resp_body_bytes, body_size, hits, miss, pass, synth, errors, hits_time, miss_time, miss_histogram, compute_requests, compute_execution_time_ms, compute_ram_used, compute_request_time_ms, shield, ipv6, imgopto, imgopto_shield, imgopto_transforms, otfp, otfp_shield, otfp_manifests, video, pci, http2, http3, restarts, req_header_bytes, req_body_bytes, bereq_header_bytes, bereq_body_bytes, waf_blocked, waf_logged, waf_passed, attack_req_header_bytes, attack_req_body_bytes, attack_resp_synth_bytes, attack_logged_req_header_bytes, attack_logged_req_body_bytes, attack_blocked_req_header_bytes, attack_blocked_req_body_bytes, attack_passed_req_header_bytes, attack_passed_req_body_bytes, shield_resp_header_bytes, shield_resp_body_bytes, otfp_resp_header_bytes, otfp_resp_body_bytes, otfp_shield_resp_header_bytes, otfp_shield_resp_body_bytes, otfp_shield_time, otfp_deliver_time, imgopto_resp_header_bytes, imgopto_resp_body_bytes, imgopto_shield_resp_header_bytes, imgopto_shield_resp_body_bytes, status_1xx, status_2xx, status_3xx, status_4xx, status_5xx, status_200, status_204, status_206, status_301, status_302, status_304, status_400, status_401, status_403, status_404, status_406, status_416, status_429, status_500, status_501, status_502, status_503, status_504, status_505, uncacheable, pass_time, tls, tls_v10, tls_v11, tls_v12, tls_v13, object_size_1k, object_size_10k, object_size_100k, object_size_1m, object_size_10m, object_size_100m, object_size_1g, object_size_other, recv_sub_time, recv_sub_count, hash_sub_time, hash_sub_count, miss_sub_time, miss_sub_count, fetch_sub_time, fetch_sub_count, pass_sub_time, pass_sub_count, pipe_sub_time, pipe_sub_count, deliver_sub_time, deliver_sub_count, error_sub_time, error_sub_count, hit_sub_time, hit_sub_count, prehash_sub_time, prehash_sub_count, predeliver_sub_time, predeliver_sub_count, hit_resp_body_bytes, miss_resp_body_bytes, pass_resp_body_bytes, compute_req_header_bytes, compute_req_body_bytes, compute_resp_header_bytes, compute_resp_body_bytes, imgvideo, imgvideo_frames, imgvideo_resp_header_bytes, imgvideo_resp_body_bytes, imgvideo_shield, imgvideo_shield_frames, imgvideo_shield_resp_header_bytes, imgvideo_shield_resp_body_bytes, log_bytes, edge_requests, edge_resp_header_bytes, edge_resp_body_bytes, origin_revalidations, origin_fetches, origin_fetch_header_bytes, origin_fetch_body_bytes, origin_fetch_resp_header_bytes, origin_fetch_resp_body_bytes, shield_revalidations, shield_fetches, shield_fetch_header_bytes, shield_fetch_body_bytes, shield_fetch_resp_header_bytes, shield_fetch_resp_body_bytes, segblock_origin_fetches, segblock_shield_fetches, compute_resp_status_1xx, compute_resp_status_2xx, compute_resp_status_3xx, compute_resp_status_4xx, compute_resp_status_5xx, edge_hit_requests, edge_miss_requests, compute_bereq_header_bytes, compute_bereq_body_bytes, compute_beresp_header_bytes, compute_beresp_body_bytes, origin_cache_fetches, shield_cache_fetches, compute_bereqs, compute_bereq_errors, compute_resource_limit_exceeded, compute_heap_limit_exceeded, compute_stack_limit_exceeded, compute_globals_limit_exceeded, compute_guest_errors, compute_runtime_errors, edge_hit_resp_body_bytes, edge_hit_resp_header_bytes, edge_miss_resp_body_bytes, edge_miss_resp_header_bytes, origin_cache_fetch_resp_body_bytes, origin_cache_fetch_resp_header_bytes, shield_hit_requests, shield_miss_requests, shield_hit_resp_header_bytes, shield_hit_resp_body_bytes, shield_miss_resp_header_bytes, shield_miss_resp_body_bytes, websocket_req_header_bytes, websocket_req_body_bytes, websocket_resp_header_bytes, websocket_bereq_header_bytes, websocket_bereq_body_bytes, websocket_beresp_header_bytes, websocket_beresp_body_bytes, websocket_conn_time_ms, websocket_resp_body_bytes, fanout_recv_publishes, fanout_send_publishes, object_store_class_a_operations, object_store_class_b_operations, object_store_read_requests, object_store_write_requests, fanout_req_header_bytes, fanout_req_body_bytes, fanout_resp_header_bytes, fanout_resp_body_bytes, fanout_bereq_header_bytes, fanout_bereq_body_bytes, fanout_beresp_header_bytes, fanout_beresp_body_bytes, fanout_conn_time_ms].hash
2255
+ [requests, logging, log, resp_header_bytes, header_size, resp_body_bytes, body_size, hits, miss, pass, synth, errors, hits_time, miss_time, miss_histogram, compute_requests, compute_execution_time_ms, compute_ram_used, compute_request_time_ms, shield, ipv6, imgopto, imgopto_shield, imgopto_transforms, otfp, otfp_shield, otfp_manifests, video, pci, http2, http3, restarts, req_header_bytes, req_body_bytes, bereq_header_bytes, bereq_body_bytes, waf_blocked, waf_logged, waf_passed, attack_req_header_bytes, attack_req_body_bytes, attack_resp_synth_bytes, attack_logged_req_header_bytes, attack_logged_req_body_bytes, attack_blocked_req_header_bytes, attack_blocked_req_body_bytes, attack_passed_req_header_bytes, attack_passed_req_body_bytes, shield_resp_header_bytes, shield_resp_body_bytes, otfp_resp_header_bytes, otfp_resp_body_bytes, otfp_shield_resp_header_bytes, otfp_shield_resp_body_bytes, otfp_shield_time, otfp_deliver_time, imgopto_resp_header_bytes, imgopto_resp_body_bytes, imgopto_shield_resp_header_bytes, imgopto_shield_resp_body_bytes, status_1xx, status_2xx, status_3xx, status_4xx, status_5xx, status_200, status_204, status_206, status_301, status_302, status_304, status_400, status_401, status_403, status_404, status_406, status_416, status_429, status_500, status_501, status_502, status_503, status_504, status_505, uncacheable, pass_time, tls, tls_v10, tls_v11, tls_v12, tls_v13, object_size_1k, object_size_10k, object_size_100k, object_size_1m, object_size_10m, object_size_100m, object_size_1g, object_size_other, recv_sub_time, recv_sub_count, hash_sub_time, hash_sub_count, miss_sub_time, miss_sub_count, fetch_sub_time, fetch_sub_count, pass_sub_time, pass_sub_count, pipe_sub_time, pipe_sub_count, deliver_sub_time, deliver_sub_count, error_sub_time, error_sub_count, hit_sub_time, hit_sub_count, prehash_sub_time, prehash_sub_count, predeliver_sub_time, predeliver_sub_count, hit_resp_body_bytes, miss_resp_body_bytes, pass_resp_body_bytes, compute_req_header_bytes, compute_req_body_bytes, compute_resp_header_bytes, compute_resp_body_bytes, imgvideo, imgvideo_frames, imgvideo_resp_header_bytes, imgvideo_resp_body_bytes, imgvideo_shield, imgvideo_shield_frames, imgvideo_shield_resp_header_bytes, imgvideo_shield_resp_body_bytes, log_bytes, edge_requests, edge_resp_header_bytes, edge_resp_body_bytes, origin_revalidations, origin_fetches, origin_fetch_header_bytes, origin_fetch_body_bytes, origin_fetch_resp_header_bytes, origin_fetch_resp_body_bytes, shield_revalidations, shield_fetches, shield_fetch_header_bytes, shield_fetch_body_bytes, shield_fetch_resp_header_bytes, shield_fetch_resp_body_bytes, segblock_origin_fetches, segblock_shield_fetches, compute_resp_status_1xx, compute_resp_status_2xx, compute_resp_status_3xx, compute_resp_status_4xx, compute_resp_status_5xx, edge_hit_requests, edge_miss_requests, compute_bereq_header_bytes, compute_bereq_body_bytes, compute_beresp_header_bytes, compute_beresp_body_bytes, origin_cache_fetches, shield_cache_fetches, compute_bereqs, compute_bereq_errors, compute_resource_limit_exceeded, compute_heap_limit_exceeded, compute_stack_limit_exceeded, compute_globals_limit_exceeded, compute_guest_errors, compute_runtime_errors, edge_hit_resp_body_bytes, edge_hit_resp_header_bytes, edge_miss_resp_body_bytes, edge_miss_resp_header_bytes, origin_cache_fetch_resp_body_bytes, origin_cache_fetch_resp_header_bytes, shield_hit_requests, shield_miss_requests, shield_hit_resp_header_bytes, shield_hit_resp_body_bytes, shield_miss_resp_header_bytes, shield_miss_resp_body_bytes, websocket_req_header_bytes, websocket_req_body_bytes, websocket_resp_header_bytes, websocket_bereq_header_bytes, websocket_bereq_body_bytes, websocket_beresp_header_bytes, websocket_beresp_body_bytes, websocket_conn_time_ms, websocket_resp_body_bytes, fanout_recv_publishes, fanout_send_publishes, object_store_class_a_operations, object_store_class_b_operations, object_store_read_requests, object_store_write_requests, fanout_req_header_bytes, fanout_req_body_bytes, fanout_resp_header_bytes, fanout_resp_body_bytes, fanout_bereq_header_bytes, fanout_bereq_body_bytes, fanout_beresp_header_bytes, fanout_beresp_body_bytes, fanout_conn_time_ms, ddos_action_limit_streams_connections, ddos_action_limit_streams_requests, ddos_action_tarpit_accept, ddos_action_tarpit, ddos_action_close, ddos_action_blackhole].hash
2196
2256
  end
2197
2257
 
2198
2258
  # Builds the object from hash
@@ -641,6 +641,24 @@ module Fastly
641
641
  # Total duration of Fanout connections with end users.
642
642
  attr_accessor :fanout_conn_time_ms
643
643
 
644
+ # For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection.
645
+ attr_accessor :ddos_action_limit_streams_connections
646
+
647
+ # For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection.
648
+ attr_accessor :ddos_action_limit_streams_requests
649
+
650
+ # The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections.
651
+ attr_accessor :ddos_action_tarpit_accept
652
+
653
+ # The number of times the tarpit action was taken. The tarpit action delays writing the response to the client.
654
+ attr_accessor :ddos_action_tarpit
655
+
656
+ # The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent.
657
+ attr_accessor :ddos_action_close
658
+
659
+ # The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped).
660
+ attr_accessor :ddos_action_blackhole
661
+
644
662
  # Attribute mapping from ruby-style variable name to JSON key.
645
663
  def self.attribute_map
646
664
  {
@@ -852,7 +870,13 @@ module Fastly
852
870
  :'fanout_bereq_body_bytes' => :'fanout_bereq_body_bytes',
853
871
  :'fanout_beresp_header_bytes' => :'fanout_beresp_header_bytes',
854
872
  :'fanout_beresp_body_bytes' => :'fanout_beresp_body_bytes',
855
- :'fanout_conn_time_ms' => :'fanout_conn_time_ms'
873
+ :'fanout_conn_time_ms' => :'fanout_conn_time_ms',
874
+ :'ddos_action_limit_streams_connections' => :'ddos_action_limit_streams_connections',
875
+ :'ddos_action_limit_streams_requests' => :'ddos_action_limit_streams_requests',
876
+ :'ddos_action_tarpit_accept' => :'ddos_action_tarpit_accept',
877
+ :'ddos_action_tarpit' => :'ddos_action_tarpit',
878
+ :'ddos_action_close' => :'ddos_action_close',
879
+ :'ddos_action_blackhole' => :'ddos_action_blackhole'
856
880
  }
857
881
  end
858
882
 
@@ -1072,7 +1096,13 @@ module Fastly
1072
1096
  :'fanout_bereq_body_bytes' => :'Integer',
1073
1097
  :'fanout_beresp_header_bytes' => :'Integer',
1074
1098
  :'fanout_beresp_body_bytes' => :'Integer',
1075
- :'fanout_conn_time_ms' => :'Integer'
1099
+ :'fanout_conn_time_ms' => :'Integer',
1100
+ :'ddos_action_limit_streams_connections' => :'Integer',
1101
+ :'ddos_action_limit_streams_requests' => :'Integer',
1102
+ :'ddos_action_tarpit_accept' => :'Integer',
1103
+ :'ddos_action_tarpit' => :'Integer',
1104
+ :'ddos_action_close' => :'Integer',
1105
+ :'ddos_action_blackhole' => :'Integer'
1076
1106
  }
1077
1107
  end
1078
1108
 
@@ -1933,6 +1963,30 @@ module Fastly
1933
1963
  if attributes.key?(:'fanout_conn_time_ms')
1934
1964
  self.fanout_conn_time_ms = attributes[:'fanout_conn_time_ms']
1935
1965
  end
1966
+
1967
+ if attributes.key?(:'ddos_action_limit_streams_connections')
1968
+ self.ddos_action_limit_streams_connections = attributes[:'ddos_action_limit_streams_connections']
1969
+ end
1970
+
1971
+ if attributes.key?(:'ddos_action_limit_streams_requests')
1972
+ self.ddos_action_limit_streams_requests = attributes[:'ddos_action_limit_streams_requests']
1973
+ end
1974
+
1975
+ if attributes.key?(:'ddos_action_tarpit_accept')
1976
+ self.ddos_action_tarpit_accept = attributes[:'ddos_action_tarpit_accept']
1977
+ end
1978
+
1979
+ if attributes.key?(:'ddos_action_tarpit')
1980
+ self.ddos_action_tarpit = attributes[:'ddos_action_tarpit']
1981
+ end
1982
+
1983
+ if attributes.key?(:'ddos_action_close')
1984
+ self.ddos_action_close = attributes[:'ddos_action_close']
1985
+ end
1986
+
1987
+ if attributes.key?(:'ddos_action_blackhole')
1988
+ self.ddos_action_blackhole = attributes[:'ddos_action_blackhole']
1989
+ end
1936
1990
  end
1937
1991
 
1938
1992
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -2161,7 +2215,13 @@ module Fastly
2161
2215
  fanout_bereq_body_bytes == o.fanout_bereq_body_bytes &&
2162
2216
  fanout_beresp_header_bytes == o.fanout_beresp_header_bytes &&
2163
2217
  fanout_beresp_body_bytes == o.fanout_beresp_body_bytes &&
2164
- fanout_conn_time_ms == o.fanout_conn_time_ms
2218
+ fanout_conn_time_ms == o.fanout_conn_time_ms &&
2219
+ ddos_action_limit_streams_connections == o.ddos_action_limit_streams_connections &&
2220
+ ddos_action_limit_streams_requests == o.ddos_action_limit_streams_requests &&
2221
+ ddos_action_tarpit_accept == o.ddos_action_tarpit_accept &&
2222
+ ddos_action_tarpit == o.ddos_action_tarpit &&
2223
+ ddos_action_close == o.ddos_action_close &&
2224
+ ddos_action_blackhole == o.ddos_action_blackhole
2165
2225
  end
2166
2226
 
2167
2227
  # @see the `==` method
@@ -2173,7 +2233,7 @@ module Fastly
2173
2233
  # Calculates hash code according to all attributes.
2174
2234
  # @return [Integer] Hash code
2175
2235
  def hash
2176
- [requests, hits, hits_time, miss, miss_time, pass, pass_time, errors, restarts, hit_ratio, bandwidth, body_size, header_size, req_body_bytes, req_header_bytes, resp_body_bytes, resp_header_bytes, bereq_body_bytes, bereq_header_bytes, uncacheable, pipe, synth, tls, tls_v10, tls_v11, tls_v12, tls_v13, edge_requests, edge_resp_header_bytes, edge_resp_body_bytes, edge_hit_requests, edge_miss_requests, origin_fetches, origin_fetch_header_bytes, origin_fetch_body_bytes, origin_fetch_resp_header_bytes, origin_fetch_resp_body_bytes, origin_revalidations, origin_cache_fetches, shield, shield_resp_body_bytes, shield_resp_header_bytes, shield_fetches, shield_fetch_header_bytes, shield_fetch_body_bytes, shield_fetch_resp_header_bytes, shield_fetch_resp_body_bytes, shield_revalidations, shield_cache_fetches, ipv6, otfp, otfp_resp_body_bytes, otfp_resp_header_bytes, otfp_shield_resp_body_bytes, otfp_shield_resp_header_bytes, otfp_manifests, otfp_deliver_time, otfp_shield_time, video, pci, log, log_bytes, http2, http3, waf_logged, waf_blocked, waf_passed, attack_req_body_bytes, attack_req_header_bytes, attack_logged_req_body_bytes, attack_logged_req_header_bytes, attack_blocked_req_body_bytes, attack_blocked_req_header_bytes, attack_passed_req_body_bytes, attack_passed_req_header_bytes, attack_resp_synth_bytes, imgopto, imgopto_resp_body_bytes, imgopto_resp_header_bytes, imgopto_shield_resp_body_bytes, imgopto_shield_resp_header_bytes, imgvideo, imgvideo_frames, imgvideo_resp_header_bytes, imgvideo_resp_body_bytes, imgvideo_shield_resp_header_bytes, imgvideo_shield_resp_body_bytes, imgvideo_shield, imgvideo_shield_frames, status_200, status_204, status_206, status_301, status_302, status_304, status_400, status_401, status_403, status_404, status_406, status_416, status_429, status_500, status_501, status_502, status_503, status_504, status_505, status_1xx, status_2xx, status_3xx, status_4xx, status_5xx, object_size_1k, object_size_10k, object_size_100k, object_size_1m, object_size_10m, object_size_100m, object_size_1g, recv_sub_time, recv_sub_count, hash_sub_time, hash_sub_count, miss_sub_time, miss_sub_count, fetch_sub_time, fetch_sub_count, pass_sub_time, pass_sub_count, pipe_sub_time, pipe_sub_count, deliver_sub_time, deliver_sub_count, error_sub_time, error_sub_count, hit_sub_time, hit_sub_count, prehash_sub_time, prehash_sub_count, predeliver_sub_time, predeliver_sub_count, tls_handshake_sent_bytes, hit_resp_body_bytes, miss_resp_body_bytes, pass_resp_body_bytes, segblock_origin_fetches, segblock_shield_fetches, compute_requests, compute_request_time_ms, compute_ram_used, compute_execution_time_ms, compute_req_header_bytes, compute_req_body_bytes, compute_resp_header_bytes, compute_resp_body_bytes, compute_resp_status_1xx, compute_resp_status_2xx, compute_resp_status_3xx, compute_resp_status_4xx, compute_resp_status_5xx, compute_bereq_header_bytes, compute_bereq_body_bytes, compute_beresp_header_bytes, compute_beresp_body_bytes, compute_bereqs, compute_bereq_errors, compute_resource_limit_exceeded, compute_heap_limit_exceeded, compute_stack_limit_exceeded, compute_globals_limit_exceeded, compute_guest_errors, compute_runtime_errors, edge_hit_resp_body_bytes, edge_hit_resp_header_bytes, edge_miss_resp_body_bytes, edge_miss_resp_header_bytes, origin_cache_fetch_resp_body_bytes, origin_cache_fetch_resp_header_bytes, shield_hit_requests, shield_miss_requests, shield_hit_resp_header_bytes, shield_hit_resp_body_bytes, shield_miss_resp_header_bytes, shield_miss_resp_body_bytes, websocket_req_header_bytes, websocket_req_body_bytes, websocket_resp_header_bytes, websocket_resp_body_bytes, websocket_bereq_header_bytes, websocket_bereq_body_bytes, websocket_beresp_header_bytes, websocket_beresp_body_bytes, websocket_conn_time_ms, fanout_recv_publishes, fanout_send_publishes, object_store_class_a_operations, object_store_class_b_operations, object_store_read_requests, object_store_write_requests, fanout_req_header_bytes, fanout_req_body_bytes, fanout_resp_header_bytes, fanout_resp_body_bytes, fanout_bereq_header_bytes, fanout_bereq_body_bytes, fanout_beresp_header_bytes, fanout_beresp_body_bytes, fanout_conn_time_ms].hash
2236
+ [requests, hits, hits_time, miss, miss_time, pass, pass_time, errors, restarts, hit_ratio, bandwidth, body_size, header_size, req_body_bytes, req_header_bytes, resp_body_bytes, resp_header_bytes, bereq_body_bytes, bereq_header_bytes, uncacheable, pipe, synth, tls, tls_v10, tls_v11, tls_v12, tls_v13, edge_requests, edge_resp_header_bytes, edge_resp_body_bytes, edge_hit_requests, edge_miss_requests, origin_fetches, origin_fetch_header_bytes, origin_fetch_body_bytes, origin_fetch_resp_header_bytes, origin_fetch_resp_body_bytes, origin_revalidations, origin_cache_fetches, shield, shield_resp_body_bytes, shield_resp_header_bytes, shield_fetches, shield_fetch_header_bytes, shield_fetch_body_bytes, shield_fetch_resp_header_bytes, shield_fetch_resp_body_bytes, shield_revalidations, shield_cache_fetches, ipv6, otfp, otfp_resp_body_bytes, otfp_resp_header_bytes, otfp_shield_resp_body_bytes, otfp_shield_resp_header_bytes, otfp_manifests, otfp_deliver_time, otfp_shield_time, video, pci, log, log_bytes, http2, http3, waf_logged, waf_blocked, waf_passed, attack_req_body_bytes, attack_req_header_bytes, attack_logged_req_body_bytes, attack_logged_req_header_bytes, attack_blocked_req_body_bytes, attack_blocked_req_header_bytes, attack_passed_req_body_bytes, attack_passed_req_header_bytes, attack_resp_synth_bytes, imgopto, imgopto_resp_body_bytes, imgopto_resp_header_bytes, imgopto_shield_resp_body_bytes, imgopto_shield_resp_header_bytes, imgvideo, imgvideo_frames, imgvideo_resp_header_bytes, imgvideo_resp_body_bytes, imgvideo_shield_resp_header_bytes, imgvideo_shield_resp_body_bytes, imgvideo_shield, imgvideo_shield_frames, status_200, status_204, status_206, status_301, status_302, status_304, status_400, status_401, status_403, status_404, status_406, status_416, status_429, status_500, status_501, status_502, status_503, status_504, status_505, status_1xx, status_2xx, status_3xx, status_4xx, status_5xx, object_size_1k, object_size_10k, object_size_100k, object_size_1m, object_size_10m, object_size_100m, object_size_1g, recv_sub_time, recv_sub_count, hash_sub_time, hash_sub_count, miss_sub_time, miss_sub_count, fetch_sub_time, fetch_sub_count, pass_sub_time, pass_sub_count, pipe_sub_time, pipe_sub_count, deliver_sub_time, deliver_sub_count, error_sub_time, error_sub_count, hit_sub_time, hit_sub_count, prehash_sub_time, prehash_sub_count, predeliver_sub_time, predeliver_sub_count, tls_handshake_sent_bytes, hit_resp_body_bytes, miss_resp_body_bytes, pass_resp_body_bytes, segblock_origin_fetches, segblock_shield_fetches, compute_requests, compute_request_time_ms, compute_ram_used, compute_execution_time_ms, compute_req_header_bytes, compute_req_body_bytes, compute_resp_header_bytes, compute_resp_body_bytes, compute_resp_status_1xx, compute_resp_status_2xx, compute_resp_status_3xx, compute_resp_status_4xx, compute_resp_status_5xx, compute_bereq_header_bytes, compute_bereq_body_bytes, compute_beresp_header_bytes, compute_beresp_body_bytes, compute_bereqs, compute_bereq_errors, compute_resource_limit_exceeded, compute_heap_limit_exceeded, compute_stack_limit_exceeded, compute_globals_limit_exceeded, compute_guest_errors, compute_runtime_errors, edge_hit_resp_body_bytes, edge_hit_resp_header_bytes, edge_miss_resp_body_bytes, edge_miss_resp_header_bytes, origin_cache_fetch_resp_body_bytes, origin_cache_fetch_resp_header_bytes, shield_hit_requests, shield_miss_requests, shield_hit_resp_header_bytes, shield_hit_resp_body_bytes, shield_miss_resp_header_bytes, shield_miss_resp_body_bytes, websocket_req_header_bytes, websocket_req_body_bytes, websocket_resp_header_bytes, websocket_resp_body_bytes, websocket_bereq_header_bytes, websocket_bereq_body_bytes, websocket_beresp_header_bytes, websocket_beresp_body_bytes, websocket_conn_time_ms, fanout_recv_publishes, fanout_send_publishes, object_store_class_a_operations, object_store_class_b_operations, object_store_read_requests, object_store_write_requests, fanout_req_header_bytes, fanout_req_body_bytes, fanout_resp_header_bytes, fanout_resp_body_bytes, fanout_bereq_header_bytes, fanout_bereq_body_bytes, fanout_beresp_header_bytes, fanout_beresp_body_bytes, fanout_conn_time_ms, ddos_action_limit_streams_connections, ddos_action_limit_streams_requests, ddos_action_tarpit_accept, ddos_action_tarpit, ddos_action_close, ddos_action_blackhole].hash
2177
2237
  end
2178
2238
 
2179
2239
  # Builds the object from hash
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '4.2.0'
12
+ VERSION = '4.4.0'
13
13
  end
data/lib/fastly.rb CHANGED
@@ -90,8 +90,6 @@ require 'fastly/models/enabled_product_response'
90
90
  require 'fastly/models/enabled_product_response_links'
91
91
  require 'fastly/models/enabled_product_response_product'
92
92
  require 'fastly/models/enabled_product_response_service'
93
- require 'fastly/models/error_response'
94
- require 'fastly/models/error_response_data'
95
93
  require 'fastly/models/event'
96
94
  require 'fastly/models/event_attributes'
97
95
  require 'fastly/models/event_response'
@@ -143,7 +141,10 @@ require 'fastly/models/inline_object1'
143
141
  require 'fastly/models/inline_response200'
144
142
  require 'fastly/models/inline_response2001'
145
143
  require 'fastly/models/inline_response2002'
146
- require 'fastly/models/inline_response2002_meta'
144
+ require 'fastly/models/inline_response2003'
145
+ require 'fastly/models/inline_response2003_meta'
146
+ require 'fastly/models/inline_response2004'
147
+ require 'fastly/models/inline_response2004_meta'
147
148
  require 'fastly/models/invitation'
148
149
  require 'fastly/models/invitation_data'
149
150
  require 'fastly/models/invitation_data_attributes'
@@ -359,7 +360,6 @@ require 'fastly/models/relationships_for_star'
359
360
  require 'fastly/models/relationships_for_tls_activation'
360
361
  require 'fastly/models/relationships_for_tls_bulk_certificate'
361
362
  require 'fastly/models/relationships_for_tls_configuration'
362
- require 'fastly/models/relationships_for_tls_csr'
363
363
  require 'fastly/models/relationships_for_tls_domain'
364
364
  require 'fastly/models/relationships_for_tls_private_key'
365
365
  require 'fastly/models/relationships_for_tls_subscription'
@@ -469,12 +469,6 @@ require 'fastly/models/tls_configuration_response_data'
469
469
  require 'fastly/models/tls_configuration_response_data_all_of'
470
470
  require 'fastly/models/tls_configurations_response'
471
471
  require 'fastly/models/tls_configurations_response_all_of'
472
- require 'fastly/models/tls_csr'
473
- require 'fastly/models/tls_csr_data'
474
- require 'fastly/models/tls_csr_data_attributes'
475
- require 'fastly/models/tls_csr_response'
476
- require 'fastly/models/tls_csr_response_attributes'
477
- require 'fastly/models/tls_csr_response_data'
478
472
  require 'fastly/models/tls_dns_record'
479
473
  require 'fastly/models/tls_domain_data'
480
474
  require 'fastly/models/tls_domains_response'
@@ -518,7 +512,6 @@ require 'fastly/models/type_tls_activation'
518
512
  require 'fastly/models/type_tls_bulk_certificate'
519
513
  require 'fastly/models/type_tls_certificate'
520
514
  require 'fastly/models/type_tls_configuration'
521
- require 'fastly/models/type_tls_csr'
522
515
  require 'fastly/models/type_tls_dns_record'
523
516
  require 'fastly/models/type_tls_domain'
524
517
  require 'fastly/models/type_tls_private_key'
@@ -631,6 +624,7 @@ require 'fastly/api/diff_api'
631
624
  require 'fastly/api/director_api'
632
625
  require 'fastly/api/director_backend_api'
633
626
  require 'fastly/api/domain_api'
627
+ require 'fastly/api/domain_ownerships_api'
634
628
  require 'fastly/api/enabled_products_api'
635
629
  require 'fastly/api/events_api'
636
630
  require 'fastly/api/gzip_api'
@@ -671,6 +665,7 @@ require 'fastly/api/logging_sumologic_api'
671
665
  require 'fastly/api/logging_syslog_api'
672
666
  require 'fastly/api/mutual_authentication_api'
673
667
  require 'fastly/api/object_store_api'
668
+ require 'fastly/api/object_store_item_api'
674
669
  require 'fastly/api/package_api'
675
670
  require 'fastly/api/pool_api'
676
671
  require 'fastly/api/pop_api'
@@ -693,7 +688,6 @@ require 'fastly/api/tls_activations_api'
693
688
  require 'fastly/api/tls_bulk_certificates_api'
694
689
  require 'fastly/api/tls_certificates_api'
695
690
  require 'fastly/api/tls_configurations_api'
696
- require 'fastly/api/tls_csrs_api'
697
691
  require 'fastly/api/tls_domains_api'
698
692
  require 'fastly/api/tls_private_keys_api'
699
693
  require 'fastly/api/tls_subscriptions_api'
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "c9a346f2", "D": "91b21ede"}
1
+ {"G": "6ded2172", "D": "dcbc61cf"}
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: 4.2.0
4
+ version: 4.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fastly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-21 00:00:00.000000000 Z
11
+ date: 2023-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -140,14 +140,13 @@ files:
140
140
  - docs/Domain.md
141
141
  - docs/DomainApi.md
142
142
  - docs/DomainCheckItem.md
143
+ - docs/DomainOwnershipsApi.md
143
144
  - docs/DomainResponse.md
144
145
  - docs/EnabledProductResponse.md
145
146
  - docs/EnabledProductResponseLinks.md
146
147
  - docs/EnabledProductResponseProduct.md
147
148
  - docs/EnabledProductResponseService.md
148
149
  - docs/EnabledProductsApi.md
149
- - docs/ErrorResponse.md
150
- - docs/ErrorResponseData.md
151
150
  - docs/Event.md
152
151
  - docs/EventAttributes.md
153
152
  - docs/EventResponse.md
@@ -209,7 +208,10 @@ files:
209
208
  - docs/InlineResponse200.md
210
209
  - docs/InlineResponse2001.md
211
210
  - docs/InlineResponse2002.md
212
- - docs/InlineResponse2002Meta.md
211
+ - docs/InlineResponse2003.md
212
+ - docs/InlineResponse2003Meta.md
213
+ - docs/InlineResponse2004.md
214
+ - docs/InlineResponse2004Meta.md
213
215
  - docs/Invitation.md
214
216
  - docs/InvitationData.md
215
217
  - docs/InvitationDataAttributes.md
@@ -344,6 +346,7 @@ files:
344
346
  - docs/MutualAuthenticationsResponse.md
345
347
  - docs/MutualAuthenticationsResponseAllOf.md
346
348
  - docs/ObjectStoreApi.md
349
+ - docs/ObjectStoreItemApi.md
347
350
  - docs/Package.md
348
351
  - docs/PackageApi.md
349
352
  - docs/PackageMetadata.md
@@ -462,7 +465,6 @@ files:
462
465
  - docs/RelationshipsForTlsActivation.md
463
466
  - docs/RelationshipsForTlsBulkCertificate.md
464
467
  - docs/RelationshipsForTlsConfiguration.md
465
- - docs/RelationshipsForTlsCsr.md
466
468
  - docs/RelationshipsForTlsDomain.md
467
469
  - docs/RelationshipsForTlsPrivateKey.md
468
470
  - docs/RelationshipsForTlsSubscription.md
@@ -586,13 +588,6 @@ files:
586
588
  - docs/TlsConfigurationsApi.md
587
589
  - docs/TlsConfigurationsResponse.md
588
590
  - docs/TlsConfigurationsResponseAllOf.md
589
- - docs/TlsCsr.md
590
- - docs/TlsCsrData.md
591
- - docs/TlsCsrDataAttributes.md
592
- - docs/TlsCsrResponse.md
593
- - docs/TlsCsrResponseAttributes.md
594
- - docs/TlsCsrResponseData.md
595
- - docs/TlsCsrsApi.md
596
591
  - docs/TlsDnsRecord.md
597
592
  - docs/TlsDomainData.md
598
593
  - docs/TlsDomainsApi.md
@@ -640,7 +635,6 @@ files:
640
635
  - docs/TypeTlsBulkCertificate.md
641
636
  - docs/TypeTlsCertificate.md
642
637
  - docs/TypeTlsConfiguration.md
643
- - docs/TypeTlsCsr.md
644
638
  - docs/TypeTlsDnsRecord.md
645
639
  - docs/TypeTlsDomain.md
646
640
  - docs/TypeTlsPrivateKey.md
@@ -764,6 +758,7 @@ files:
764
758
  - lib/fastly/api/director_api.rb
765
759
  - lib/fastly/api/director_backend_api.rb
766
760
  - lib/fastly/api/domain_api.rb
761
+ - lib/fastly/api/domain_ownerships_api.rb
767
762
  - lib/fastly/api/enabled_products_api.rb
768
763
  - lib/fastly/api/events_api.rb
769
764
  - lib/fastly/api/gzip_api.rb
@@ -804,6 +799,7 @@ files:
804
799
  - lib/fastly/api/logging_syslog_api.rb
805
800
  - lib/fastly/api/mutual_authentication_api.rb
806
801
  - lib/fastly/api/object_store_api.rb
802
+ - lib/fastly/api/object_store_item_api.rb
807
803
  - lib/fastly/api/package_api.rb
808
804
  - lib/fastly/api/pool_api.rb
809
805
  - lib/fastly/api/pop_api.rb
@@ -826,7 +822,6 @@ files:
826
822
  - lib/fastly/api/tls_bulk_certificates_api.rb
827
823
  - lib/fastly/api/tls_certificates_api.rb
828
824
  - lib/fastly/api/tls_configurations_api.rb
829
- - lib/fastly/api/tls_csrs_api.rb
830
825
  - lib/fastly/api/tls_domains_api.rb
831
826
  - lib/fastly/api/tls_private_keys_api.rb
832
827
  - lib/fastly/api/tls_subscriptions_api.rb
@@ -920,8 +915,6 @@ files:
920
915
  - lib/fastly/models/enabled_product_response_links.rb
921
916
  - lib/fastly/models/enabled_product_response_product.rb
922
917
  - lib/fastly/models/enabled_product_response_service.rb
923
- - lib/fastly/models/error_response.rb
924
- - lib/fastly/models/error_response_data.rb
925
918
  - lib/fastly/models/event.rb
926
919
  - lib/fastly/models/event_attributes.rb
927
920
  - lib/fastly/models/event_response.rb
@@ -973,7 +966,10 @@ files:
973
966
  - lib/fastly/models/inline_response200.rb
974
967
  - lib/fastly/models/inline_response2001.rb
975
968
  - lib/fastly/models/inline_response2002.rb
976
- - lib/fastly/models/inline_response2002_meta.rb
969
+ - lib/fastly/models/inline_response2003.rb
970
+ - lib/fastly/models/inline_response2003_meta.rb
971
+ - lib/fastly/models/inline_response2004.rb
972
+ - lib/fastly/models/inline_response2004_meta.rb
977
973
  - lib/fastly/models/invitation.rb
978
974
  - lib/fastly/models/invitation_data.rb
979
975
  - lib/fastly/models/invitation_data_attributes.rb
@@ -1189,7 +1185,6 @@ files:
1189
1185
  - lib/fastly/models/relationships_for_tls_activation.rb
1190
1186
  - lib/fastly/models/relationships_for_tls_bulk_certificate.rb
1191
1187
  - lib/fastly/models/relationships_for_tls_configuration.rb
1192
- - lib/fastly/models/relationships_for_tls_csr.rb
1193
1188
  - lib/fastly/models/relationships_for_tls_domain.rb
1194
1189
  - lib/fastly/models/relationships_for_tls_private_key.rb
1195
1190
  - lib/fastly/models/relationships_for_tls_subscription.rb
@@ -1299,12 +1294,6 @@ files:
1299
1294
  - lib/fastly/models/tls_configuration_response_data_all_of.rb
1300
1295
  - lib/fastly/models/tls_configurations_response.rb
1301
1296
  - lib/fastly/models/tls_configurations_response_all_of.rb
1302
- - lib/fastly/models/tls_csr.rb
1303
- - lib/fastly/models/tls_csr_data.rb
1304
- - lib/fastly/models/tls_csr_data_attributes.rb
1305
- - lib/fastly/models/tls_csr_response.rb
1306
- - lib/fastly/models/tls_csr_response_attributes.rb
1307
- - lib/fastly/models/tls_csr_response_data.rb
1308
1297
  - lib/fastly/models/tls_dns_record.rb
1309
1298
  - lib/fastly/models/tls_domain_data.rb
1310
1299
  - lib/fastly/models/tls_domains_response.rb
@@ -1348,7 +1337,6 @@ files:
1348
1337
  - lib/fastly/models/type_tls_bulk_certificate.rb
1349
1338
  - lib/fastly/models/type_tls_certificate.rb
1350
1339
  - lib/fastly/models/type_tls_configuration.rb
1351
- - lib/fastly/models/type_tls_csr.rb
1352
1340
  - lib/fastly/models/type_tls_dns_record.rb
1353
1341
  - lib/fastly/models/type_tls_domain.rb
1354
1342
  - lib/fastly/models/type_tls_private_key.rb
@@ -1,10 +0,0 @@
1
- # Fastly::RelationshipsForTlsCsr
2
-
3
- ## Properties
4
-
5
- | Name | Type | Description | Notes |
6
- | ---- | ---- | ----------- | ----- |
7
- | **tls_private_key** | [**RelationshipTlsPrivateKeyTlsPrivateKey**](RelationshipTlsPrivateKeyTlsPrivateKey.md) | | [optional] |
8
-
9
- [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10
-