fastly 8.0.0 → 8.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +205 -130
  3. data/Gemfile.lock +1 -1
  4. data/README.md +13 -7
  5. data/docs/{ErrorResponse.md → AutomationTokenErrorResponse.md} +1 -1
  6. data/docs/AutomationTokensApi.md +2 -2
  7. data/docs/Backend.md +1 -1
  8. data/docs/BackendApi.md +4 -4
  9. data/docs/BackendResponse.md +1 -1
  10. data/docs/BillingInvoicesApi.md +96 -0
  11. data/docs/CreateResponseObjectRequest.md +16 -0
  12. data/docs/Director.md +1 -1
  13. data/docs/DirectorApi.md +2 -2
  14. data/docs/DirectorResponse.md +1 -1
  15. data/docs/DomainInspectorHistoricalApi.md +4 -4
  16. data/docs/DomainInspectorRealtimeEntry.md +1 -1
  17. data/docs/Error.md +13 -0
  18. data/docs/ErrorResponseData.md +11 -0
  19. data/docs/Invoice.md +18 -0
  20. data/docs/InvoiceResponse.md +18 -0
  21. data/docs/Invoicelineitems.md +18 -0
  22. data/docs/KvStoreApi.md +1 -1
  23. data/docs/ListInvoicesResponse.md +11 -0
  24. data/docs/Listinvoices.md +11 -0
  25. data/docs/LoggingScalyrAdditional.md +1 -1
  26. data/docs/LoggingScalyrApi.md +4 -4
  27. data/docs/LoggingScalyrResponse.md +1 -1
  28. data/docs/Metadata.md +13 -0
  29. data/docs/OriginInspectorHistoricalApi.md +4 -4
  30. data/docs/OriginInspectorRealtimeEntry.md +1 -1
  31. data/docs/PoolAdditional.md +1 -1
  32. data/docs/PoolApi.md +4 -4
  33. data/docs/PoolResponse.md +1 -1
  34. data/docs/PoolResponsePost.md +1 -1
  35. data/docs/Pop.md +2 -2
  36. data/docs/PublishApi.md +1 -1
  37. data/docs/RealtimeEntry.md +1 -1
  38. data/docs/ResponseObjectApi.md +4 -0
  39. data/docs/Results.md +2 -0
  40. data/docs/SecretStoreApi.md +4 -2
  41. data/docs/SecretStoreItemApi.md +2 -2
  42. data/docs/ServiceDetail.md +1 -1
  43. data/docs/ServiceListResponse.md +2 -2
  44. data/docs/ServiceListResponseAllOf.md +2 -2
  45. data/docs/ServiceResponse.md +1 -1
  46. data/docs/ServiceResponseAllOf.md +1 -1
  47. data/docs/TlsConfigurationResponseAttributes.md +2 -2
  48. data/docs/TlsConfigurationResponseAttributesAllOf.md +2 -2
  49. data/docs/TlsCsr.md +10 -0
  50. data/docs/TlsCsrData.md +12 -0
  51. data/docs/TlsCsrDataAttributes.md +20 -0
  52. data/docs/TlsCsrErrorResponse.md +10 -0
  53. data/docs/TlsCsrResponse.md +10 -0
  54. data/docs/TlsCsrResponseAttributes.md +10 -0
  55. data/docs/TlsCsrResponseData.md +13 -0
  56. data/docs/TlsCsrsApi.md +52 -0
  57. data/docs/TlsSubscriptionResponseAttributes.md +1 -0
  58. data/docs/TlsSubscriptionResponseAttributesAllOf.md +1 -0
  59. data/docs/TokensApi.md +1 -1
  60. data/docs/TypeTlsCsr.md +9 -0
  61. data/docs/VclApi.md +1 -1
  62. data/docs/WafActiveRulesApi.md +1 -1
  63. data/lib/fastly/api/automation_tokens_api.rb +3 -3
  64. data/lib/fastly/api/backend_api.rb +4 -4
  65. data/lib/fastly/api/billing_invoices_api.rb +151 -0
  66. data/lib/fastly/api/director_api.rb +2 -2
  67. data/lib/fastly/api/domain_inspector_historical_api.rb +4 -4
  68. data/lib/fastly/api/kv_store_api.rb +2 -2
  69. data/lib/fastly/api/logging_scalyr_api.rb +4 -4
  70. data/lib/fastly/api/origin_inspector_historical_api.rb +4 -4
  71. data/lib/fastly/api/pool_api.rb +4 -4
  72. data/lib/fastly/api/publish_api.rb +2 -2
  73. data/lib/fastly/api/response_object_api.rb +8 -4
  74. data/lib/fastly/api/secret_store_api.rb +5 -2
  75. data/lib/fastly/api/secret_store_item_api.rb +2 -2
  76. data/lib/fastly/api/tls_csrs_api.rb +83 -0
  77. data/lib/fastly/api/tokens_api.rb +2 -2
  78. data/lib/fastly/api/vcl_api.rb +2 -2
  79. data/lib/fastly/api/waf_active_rules_api.rb +2 -2
  80. data/lib/fastly/configuration.rb +18 -0
  81. data/lib/fastly/models/{error_response.rb → automation_token_error_response.rb} +3 -3
  82. data/lib/fastly/models/backend.rb +1 -1
  83. data/lib/fastly/models/backend_response.rb +1 -1
  84. data/lib/fastly/models/create_response_object_request.rb +280 -0
  85. data/lib/fastly/models/director.rb +1 -1
  86. data/lib/fastly/models/director_response.rb +1 -1
  87. data/lib/fastly/models/domain_inspector_realtime_entry.rb +1 -1
  88. data/lib/fastly/models/error.rb +243 -0
  89. data/lib/fastly/models/error_response_data.rb +225 -0
  90. data/lib/fastly/models/event_attributes.rb +2 -2
  91. data/lib/fastly/models/invoice.rb +298 -0
  92. data/lib/fastly/models/invoice_response.rb +305 -0
  93. data/lib/fastly/models/invoicelineitems.rb +297 -0
  94. data/lib/fastly/models/list_invoices_response.rb +234 -0
  95. data/lib/fastly/models/listinvoices.rb +227 -0
  96. data/lib/fastly/models/logging_scalyr_additional.rb +1 -1
  97. data/lib/fastly/models/logging_scalyr_response.rb +1 -1
  98. data/lib/fastly/models/metadata.rb +250 -0
  99. data/lib/fastly/models/origin_inspector_realtime_entry.rb +1 -1
  100. data/lib/fastly/models/pool_additional.rb +1 -1
  101. data/lib/fastly/models/pool_response.rb +1 -1
  102. data/lib/fastly/models/pool_response_post.rb +1 -1
  103. data/lib/fastly/models/pop.rb +2 -2
  104. data/lib/fastly/models/realtime_entry.rb +1 -1
  105. data/lib/fastly/models/relationship_tls_certificate.rb +1 -1
  106. data/lib/fastly/models/relationship_tls_configuration.rb +1 -1
  107. data/lib/fastly/models/results.rb +21 -1
  108. data/lib/fastly/models/service_detail.rb +1 -1
  109. data/lib/fastly/models/service_list_response.rb +2 -2
  110. data/lib/fastly/models/service_list_response_all_of.rb +2 -2
  111. data/lib/fastly/models/service_response.rb +1 -1
  112. data/lib/fastly/models/service_response_all_of.rb +1 -1
  113. data/lib/fastly/models/tls_configuration_response_attributes.rb +2 -2
  114. data/lib/fastly/models/tls_configuration_response_attributes_all_of.rb +2 -2
  115. data/lib/fastly/models/tls_csr.rb +216 -0
  116. data/lib/fastly/models/tls_csr_data.rb +236 -0
  117. data/lib/fastly/models/tls_csr_data_attributes.rb +358 -0
  118. data/lib/fastly/models/tls_csr_error_response.rb +218 -0
  119. data/lib/fastly/models/tls_csr_response.rb +216 -0
  120. data/lib/fastly/models/tls_csr_response_attributes.rb +217 -0
  121. data/lib/fastly/models/tls_csr_response_data.rb +245 -0
  122. data/lib/fastly/models/tls_subscription_data_attributes.rb +2 -2
  123. data/lib/fastly/models/tls_subscription_response_attributes.rb +14 -4
  124. data/lib/fastly/models/tls_subscription_response_attributes_all_of.rb +14 -4
  125. data/lib/fastly/models/type_tls_csr.rb +34 -0
  126. data/lib/fastly/version.rb +1 -1
  127. data/lib/fastly.rb +20 -1
  128. data/sig.json +1 -1
  129. metadata +42 -4
@@ -25,6 +25,9 @@ module Fastly
25
25
  # The current state of your subscription.
26
26
  attr_accessor :state
27
27
 
28
+ # Subscription has an active order
29
+ attr_accessor :has_active_order
30
+
28
31
  class EnumAttributeValidator
29
32
  attr_reader :datatype
30
33
  attr_reader :allowable_values
@@ -53,7 +56,8 @@ module Fastly
53
56
  :'created_at' => :'created_at',
54
57
  :'deleted_at' => :'deleted_at',
55
58
  :'updated_at' => :'updated_at',
56
- :'state' => :'state'
59
+ :'state' => :'state',
60
+ :'has_active_order' => :'has_active_order'
57
61
  }
58
62
  end
59
63
 
@@ -68,7 +72,8 @@ module Fastly
68
72
  :'created_at' => :'Time',
69
73
  :'deleted_at' => :'Time',
70
74
  :'updated_at' => :'Time',
71
- :'state' => :'String'
75
+ :'state' => :'String',
76
+ :'has_active_order' => :'Boolean'
72
77
  }
73
78
  end
74
79
 
@@ -119,6 +124,10 @@ module Fastly
119
124
  if attributes.key?(:'state')
120
125
  self.state = attributes[:'state']
121
126
  end
127
+
128
+ if attributes.key?(:'has_active_order')
129
+ self.has_active_order = attributes[:'has_active_order']
130
+ end
122
131
  end
123
132
 
124
133
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -154,7 +163,8 @@ module Fastly
154
163
  created_at == o.created_at &&
155
164
  deleted_at == o.deleted_at &&
156
165
  updated_at == o.updated_at &&
157
- state == o.state
166
+ state == o.state &&
167
+ has_active_order == o.has_active_order
158
168
  end
159
169
 
160
170
  # @see the `==` method
@@ -166,7 +176,7 @@ module Fastly
166
176
  # Calculates hash code according to all attributes.
167
177
  # @return [Integer] Hash code
168
178
  def hash
169
- [created_at, deleted_at, updated_at, state].hash
179
+ [created_at, deleted_at, updated_at, state, has_active_order].hash
170
180
  end
171
181
 
172
182
  # Builds the object from hash
@@ -16,6 +16,9 @@ module Fastly
16
16
  # The current state of your subscription.
17
17
  attr_accessor :state
18
18
 
19
+ # Subscription has an active order
20
+ attr_accessor :has_active_order
21
+
19
22
  class EnumAttributeValidator
20
23
  attr_reader :datatype
21
24
  attr_reader :allowable_values
@@ -41,7 +44,8 @@ module Fastly
41
44
  # Attribute mapping from ruby-style variable name to JSON key.
42
45
  def self.attribute_map
43
46
  {
44
- :'state' => :'state'
47
+ :'state' => :'state',
48
+ :'has_active_order' => :'has_active_order'
45
49
  }
46
50
  end
47
51
 
@@ -53,7 +57,8 @@ module Fastly
53
57
  # Attribute type mapping.
54
58
  def self.fastly_types
55
59
  {
56
- :'state' => :'String'
60
+ :'state' => :'String',
61
+ :'has_active_order' => :'Boolean'
57
62
  }
58
63
  end
59
64
 
@@ -81,6 +86,10 @@ module Fastly
81
86
  if attributes.key?(:'state')
82
87
  self.state = attributes[:'state']
83
88
  end
89
+
90
+ if attributes.key?(:'has_active_order')
91
+ self.has_active_order = attributes[:'has_active_order']
92
+ end
84
93
  end
85
94
 
86
95
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -113,7 +122,8 @@ module Fastly
113
122
  def ==(o)
114
123
  return true if self.equal?(o)
115
124
  self.class == o.class &&
116
- state == o.state
125
+ state == o.state &&
126
+ has_active_order == o.has_active_order
117
127
  end
118
128
 
119
129
  # @see the `==` method
@@ -125,7 +135,7 @@ module Fastly
125
135
  # Calculates hash code according to all attributes.
126
136
  # @return [Integer] Hash code
127
137
  def hash
128
- [state].hash
138
+ [state, has_active_order].hash
129
139
  end
130
140
 
131
141
  # Builds the object from hash
@@ -0,0 +1,34 @@
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 TypeTlsCsr
16
+ CSR = "csr".freeze
17
+
18
+ # Builds the enum from string
19
+ # @param [String] The enum value in the form of the string
20
+ # @return [String] The enum value
21
+ def self.build_from_hash(value)
22
+ new.build_from_hash(value)
23
+ end
24
+
25
+ # Builds the enum from string
26
+ # @param [String] The enum value in the form of the string
27
+ # @return [String] The enum value
28
+ def build_from_hash(value)
29
+ constantValues = TypeTlsCsr.constants.select { |c| TypeTlsCsr::const_get(c) == value }
30
+ raise "Invalid ENUM value #{value} for class #TypeTlsCsr" if constantValues.empty?
31
+ value
32
+ end
33
+ end
34
+ end
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '8.0.0'
12
+ VERSION = '8.1.0'
13
13
  end
data/lib/fastly.rb CHANGED
@@ -28,6 +28,7 @@ require 'fastly/models/automation_token_create_request'
28
28
  require 'fastly/models/automation_token_create_request_attributes'
29
29
  require 'fastly/models/automation_token_create_response'
30
30
  require 'fastly/models/automation_token_create_response_all_of'
31
+ require 'fastly/models/automation_token_error_response'
31
32
  require 'fastly/models/automation_token_response'
32
33
  require 'fastly/models/automation_token_response_all_of'
33
34
  require 'fastly/models/aws_region'
@@ -78,6 +79,7 @@ require 'fastly/models/contact'
78
79
  require 'fastly/models/contact_response'
79
80
  require 'fastly/models/contact_response_all_of'
80
81
  require 'fastly/models/content'
82
+ require 'fastly/models/create_response_object_request'
81
83
  require 'fastly/models/customer'
82
84
  require 'fastly/models/customer_response'
83
85
  require 'fastly/models/customer_response_all_of'
@@ -104,7 +106,8 @@ require 'fastly/models/enabled_product_response'
104
106
  require 'fastly/models/enabled_product_response_links'
105
107
  require 'fastly/models/enabled_product_response_product'
106
108
  require 'fastly/models/enabled_product_response_service'
107
- require 'fastly/models/error_response'
109
+ require 'fastly/models/error'
110
+ require 'fastly/models/error_response_data'
108
111
  require 'fastly/models/event'
109
112
  require 'fastly/models/event_attributes'
110
113
  require 'fastly/models/event_data'
@@ -182,6 +185,9 @@ require 'fastly/models/invitation_response_data'
182
185
  require 'fastly/models/invitation_response_data_all_of'
183
186
  require 'fastly/models/invitations_response'
184
187
  require 'fastly/models/invitations_response_all_of'
188
+ require 'fastly/models/invoice'
189
+ require 'fastly/models/invoice_response'
190
+ require 'fastly/models/invoicelineitems'
185
191
  require 'fastly/models/legacy_waf_configuration_set'
186
192
  require 'fastly/models/legacy_waf_firewall'
187
193
  require 'fastly/models/legacy_waf_owasp'
@@ -192,6 +198,8 @@ require 'fastly/models/legacy_waf_tag'
192
198
  require 'fastly/models/legacy_waf_update_status'
193
199
  require 'fastly/models/line_item_data'
194
200
  require 'fastly/models/line_item_data_read_only_invoice_id'
201
+ require 'fastly/models/list_invoices_response'
202
+ require 'fastly/models/listinvoices'
195
203
  require 'fastly/models/logging_address_and_port'
196
204
  require 'fastly/models/logging_azureblob_additional'
197
205
  require 'fastly/models/logging_azureblob_response'
@@ -265,6 +273,7 @@ require 'fastly/models/logging_syslog_additional'
265
273
  require 'fastly/models/logging_syslog_response'
266
274
  require 'fastly/models/logging_tls_common'
267
275
  require 'fastly/models/logging_use_tls'
276
+ require 'fastly/models/metadata'
268
277
  require 'fastly/models/mutual_authentication'
269
278
  require 'fastly/models/mutual_authentication_data'
270
279
  require 'fastly/models/mutual_authentication_data_attributes'
@@ -542,6 +551,13 @@ require 'fastly/models/tls_configuration_response_data'
542
551
  require 'fastly/models/tls_configuration_response_data_all_of'
543
552
  require 'fastly/models/tls_configurations_response'
544
553
  require 'fastly/models/tls_configurations_response_all_of'
554
+ require 'fastly/models/tls_csr'
555
+ require 'fastly/models/tls_csr_data'
556
+ require 'fastly/models/tls_csr_data_attributes'
557
+ require 'fastly/models/tls_csr_error_response'
558
+ require 'fastly/models/tls_csr_response'
559
+ require 'fastly/models/tls_csr_response_attributes'
560
+ require 'fastly/models/tls_csr_response_data'
545
561
  require 'fastly/models/tls_dns_record'
546
562
  require 'fastly/models/tls_domain_data'
547
563
  require 'fastly/models/tls_domains_response'
@@ -585,6 +601,7 @@ require 'fastly/models/type_tls_activation'
585
601
  require 'fastly/models/type_tls_bulk_certificate'
586
602
  require 'fastly/models/type_tls_certificate'
587
603
  require 'fastly/models/type_tls_configuration'
604
+ require 'fastly/models/type_tls_csr'
588
605
  require 'fastly/models/type_tls_dns_record'
589
606
  require 'fastly/models/type_tls_domain'
590
607
  require 'fastly/models/type_tls_private_key'
@@ -691,6 +708,7 @@ require 'fastly/api/automation_tokens_api'
691
708
  require 'fastly/api/backend_api'
692
709
  require 'fastly/api/billing_api'
693
710
  require 'fastly/api/billing_address_api'
711
+ require 'fastly/api/billing_invoices_api'
694
712
  require 'fastly/api/cache_settings_api'
695
713
  require 'fastly/api/condition_api'
696
714
  require 'fastly/api/config_store_api'
@@ -785,6 +803,7 @@ require 'fastly/api/tls_activations_api'
785
803
  require 'fastly/api/tls_bulk_certificates_api'
786
804
  require 'fastly/api/tls_certificates_api'
787
805
  require 'fastly/api/tls_configurations_api'
806
+ require 'fastly/api/tls_csrs_api'
788
807
  require 'fastly/api/tls_domains_api'
789
808
  require 'fastly/api/tls_private_keys_api'
790
809
  require 'fastly/api/tls_subscriptions_api'
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "4ae2b660", "D": "2452c3f1"}
1
+ {"G": "fba34a94", "D": "3069431b"}
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: 8.0.0
4
+ version: 8.1.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-11-30 00:00:00.000000000 Z
11
+ date: 2024-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -68,6 +68,7 @@ files:
68
68
  - docs/AutomationTokenCreateRequestAttributes.md
69
69
  - docs/AutomationTokenCreateResponse.md
70
70
  - docs/AutomationTokenCreateResponseAllOf.md
71
+ - docs/AutomationTokenErrorResponse.md
71
72
  - docs/AutomationTokenResponse.md
72
73
  - docs/AutomationTokenResponseAllOf.md
73
74
  - docs/AutomationTokensApi.md
@@ -91,6 +92,7 @@ files:
91
92
  - docs/BillingEstimateLines.md
92
93
  - docs/BillingEstimateLinesLineItems.md
93
94
  - docs/BillingEstimateResponse.md
95
+ - docs/BillingInvoicesApi.md
94
96
  - docs/BillingResponse.md
95
97
  - docs/BillingResponseItemItemsData.md
96
98
  - docs/BillingResponseLineItem.md
@@ -128,6 +130,7 @@ files:
128
130
  - docs/ContactResponseAllOf.md
129
131
  - docs/Content.md
130
132
  - docs/ContentApi.md
133
+ - docs/CreateResponseObjectRequest.md
131
134
  - docs/Customer.md
132
135
  - docs/CustomerApi.md
133
136
  - docs/CustomerResponse.md
@@ -166,7 +169,8 @@ files:
166
169
  - docs/EnabledProductResponseProduct.md
167
170
  - docs/EnabledProductResponseService.md
168
171
  - docs/EnabledProductsApi.md
169
- - docs/ErrorResponse.md
172
+ - docs/Error.md
173
+ - docs/ErrorResponseData.md
170
174
  - docs/Event.md
171
175
  - docs/EventAttributes.md
172
176
  - docs/EventData.md
@@ -255,6 +259,9 @@ files:
255
259
  - docs/InvitationsApi.md
256
260
  - docs/InvitationsResponse.md
257
261
  - docs/InvitationsResponseAllOf.md
262
+ - docs/Invoice.md
263
+ - docs/InvoiceResponse.md
264
+ - docs/Invoicelineitems.md
258
265
  - docs/KvStoreApi.md
259
266
  - docs/KvStoreItemApi.md
260
267
  - docs/LegacyWafConfigurationSet.md
@@ -275,6 +282,8 @@ files:
275
282
  - docs/LegacyWafUpdateStatusApi.md
276
283
  - docs/LineItemData.md
277
284
  - docs/LineItemDataReadOnlyInvoiceId.md
285
+ - docs/ListInvoicesResponse.md
286
+ - docs/Listinvoices.md
278
287
  - docs/LoggingAddressAndPort.md
279
288
  - docs/LoggingAzureblobAdditional.md
280
289
  - docs/LoggingAzureblobApi.md
@@ -375,6 +384,7 @@ files:
375
384
  - docs/LoggingSyslogResponse.md
376
385
  - docs/LoggingTlsCommon.md
377
386
  - docs/LoggingUseTls.md
387
+ - docs/Metadata.md
378
388
  - docs/MutualAuthentication.md
379
389
  - docs/MutualAuthenticationApi.md
380
390
  - docs/MutualAuthenticationData.md
@@ -680,6 +690,14 @@ files:
680
690
  - docs/TlsConfigurationsApi.md
681
691
  - docs/TlsConfigurationsResponse.md
682
692
  - docs/TlsConfigurationsResponseAllOf.md
693
+ - docs/TlsCsr.md
694
+ - docs/TlsCsrData.md
695
+ - docs/TlsCsrDataAttributes.md
696
+ - docs/TlsCsrErrorResponse.md
697
+ - docs/TlsCsrResponse.md
698
+ - docs/TlsCsrResponseAttributes.md
699
+ - docs/TlsCsrResponseData.md
700
+ - docs/TlsCsrsApi.md
683
701
  - docs/TlsDnsRecord.md
684
702
  - docs/TlsDomainData.md
685
703
  - docs/TlsDomainsApi.md
@@ -727,6 +745,7 @@ files:
727
745
  - docs/TypeTlsBulkCertificate.md
728
746
  - docs/TypeTlsCertificate.md
729
747
  - docs/TypeTlsConfiguration.md
748
+ - docs/TypeTlsCsr.md
730
749
  - docs/TypeTlsDnsRecord.md
731
750
  - docs/TypeTlsDomain.md
732
751
  - docs/TypeTlsPrivateKey.md
@@ -845,6 +864,7 @@ files:
845
864
  - lib/fastly/api/backend_api.rb
846
865
  - lib/fastly/api/billing_address_api.rb
847
866
  - lib/fastly/api/billing_api.rb
867
+ - lib/fastly/api/billing_invoices_api.rb
848
868
  - lib/fastly/api/cache_settings_api.rb
849
869
  - lib/fastly/api/condition_api.rb
850
870
  - lib/fastly/api/config_store_api.rb
@@ -939,6 +959,7 @@ files:
939
959
  - lib/fastly/api/tls_bulk_certificates_api.rb
940
960
  - lib/fastly/api/tls_certificates_api.rb
941
961
  - lib/fastly/api/tls_configurations_api.rb
962
+ - lib/fastly/api/tls_csrs_api.rb
942
963
  - lib/fastly/api/tls_domains_api.rb
943
964
  - lib/fastly/api/tls_private_keys_api.rb
944
965
  - lib/fastly/api/tls_subscriptions_api.rb
@@ -971,6 +992,7 @@ files:
971
992
  - lib/fastly/models/automation_token_create_request_attributes.rb
972
993
  - lib/fastly/models/automation_token_create_response.rb
973
994
  - lib/fastly/models/automation_token_create_response_all_of.rb
995
+ - lib/fastly/models/automation_token_error_response.rb
974
996
  - lib/fastly/models/automation_token_response.rb
975
997
  - lib/fastly/models/automation_token_response_all_of.rb
976
998
  - lib/fastly/models/aws_region.rb
@@ -1021,6 +1043,7 @@ files:
1021
1043
  - lib/fastly/models/contact_response.rb
1022
1044
  - lib/fastly/models/contact_response_all_of.rb
1023
1045
  - lib/fastly/models/content.rb
1046
+ - lib/fastly/models/create_response_object_request.rb
1024
1047
  - lib/fastly/models/customer.rb
1025
1048
  - lib/fastly/models/customer_response.rb
1026
1049
  - lib/fastly/models/customer_response_all_of.rb
@@ -1047,7 +1070,8 @@ files:
1047
1070
  - lib/fastly/models/enabled_product_response_links.rb
1048
1071
  - lib/fastly/models/enabled_product_response_product.rb
1049
1072
  - lib/fastly/models/enabled_product_response_service.rb
1050
- - lib/fastly/models/error_response.rb
1073
+ - lib/fastly/models/error.rb
1074
+ - lib/fastly/models/error_response_data.rb
1051
1075
  - lib/fastly/models/event.rb
1052
1076
  - lib/fastly/models/event_attributes.rb
1053
1077
  - lib/fastly/models/event_data.rb
@@ -1125,6 +1149,9 @@ files:
1125
1149
  - lib/fastly/models/invitation_response_data_all_of.rb
1126
1150
  - lib/fastly/models/invitations_response.rb
1127
1151
  - lib/fastly/models/invitations_response_all_of.rb
1152
+ - lib/fastly/models/invoice.rb
1153
+ - lib/fastly/models/invoice_response.rb
1154
+ - lib/fastly/models/invoicelineitems.rb
1128
1155
  - lib/fastly/models/legacy_waf_configuration_set.rb
1129
1156
  - lib/fastly/models/legacy_waf_firewall.rb
1130
1157
  - lib/fastly/models/legacy_waf_owasp.rb
@@ -1135,6 +1162,8 @@ files:
1135
1162
  - lib/fastly/models/legacy_waf_update_status.rb
1136
1163
  - lib/fastly/models/line_item_data.rb
1137
1164
  - lib/fastly/models/line_item_data_read_only_invoice_id.rb
1165
+ - lib/fastly/models/list_invoices_response.rb
1166
+ - lib/fastly/models/listinvoices.rb
1138
1167
  - lib/fastly/models/logging_address_and_port.rb
1139
1168
  - lib/fastly/models/logging_azureblob_additional.rb
1140
1169
  - lib/fastly/models/logging_azureblob_response.rb
@@ -1208,6 +1237,7 @@ files:
1208
1237
  - lib/fastly/models/logging_syslog_response.rb
1209
1238
  - lib/fastly/models/logging_tls_common.rb
1210
1239
  - lib/fastly/models/logging_use_tls.rb
1240
+ - lib/fastly/models/metadata.rb
1211
1241
  - lib/fastly/models/mutual_authentication.rb
1212
1242
  - lib/fastly/models/mutual_authentication_data.rb
1213
1243
  - lib/fastly/models/mutual_authentication_data_attributes.rb
@@ -1485,6 +1515,13 @@ files:
1485
1515
  - lib/fastly/models/tls_configuration_response_data_all_of.rb
1486
1516
  - lib/fastly/models/tls_configurations_response.rb
1487
1517
  - lib/fastly/models/tls_configurations_response_all_of.rb
1518
+ - lib/fastly/models/tls_csr.rb
1519
+ - lib/fastly/models/tls_csr_data.rb
1520
+ - lib/fastly/models/tls_csr_data_attributes.rb
1521
+ - lib/fastly/models/tls_csr_error_response.rb
1522
+ - lib/fastly/models/tls_csr_response.rb
1523
+ - lib/fastly/models/tls_csr_response_attributes.rb
1524
+ - lib/fastly/models/tls_csr_response_data.rb
1488
1525
  - lib/fastly/models/tls_dns_record.rb
1489
1526
  - lib/fastly/models/tls_domain_data.rb
1490
1527
  - lib/fastly/models/tls_domains_response.rb
@@ -1528,6 +1565,7 @@ files:
1528
1565
  - lib/fastly/models/type_tls_bulk_certificate.rb
1529
1566
  - lib/fastly/models/type_tls_certificate.rb
1530
1567
  - lib/fastly/models/type_tls_configuration.rb
1568
+ - lib/fastly/models/type_tls_csr.rb
1531
1569
  - lib/fastly/models/type_tls_dns_record.rb
1532
1570
  - lib/fastly/models/type_tls_domain.rb
1533
1571
  - lib/fastly/models/type_tls_private_key.rb