lib/fastly/api/tls_subscriptions_api.rb in fastly-4.1.0 vs lib/fastly/api/tls_subscriptions_api.rb in fastly-4.2.0

- old
+ new

@@ -362,11 +362,11 @@ return data, status_code, headers end # List TLS subscriptions # List all TLS subscriptions. - # @option opts [String] :filter_state Limit the returned subscriptions by state. Valid values are &#x60;pending&#x60;, &#x60;processing&#x60;, &#x60;issued&#x60;, and &#x60;renewing&#x60;. Accepts parameters: &#x60;not&#x60; (e.g., &#x60;filter[state][not]&#x3D;renewing&#x60;). + # @option opts [String] :filter_state Limit the returned subscriptions by state. Valid values are &#x60;pending&#x60;, &#x60;processing&#x60;, &#x60;issued&#x60;, &#x60;renewing&#x60;, and &#x60;failed&#x60;. Accepts parameters: &#x60;not&#x60; (e.g., &#x60;filter[state][not]&#x3D;renewing&#x60;). # @option opts [String] :filter_tls_domains_id Limit the returned subscriptions to those that include the specific domain. # @option opts [Boolean] :filter_has_active_order Limit the returned subscriptions to those that have currently active orders. Permitted values: &#x60;true&#x60;. # @option opts [String] :include Include related objects. Optional, comma-separated values. Permitted values: &#x60;tls_authorizations&#x60; and &#x60;tls_authorizations.globalsign_email_challenge&#x60;. # @option opts [Integer] :page_number Current page. # @option opts [Integer] :page_size Number of records per page. (default to 20) @@ -377,11 +377,11 @@ data end # List TLS subscriptions # List all TLS subscriptions. - # @option opts [String] :filter_state Limit the returned subscriptions by state. Valid values are &#x60;pending&#x60;, &#x60;processing&#x60;, &#x60;issued&#x60;, and &#x60;renewing&#x60;. Accepts parameters: &#x60;not&#x60; (e.g., &#x60;filter[state][not]&#x3D;renewing&#x60;). + # @option opts [String] :filter_state Limit the returned subscriptions by state. Valid values are &#x60;pending&#x60;, &#x60;processing&#x60;, &#x60;issued&#x60;, &#x60;renewing&#x60;, and &#x60;failed&#x60;. Accepts parameters: &#x60;not&#x60; (e.g., &#x60;filter[state][not]&#x3D;renewing&#x60;). # @option opts [String] :filter_tls_domains_id Limit the returned subscriptions to those that include the specific domain. # @option opts [Boolean] :filter_has_active_order Limit the returned subscriptions to those that have currently active orders. Permitted values: &#x60;true&#x60;. # @option opts [String] :include Include related objects. Optional, comma-separated values. Permitted values: &#x60;tls_authorizations&#x60; and &#x60;tls_authorizations.globalsign_email_challenge&#x60;. # @option opts [Integer] :page_number Current page. # @option opts [Integer] :page_size Number of records per page. (default to 20) @@ -450,21 +450,21 @@ end return data, status_code, headers end # Update a TLS subscription - # Change the TLS domains or common name associated with this subscription, or update the TLS configuration for this set of domains. + # Change the TLS domains or common name associated with this subscription, update the TLS configuration for this set of domains, or retry a subscription with state `failed` by setting the state to `retry`. # @option opts [String] :tls_subscription_id Alphanumeric string identifying a TLS subscription. (required) # @option opts [Boolean] :force A flag that allows you to edit and delete a subscription with active domains. Valid to use on PATCH and DELETE actions. As a warning, removing an active domain from a subscription or forcing the deletion of a subscription may result in breaking TLS termination to that domain. # @option opts [TlsSubscription] :tls_subscription # @return [TlsSubscriptionResponse] def patch_tls_sub(opts = {}) data, _status_code, _headers = patch_tls_sub_with_http_info(opts) data end # Update a TLS subscription - # Change the TLS domains or common name associated with this subscription, or update the TLS configuration for this set of domains. + # Change the TLS domains or common name associated with this subscription, update the TLS configuration for this set of domains, or retry a subscription with state &#x60;failed&#x60; by setting the state to &#x60;retry&#x60;. # @option opts [String] :tls_subscription_id Alphanumeric string identifying a TLS subscription. (required) # @option opts [Boolean] :force A flag that allows you to edit and delete a subscription with active domains. Valid to use on PATCH and DELETE actions. As a warning, removing an active domain from a subscription or forcing the deletion of a subscription may result in breaking TLS termination to that domain. # @option opts [TlsSubscription] :tls_subscription # @return [Array<(TlsSubscriptionResponse, Integer, Hash)>] TlsSubscriptionResponse data, response status code and response headers def patch_tls_sub_with_http_info(opts = {})