diff --git a/CHANGELOG.md b/CHANGELOG.md
index 701a158b9..437c5596e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [v7.5.0](https://github.com/fastly/fastly-js/releases/tag/release/v7.5.0) (2024-07-01)
+
+**Bug fixes:**
+
+- fix(logging): For several endpoints, correct use_tls to be string
+
+**Enhancements:**
+
+- feat(content): `/content/edge_check` endpoint now returns informational values in `hash` when a timeout occurs or when
+ an object is too large.
+- feat(logging-datalog): Added additional regions
+
## [v7.4.0](https://github.com/fastly/fastly-js/releases/tag/release/v7.4.0) (2024-06-27)
**Bug fixes:**
diff --git a/docs/ContentApi.md b/docs/ContentApi.md
index 37d8fc3b6..a9cb2bade 100644
--- a/docs/ContentApi.md
+++ b/docs/ContentApi.md
@@ -19,7 +19,7 @@ Method | HTTP request | Description
contentCheck({ , [url] })
```
-Retrieve headers and MD5 hash of the content for a particular URL from each Fastly edge server. This API is limited to 200 requests per hour.
+Retrieve headers and MD5 hash of the content for a particular URL from each Fastly edge server. This API is limited to 200 requests per hour. If the content takes too long to download, the hash will be set to `error-timeout-$pop`. If the response is too large, it will be set to `warning-too-large-$pop`.
### Example
diff --git a/docs/LoggingDatadogAdditional.md b/docs/LoggingDatadogAdditional.md
index c6c037c42..8d6c015a8 100644
--- a/docs/LoggingDatadogAdditional.md
+++ b/docs/LoggingDatadogAdditional.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "EU"]
+**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "US3", "US5", "EU (legacy, same as EU1)", "EU1", "AP1"]
**format** | **String** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Datadog can ingest. | [optional] [defaults to '{"ddsource":"fastly","service":"%{req.service_id}V","date":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_start":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_end":"%{end:%Y-%m-%dT%H:%M:%S%Z}t","http":{"request_time_ms":"%D","method":"%m","url":"%{json.escape(req.url)}V","useragent":"%{User-Agent}i","referer":"%{Referer}i","protocol":"%H","request_x_forwarded_for":"%{X-Forwarded-For}i","status_code":"%s"},"network":{"client":{"ip":"%h","name":"%{client.as.name}V","number":"%{client.as.number}V","connection_speed":"%{client.geo.conn_speed}V"},"destination":{"ip":"%A"},"geoip":{"geo_city":"%{client.geo.city.utf8}V","geo_country_code":"%{client.geo.country_code}V","geo_continent_code":"%{client.geo.continent_code}V","geo_region":"%{client.geo.region}V"},"bytes_written":"%B","bytes_read":"%{req.body_bytes_read}V"},"host":"%{Fastly-Orig-Host}i","origin_host":"%v","is_ipv6":"%{if(req.is_ipv6, \"true\", \"false\")}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","tls_client_protocol":"%{json.escape(tls.client.protocol)}V","tls_client_servername":"%{json.escape(tls.client.servername)}V","tls_client_cipher":"%{json.escape(tls.client.cipher)}V","tls_client_cipher_sha":"%{json.escape(tls.client.ciphers_sha)}V","tls_client_tlsexts_sha":"%{json.escape(tls.client.tlsexts_sha)}V","is_h2":"%{if(fastly_info.is_h2, \"true\", \"false\")}V","is_h2_push":"%{if(fastly_info.h2.is_push, \"true\", \"false\")}V","h2_stream_id":"%{fastly_info.h2.stream_id}V","request_accept_content":"%{Accept}i","request_accept_language":"%{Accept-Language}i","request_accept_encoding":"%{Accept-Encoding}i","request_accept_charset":"%{Accept-Charset}i","request_connection":"%{Connection}i","request_dnt":"%{DNT}i","request_forwarded":"%{Forwarded}i","request_via":"%{Via}i","request_cache_control":"%{Cache-Control}i","request_x_requested_with":"%{X-Requested-With}i","request_x_att_device_id":"%{X-ATT-Device-Id}i","content_type":"%{Content-Type}o","is_cacheable":"%{if(fastly_info.state~\"^(HIT|MISS)$\", \"true\", \"false\")}V","response_age":"%{Age}o","response_cache_control":"%{Cache-Control}o","response_expires":"%{Expires}o","response_last_modified":"%{Last-Modified}o","response_tsv":"%{TSV}o","server_datacenter":"%{server.datacenter}V","req_header_size":"%{req.header_bytes_read}V","resp_header_size":"%{resp.header_bytes_written}V","socket_cwnd":"%{client.socket.cwnd}V","socket_nexthop":"%{client.socket.nexthop}V","socket_tcpi_rcv_mss":"%{client.socket.tcpi_rcv_mss}V","socket_tcpi_snd_mss":"%{client.socket.tcpi_snd_mss}V","socket_tcpi_rtt":"%{client.socket.tcpi_rtt}V","socket_tcpi_rttvar":"%{client.socket.tcpi_rttvar}V","socket_tcpi_rcv_rtt":"%{client.socket.tcpi_rcv_rtt}V","socket_tcpi_rcv_space":"%{client.socket.tcpi_rcv_space}V","socket_tcpi_last_data_sent":"%{client.socket.tcpi_last_data_sent}V","socket_tcpi_total_retrans":"%{client.socket.tcpi_total_retrans}V","socket_tcpi_delta_retrans":"%{client.socket.tcpi_delta_retrans}V","socket_ploss":"%{client.socket.ploss}V"}']
**token** | **String** | The API key from your Datadog account. Required. | [optional]
diff --git a/docs/LoggingDatadogApi.md b/docs/LoggingDatadogApi.md
index ed62ff9bd..c7ac33e1d 100644
--- a/docs/LoggingDatadogApi.md
+++ b/docs/LoggingDatadogApi.md
@@ -60,7 +60,7 @@ Name | Type | Description | Notes
**response_condition** | **String** | The name of an existing condition in the configured endpoint, or leave blank to always execute. | [optional]
**format** | **String** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Datadog can ingest. | [optional] [defaults to '{"ddsource":"fastly","service":"%{req.service_id}V","date":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_start":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_end":"%{end:%Y-%m-%dT%H:%M:%S%Z}t","http":{"request_time_ms":"%D","method":"%m","url":"%{json.escape(req.url)}V","useragent":"%{User-Agent}i","referer":"%{Referer}i","protocol":"%H","request_x_forwarded_for":"%{X-Forwarded-For}i","status_code":"%s"},"network":{"client":{"ip":"%h","name":"%{client.as.name}V","number":"%{client.as.number}V","connection_speed":"%{client.geo.conn_speed}V"},"destination":{"ip":"%A"},"geoip":{"geo_city":"%{client.geo.city.utf8}V","geo_country_code":"%{client.geo.country_code}V","geo_continent_code":"%{client.geo.continent_code}V","geo_region":"%{client.geo.region}V"},"bytes_written":"%B","bytes_read":"%{req.body_bytes_read}V"},"host":"%{Fastly-Orig-Host}i","origin_host":"%v","is_ipv6":"%{if(req.is_ipv6, \"true\", \"false\")}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","tls_client_protocol":"%{json.escape(tls.client.protocol)}V","tls_client_servername":"%{json.escape(tls.client.servername)}V","tls_client_cipher":"%{json.escape(tls.client.cipher)}V","tls_client_cipher_sha":"%{json.escape(tls.client.ciphers_sha)}V","tls_client_tlsexts_sha":"%{json.escape(tls.client.tlsexts_sha)}V","is_h2":"%{if(fastly_info.is_h2, \"true\", \"false\")}V","is_h2_push":"%{if(fastly_info.h2.is_push, \"true\", \"false\")}V","h2_stream_id":"%{fastly_info.h2.stream_id}V","request_accept_content":"%{Accept}i","request_accept_language":"%{Accept-Language}i","request_accept_encoding":"%{Accept-Encoding}i","request_accept_charset":"%{Accept-Charset}i","request_connection":"%{Connection}i","request_dnt":"%{DNT}i","request_forwarded":"%{Forwarded}i","request_via":"%{Via}i","request_cache_control":"%{Cache-Control}i","request_x_requested_with":"%{X-Requested-With}i","request_x_att_device_id":"%{X-ATT-Device-Id}i","content_type":"%{Content-Type}o","is_cacheable":"%{if(fastly_info.state~\"^(HIT|MISS)$\", \"true\", \"false\")}V","response_age":"%{Age}o","response_cache_control":"%{Cache-Control}o","response_expires":"%{Expires}o","response_last_modified":"%{Last-Modified}o","response_tsv":"%{TSV}o","server_datacenter":"%{server.datacenter}V","req_header_size":"%{req.header_bytes_read}V","resp_header_size":"%{resp.header_bytes_written}V","socket_cwnd":"%{client.socket.cwnd}V","socket_nexthop":"%{client.socket.nexthop}V","socket_tcpi_rcv_mss":"%{client.socket.tcpi_rcv_mss}V","socket_tcpi_snd_mss":"%{client.socket.tcpi_snd_mss}V","socket_tcpi_rtt":"%{client.socket.tcpi_rtt}V","socket_tcpi_rttvar":"%{client.socket.tcpi_rttvar}V","socket_tcpi_rcv_rtt":"%{client.socket.tcpi_rcv_rtt}V","socket_tcpi_rcv_space":"%{client.socket.tcpi_rcv_space}V","socket_tcpi_last_data_sent":"%{client.socket.tcpi_last_data_sent}V","socket_tcpi_total_retrans":"%{client.socket.tcpi_total_retrans}V","socket_tcpi_delta_retrans":"%{client.socket.tcpi_delta_retrans}V","socket_ploss":"%{client.socket.ploss}V"}']
**format_version** | **Number** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [optional] [one of: 1, 2]
-**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "EU"]
+**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "US3", "US5", "EU (legacy, same as EU1)", "EU1", "AP1"]
**token** | **String** | The API key from your Datadog account. Required. | [optional]
### Return type
@@ -228,7 +228,7 @@ Name | Type | Description | Notes
**response_condition** | **String** | The name of an existing condition in the configured endpoint, or leave blank to always execute. | [optional]
**format** | **String** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Datadog can ingest. | [optional] [defaults to '{"ddsource":"fastly","service":"%{req.service_id}V","date":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_start":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_end":"%{end:%Y-%m-%dT%H:%M:%S%Z}t","http":{"request_time_ms":"%D","method":"%m","url":"%{json.escape(req.url)}V","useragent":"%{User-Agent}i","referer":"%{Referer}i","protocol":"%H","request_x_forwarded_for":"%{X-Forwarded-For}i","status_code":"%s"},"network":{"client":{"ip":"%h","name":"%{client.as.name}V","number":"%{client.as.number}V","connection_speed":"%{client.geo.conn_speed}V"},"destination":{"ip":"%A"},"geoip":{"geo_city":"%{client.geo.city.utf8}V","geo_country_code":"%{client.geo.country_code}V","geo_continent_code":"%{client.geo.continent_code}V","geo_region":"%{client.geo.region}V"},"bytes_written":"%B","bytes_read":"%{req.body_bytes_read}V"},"host":"%{Fastly-Orig-Host}i","origin_host":"%v","is_ipv6":"%{if(req.is_ipv6, \"true\", \"false\")}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","tls_client_protocol":"%{json.escape(tls.client.protocol)}V","tls_client_servername":"%{json.escape(tls.client.servername)}V","tls_client_cipher":"%{json.escape(tls.client.cipher)}V","tls_client_cipher_sha":"%{json.escape(tls.client.ciphers_sha)}V","tls_client_tlsexts_sha":"%{json.escape(tls.client.tlsexts_sha)}V","is_h2":"%{if(fastly_info.is_h2, \"true\", \"false\")}V","is_h2_push":"%{if(fastly_info.h2.is_push, \"true\", \"false\")}V","h2_stream_id":"%{fastly_info.h2.stream_id}V","request_accept_content":"%{Accept}i","request_accept_language":"%{Accept-Language}i","request_accept_encoding":"%{Accept-Encoding}i","request_accept_charset":"%{Accept-Charset}i","request_connection":"%{Connection}i","request_dnt":"%{DNT}i","request_forwarded":"%{Forwarded}i","request_via":"%{Via}i","request_cache_control":"%{Cache-Control}i","request_x_requested_with":"%{X-Requested-With}i","request_x_att_device_id":"%{X-ATT-Device-Id}i","content_type":"%{Content-Type}o","is_cacheable":"%{if(fastly_info.state~\"^(HIT|MISS)$\", \"true\", \"false\")}V","response_age":"%{Age}o","response_cache_control":"%{Cache-Control}o","response_expires":"%{Expires}o","response_last_modified":"%{Last-Modified}o","response_tsv":"%{TSV}o","server_datacenter":"%{server.datacenter}V","req_header_size":"%{req.header_bytes_read}V","resp_header_size":"%{resp.header_bytes_written}V","socket_cwnd":"%{client.socket.cwnd}V","socket_nexthop":"%{client.socket.nexthop}V","socket_tcpi_rcv_mss":"%{client.socket.tcpi_rcv_mss}V","socket_tcpi_snd_mss":"%{client.socket.tcpi_snd_mss}V","socket_tcpi_rtt":"%{client.socket.tcpi_rtt}V","socket_tcpi_rttvar":"%{client.socket.tcpi_rttvar}V","socket_tcpi_rcv_rtt":"%{client.socket.tcpi_rcv_rtt}V","socket_tcpi_rcv_space":"%{client.socket.tcpi_rcv_space}V","socket_tcpi_last_data_sent":"%{client.socket.tcpi_last_data_sent}V","socket_tcpi_total_retrans":"%{client.socket.tcpi_total_retrans}V","socket_tcpi_delta_retrans":"%{client.socket.tcpi_delta_retrans}V","socket_ploss":"%{client.socket.ploss}V"}']
**format_version** | **Number** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [optional] [one of: 1, 2]
-**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "EU"]
+**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "US3", "US5", "EU (legacy, same as EU1)", "EU1", "AP1"]
**token** | **String** | The API key from your Datadog account. Required. | [optional]
### Return type
diff --git a/docs/LoggingDatadogResponse.md b/docs/LoggingDatadogResponse.md
index cd3855700..994cc3251 100644
--- a/docs/LoggingDatadogResponse.md
+++ b/docs/LoggingDatadogResponse.md
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**response_condition** | **String** | The name of an existing condition in the configured endpoint, or leave blank to always execute. | [optional]
**format** | **String** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Datadog can ingest. | [optional] [defaults to '{"ddsource":"fastly","service":"%{req.service_id}V","date":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_start":"%{begin:%Y-%m-%dT%H:%M:%S%Z}t","time_end":"%{end:%Y-%m-%dT%H:%M:%S%Z}t","http":{"request_time_ms":"%D","method":"%m","url":"%{json.escape(req.url)}V","useragent":"%{User-Agent}i","referer":"%{Referer}i","protocol":"%H","request_x_forwarded_for":"%{X-Forwarded-For}i","status_code":"%s"},"network":{"client":{"ip":"%h","name":"%{client.as.name}V","number":"%{client.as.number}V","connection_speed":"%{client.geo.conn_speed}V"},"destination":{"ip":"%A"},"geoip":{"geo_city":"%{client.geo.city.utf8}V","geo_country_code":"%{client.geo.country_code}V","geo_continent_code":"%{client.geo.continent_code}V","geo_region":"%{client.geo.region}V"},"bytes_written":"%B","bytes_read":"%{req.body_bytes_read}V"},"host":"%{Fastly-Orig-Host}i","origin_host":"%v","is_ipv6":"%{if(req.is_ipv6, \"true\", \"false\")}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","tls_client_protocol":"%{json.escape(tls.client.protocol)}V","tls_client_servername":"%{json.escape(tls.client.servername)}V","tls_client_cipher":"%{json.escape(tls.client.cipher)}V","tls_client_cipher_sha":"%{json.escape(tls.client.ciphers_sha)}V","tls_client_tlsexts_sha":"%{json.escape(tls.client.tlsexts_sha)}V","is_h2":"%{if(fastly_info.is_h2, \"true\", \"false\")}V","is_h2_push":"%{if(fastly_info.h2.is_push, \"true\", \"false\")}V","h2_stream_id":"%{fastly_info.h2.stream_id}V","request_accept_content":"%{Accept}i","request_accept_language":"%{Accept-Language}i","request_accept_encoding":"%{Accept-Encoding}i","request_accept_charset":"%{Accept-Charset}i","request_connection":"%{Connection}i","request_dnt":"%{DNT}i","request_forwarded":"%{Forwarded}i","request_via":"%{Via}i","request_cache_control":"%{Cache-Control}i","request_x_requested_with":"%{X-Requested-With}i","request_x_att_device_id":"%{X-ATT-Device-Id}i","content_type":"%{Content-Type}o","is_cacheable":"%{if(fastly_info.state~\"^(HIT|MISS)$\", \"true\", \"false\")}V","response_age":"%{Age}o","response_cache_control":"%{Cache-Control}o","response_expires":"%{Expires}o","response_last_modified":"%{Last-Modified}o","response_tsv":"%{TSV}o","server_datacenter":"%{server.datacenter}V","req_header_size":"%{req.header_bytes_read}V","resp_header_size":"%{resp.header_bytes_written}V","socket_cwnd":"%{client.socket.cwnd}V","socket_nexthop":"%{client.socket.nexthop}V","socket_tcpi_rcv_mss":"%{client.socket.tcpi_rcv_mss}V","socket_tcpi_snd_mss":"%{client.socket.tcpi_snd_mss}V","socket_tcpi_rtt":"%{client.socket.tcpi_rtt}V","socket_tcpi_rttvar":"%{client.socket.tcpi_rttvar}V","socket_tcpi_rcv_rtt":"%{client.socket.tcpi_rcv_rtt}V","socket_tcpi_rcv_space":"%{client.socket.tcpi_rcv_space}V","socket_tcpi_last_data_sent":"%{client.socket.tcpi_last_data_sent}V","socket_tcpi_total_retrans":"%{client.socket.tcpi_total_retrans}V","socket_tcpi_delta_retrans":"%{client.socket.tcpi_delta_retrans}V","socket_ploss":"%{client.socket.ploss}V"}']
**format_version** | **String** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [optional] [one of: "1", "2"]
-**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "EU"]
+**region** | **String** | The region that log data will be sent to. | [optional] [one of: "US", "US3", "US5", "EU (legacy, same as EU1)", "EU1", "AP1"]
**token** | **String** | The API key from your Datadog account. Required. | [optional]
**created_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
**deleted_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
diff --git a/docs/LoggingKafkaAdditional.md b/docs/LoggingKafkaAdditional.md
index e7ee982d6..5019c8d85 100644
--- a/docs/LoggingKafkaAdditional.md
+++ b/docs/LoggingKafkaAdditional.md
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
**auth_method** | **String** | SASL authentication method. | [optional] [one of: "plain", "scram-sha-256", "scram-sha-512"]
**user** | **String** | SASL user. | [optional]
**password** | **String** | SASL password. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/docs/LoggingKafkaApi.md b/docs/LoggingKafkaApi.md
index 582f63713..d538482a6 100644
--- a/docs/LoggingKafkaApi.md
+++ b/docs/LoggingKafkaApi.md
@@ -49,7 +49,7 @@ const options = {
auth_method: "plain",
user: "user_example",
password: "password_example",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
};
apiInstance.createLogKafka(options)
@@ -85,7 +85,7 @@ Name | Type | Description | Notes
**auth_method** | **String** | SASL authentication method. | [optional] [one of: "plain", "scram-sha-256", "scram-sha-512"]
**user** | **String** | SASL user. | [optional]
**password** | **String** | SASL password. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
### Return type
diff --git a/docs/LoggingKafkaResponse.md b/docs/LoggingKafkaResponse.md
index 74d306c46..4b154d3c4 100644
--- a/docs/LoggingKafkaResponse.md
+++ b/docs/LoggingKafkaResponse.md
@@ -27,7 +27,7 @@ Name | Type | Description | Notes
**auth_method** | **String** | SASL authentication method. | [optional] [one of: "plain", "scram-sha-256", "scram-sha-512"]
**user** | **String** | SASL user. | [optional]
**password** | **String** | SASL password. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/docs/LoggingKafkaResponsePost.md b/docs/LoggingKafkaResponsePost.md
index 74dc74719..a5a3cd429 100644
--- a/docs/LoggingKafkaResponsePost.md
+++ b/docs/LoggingKafkaResponsePost.md
@@ -27,7 +27,7 @@ Name | Type | Description | Notes
**auth_method** | **String** | SASL authentication method. | [optional] [one of: "plain", "scram-sha-256", "scram-sha-512"]
**user** | **String** | SASL user. | [optional]
**password** | **String** | SASL password. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/docs/LoggingLogentriesAdditional.md b/docs/LoggingLogentriesAdditional.md
index a250adc9f..1a97e330d 100644
--- a/docs/LoggingLogentriesAdditional.md
+++ b/docs/LoggingLogentriesAdditional.md
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**port** | **Number** | The port number. | [optional] [defaults to 20000]
**token** | **String** | Use token based authentication. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
**region** | **String** | The region to which to stream logs. | [optional] [one of: "US", "US-2", "US-3", "EU", "CA", "AU", "AP"]
diff --git a/docs/LoggingLogentriesApi.md b/docs/LoggingLogentriesApi.md
index 300a8c59b..270cb5f64 100644
--- a/docs/LoggingLogentriesApi.md
+++ b/docs/LoggingLogentriesApi.md
@@ -38,7 +38,7 @@ const options = {
format_version: 1,
port: 20000,
token: "token_example",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
region: "US",
};
@@ -64,7 +64,7 @@ Name | Type | Description | Notes
**format_version** | **Number** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [optional] [one of: 1, 2]
**port** | **Number** | The port number. | [optional] [defaults to 20000]
**token** | **String** | Use token based authentication. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
**region** | **String** | The region to which to stream logs. | [optional] [one of: "US", "US-2", "US-3", "EU", "CA", "AU", "AP"]
### Return type
@@ -209,7 +209,7 @@ const options = {
format_version: 1,
port: 20000,
token: "token_example",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
region: "US",
};
@@ -236,7 +236,7 @@ Name | Type | Description | Notes
**format_version** | **Number** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [optional] [one of: 1, 2]
**port** | **Number** | The port number. | [optional] [defaults to 20000]
**token** | **String** | Use token based authentication. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
**region** | **String** | The region to which to stream logs. | [optional] [one of: "US", "US-2", "US-3", "EU", "CA", "AU", "AP"]
### Return type
diff --git a/docs/LoggingLogentriesResponse.md b/docs/LoggingLogentriesResponse.md
index 453dc17d2..b4206e54d 100644
--- a/docs/LoggingLogentriesResponse.md
+++ b/docs/LoggingLogentriesResponse.md
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
**format_version** | **String** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [optional] [one of: "1", "2"]
**port** | **Number** | The port number. | [optional] [defaults to 20000]
**token** | **String** | Use token based authentication. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
**region** | **String** | The region to which to stream logs. | [optional] [one of: "US", "US-2", "US-3", "EU", "CA", "AU", "AP"]
**created_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
**deleted_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
diff --git a/docs/LoggingSplunkAdditional.md b/docs/LoggingSplunkAdditional.md
index f1b879ee6..a68aa4c4c 100644
--- a/docs/LoggingSplunkAdditional.md
+++ b/docs/LoggingSplunkAdditional.md
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**url** | **String** | The URL to post logs to. | [optional]
**token** | **String** | A Splunk token for use in posting logs over HTTP to your collector. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/docs/LoggingSplunkApi.md b/docs/LoggingSplunkApi.md
index 575b72420..c37dc9964 100644
--- a/docs/LoggingSplunkApi.md
+++ b/docs/LoggingSplunkApi.md
@@ -44,7 +44,7 @@ const options = {
request_max_bytes: 0,
url: "url_example",
token: "token_example",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
};
apiInstance.createLogSplunk(options)
@@ -75,7 +75,7 @@ Name | Type | Description | Notes
**request_max_bytes** | **Number** | The maximum number of bytes sent in one request. Defaults `0` for unbounded. | [optional] [defaults to 0]
**url** | **String** | The URL to post logs to. | [optional]
**token** | **String** | A Splunk token for use in posting logs over HTTP to your collector. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
### Return type
@@ -225,7 +225,7 @@ const options = {
request_max_bytes: 0,
url: "url_example",
token: "token_example",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
};
apiInstance.updateLogSplunk(options)
@@ -257,7 +257,7 @@ Name | Type | Description | Notes
**request_max_bytes** | **Number** | The maximum number of bytes sent in one request. Defaults `0` for unbounded. | [optional] [defaults to 0]
**url** | **String** | The URL to post logs to. | [optional]
**token** | **String** | A Splunk token for use in posting logs over HTTP to your collector. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
### Return type
diff --git a/docs/LoggingSplunkResponse.md b/docs/LoggingSplunkResponse.md
index e09082258..c73100229 100644
--- a/docs/LoggingSplunkResponse.md
+++ b/docs/LoggingSplunkResponse.md
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
**request_max_bytes** | **Number** | The maximum number of bytes sent in one request. Defaults `0` for unbounded. | [optional] [defaults to 0]
**url** | **String** | The URL to post logs to. | [optional]
**token** | **String** | A Splunk token for use in posting logs over HTTP to your collector. | [optional]
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
**created_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
**deleted_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
**updated_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
diff --git a/docs/LoggingSyslogAdditional.md b/docs/LoggingSyslogAdditional.md
index 67ab7305f..e81df80d4 100644
--- a/docs/LoggingSyslogAdditional.md
+++ b/docs/LoggingSyslogAdditional.md
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
**hostname** | **String** | The hostname used for the syslog endpoint. | [optional]
**ipv4** | **String** | The IPv4 address used for the syslog endpoint. | [optional]
**token** | **String** | Whether to prepend each message with a specific token. | [optional] [defaults to 'null']
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
diff --git a/docs/LoggingSyslogApi.md b/docs/LoggingSyslogApi.md
index 8ce3de8a7..fa016f6ca 100644
--- a/docs/LoggingSyslogApi.md
+++ b/docs/LoggingSyslogApi.md
@@ -46,7 +46,7 @@ const options = {
hostname: "hostname_example",
ipv4: "ipv4_example",
token: "'null'",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
};
apiInstance.createLogSyslog(options)
@@ -79,7 +79,7 @@ Name | Type | Description | Notes
**hostname** | **String** | The hostname used for the syslog endpoint. | [optional]
**ipv4** | **String** | The IPv4 address used for the syslog endpoint. | [optional]
**token** | **String** | Whether to prepend each message with a specific token. | [optional] [defaults to 'null']
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
### Return type
@@ -231,7 +231,7 @@ const options = {
hostname: "hostname_example",
ipv4: "ipv4_example",
token: "'null'",
- use_tls: new Fastly.LoggingUseTls(),
+ use_tls: new Fastly.LoggingUseTlsString(),
};
apiInstance.updateLogSyslog(options)
@@ -265,7 +265,7 @@ Name | Type | Description | Notes
**hostname** | **String** | The hostname used for the syslog endpoint. | [optional]
**ipv4** | **String** | The IPv4 address used for the syslog endpoint. | [optional]
**token** | **String** | Whether to prepend each message with a specific token. | [optional] [defaults to 'null']
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
### Return type
diff --git a/docs/LoggingSyslogResponse.md b/docs/LoggingSyslogResponse.md
index 40ad70062..6d6970458 100644
--- a/docs/LoggingSyslogResponse.md
+++ b/docs/LoggingSyslogResponse.md
@@ -19,7 +19,7 @@ Name | Type | Description | Notes
**hostname** | **String** | The hostname used for the syslog endpoint. | [optional]
**ipv4** | **String** | The IPv4 address used for the syslog endpoint. | [optional]
**token** | **String** | Whether to prepend each message with a specific token. | [optional] [defaults to 'null']
-**use_tls** | [**LoggingUseTls**](LoggingUseTls.md) | | [optional]
+**use_tls** | [**LoggingUseTlsString**](LoggingUseTlsString.md) | | [optional]
**created_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
**deleted_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
**updated_at** | **Date** | Date and time in ISO 8601 format. | [optional] [readonly]
diff --git a/docs/LoggingUseTls.md b/docs/LoggingUseTlsString.md
similarity index 54%
rename from docs/LoggingUseTls.md
rename to docs/LoggingUseTlsString.md
index 2003860e3..2a1f99a42 100644
--- a/docs/LoggingUseTls.md
+++ b/docs/LoggingUseTlsString.md
@@ -1,11 +1,11 @@
-# Fastly.LoggingUseTls
+# Fastly.LoggingUseTlsString
## Enum
-* `no_tls` (value: `0`)
+* `no_tls` (value: `"0"`)
-* `use_tls` (value: `1`)
+* `use_tls` (value: `"1"`)
diff --git a/package.json b/package.json
index e391423bf..85230c732 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "fastly",
- "version": "7.4.0",
+ "version": "7.5.0",
"description": "A JavaScript client library for interacting with most facets of the Fastly API.",
"license": "MIT",
"main": "dist/index.js",
diff --git a/sig.json b/sig.json
index d84bb6e53..661477434 100644
--- a/sig.json
+++ b/sig.json
@@ -1 +1 @@
-{"G": "5a2ccc65", "D": "ec7f026b"}
+{"G": "5a2ccc65", "D": "f9e684d4"}
diff --git a/src/ApiClient.js b/src/ApiClient.js
index 125320249..64d9654af 100644
--- a/src/ApiClient.js
+++ b/src/ApiClient.js
@@ -19,7 +19,7 @@ const DEFAULT_RATELIMIT = 1000;
/**
* @module ApiClient
-* @version 7.4.0
+* @version 7.5.0
*/
/**
@@ -66,7 +66,7 @@ class ApiClient {
* @default {}
*/
this.defaultHeaders = {
- 'User-Agent': 'fastly-js/7.4.0'
+ 'User-Agent': 'fastly-js/7.5.0'
};
/**
diff --git a/src/api/AclApi.js b/src/api/AclApi.js
index 8467f56d1..563f43b41 100644
--- a/src/api/AclApi.js
+++ b/src/api/AclApi.js
@@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* Acl service.
* @module api/AclApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class AclApi {
diff --git a/src/api/AclEntryApi.js b/src/api/AclEntryApi.js
index 0bddb3291..b30aaa6d8 100644
--- a/src/api/AclEntryApi.js
+++ b/src/api/AclEntryApi.js
@@ -20,7 +20,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* AclEntry service.
* @module api/AclEntryApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class AclEntryApi {
diff --git a/src/api/ApexRedirectApi.js b/src/api/ApexRedirectApi.js
index 106cf7db4..e83678c56 100644
--- a/src/api/ApexRedirectApi.js
+++ b/src/api/ApexRedirectApi.js
@@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* ApexRedirect service.
* @module api/ApexRedirectApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class ApexRedirectApi {
diff --git a/src/api/AutomationTokensApi.js b/src/api/AutomationTokensApi.js
index 5e104aa62..5bb423aef 100644
--- a/src/api/AutomationTokensApi.js
+++ b/src/api/AutomationTokensApi.js
@@ -21,7 +21,7 @@ import InlineResponse2001 from '../model/InlineResponse2001';
/**
* AutomationTokens service.
* @module api/AutomationTokensApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class AutomationTokensApi {
diff --git a/src/api/BackendApi.js b/src/api/BackendApi.js
index 1e0e0d702..1c1a2858b 100644
--- a/src/api/BackendApi.js
+++ b/src/api/BackendApi.js
@@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* Backend service.
* @module api/BackendApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class BackendApi {
diff --git a/src/api/BillingAddressApi.js b/src/api/BillingAddressApi.js
index 711704165..ac6b81c3e 100644
--- a/src/api/BillingAddressApi.js
+++ b/src/api/BillingAddressApi.js
@@ -20,7 +20,7 @@ import UpdateBillingAddressRequest from '../model/UpdateBillingAddressRequest';
/**
* BillingAddress service.
* @module api/BillingAddressApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class BillingAddressApi {
diff --git a/src/api/BillingApi.js b/src/api/BillingApi.js
index 549e32ba8..f9653957f 100644
--- a/src/api/BillingApi.js
+++ b/src/api/BillingApi.js
@@ -18,7 +18,7 @@ import BillingResponse from '../model/BillingResponse';
/**
* Billing service.
* @module api/BillingApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class BillingApi {
diff --git a/src/api/BillingInvoicesApi.js b/src/api/BillingInvoicesApi.js
index 474607091..03a0013c2 100644
--- a/src/api/BillingInvoicesApi.js
+++ b/src/api/BillingInvoicesApi.js
@@ -19,7 +19,7 @@ import ListInvoicesResponse from '../model/ListInvoicesResponse';
/**
* BillingInvoices service.
* @module api/BillingInvoicesApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class BillingInvoicesApi {
diff --git a/src/api/CacheSettingsApi.js b/src/api/CacheSettingsApi.js
index 5001b2137..d2fd3c1af 100644
--- a/src/api/CacheSettingsApi.js
+++ b/src/api/CacheSettingsApi.js
@@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* CacheSettings service.
* @module api/CacheSettingsApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class CacheSettingsApi {
diff --git a/src/api/ConditionApi.js b/src/api/ConditionApi.js
index 3bfc70d7e..e25b3b2a1 100644
--- a/src/api/ConditionApi.js
+++ b/src/api/ConditionApi.js
@@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* Condition service.
* @module api/ConditionApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class ConditionApi {
diff --git a/src/api/ConfigStoreApi.js b/src/api/ConfigStoreApi.js
index 5a3c7f52a..9124f04f3 100644
--- a/src/api/ConfigStoreApi.js
+++ b/src/api/ConfigStoreApi.js
@@ -19,7 +19,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* ConfigStore service.
* @module api/ConfigStoreApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class ConfigStoreApi {
diff --git a/src/api/ConfigStoreItemApi.js b/src/api/ConfigStoreItemApi.js
index 88d48c289..182b6f283 100644
--- a/src/api/ConfigStoreItemApi.js
+++ b/src/api/ConfigStoreItemApi.js
@@ -19,7 +19,7 @@ import InlineResponse200 from '../model/InlineResponse200';
/**
* ConfigStoreItem service.
* @module api/ConfigStoreItemApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class ConfigStoreItemApi {
diff --git a/src/api/ContactApi.js b/src/api/ContactApi.js
index 4c5742b6b..b702d8c16 100644
--- a/src/api/ContactApi.js
+++ b/src/api/ContactApi.js
@@ -19,7 +19,7 @@ import SchemasContactResponse from '../model/SchemasContactResponse';
/**
* Contact service.
* @module api/ContactApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class ContactApi {
diff --git a/src/api/ContentApi.js b/src/api/ContentApi.js
index 8d9100d65..088c418da 100644
--- a/src/api/ContentApi.js
+++ b/src/api/ContentApi.js
@@ -17,7 +17,7 @@ import Content from '../model/Content';
/**
* Content service.
* @module api/ContentApi
-* @version 7.4.0
+* @version 7.5.0
*/
export default class ContentApi {
@@ -38,7 +38,7 @@ export default class ContentApi {
/**
- * Retrieve headers and MD5 hash of the content for a particular URL from each Fastly edge server. This API is limited to 200 requests per hour.
+ * Retrieve headers and MD5 hash of the content for a particular URL from each Fastly edge server. This API is limited to 200 requests per hour. If the content takes too long to download, the hash will be set to `error-timeout-$pop`. If the response is too large, it will be set to `warning-too-large-$pop`.
* @param {Object} options
* @param {String} [options.url] - Full URL (host and path) to check on all nodes. if protocol is omitted, http will be assumed.
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.
LoggingUseTls
enum value from a Javascript object name.
+ * Returns a LoggingUseTlsString
enum value from a Javascript object name.
* @param {Object} data The plain JavaScript object containing the name of the enum value.
- * @return {module:model/LoggingUseTls} The enum LoggingUseTls
value.
+ * @return {module:model/LoggingUseTlsString} The enum LoggingUseTlsString
value.
*/
static constructFromObject(object) {
return object;
diff --git a/src/model/Metadata.js b/src/model/Metadata.js
index d11e4fd34..aa63e5886 100644
--- a/src/model/Metadata.js
+++ b/src/model/Metadata.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Metadata model module.
* @module model/Metadata
- * @version 7.4.0
+ * @version 7.5.0
*/
class Metadata {
/**
diff --git a/src/model/MutualAuthentication.js b/src/model/MutualAuthentication.js
index 73fd57111..25ce926a0 100644
--- a/src/model/MutualAuthentication.js
+++ b/src/model/MutualAuthentication.js
@@ -16,7 +16,7 @@ import MutualAuthenticationData from './MutualAuthenticationData';
/**
* The MutualAuthentication model module.
* @module model/MutualAuthentication
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthentication {
/**
diff --git a/src/model/MutualAuthenticationData.js b/src/model/MutualAuthenticationData.js
index 2d124165f..b83fd5cfe 100644
--- a/src/model/MutualAuthenticationData.js
+++ b/src/model/MutualAuthenticationData.js
@@ -18,7 +18,7 @@ import TypeMutualAuthentication from './TypeMutualAuthentication';
/**
* The MutualAuthenticationData model module.
* @module model/MutualAuthenticationData
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationData {
/**
diff --git a/src/model/MutualAuthenticationDataAttributes.js b/src/model/MutualAuthenticationDataAttributes.js
index 09ff9559a..15bf14f54 100644
--- a/src/model/MutualAuthenticationDataAttributes.js
+++ b/src/model/MutualAuthenticationDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The MutualAuthenticationDataAttributes model module.
* @module model/MutualAuthenticationDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationDataAttributes {
/**
diff --git a/src/model/MutualAuthenticationResponse.js b/src/model/MutualAuthenticationResponse.js
index 9a6fb21d2..d5f67804a 100644
--- a/src/model/MutualAuthenticationResponse.js
+++ b/src/model/MutualAuthenticationResponse.js
@@ -16,7 +16,7 @@ import MutualAuthenticationResponseData from './MutualAuthenticationResponseData
/**
* The MutualAuthenticationResponse model module.
* @module model/MutualAuthenticationResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationResponse {
/**
diff --git a/src/model/MutualAuthenticationResponseAttributes.js b/src/model/MutualAuthenticationResponseAttributes.js
index 2c9ae58fd..654e9e480 100644
--- a/src/model/MutualAuthenticationResponseAttributes.js
+++ b/src/model/MutualAuthenticationResponseAttributes.js
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The MutualAuthenticationResponseAttributes model module.
* @module model/MutualAuthenticationResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationResponseAttributes {
/**
diff --git a/src/model/MutualAuthenticationResponseAttributesAllOf.js b/src/model/MutualAuthenticationResponseAttributesAllOf.js
index 6ee48d469..d16f8b556 100644
--- a/src/model/MutualAuthenticationResponseAttributesAllOf.js
+++ b/src/model/MutualAuthenticationResponseAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The MutualAuthenticationResponseAttributesAllOf model module.
* @module model/MutualAuthenticationResponseAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationResponseAttributesAllOf {
/**
diff --git a/src/model/MutualAuthenticationResponseData.js b/src/model/MutualAuthenticationResponseData.js
index 88210a6a5..70d8295eb 100644
--- a/src/model/MutualAuthenticationResponseData.js
+++ b/src/model/MutualAuthenticationResponseData.js
@@ -20,7 +20,7 @@ import TypeMutualAuthentication from './TypeMutualAuthentication';
/**
* The MutualAuthenticationResponseData model module.
* @module model/MutualAuthenticationResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationResponseData {
/**
diff --git a/src/model/MutualAuthenticationResponseDataAllOf.js b/src/model/MutualAuthenticationResponseDataAllOf.js
index 1d9a58b97..dad256128 100644
--- a/src/model/MutualAuthenticationResponseDataAllOf.js
+++ b/src/model/MutualAuthenticationResponseDataAllOf.js
@@ -16,7 +16,7 @@ import MutualAuthenticationResponseAttributes from './MutualAuthenticationRespon
/**
* The MutualAuthenticationResponseDataAllOf model module.
* @module model/MutualAuthenticationResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationResponseDataAllOf {
/**
diff --git a/src/model/MutualAuthenticationsResponse.js b/src/model/MutualAuthenticationsResponse.js
index 4b95ef260..5b4fede46 100644
--- a/src/model/MutualAuthenticationsResponse.js
+++ b/src/model/MutualAuthenticationsResponse.js
@@ -20,7 +20,7 @@ import PaginationMeta from './PaginationMeta';
/**
* The MutualAuthenticationsResponse model module.
* @module model/MutualAuthenticationsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationsResponse {
/**
diff --git a/src/model/MutualAuthenticationsResponseAllOf.js b/src/model/MutualAuthenticationsResponseAllOf.js
index cf406b610..72a413d60 100644
--- a/src/model/MutualAuthenticationsResponseAllOf.js
+++ b/src/model/MutualAuthenticationsResponseAllOf.js
@@ -16,7 +16,7 @@ import MutualAuthenticationResponseData from './MutualAuthenticationResponseData
/**
* The MutualAuthenticationsResponseAllOf model module.
* @module model/MutualAuthenticationsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class MutualAuthenticationsResponseAllOf {
/**
diff --git a/src/model/OriginInspector.js b/src/model/OriginInspector.js
index 5bcdd6752..16a49f7f2 100644
--- a/src/model/OriginInspector.js
+++ b/src/model/OriginInspector.js
@@ -17,7 +17,7 @@ import OriginInspectorSubsequentRequestTimestamp from './OriginInspectorSubseque
/**
* The OriginInspector model module.
* @module model/OriginInspector
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspector {
/**
diff --git a/src/model/OriginInspectorDimensions.js b/src/model/OriginInspectorDimensions.js
index 921fd4061..c6a727287 100644
--- a/src/model/OriginInspectorDimensions.js
+++ b/src/model/OriginInspectorDimensions.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorDimensions model module.
* @module model/OriginInspectorDimensions
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorDimensions {
/**
diff --git a/src/model/OriginInspectorEntry.js b/src/model/OriginInspectorEntry.js
index f18438a13..9c1abb616 100644
--- a/src/model/OriginInspectorEntry.js
+++ b/src/model/OriginInspectorEntry.js
@@ -17,7 +17,7 @@ import OriginInspectorValues from './OriginInspectorValues';
/**
* The OriginInspectorEntry model module.
* @module model/OriginInspectorEntry
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorEntry {
/**
diff --git a/src/model/OriginInspectorHistorical.js b/src/model/OriginInspectorHistorical.js
index c254a5933..29370fa6f 100644
--- a/src/model/OriginInspectorHistorical.js
+++ b/src/model/OriginInspectorHistorical.js
@@ -17,7 +17,7 @@ import OriginInspectorHistoricalMeta from './OriginInspectorHistoricalMeta';
/**
* The OriginInspectorHistorical model module.
* @module model/OriginInspectorHistorical
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorHistorical {
/**
diff --git a/src/model/OriginInspectorHistoricalData.js b/src/model/OriginInspectorHistoricalData.js
index c41bc1b6b..72b3f9134 100644
--- a/src/model/OriginInspectorHistoricalData.js
+++ b/src/model/OriginInspectorHistoricalData.js
@@ -17,7 +17,7 @@ import OriginInspectorValues from './OriginInspectorValues';
/**
* The OriginInspectorHistoricalData model module.
* @module model/OriginInspectorHistoricalData
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorHistoricalData {
/**
diff --git a/src/model/OriginInspectorHistoricalMeta.js b/src/model/OriginInspectorHistoricalMeta.js
index 4b211b969..b2b3772bf 100644
--- a/src/model/OriginInspectorHistoricalMeta.js
+++ b/src/model/OriginInspectorHistoricalMeta.js
@@ -16,7 +16,7 @@ import OriginInspectorHistoricalMetaFilters from './OriginInspectorHistoricalMet
/**
* The OriginInspectorHistoricalMeta model module.
* @module model/OriginInspectorHistoricalMeta
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorHistoricalMeta {
/**
diff --git a/src/model/OriginInspectorHistoricalMetaFilters.js b/src/model/OriginInspectorHistoricalMetaFilters.js
index 9709e8e81..62ec25a60 100644
--- a/src/model/OriginInspectorHistoricalMetaFilters.js
+++ b/src/model/OriginInspectorHistoricalMetaFilters.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorHistoricalMetaFilters model module.
* @module model/OriginInspectorHistoricalMetaFilters
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorHistoricalMetaFilters {
/**
diff --git a/src/model/OriginInspectorMeasurements.js b/src/model/OriginInspectorMeasurements.js
index e2d05aaa9..4afedf967 100644
--- a/src/model/OriginInspectorMeasurements.js
+++ b/src/model/OriginInspectorMeasurements.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorMeasurements model module.
* @module model/OriginInspectorMeasurements
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorMeasurements {
/**
diff --git a/src/model/OriginInspectorRealtimeEntry.js b/src/model/OriginInspectorRealtimeEntry.js
index 76d6395cb..c2e7113b9 100644
--- a/src/model/OriginInspectorRealtimeEntry.js
+++ b/src/model/OriginInspectorRealtimeEntry.js
@@ -17,7 +17,7 @@ import OriginInspectorRealtimeEntryRecorded from './OriginInspectorRealtimeEntry
/**
* The OriginInspectorRealtimeEntry model module.
* @module model/OriginInspectorRealtimeEntry
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorRealtimeEntry {
/**
diff --git a/src/model/OriginInspectorRealtimeEntryRecorded.js b/src/model/OriginInspectorRealtimeEntryRecorded.js
index 7ccb4e7ca..f086aaf3d 100644
--- a/src/model/OriginInspectorRealtimeEntryRecorded.js
+++ b/src/model/OriginInspectorRealtimeEntryRecorded.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorRealtimeEntryRecorded model module.
* @module model/OriginInspectorRealtimeEntryRecorded
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorRealtimeEntryRecorded {
/**
diff --git a/src/model/OriginInspectorSubsequentRequestTimestamp.js b/src/model/OriginInspectorSubsequentRequestTimestamp.js
index 7a52d7188..91e3177da 100644
--- a/src/model/OriginInspectorSubsequentRequestTimestamp.js
+++ b/src/model/OriginInspectorSubsequentRequestTimestamp.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorSubsequentRequestTimestamp model module.
* @module model/OriginInspectorSubsequentRequestTimestamp
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorSubsequentRequestTimestamp {
/**
diff --git a/src/model/OriginInspectorValues.js b/src/model/OriginInspectorValues.js
index b7cec26c7..4d647a4e3 100644
--- a/src/model/OriginInspectorValues.js
+++ b/src/model/OriginInspectorValues.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorValues model module.
* @module model/OriginInspectorValues
- * @version 7.4.0
+ * @version 7.5.0
*/
class OriginInspectorValues {
/**
diff --git a/src/model/Package.js b/src/model/Package.js
index 344778e2e..318b27ab6 100644
--- a/src/model/Package.js
+++ b/src/model/Package.js
@@ -16,7 +16,7 @@ import PackageMetadata from './PackageMetadata';
/**
* The Package model module.
* @module model/Package
- * @version 7.4.0
+ * @version 7.5.0
*/
class Package {
/**
diff --git a/src/model/PackageMetadata.js b/src/model/PackageMetadata.js
index 9694528e8..9d08a3b16 100644
--- a/src/model/PackageMetadata.js
+++ b/src/model/PackageMetadata.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PackageMetadata model module.
* @module model/PackageMetadata
- * @version 7.4.0
+ * @version 7.5.0
*/
class PackageMetadata {
/**
diff --git a/src/model/PackageResponse.js b/src/model/PackageResponse.js
index 21cddfb78..45a6ad690 100644
--- a/src/model/PackageResponse.js
+++ b/src/model/PackageResponse.js
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The PackageResponse model module.
* @module model/PackageResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class PackageResponse {
/**
diff --git a/src/model/PackageResponseAllOf.js b/src/model/PackageResponseAllOf.js
index a0c55d617..ef1a3f5eb 100644
--- a/src/model/PackageResponseAllOf.js
+++ b/src/model/PackageResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PackageResponseAllOf model module.
* @module model/PackageResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class PackageResponseAllOf {
/**
diff --git a/src/model/Pagination.js b/src/model/Pagination.js
index 4fceaed8c..22e455767 100644
--- a/src/model/Pagination.js
+++ b/src/model/Pagination.js
@@ -17,7 +17,7 @@ import PaginationMeta from './PaginationMeta';
/**
* The Pagination model module.
* @module model/Pagination
- * @version 7.4.0
+ * @version 7.5.0
*/
class Pagination {
/**
diff --git a/src/model/PaginationCursorMeta.js b/src/model/PaginationCursorMeta.js
index aa869dd63..5352153bb 100644
--- a/src/model/PaginationCursorMeta.js
+++ b/src/model/PaginationCursorMeta.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PaginationCursorMeta model module.
* @module model/PaginationCursorMeta
- * @version 7.4.0
+ * @version 7.5.0
*/
class PaginationCursorMeta {
/**
diff --git a/src/model/PaginationLinks.js b/src/model/PaginationLinks.js
index b526c45a3..f3e067748 100644
--- a/src/model/PaginationLinks.js
+++ b/src/model/PaginationLinks.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PaginationLinks model module.
* @module model/PaginationLinks
- * @version 7.4.0
+ * @version 7.5.0
*/
class PaginationLinks {
/**
diff --git a/src/model/PaginationMeta.js b/src/model/PaginationMeta.js
index 6bc26d0eb..93622ce48 100644
--- a/src/model/PaginationMeta.js
+++ b/src/model/PaginationMeta.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PaginationMeta model module.
* @module model/PaginationMeta
- * @version 7.4.0
+ * @version 7.5.0
*/
class PaginationMeta {
/**
diff --git a/src/model/PlatformDdosDataItems.js b/src/model/PlatformDdosDataItems.js
index 11c216e97..6b0e1b7d6 100644
--- a/src/model/PlatformDdosDataItems.js
+++ b/src/model/PlatformDdosDataItems.js
@@ -16,7 +16,7 @@ import Values from './Values';
/**
* The PlatformDdosDataItems model module.
* @module model/PlatformDdosDataItems
- * @version 7.4.0
+ * @version 7.5.0
*/
class PlatformDdosDataItems {
/**
diff --git a/src/model/PlatformDdosEntry.js b/src/model/PlatformDdosEntry.js
index 5f8a4a74d..76fce1b2e 100644
--- a/src/model/PlatformDdosEntry.js
+++ b/src/model/PlatformDdosEntry.js
@@ -16,7 +16,7 @@ import ValuesDdos from './ValuesDdos';
/**
* The PlatformDdosEntry model module.
* @module model/PlatformDdosEntry
- * @version 7.4.0
+ * @version 7.5.0
*/
class PlatformDdosEntry {
/**
diff --git a/src/model/PlatformDdosResponse.js b/src/model/PlatformDdosResponse.js
index cedfaf25a..509706c40 100644
--- a/src/model/PlatformDdosResponse.js
+++ b/src/model/PlatformDdosResponse.js
@@ -19,7 +19,7 @@ import PlatformDdosResponseAllOf from './PlatformDdosResponseAllOf';
/**
* The PlatformDdosResponse model module.
* @module model/PlatformDdosResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class PlatformDdosResponse {
/**
diff --git a/src/model/PlatformDdosResponseAllOf.js b/src/model/PlatformDdosResponseAllOf.js
index cf4c04c05..0f648a6e9 100644
--- a/src/model/PlatformDdosResponseAllOf.js
+++ b/src/model/PlatformDdosResponseAllOf.js
@@ -16,7 +16,7 @@ import PlatformDdosEntry from './PlatformDdosEntry';
/**
* The PlatformDdosResponseAllOf model module.
* @module model/PlatformDdosResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class PlatformDdosResponseAllOf {
/**
diff --git a/src/model/PoolAdditional.js b/src/model/PoolAdditional.js
index 897d722a4..07a1f387a 100644
--- a/src/model/PoolAdditional.js
+++ b/src/model/PoolAdditional.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolAdditional model module.
* @module model/PoolAdditional
- * @version 7.4.0
+ * @version 7.5.0
*/
class PoolAdditional {
/**
diff --git a/src/model/PoolResponse.js b/src/model/PoolResponse.js
index bd5288a48..7812ee32b 100644
--- a/src/model/PoolResponse.js
+++ b/src/model/PoolResponse.js
@@ -21,7 +21,7 @@ import TlsCommonResponse from './TlsCommonResponse';
/**
* The PoolResponse model module.
* @module model/PoolResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class PoolResponse {
/**
diff --git a/src/model/PoolResponseAllOf.js b/src/model/PoolResponseAllOf.js
index 44a8e7127..5ff8ca2d7 100644
--- a/src/model/PoolResponseAllOf.js
+++ b/src/model/PoolResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolResponseAllOf model module.
* @module model/PoolResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class PoolResponseAllOf {
/**
diff --git a/src/model/PoolResponseCommon.js b/src/model/PoolResponseCommon.js
index 3ff520c5a..c41c6d3d7 100644
--- a/src/model/PoolResponseCommon.js
+++ b/src/model/PoolResponseCommon.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolResponseCommon model module.
* @module model/PoolResponseCommon
- * @version 7.4.0
+ * @version 7.5.0
*/
class PoolResponseCommon {
/**
diff --git a/src/model/PoolResponsePost.js b/src/model/PoolResponsePost.js
index 5a0209de5..aeee8b071 100644
--- a/src/model/PoolResponsePost.js
+++ b/src/model/PoolResponsePost.js
@@ -21,7 +21,7 @@ import TlsCommonResponse from './TlsCommonResponse';
/**
* The PoolResponsePost model module.
* @module model/PoolResponsePost
- * @version 7.4.0
+ * @version 7.5.0
*/
class PoolResponsePost {
/**
diff --git a/src/model/PoolResponsePostAllOf.js b/src/model/PoolResponsePostAllOf.js
index 9b17a0473..21699a24b 100644
--- a/src/model/PoolResponsePostAllOf.js
+++ b/src/model/PoolResponsePostAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolResponsePostAllOf model module.
* @module model/PoolResponsePostAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class PoolResponsePostAllOf {
/**
diff --git a/src/model/Pop.js b/src/model/Pop.js
index 17a284100..023a9665f 100644
--- a/src/model/Pop.js
+++ b/src/model/Pop.js
@@ -16,7 +16,7 @@ import PopCoordinates from './PopCoordinates';
/**
* The Pop model module.
* @module model/Pop
- * @version 7.4.0
+ * @version 7.5.0
*/
class Pop {
/**
diff --git a/src/model/PopCoordinates.js b/src/model/PopCoordinates.js
index 00bcc2d73..afdb3d445 100644
--- a/src/model/PopCoordinates.js
+++ b/src/model/PopCoordinates.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PopCoordinates model module.
* @module model/PopCoordinates
- * @version 7.4.0
+ * @version 7.5.0
*/
class PopCoordinates {
/**
diff --git a/src/model/PublicIpList.js b/src/model/PublicIpList.js
index 358e666c8..241efc44b 100644
--- a/src/model/PublicIpList.js
+++ b/src/model/PublicIpList.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PublicIpList model module.
* @module model/PublicIpList
- * @version 7.4.0
+ * @version 7.5.0
*/
class PublicIpList {
/**
diff --git a/src/model/PublishItem.js b/src/model/PublishItem.js
index 247a3e15b..8a9d65ff2 100644
--- a/src/model/PublishItem.js
+++ b/src/model/PublishItem.js
@@ -16,7 +16,7 @@ import PublishItemFormats from './PublishItemFormats';
/**
* The PublishItem model module.
* @module model/PublishItem
- * @version 7.4.0
+ * @version 7.5.0
*/
class PublishItem {
/**
diff --git a/src/model/PublishItemFormats.js b/src/model/PublishItemFormats.js
index c9bf747ca..45a2db1ef 100644
--- a/src/model/PublishItemFormats.js
+++ b/src/model/PublishItemFormats.js
@@ -18,7 +18,7 @@ import WsMessageFormat from './WsMessageFormat';
/**
* The PublishItemFormats model module.
* @module model/PublishItemFormats
- * @version 7.4.0
+ * @version 7.5.0
*/
class PublishItemFormats {
/**
diff --git a/src/model/PublishRequest.js b/src/model/PublishRequest.js
index 05faf5f48..4ba07f44a 100644
--- a/src/model/PublishRequest.js
+++ b/src/model/PublishRequest.js
@@ -16,7 +16,7 @@ import PublishItem from './PublishItem';
/**
* The PublishRequest model module.
* @module model/PublishRequest
- * @version 7.4.0
+ * @version 7.5.0
*/
class PublishRequest {
/**
diff --git a/src/model/PurgeKeys.js b/src/model/PurgeKeys.js
index 4355f7db8..2b9e0dbf6 100644
--- a/src/model/PurgeKeys.js
+++ b/src/model/PurgeKeys.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PurgeKeys model module.
* @module model/PurgeKeys
- * @version 7.4.0
+ * @version 7.5.0
*/
class PurgeKeys {
/**
diff --git a/src/model/PurgeResponse.js b/src/model/PurgeResponse.js
index bb0e2eff6..73d4db150 100644
--- a/src/model/PurgeResponse.js
+++ b/src/model/PurgeResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PurgeResponse model module.
* @module model/PurgeResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class PurgeResponse {
/**
diff --git a/src/model/RateLimiter.js b/src/model/RateLimiter.js
index 9189cc431..92f36d8f1 100644
--- a/src/model/RateLimiter.js
+++ b/src/model/RateLimiter.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RateLimiter model module.
* @module model/RateLimiter
- * @version 7.4.0
+ * @version 7.5.0
*/
class RateLimiter {
/**
diff --git a/src/model/RateLimiterResponse.js b/src/model/RateLimiterResponse.js
index dd4d11573..a83354409 100644
--- a/src/model/RateLimiterResponse.js
+++ b/src/model/RateLimiterResponse.js
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The RateLimiterResponse model module.
* @module model/RateLimiterResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class RateLimiterResponse {
/**
diff --git a/src/model/RateLimiterResponseAllOf.js b/src/model/RateLimiterResponseAllOf.js
index d98835c17..03258e52e 100644
--- a/src/model/RateLimiterResponseAllOf.js
+++ b/src/model/RateLimiterResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RateLimiterResponseAllOf model module.
* @module model/RateLimiterResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class RateLimiterResponseAllOf {
/**
diff --git a/src/model/ReadOnlyCustomerId.js b/src/model/ReadOnlyCustomerId.js
index 99e4a151d..d3298e635 100644
--- a/src/model/ReadOnlyCustomerId.js
+++ b/src/model/ReadOnlyCustomerId.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyCustomerId model module.
* @module model/ReadOnlyCustomerId
- * @version 7.4.0
+ * @version 7.5.0
*/
class ReadOnlyCustomerId {
/**
diff --git a/src/model/ReadOnlyId.js b/src/model/ReadOnlyId.js
index b1b1c1b8d..7dda58242 100644
--- a/src/model/ReadOnlyId.js
+++ b/src/model/ReadOnlyId.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyId model module.
* @module model/ReadOnlyId
- * @version 7.4.0
+ * @version 7.5.0
*/
class ReadOnlyId {
/**
diff --git a/src/model/ReadOnlyServiceId.js b/src/model/ReadOnlyServiceId.js
index 464bc05a2..9b12f1113 100644
--- a/src/model/ReadOnlyServiceId.js
+++ b/src/model/ReadOnlyServiceId.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyServiceId model module.
* @module model/ReadOnlyServiceId
- * @version 7.4.0
+ * @version 7.5.0
*/
class ReadOnlyServiceId {
/**
diff --git a/src/model/ReadOnlyUserId.js b/src/model/ReadOnlyUserId.js
index 517bd5f5e..a835ebb5a 100644
--- a/src/model/ReadOnlyUserId.js
+++ b/src/model/ReadOnlyUserId.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyUserId model module.
* @module model/ReadOnlyUserId
- * @version 7.4.0
+ * @version 7.5.0
*/
class ReadOnlyUserId {
/**
diff --git a/src/model/ReadOnlyVersion.js b/src/model/ReadOnlyVersion.js
index 57def8840..deb307507 100644
--- a/src/model/ReadOnlyVersion.js
+++ b/src/model/ReadOnlyVersion.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyVersion model module.
* @module model/ReadOnlyVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class ReadOnlyVersion {
/**
diff --git a/src/model/Realtime.js b/src/model/Realtime.js
index 23a6dfa68..e893428f0 100644
--- a/src/model/Realtime.js
+++ b/src/model/Realtime.js
@@ -16,7 +16,7 @@ import RealtimeEntry from './RealtimeEntry';
/**
* The Realtime model module.
* @module model/Realtime
- * @version 7.4.0
+ * @version 7.5.0
*/
class Realtime {
/**
diff --git a/src/model/RealtimeEntry.js b/src/model/RealtimeEntry.js
index 270211646..3067208dc 100644
--- a/src/model/RealtimeEntry.js
+++ b/src/model/RealtimeEntry.js
@@ -18,7 +18,7 @@ import RealtimeMeasurements from './RealtimeMeasurements';
/**
* The RealtimeEntry model module.
* @module model/RealtimeEntry
- * @version 7.4.0
+ * @version 7.5.0
*/
class RealtimeEntry {
/**
diff --git a/src/model/RealtimeEntryAggregated.js b/src/model/RealtimeEntryAggregated.js
index a64990d66..295570315 100644
--- a/src/model/RealtimeEntryAggregated.js
+++ b/src/model/RealtimeEntryAggregated.js
@@ -16,7 +16,7 @@ import RealtimeMeasurements from './RealtimeMeasurements';
/**
* The RealtimeEntryAggregated model module.
* @module model/RealtimeEntryAggregated
- * @version 7.4.0
+ * @version 7.5.0
*/
class RealtimeEntryAggregated {
/**
diff --git a/src/model/RealtimeEntryRecorded.js b/src/model/RealtimeEntryRecorded.js
index 1a6690ea7..8a0f5b38b 100644
--- a/src/model/RealtimeEntryRecorded.js
+++ b/src/model/RealtimeEntryRecorded.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RealtimeEntryRecorded model module.
* @module model/RealtimeEntryRecorded
- * @version 7.4.0
+ * @version 7.5.0
*/
class RealtimeEntryRecorded {
/**
diff --git a/src/model/RealtimeMeasurements.js b/src/model/RealtimeMeasurements.js
index ae91cc738..d25bfdd08 100644
--- a/src/model/RealtimeMeasurements.js
+++ b/src/model/RealtimeMeasurements.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RealtimeMeasurements model module.
* @module model/RealtimeMeasurements
- * @version 7.4.0
+ * @version 7.5.0
*/
class RealtimeMeasurements {
/**
diff --git a/src/model/RecordedTimestamp.js b/src/model/RecordedTimestamp.js
index 7c90695fb..b8f1de14c 100644
--- a/src/model/RecordedTimestamp.js
+++ b/src/model/RecordedTimestamp.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RecordedTimestamp model module.
* @module model/RecordedTimestamp
- * @version 7.4.0
+ * @version 7.5.0
*/
class RecordedTimestamp {
/**
diff --git a/src/model/RelationshipCommonName.js b/src/model/RelationshipCommonName.js
index 56e160906..d55b344ee 100644
--- a/src/model/RelationshipCommonName.js
+++ b/src/model/RelationshipCommonName.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDomain from './RelationshipMemberTlsDomain';
/**
* The RelationshipCommonName model module.
* @module model/RelationshipCommonName
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipCommonName {
/**
diff --git a/src/model/RelationshipCustomer.js b/src/model/RelationshipCustomer.js
index 2d5e8191e..6b5b632b9 100644
--- a/src/model/RelationshipCustomer.js
+++ b/src/model/RelationshipCustomer.js
@@ -16,7 +16,7 @@ import RelationshipCustomerCustomer from './RelationshipCustomerCustomer';
/**
* The RelationshipCustomer model module.
* @module model/RelationshipCustomer
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipCustomer {
/**
diff --git a/src/model/RelationshipCustomerCustomer.js b/src/model/RelationshipCustomerCustomer.js
index 9bef58a54..692518487 100644
--- a/src/model/RelationshipCustomerCustomer.js
+++ b/src/model/RelationshipCustomerCustomer.js
@@ -16,7 +16,7 @@ import RelationshipMemberCustomer from './RelationshipMemberCustomer';
/**
* The RelationshipCustomerCustomer model module.
* @module model/RelationshipCustomerCustomer
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipCustomerCustomer {
/**
diff --git a/src/model/RelationshipMemberCustomer.js b/src/model/RelationshipMemberCustomer.js
index c6c38bf12..68b69dcbc 100644
--- a/src/model/RelationshipMemberCustomer.js
+++ b/src/model/RelationshipMemberCustomer.js
@@ -16,7 +16,7 @@ import TypeCustomer from './TypeCustomer';
/**
* The RelationshipMemberCustomer model module.
* @module model/RelationshipMemberCustomer
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberCustomer {
/**
diff --git a/src/model/RelationshipMemberMutualAuthentication.js b/src/model/RelationshipMemberMutualAuthentication.js
index 1a6a6887f..f494d5923 100644
--- a/src/model/RelationshipMemberMutualAuthentication.js
+++ b/src/model/RelationshipMemberMutualAuthentication.js
@@ -16,7 +16,7 @@ import TypeMutualAuthentication from './TypeMutualAuthentication';
/**
* The RelationshipMemberMutualAuthentication model module.
* @module model/RelationshipMemberMutualAuthentication
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberMutualAuthentication {
/**
diff --git a/src/model/RelationshipMemberService.js b/src/model/RelationshipMemberService.js
index be99fb638..daa141827 100644
--- a/src/model/RelationshipMemberService.js
+++ b/src/model/RelationshipMemberService.js
@@ -16,7 +16,7 @@ import TypeService from './TypeService';
/**
* The RelationshipMemberService model module.
* @module model/RelationshipMemberService
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberService {
/**
diff --git a/src/model/RelationshipMemberServiceInvitation.js b/src/model/RelationshipMemberServiceInvitation.js
index b52a8287f..8fe310064 100644
--- a/src/model/RelationshipMemberServiceInvitation.js
+++ b/src/model/RelationshipMemberServiceInvitation.js
@@ -16,7 +16,7 @@ import TypeServiceInvitation from './TypeServiceInvitation';
/**
* The RelationshipMemberServiceInvitation model module.
* @module model/RelationshipMemberServiceInvitation
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberServiceInvitation {
/**
diff --git a/src/model/RelationshipMemberTlsActivation.js b/src/model/RelationshipMemberTlsActivation.js
index c9c707664..1daca14a7 100644
--- a/src/model/RelationshipMemberTlsActivation.js
+++ b/src/model/RelationshipMemberTlsActivation.js
@@ -16,7 +16,7 @@ import TypeTlsActivation from './TypeTlsActivation';
/**
* The RelationshipMemberTlsActivation model module.
* @module model/RelationshipMemberTlsActivation
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsActivation {
/**
diff --git a/src/model/RelationshipMemberTlsBulkCertificate.js b/src/model/RelationshipMemberTlsBulkCertificate.js
index a500de3ae..3ff8614d4 100644
--- a/src/model/RelationshipMemberTlsBulkCertificate.js
+++ b/src/model/RelationshipMemberTlsBulkCertificate.js
@@ -16,7 +16,7 @@ import TypeTlsBulkCertificate from './TypeTlsBulkCertificate';
/**
* The RelationshipMemberTlsBulkCertificate model module.
* @module model/RelationshipMemberTlsBulkCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipMemberTlsCertificate.js b/src/model/RelationshipMemberTlsCertificate.js
index 12c4f36a0..20d58d98a 100644
--- a/src/model/RelationshipMemberTlsCertificate.js
+++ b/src/model/RelationshipMemberTlsCertificate.js
@@ -16,7 +16,7 @@ import TypeTlsCertificate from './TypeTlsCertificate';
/**
* The RelationshipMemberTlsCertificate model module.
* @module model/RelationshipMemberTlsCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsCertificate {
/**
diff --git a/src/model/RelationshipMemberTlsConfiguration.js b/src/model/RelationshipMemberTlsConfiguration.js
index 37c1263d7..808394bd8 100644
--- a/src/model/RelationshipMemberTlsConfiguration.js
+++ b/src/model/RelationshipMemberTlsConfiguration.js
@@ -16,7 +16,7 @@ import TypeTlsConfiguration from './TypeTlsConfiguration';
/**
* The RelationshipMemberTlsConfiguration model module.
* @module model/RelationshipMemberTlsConfiguration
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsConfiguration {
/**
diff --git a/src/model/RelationshipMemberTlsDnsRecord.js b/src/model/RelationshipMemberTlsDnsRecord.js
index 158677d2b..a342427b0 100644
--- a/src/model/RelationshipMemberTlsDnsRecord.js
+++ b/src/model/RelationshipMemberTlsDnsRecord.js
@@ -16,7 +16,7 @@ import TypeTlsDnsRecord from './TypeTlsDnsRecord';
/**
* The RelationshipMemberTlsDnsRecord model module.
* @module model/RelationshipMemberTlsDnsRecord
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsDnsRecord {
/**
diff --git a/src/model/RelationshipMemberTlsDomain.js b/src/model/RelationshipMemberTlsDomain.js
index e9e7efc95..10d42cf32 100644
--- a/src/model/RelationshipMemberTlsDomain.js
+++ b/src/model/RelationshipMemberTlsDomain.js
@@ -16,7 +16,7 @@ import TypeTlsDomain from './TypeTlsDomain';
/**
* The RelationshipMemberTlsDomain model module.
* @module model/RelationshipMemberTlsDomain
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsDomain {
/**
diff --git a/src/model/RelationshipMemberTlsPrivateKey.js b/src/model/RelationshipMemberTlsPrivateKey.js
index 264a79f28..b3d99ce25 100644
--- a/src/model/RelationshipMemberTlsPrivateKey.js
+++ b/src/model/RelationshipMemberTlsPrivateKey.js
@@ -16,7 +16,7 @@ import TypeTlsPrivateKey from './TypeTlsPrivateKey';
/**
* The RelationshipMemberTlsPrivateKey model module.
* @module model/RelationshipMemberTlsPrivateKey
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsPrivateKey {
/**
diff --git a/src/model/RelationshipMemberTlsSubscription.js b/src/model/RelationshipMemberTlsSubscription.js
index a7ace58b2..9da773547 100644
--- a/src/model/RelationshipMemberTlsSubscription.js
+++ b/src/model/RelationshipMemberTlsSubscription.js
@@ -16,7 +16,7 @@ import TypeTlsSubscription from './TypeTlsSubscription';
/**
* The RelationshipMemberTlsSubscription model module.
* @module model/RelationshipMemberTlsSubscription
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberTlsSubscription {
/**
diff --git a/src/model/RelationshipMemberWafActiveRule.js b/src/model/RelationshipMemberWafActiveRule.js
index e04bf2625..30e0b784d 100644
--- a/src/model/RelationshipMemberWafActiveRule.js
+++ b/src/model/RelationshipMemberWafActiveRule.js
@@ -16,7 +16,7 @@ import TypeWafActiveRule from './TypeWafActiveRule';
/**
* The RelationshipMemberWafActiveRule model module.
* @module model/RelationshipMemberWafActiveRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberWafActiveRule {
/**
diff --git a/src/model/RelationshipMemberWafFirewall.js b/src/model/RelationshipMemberWafFirewall.js
index a35a5ff11..4d6fd0416 100644
--- a/src/model/RelationshipMemberWafFirewall.js
+++ b/src/model/RelationshipMemberWafFirewall.js
@@ -16,7 +16,7 @@ import TypeWafFirewall from './TypeWafFirewall';
/**
* The RelationshipMemberWafFirewall model module.
* @module model/RelationshipMemberWafFirewall
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberWafFirewall {
/**
diff --git a/src/model/RelationshipMemberWafFirewallVersion.js b/src/model/RelationshipMemberWafFirewallVersion.js
index e415f0c4d..3edecc7a6 100644
--- a/src/model/RelationshipMemberWafFirewallVersion.js
+++ b/src/model/RelationshipMemberWafFirewallVersion.js
@@ -16,7 +16,7 @@ import TypeWafFirewallVersion from './TypeWafFirewallVersion';
/**
* The RelationshipMemberWafFirewallVersion model module.
* @module model/RelationshipMemberWafFirewallVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberWafFirewallVersion {
/**
diff --git a/src/model/RelationshipMemberWafRule.js b/src/model/RelationshipMemberWafRule.js
index 7129eaef5..8ca64a04e 100644
--- a/src/model/RelationshipMemberWafRule.js
+++ b/src/model/RelationshipMemberWafRule.js
@@ -16,7 +16,7 @@ import TypeWafRule from './TypeWafRule';
/**
* The RelationshipMemberWafRule model module.
* @module model/RelationshipMemberWafRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberWafRule {
/**
diff --git a/src/model/RelationshipMemberWafRuleRevision.js b/src/model/RelationshipMemberWafRuleRevision.js
index fcacf23b8..0bcbc30a6 100644
--- a/src/model/RelationshipMemberWafRuleRevision.js
+++ b/src/model/RelationshipMemberWafRuleRevision.js
@@ -16,7 +16,7 @@ import TypeWafRuleRevision from './TypeWafRuleRevision';
/**
* The RelationshipMemberWafRuleRevision model module.
* @module model/RelationshipMemberWafRuleRevision
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberWafRuleRevision {
/**
diff --git a/src/model/RelationshipMemberWafTag.js b/src/model/RelationshipMemberWafTag.js
index 5bee878b3..2b6a46fd8 100644
--- a/src/model/RelationshipMemberWafTag.js
+++ b/src/model/RelationshipMemberWafTag.js
@@ -16,7 +16,7 @@ import TypeWafTag from './TypeWafTag';
/**
* The RelationshipMemberWafTag model module.
* @module model/RelationshipMemberWafTag
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMemberWafTag {
/**
diff --git a/src/model/RelationshipMutualAuthentication.js b/src/model/RelationshipMutualAuthentication.js
index fd649cbad..9e64545fc 100644
--- a/src/model/RelationshipMutualAuthentication.js
+++ b/src/model/RelationshipMutualAuthentication.js
@@ -16,7 +16,7 @@ import RelationshipMutualAuthenticationMutualAuthentication from './Relationship
/**
* The RelationshipMutualAuthentication model module.
* @module model/RelationshipMutualAuthentication
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMutualAuthentication {
/**
diff --git a/src/model/RelationshipMutualAuthenticationMutualAuthentication.js b/src/model/RelationshipMutualAuthenticationMutualAuthentication.js
index f5f8085ab..cce26a858 100644
--- a/src/model/RelationshipMutualAuthenticationMutualAuthentication.js
+++ b/src/model/RelationshipMutualAuthenticationMutualAuthentication.js
@@ -16,7 +16,7 @@ import RelationshipMemberMutualAuthentication from './RelationshipMemberMutualAu
/**
* The RelationshipMutualAuthenticationMutualAuthentication model module.
* @module model/RelationshipMutualAuthenticationMutualAuthentication
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMutualAuthenticationMutualAuthentication {
/**
diff --git a/src/model/RelationshipMutualAuthentications.js b/src/model/RelationshipMutualAuthentications.js
index de96be7a6..45cbf87d8 100644
--- a/src/model/RelationshipMutualAuthentications.js
+++ b/src/model/RelationshipMutualAuthentications.js
@@ -16,7 +16,7 @@ import RelationshipMutualAuthenticationsMutualAuthentications from './Relationsh
/**
* The RelationshipMutualAuthentications model module.
* @module model/RelationshipMutualAuthentications
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMutualAuthentications {
/**
diff --git a/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js b/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js
index e7c7da554..85377d9e8 100644
--- a/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js
+++ b/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js
@@ -16,7 +16,7 @@ import RelationshipMemberMutualAuthentication from './RelationshipMemberMutualAu
/**
* The RelationshipMutualAuthenticationsMutualAuthentications model module.
* @module model/RelationshipMutualAuthenticationsMutualAuthentications
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipMutualAuthenticationsMutualAuthentications {
/**
diff --git a/src/model/RelationshipService.js b/src/model/RelationshipService.js
index 9f691a1d7..673b6c3a8 100644
--- a/src/model/RelationshipService.js
+++ b/src/model/RelationshipService.js
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The RelationshipService model module.
* @module model/RelationshipService
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipService {
/**
diff --git a/src/model/RelationshipServiceInvitations.js b/src/model/RelationshipServiceInvitations.js
index 86a4b8782..ecd6bca9b 100644
--- a/src/model/RelationshipServiceInvitations.js
+++ b/src/model/RelationshipServiceInvitations.js
@@ -16,7 +16,7 @@ import RelationshipServiceInvitationsServiceInvitations from './RelationshipServ
/**
* The RelationshipServiceInvitations model module.
* @module model/RelationshipServiceInvitations
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipServiceInvitations {
/**
diff --git a/src/model/RelationshipServiceInvitationsCreate.js b/src/model/RelationshipServiceInvitationsCreate.js
index c60ccb202..0c5d96279 100644
--- a/src/model/RelationshipServiceInvitationsCreate.js
+++ b/src/model/RelationshipServiceInvitationsCreate.js
@@ -16,7 +16,7 @@ import RelationshipServiceInvitationsCreateServiceInvitations from './Relationsh
/**
* The RelationshipServiceInvitationsCreate model module.
* @module model/RelationshipServiceInvitationsCreate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipServiceInvitationsCreate {
/**
diff --git a/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js b/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js
index 69c72e051..ced1e1335 100644
--- a/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js
+++ b/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js
@@ -16,7 +16,7 @@ import ServiceInvitation from './ServiceInvitation';
/**
* The RelationshipServiceInvitationsCreateServiceInvitations model module.
* @module model/RelationshipServiceInvitationsCreateServiceInvitations
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipServiceInvitationsCreateServiceInvitations {
/**
diff --git a/src/model/RelationshipServiceInvitationsServiceInvitations.js b/src/model/RelationshipServiceInvitationsServiceInvitations.js
index 039167482..e5c5865cc 100644
--- a/src/model/RelationshipServiceInvitationsServiceInvitations.js
+++ b/src/model/RelationshipServiceInvitationsServiceInvitations.js
@@ -16,7 +16,7 @@ import RelationshipMemberServiceInvitation from './RelationshipMemberServiceInvi
/**
* The RelationshipServiceInvitationsServiceInvitations model module.
* @module model/RelationshipServiceInvitationsServiceInvitations
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipServiceInvitationsServiceInvitations {
/**
diff --git a/src/model/RelationshipServices.js b/src/model/RelationshipServices.js
index addc7da58..e3e9305db 100644
--- a/src/model/RelationshipServices.js
+++ b/src/model/RelationshipServices.js
@@ -16,7 +16,7 @@ import RelationshipServicesServices from './RelationshipServicesServices';
/**
* The RelationshipServices model module.
* @module model/RelationshipServices
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipServices {
/**
diff --git a/src/model/RelationshipServicesServices.js b/src/model/RelationshipServicesServices.js
index b8375af8d..c3e5f16a9 100644
--- a/src/model/RelationshipServicesServices.js
+++ b/src/model/RelationshipServicesServices.js
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The RelationshipServicesServices model module.
* @module model/RelationshipServicesServices
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipServicesServices {
/**
diff --git a/src/model/RelationshipTlsActivation.js b/src/model/RelationshipTlsActivation.js
index fa88aaa1c..fe3355c55 100644
--- a/src/model/RelationshipTlsActivation.js
+++ b/src/model/RelationshipTlsActivation.js
@@ -16,7 +16,7 @@ import RelationshipTlsActivationTlsActivation from './RelationshipTlsActivationT
/**
* The RelationshipTlsActivation model module.
* @module model/RelationshipTlsActivation
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsActivation {
/**
diff --git a/src/model/RelationshipTlsActivationTlsActivation.js b/src/model/RelationshipTlsActivationTlsActivation.js
index 06b34e310..da7b06b18 100644
--- a/src/model/RelationshipTlsActivationTlsActivation.js
+++ b/src/model/RelationshipTlsActivationTlsActivation.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsActivation from './RelationshipMemberTlsActivation';
/**
* The RelationshipTlsActivationTlsActivation model module.
* @module model/RelationshipTlsActivationTlsActivation
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsActivationTlsActivation {
/**
diff --git a/src/model/RelationshipTlsActivations.js b/src/model/RelationshipTlsActivations.js
index b4da9b107..eb49b11d3 100644
--- a/src/model/RelationshipTlsActivations.js
+++ b/src/model/RelationshipTlsActivations.js
@@ -16,7 +16,7 @@ import RelationshipTlsActivationTlsActivation from './RelationshipTlsActivationT
/**
* The RelationshipTlsActivations model module.
* @module model/RelationshipTlsActivations
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsActivations {
/**
diff --git a/src/model/RelationshipTlsBulkCertificate.js b/src/model/RelationshipTlsBulkCertificate.js
index 89431af0d..bae94b0b4 100644
--- a/src/model/RelationshipTlsBulkCertificate.js
+++ b/src/model/RelationshipTlsBulkCertificate.js
@@ -16,7 +16,7 @@ import RelationshipTlsBulkCertificateTlsBulkCertificate from './RelationshipTlsB
/**
* The RelationshipTlsBulkCertificate model module.
* @module model/RelationshipTlsBulkCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js b/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js
index 291762f46..9e9bdb36b 100644
--- a/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js
+++ b/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsBulkCertificate from './RelationshipMemberTlsBulkCer
/**
* The RelationshipTlsBulkCertificateTlsBulkCertificate model module.
* @module model/RelationshipTlsBulkCertificateTlsBulkCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsBulkCertificateTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipTlsBulkCertificates.js b/src/model/RelationshipTlsBulkCertificates.js
index b2c21747e..3e8b8555a 100644
--- a/src/model/RelationshipTlsBulkCertificates.js
+++ b/src/model/RelationshipTlsBulkCertificates.js
@@ -16,7 +16,7 @@ import RelationshipTlsBulkCertificateTlsBulkCertificate from './RelationshipTlsB
/**
* The RelationshipTlsBulkCertificates model module.
* @module model/RelationshipTlsBulkCertificates
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsBulkCertificates {
/**
diff --git a/src/model/RelationshipTlsCertificate.js b/src/model/RelationshipTlsCertificate.js
index 061772f89..2069de742 100644
--- a/src/model/RelationshipTlsCertificate.js
+++ b/src/model/RelationshipTlsCertificate.js
@@ -16,7 +16,7 @@ import RelationshipTlsCertificateTlsCertificate from './RelationshipTlsCertifica
/**
* The RelationshipTlsCertificate model module.
* @module model/RelationshipTlsCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsCertificate {
/**
diff --git a/src/model/RelationshipTlsCertificateTlsCertificate.js b/src/model/RelationshipTlsCertificateTlsCertificate.js
index 9028af59d..a6676a3d2 100644
--- a/src/model/RelationshipTlsCertificateTlsCertificate.js
+++ b/src/model/RelationshipTlsCertificateTlsCertificate.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsCertificate from './RelationshipMemberTlsCertificate
/**
* The RelationshipTlsCertificateTlsCertificate model module.
* @module model/RelationshipTlsCertificateTlsCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsCertificateTlsCertificate {
/**
diff --git a/src/model/RelationshipTlsCertificates.js b/src/model/RelationshipTlsCertificates.js
index 33c98ce2d..951ef0c44 100644
--- a/src/model/RelationshipTlsCertificates.js
+++ b/src/model/RelationshipTlsCertificates.js
@@ -16,7 +16,7 @@ import RelationshipTlsCertificatesTlsCertificates from './RelationshipTlsCertifi
/**
* The RelationshipTlsCertificates model module.
* @module model/RelationshipTlsCertificates
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsCertificates {
/**
diff --git a/src/model/RelationshipTlsCertificatesTlsCertificates.js b/src/model/RelationshipTlsCertificatesTlsCertificates.js
index f803ea13a..fd828ea27 100644
--- a/src/model/RelationshipTlsCertificatesTlsCertificates.js
+++ b/src/model/RelationshipTlsCertificatesTlsCertificates.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsCertificate from './RelationshipMemberTlsCertificate
/**
* The RelationshipTlsCertificatesTlsCertificates model module.
* @module model/RelationshipTlsCertificatesTlsCertificates
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsCertificatesTlsCertificates {
/**
diff --git a/src/model/RelationshipTlsConfiguration.js b/src/model/RelationshipTlsConfiguration.js
index be69a83b1..3e5c83f16 100644
--- a/src/model/RelationshipTlsConfiguration.js
+++ b/src/model/RelationshipTlsConfiguration.js
@@ -16,7 +16,7 @@ import RelationshipTlsConfigurationTlsConfiguration from './RelationshipTlsConfi
/**
* The RelationshipTlsConfiguration model module.
* @module model/RelationshipTlsConfiguration
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsConfiguration {
/**
diff --git a/src/model/RelationshipTlsConfigurationForTlsSubscription.js b/src/model/RelationshipTlsConfigurationForTlsSubscription.js
index 628be3dd0..bcf47c728 100644
--- a/src/model/RelationshipTlsConfigurationForTlsSubscription.js
+++ b/src/model/RelationshipTlsConfigurationForTlsSubscription.js
@@ -16,7 +16,7 @@ import RelationshipTlsConfigurationTlsConfiguration from './RelationshipTlsConfi
/**
* The RelationshipTlsConfigurationForTlsSubscription model module.
* @module model/RelationshipTlsConfigurationForTlsSubscription
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsConfigurationForTlsSubscription {
/**
diff --git a/src/model/RelationshipTlsConfigurationTlsConfiguration.js b/src/model/RelationshipTlsConfigurationTlsConfiguration.js
index aecf9d632..23b4149de 100644
--- a/src/model/RelationshipTlsConfigurationTlsConfiguration.js
+++ b/src/model/RelationshipTlsConfigurationTlsConfiguration.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsConfiguration from './RelationshipMemberTlsConfigura
/**
* The RelationshipTlsConfigurationTlsConfiguration model module.
* @module model/RelationshipTlsConfigurationTlsConfiguration
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsConfigurationTlsConfiguration {
/**
diff --git a/src/model/RelationshipTlsConfigurations.js b/src/model/RelationshipTlsConfigurations.js
index 330609cdc..25e829370 100644
--- a/src/model/RelationshipTlsConfigurations.js
+++ b/src/model/RelationshipTlsConfigurations.js
@@ -16,7 +16,7 @@ import RelationshipTlsConfigurationsTlsConfigurations from './RelationshipTlsCon
/**
* The RelationshipTlsConfigurations model module.
* @module model/RelationshipTlsConfigurations
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsConfigurations {
/**
diff --git a/src/model/RelationshipTlsConfigurationsTlsConfigurations.js b/src/model/RelationshipTlsConfigurationsTlsConfigurations.js
index 2110fa9ce..849f67d96 100644
--- a/src/model/RelationshipTlsConfigurationsTlsConfigurations.js
+++ b/src/model/RelationshipTlsConfigurationsTlsConfigurations.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsConfiguration from './RelationshipMemberTlsConfigura
/**
* The RelationshipTlsConfigurationsTlsConfigurations model module.
* @module model/RelationshipTlsConfigurationsTlsConfigurations
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsConfigurationsTlsConfigurations {
/**
diff --git a/src/model/RelationshipTlsDnsRecord.js b/src/model/RelationshipTlsDnsRecord.js
index e66ef7333..c22a61198 100644
--- a/src/model/RelationshipTlsDnsRecord.js
+++ b/src/model/RelationshipTlsDnsRecord.js
@@ -16,7 +16,7 @@ import RelationshipTlsDnsRecordDnsRecord from './RelationshipTlsDnsRecordDnsReco
/**
* The RelationshipTlsDnsRecord model module.
* @module model/RelationshipTlsDnsRecord
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDnsRecord {
/**
diff --git a/src/model/RelationshipTlsDnsRecordDnsRecord.js b/src/model/RelationshipTlsDnsRecordDnsRecord.js
index 3120e4d21..6ad4871e3 100644
--- a/src/model/RelationshipTlsDnsRecordDnsRecord.js
+++ b/src/model/RelationshipTlsDnsRecordDnsRecord.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDnsRecord from './RelationshipMemberTlsDnsRecord';
/**
* The RelationshipTlsDnsRecordDnsRecord model module.
* @module model/RelationshipTlsDnsRecordDnsRecord
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDnsRecordDnsRecord {
/**
diff --git a/src/model/RelationshipTlsDnsRecords.js b/src/model/RelationshipTlsDnsRecords.js
index 4de2d3900..14b54db6d 100644
--- a/src/model/RelationshipTlsDnsRecords.js
+++ b/src/model/RelationshipTlsDnsRecords.js
@@ -16,7 +16,7 @@ import RelationshipTlsDnsRecordDnsRecord from './RelationshipTlsDnsRecordDnsReco
/**
* The RelationshipTlsDnsRecords model module.
* @module model/RelationshipTlsDnsRecords
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDnsRecords {
/**
diff --git a/src/model/RelationshipTlsDomain.js b/src/model/RelationshipTlsDomain.js
index 658e5e577..2c0db582a 100644
--- a/src/model/RelationshipTlsDomain.js
+++ b/src/model/RelationshipTlsDomain.js
@@ -16,7 +16,7 @@ import RelationshipTlsDomainTlsDomain from './RelationshipTlsDomainTlsDomain';
/**
* The RelationshipTlsDomain model module.
* @module model/RelationshipTlsDomain
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDomain {
/**
diff --git a/src/model/RelationshipTlsDomainTlsDomain.js b/src/model/RelationshipTlsDomainTlsDomain.js
index bf0335885..9c9b63d3a 100644
--- a/src/model/RelationshipTlsDomainTlsDomain.js
+++ b/src/model/RelationshipTlsDomainTlsDomain.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDomain from './RelationshipMemberTlsDomain';
/**
* The RelationshipTlsDomainTlsDomain model module.
* @module model/RelationshipTlsDomainTlsDomain
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDomainTlsDomain {
/**
diff --git a/src/model/RelationshipTlsDomains.js b/src/model/RelationshipTlsDomains.js
index 2abee685c..100b6394d 100644
--- a/src/model/RelationshipTlsDomains.js
+++ b/src/model/RelationshipTlsDomains.js
@@ -16,7 +16,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipTlsDomains model module.
* @module model/RelationshipTlsDomains
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDomains {
/**
diff --git a/src/model/RelationshipTlsDomainsTlsDomains.js b/src/model/RelationshipTlsDomainsTlsDomains.js
index 27d9fc40c..3eba61291 100644
--- a/src/model/RelationshipTlsDomainsTlsDomains.js
+++ b/src/model/RelationshipTlsDomainsTlsDomains.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDomain from './RelationshipMemberTlsDomain';
/**
* The RelationshipTlsDomainsTlsDomains model module.
* @module model/RelationshipTlsDomainsTlsDomains
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsDomainsTlsDomains {
/**
diff --git a/src/model/RelationshipTlsPrivateKey.js b/src/model/RelationshipTlsPrivateKey.js
index 75f82f3c2..53dd2279a 100644
--- a/src/model/RelationshipTlsPrivateKey.js
+++ b/src/model/RelationshipTlsPrivateKey.js
@@ -16,7 +16,7 @@ import RelationshipTlsPrivateKeyTlsPrivateKey from './RelationshipTlsPrivateKeyT
/**
* The RelationshipTlsPrivateKey model module.
* @module model/RelationshipTlsPrivateKey
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsPrivateKey {
/**
diff --git a/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js b/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js
index 411de76e7..cacd51a20 100644
--- a/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js
+++ b/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsPrivateKey from './RelationshipMemberTlsPrivateKey';
/**
* The RelationshipTlsPrivateKeyTlsPrivateKey model module.
* @module model/RelationshipTlsPrivateKeyTlsPrivateKey
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsPrivateKeyTlsPrivateKey {
/**
diff --git a/src/model/RelationshipTlsPrivateKeys.js b/src/model/RelationshipTlsPrivateKeys.js
index 778bfdaa0..ac88ca590 100644
--- a/src/model/RelationshipTlsPrivateKeys.js
+++ b/src/model/RelationshipTlsPrivateKeys.js
@@ -16,7 +16,7 @@ import RelationshipTlsPrivateKeysTlsPrivateKeys from './RelationshipTlsPrivateKe
/**
* The RelationshipTlsPrivateKeys model module.
* @module model/RelationshipTlsPrivateKeys
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsPrivateKeys {
/**
diff --git a/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js b/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js
index 3be37d0c1..1d5362ef8 100644
--- a/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js
+++ b/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsPrivateKey from './RelationshipMemberTlsPrivateKey';
/**
* The RelationshipTlsPrivateKeysTlsPrivateKeys model module.
* @module model/RelationshipTlsPrivateKeysTlsPrivateKeys
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsPrivateKeysTlsPrivateKeys {
/**
diff --git a/src/model/RelationshipTlsSubscription.js b/src/model/RelationshipTlsSubscription.js
index 408fa9216..f570d0bc2 100644
--- a/src/model/RelationshipTlsSubscription.js
+++ b/src/model/RelationshipTlsSubscription.js
@@ -16,7 +16,7 @@ import RelationshipTlsSubscriptionTlsSubscription from './RelationshipTlsSubscri
/**
* The RelationshipTlsSubscription model module.
* @module model/RelationshipTlsSubscription
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsSubscription {
/**
diff --git a/src/model/RelationshipTlsSubscriptionTlsSubscription.js b/src/model/RelationshipTlsSubscriptionTlsSubscription.js
index f450494ca..978617383 100644
--- a/src/model/RelationshipTlsSubscriptionTlsSubscription.js
+++ b/src/model/RelationshipTlsSubscriptionTlsSubscription.js
@@ -16,7 +16,7 @@ import RelationshipMemberTlsSubscription from './RelationshipMemberTlsSubscripti
/**
* The RelationshipTlsSubscriptionTlsSubscription model module.
* @module model/RelationshipTlsSubscriptionTlsSubscription
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsSubscriptionTlsSubscription {
/**
diff --git a/src/model/RelationshipTlsSubscriptions.js b/src/model/RelationshipTlsSubscriptions.js
index 6508a7d2b..b7c56335f 100644
--- a/src/model/RelationshipTlsSubscriptions.js
+++ b/src/model/RelationshipTlsSubscriptions.js
@@ -16,7 +16,7 @@ import RelationshipTlsSubscriptionTlsSubscription from './RelationshipTlsSubscri
/**
* The RelationshipTlsSubscriptions model module.
* @module model/RelationshipTlsSubscriptions
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipTlsSubscriptions {
/**
diff --git a/src/model/RelationshipUser.js b/src/model/RelationshipUser.js
index e9047ac41..47b242ff4 100644
--- a/src/model/RelationshipUser.js
+++ b/src/model/RelationshipUser.js
@@ -16,7 +16,7 @@ import RelationshipUserUser from './RelationshipUserUser';
/**
* The RelationshipUser model module.
* @module model/RelationshipUser
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipUser {
/**
diff --git a/src/model/RelationshipUserUser.js b/src/model/RelationshipUserUser.js
index eb2b6f87e..8fb6657be 100644
--- a/src/model/RelationshipUserUser.js
+++ b/src/model/RelationshipUserUser.js
@@ -16,7 +16,7 @@ import ServiceAuthorizationDataRelationshipsUserData from './ServiceAuthorizatio
/**
* The RelationshipUserUser model module.
* @module model/RelationshipUserUser
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipUserUser {
/**
diff --git a/src/model/RelationshipWafActiveRules.js b/src/model/RelationshipWafActiveRules.js
index 4b7b3b2a1..ca064be0b 100644
--- a/src/model/RelationshipWafActiveRules.js
+++ b/src/model/RelationshipWafActiveRules.js
@@ -16,7 +16,7 @@ import RelationshipWafActiveRulesWafActiveRules from './RelationshipWafActiveRul
/**
* The RelationshipWafActiveRules model module.
* @module model/RelationshipWafActiveRules
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafActiveRules {
/**
diff --git a/src/model/RelationshipWafActiveRulesWafActiveRules.js b/src/model/RelationshipWafActiveRulesWafActiveRules.js
index 0a49395fc..530d678cc 100644
--- a/src/model/RelationshipWafActiveRulesWafActiveRules.js
+++ b/src/model/RelationshipWafActiveRulesWafActiveRules.js
@@ -16,7 +16,7 @@ import RelationshipMemberWafActiveRule from './RelationshipMemberWafActiveRule';
/**
* The RelationshipWafActiveRulesWafActiveRules model module.
* @module model/RelationshipWafActiveRulesWafActiveRules
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafActiveRulesWafActiveRules {
/**
diff --git a/src/model/RelationshipWafFirewall.js b/src/model/RelationshipWafFirewall.js
index eac924165..5144644de 100644
--- a/src/model/RelationshipWafFirewall.js
+++ b/src/model/RelationshipWafFirewall.js
@@ -16,7 +16,7 @@ import RelationshipWafFirewallWafFirewall from './RelationshipWafFirewallWafFire
/**
* The RelationshipWafFirewall model module.
* @module model/RelationshipWafFirewall
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafFirewall {
/**
diff --git a/src/model/RelationshipWafFirewallVersion.js b/src/model/RelationshipWafFirewallVersion.js
index de5b1413f..ba77c71d6 100644
--- a/src/model/RelationshipWafFirewallVersion.js
+++ b/src/model/RelationshipWafFirewallVersion.js
@@ -16,7 +16,7 @@ import RelationshipWafFirewallVersionWafFirewallVersion from './RelationshipWafF
/**
* The RelationshipWafFirewallVersion model module.
* @module model/RelationshipWafFirewallVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafFirewallVersion {
/**
diff --git a/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js b/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js
index 726d7e266..e558fb0fa 100644
--- a/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js
+++ b/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js
@@ -16,7 +16,7 @@ import RelationshipMemberWafFirewallVersion from './RelationshipMemberWafFirewal
/**
* The RelationshipWafFirewallVersionWafFirewallVersion model module.
* @module model/RelationshipWafFirewallVersionWafFirewallVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafFirewallVersionWafFirewallVersion {
/**
diff --git a/src/model/RelationshipWafFirewallVersions.js b/src/model/RelationshipWafFirewallVersions.js
index b6725604e..f30605ff5 100644
--- a/src/model/RelationshipWafFirewallVersions.js
+++ b/src/model/RelationshipWafFirewallVersions.js
@@ -16,7 +16,7 @@ import RelationshipWafFirewallVersionWafFirewallVersion from './RelationshipWafF
/**
* The RelationshipWafFirewallVersions model module.
* @module model/RelationshipWafFirewallVersions
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafFirewallVersions {
/**
diff --git a/src/model/RelationshipWafFirewallWafFirewall.js b/src/model/RelationshipWafFirewallWafFirewall.js
index 9ca9236ad..2ea96d6be 100644
--- a/src/model/RelationshipWafFirewallWafFirewall.js
+++ b/src/model/RelationshipWafFirewallWafFirewall.js
@@ -16,7 +16,7 @@ import RelationshipMemberWafFirewall from './RelationshipMemberWafFirewall';
/**
* The RelationshipWafFirewallWafFirewall model module.
* @module model/RelationshipWafFirewallWafFirewall
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafFirewallWafFirewall {
/**
diff --git a/src/model/RelationshipWafRule.js b/src/model/RelationshipWafRule.js
index d281f9315..15f0f571b 100644
--- a/src/model/RelationshipWafRule.js
+++ b/src/model/RelationshipWafRule.js
@@ -16,7 +16,7 @@ import RelationshipWafRuleWafRule from './RelationshipWafRuleWafRule';
/**
* The RelationshipWafRule model module.
* @module model/RelationshipWafRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafRule {
/**
diff --git a/src/model/RelationshipWafRuleRevision.js b/src/model/RelationshipWafRuleRevision.js
index f7bab1e49..de743e2a1 100644
--- a/src/model/RelationshipWafRuleRevision.js
+++ b/src/model/RelationshipWafRuleRevision.js
@@ -16,7 +16,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The RelationshipWafRuleRevision model module.
* @module model/RelationshipWafRuleRevision
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafRuleRevision {
/**
diff --git a/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js b/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js
index 3ad38f3b1..e9f68c748 100644
--- a/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js
+++ b/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js
@@ -16,7 +16,7 @@ import RelationshipMemberWafRuleRevision from './RelationshipMemberWafRuleRevisi
/**
* The RelationshipWafRuleRevisionWafRuleRevisions model module.
* @module model/RelationshipWafRuleRevisionWafRuleRevisions
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafRuleRevisionWafRuleRevisions {
/**
diff --git a/src/model/RelationshipWafRuleRevisions.js b/src/model/RelationshipWafRuleRevisions.js
index 072f006ae..7a735e636 100644
--- a/src/model/RelationshipWafRuleRevisions.js
+++ b/src/model/RelationshipWafRuleRevisions.js
@@ -16,7 +16,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The RelationshipWafRuleRevisions model module.
* @module model/RelationshipWafRuleRevisions
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafRuleRevisions {
/**
diff --git a/src/model/RelationshipWafRuleWafRule.js b/src/model/RelationshipWafRuleWafRule.js
index 273d1f034..f4f7d7d0f 100644
--- a/src/model/RelationshipWafRuleWafRule.js
+++ b/src/model/RelationshipWafRuleWafRule.js
@@ -16,7 +16,7 @@ import RelationshipMemberWafRule from './RelationshipMemberWafRule';
/**
* The RelationshipWafRuleWafRule model module.
* @module model/RelationshipWafRuleWafRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafRuleWafRule {
/**
diff --git a/src/model/RelationshipWafRules.js b/src/model/RelationshipWafRules.js
index 073367ad1..b6d2f07c1 100644
--- a/src/model/RelationshipWafRules.js
+++ b/src/model/RelationshipWafRules.js
@@ -16,7 +16,7 @@ import RelationshipWafRuleWafRule from './RelationshipWafRuleWafRule';
/**
* The RelationshipWafRules model module.
* @module model/RelationshipWafRules
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafRules {
/**
diff --git a/src/model/RelationshipWafTags.js b/src/model/RelationshipWafTags.js
index 66a2af053..ac7d15089 100644
--- a/src/model/RelationshipWafTags.js
+++ b/src/model/RelationshipWafTags.js
@@ -16,7 +16,7 @@ import RelationshipWafTagsWafTags from './RelationshipWafTagsWafTags';
/**
* The RelationshipWafTags model module.
* @module model/RelationshipWafTags
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafTags {
/**
diff --git a/src/model/RelationshipWafTagsWafTags.js b/src/model/RelationshipWafTagsWafTags.js
index 9dfe5d6e9..896e0b4fe 100644
--- a/src/model/RelationshipWafTagsWafTags.js
+++ b/src/model/RelationshipWafTagsWafTags.js
@@ -16,7 +16,7 @@ import RelationshipMemberWafTag from './RelationshipMemberWafTag';
/**
* The RelationshipWafTagsWafTags model module.
* @module model/RelationshipWafTagsWafTags
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipWafTagsWafTags {
/**
diff --git a/src/model/RelationshipsForInvitation.js b/src/model/RelationshipsForInvitation.js
index b1d417d7a..6f33a2283 100644
--- a/src/model/RelationshipsForInvitation.js
+++ b/src/model/RelationshipsForInvitation.js
@@ -19,7 +19,7 @@ import RelationshipServiceInvitationsServiceInvitations from './RelationshipServ
/**
* The RelationshipsForInvitation model module.
* @module model/RelationshipsForInvitation
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForInvitation {
/**
diff --git a/src/model/RelationshipsForMutualAuthentication.js b/src/model/RelationshipsForMutualAuthentication.js
index a5a190e42..49d3d6f53 100644
--- a/src/model/RelationshipsForMutualAuthentication.js
+++ b/src/model/RelationshipsForMutualAuthentication.js
@@ -17,7 +17,7 @@ import RelationshipTlsActivations from './RelationshipTlsActivations';
/**
* The RelationshipsForMutualAuthentication model module.
* @module model/RelationshipsForMutualAuthentication
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForMutualAuthentication {
/**
diff --git a/src/model/RelationshipsForStar.js b/src/model/RelationshipsForStar.js
index 4afcd580e..4971e2488 100644
--- a/src/model/RelationshipsForStar.js
+++ b/src/model/RelationshipsForStar.js
@@ -19,7 +19,7 @@ import RelationshipUserUser from './RelationshipUserUser';
/**
* The RelationshipsForStar model module.
* @module model/RelationshipsForStar
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForStar {
/**
diff --git a/src/model/RelationshipsForTlsActivation.js b/src/model/RelationshipsForTlsActivation.js
index 114fd1651..e76bb48d7 100644
--- a/src/model/RelationshipsForTlsActivation.js
+++ b/src/model/RelationshipsForTlsActivation.js
@@ -21,7 +21,7 @@ import RelationshipTlsDomainTlsDomain from './RelationshipTlsDomainTlsDomain';
/**
* The RelationshipsForTlsActivation model module.
* @module model/RelationshipsForTlsActivation
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForTlsActivation {
/**
diff --git a/src/model/RelationshipsForTlsBulkCertificate.js b/src/model/RelationshipsForTlsBulkCertificate.js
index b507e5932..a0b47a06e 100644
--- a/src/model/RelationshipsForTlsBulkCertificate.js
+++ b/src/model/RelationshipsForTlsBulkCertificate.js
@@ -18,7 +18,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipsForTlsBulkCertificate model module.
* @module model/RelationshipsForTlsBulkCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipsForTlsConfiguration.js b/src/model/RelationshipsForTlsConfiguration.js
index c367c8d7d..7e81e4fe3 100644
--- a/src/model/RelationshipsForTlsConfiguration.js
+++ b/src/model/RelationshipsForTlsConfiguration.js
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The RelationshipsForTlsConfiguration model module.
* @module model/RelationshipsForTlsConfiguration
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForTlsConfiguration {
/**
diff --git a/src/model/RelationshipsForTlsDomain.js b/src/model/RelationshipsForTlsDomain.js
index a8ad7f528..031c4b901 100644
--- a/src/model/RelationshipsForTlsDomain.js
+++ b/src/model/RelationshipsForTlsDomain.js
@@ -18,7 +18,7 @@ import RelationshipTlsSubscriptions from './RelationshipTlsSubscriptions';
/**
* The RelationshipsForTlsDomain model module.
* @module model/RelationshipsForTlsDomain
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForTlsDomain {
/**
diff --git a/src/model/RelationshipsForTlsPrivateKey.js b/src/model/RelationshipsForTlsPrivateKey.js
index d5b31948a..86af53824 100644
--- a/src/model/RelationshipsForTlsPrivateKey.js
+++ b/src/model/RelationshipsForTlsPrivateKey.js
@@ -18,7 +18,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipsForTlsPrivateKey model module.
* @module model/RelationshipsForTlsPrivateKey
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForTlsPrivateKey {
/**
diff --git a/src/model/RelationshipsForTlsSubscription.js b/src/model/RelationshipsForTlsSubscription.js
index 09d1b320b..e10ada341 100644
--- a/src/model/RelationshipsForTlsSubscription.js
+++ b/src/model/RelationshipsForTlsSubscription.js
@@ -23,7 +23,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipsForTlsSubscription model module.
* @module model/RelationshipsForTlsSubscription
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForTlsSubscription {
/**
diff --git a/src/model/RelationshipsForWafActiveRule.js b/src/model/RelationshipsForWafActiveRule.js
index 79b08dd34..2d9fe3de7 100644
--- a/src/model/RelationshipsForWafActiveRule.js
+++ b/src/model/RelationshipsForWafActiveRule.js
@@ -19,7 +19,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The RelationshipsForWafActiveRule model module.
* @module model/RelationshipsForWafActiveRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForWafActiveRule {
/**
diff --git a/src/model/RelationshipsForWafExclusion.js b/src/model/RelationshipsForWafExclusion.js
index 403fb4de2..330ad6411 100644
--- a/src/model/RelationshipsForWafExclusion.js
+++ b/src/model/RelationshipsForWafExclusion.js
@@ -19,7 +19,7 @@ import RelationshipWafRules from './RelationshipWafRules';
/**
* The RelationshipsForWafExclusion model module.
* @module model/RelationshipsForWafExclusion
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForWafExclusion {
/**
diff --git a/src/model/RelationshipsForWafFirewallVersion.js b/src/model/RelationshipsForWafFirewallVersion.js
index 205970703..2594483db 100644
--- a/src/model/RelationshipsForWafFirewallVersion.js
+++ b/src/model/RelationshipsForWafFirewallVersion.js
@@ -19,7 +19,7 @@ import RelationshipWafFirewallVersions from './RelationshipWafFirewallVersions';
/**
* The RelationshipsForWafFirewallVersion model module.
* @module model/RelationshipsForWafFirewallVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForWafFirewallVersion {
/**
diff --git a/src/model/RelationshipsForWafRule.js b/src/model/RelationshipsForWafRule.js
index 24e262c17..bb4f05fce 100644
--- a/src/model/RelationshipsForWafRule.js
+++ b/src/model/RelationshipsForWafRule.js
@@ -19,7 +19,7 @@ import RelationshipWafTagsWafTags from './RelationshipWafTagsWafTags';
/**
* The RelationshipsForWafRule model module.
* @module model/RelationshipsForWafRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class RelationshipsForWafRule {
/**
diff --git a/src/model/RequestSettingsAdditional.js b/src/model/RequestSettingsAdditional.js
index 65f6af5e7..751ff5eb9 100644
--- a/src/model/RequestSettingsAdditional.js
+++ b/src/model/RequestSettingsAdditional.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RequestSettingsAdditional model module.
* @module model/RequestSettingsAdditional
- * @version 7.4.0
+ * @version 7.5.0
*/
class RequestSettingsAdditional {
/**
diff --git a/src/model/RequestSettingsResponse.js b/src/model/RequestSettingsResponse.js
index 41c0c096b..333ce7221 100644
--- a/src/model/RequestSettingsResponse.js
+++ b/src/model/RequestSettingsResponse.js
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The RequestSettingsResponse model module.
* @module model/RequestSettingsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class RequestSettingsResponse {
/**
diff --git a/src/model/RequestSettingsResponseAllOf.js b/src/model/RequestSettingsResponseAllOf.js
index 4b2bc59ac..8672a08a5 100644
--- a/src/model/RequestSettingsResponseAllOf.js
+++ b/src/model/RequestSettingsResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RequestSettingsResponseAllOf model module.
* @module model/RequestSettingsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class RequestSettingsResponseAllOf {
/**
diff --git a/src/model/Resource.js b/src/model/Resource.js
index 046a60e4f..b80cf7c0a 100644
--- a/src/model/Resource.js
+++ b/src/model/Resource.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Resource model module.
* @module model/Resource
- * @version 7.4.0
+ * @version 7.5.0
*/
class Resource {
/**
diff --git a/src/model/ResourceResponse.js b/src/model/ResourceResponse.js
index fe1e67456..7ee673086 100644
--- a/src/model/ResourceResponse.js
+++ b/src/model/ResourceResponse.js
@@ -19,7 +19,7 @@ import TypeResource from './TypeResource';
/**
* The ResourceResponse model module.
* @module model/ResourceResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ResourceResponse {
/**
diff --git a/src/model/ResourceResponseAllOf.js b/src/model/ResourceResponseAllOf.js
index 5e81301a6..217dd6263 100644
--- a/src/model/ResourceResponseAllOf.js
+++ b/src/model/ResourceResponseAllOf.js
@@ -16,7 +16,7 @@ import TypeResource from './TypeResource';
/**
* The ResourceResponseAllOf model module.
* @module model/ResourceResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ResourceResponseAllOf {
/**
diff --git a/src/model/ResponseObject.js b/src/model/ResponseObject.js
index 30cfd87a9..286b1fb11 100644
--- a/src/model/ResponseObject.js
+++ b/src/model/ResponseObject.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ResponseObject model module.
* @module model/ResponseObject
- * @version 7.4.0
+ * @version 7.5.0
*/
class ResponseObject {
/**
diff --git a/src/model/ResponseObjectResponse.js b/src/model/ResponseObjectResponse.js
index b5daaec24..de07fe61d 100644
--- a/src/model/ResponseObjectResponse.js
+++ b/src/model/ResponseObjectResponse.js
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The ResponseObjectResponse model module.
* @module model/ResponseObjectResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ResponseObjectResponse {
/**
diff --git a/src/model/Results.js b/src/model/Results.js
index 704da42cc..71c94a5af 100644
--- a/src/model/Results.js
+++ b/src/model/Results.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Results model module.
* @module model/Results
- * @version 7.4.0
+ * @version 7.5.0
*/
class Results {
/**
diff --git a/src/model/SchemasContactResponse.js b/src/model/SchemasContactResponse.js
index 3349b94c6..f3ea6309f 100644
--- a/src/model/SchemasContactResponse.js
+++ b/src/model/SchemasContactResponse.js
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The SchemasContactResponse model module.
* @module model/SchemasContactResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasContactResponse {
/**
diff --git a/src/model/SchemasSnippetResponse.js b/src/model/SchemasSnippetResponse.js
index c47b34ad9..f966889a1 100644
--- a/src/model/SchemasSnippetResponse.js
+++ b/src/model/SchemasSnippetResponse.js
@@ -17,7 +17,7 @@ import Snippet from './Snippet';
/**
* The SchemasSnippetResponse model module.
* @module model/SchemasSnippetResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasSnippetResponse {
/**
diff --git a/src/model/SchemasSnippetResponseCommon.js b/src/model/SchemasSnippetResponseCommon.js
index efb62fb6b..b36733ad6 100644
--- a/src/model/SchemasSnippetResponseCommon.js
+++ b/src/model/SchemasSnippetResponseCommon.js
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The SchemasSnippetResponseCommon model module.
* @module model/SchemasSnippetResponseCommon
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasSnippetResponseCommon {
/**
diff --git a/src/model/SchemasUserResponse.js b/src/model/SchemasUserResponse.js
index 124dfb7d2..7ffa23f84 100644
--- a/src/model/SchemasUserResponse.js
+++ b/src/model/SchemasUserResponse.js
@@ -19,7 +19,7 @@ import User from './User';
/**
* The SchemasUserResponse model module.
* @module model/SchemasUserResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasUserResponse {
/**
diff --git a/src/model/SchemasUserResponseReadOnly.js b/src/model/SchemasUserResponseReadOnly.js
index 4a0879914..80f3db003 100644
--- a/src/model/SchemasUserResponseReadOnly.js
+++ b/src/model/SchemasUserResponseReadOnly.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SchemasUserResponseReadOnly model module.
* @module model/SchemasUserResponseReadOnly
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasUserResponseReadOnly {
/**
diff --git a/src/model/SchemasVclResponse.js b/src/model/SchemasVclResponse.js
index 903c1515c..28a59639d 100644
--- a/src/model/SchemasVclResponse.js
+++ b/src/model/SchemasVclResponse.js
@@ -18,7 +18,7 @@ import Vcl from './Vcl';
/**
* The SchemasVclResponse model module.
* @module model/SchemasVclResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasVclResponse {
/**
diff --git a/src/model/SchemasVersion.js b/src/model/SchemasVersion.js
index c2f3dd72e..58ca7174f 100644
--- a/src/model/SchemasVersion.js
+++ b/src/model/SchemasVersion.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SchemasVersion model module.
* @module model/SchemasVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasVersion {
/**
diff --git a/src/model/SchemasVersionResponse.js b/src/model/SchemasVersionResponse.js
index 8426d6dca..af5bb0142 100644
--- a/src/model/SchemasVersionResponse.js
+++ b/src/model/SchemasVersionResponse.js
@@ -18,7 +18,7 @@ import VersionResponseAllOf from './VersionResponseAllOf';
/**
* The SchemasVersionResponse model module.
* @module model/SchemasVersionResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasVersionResponse {
/**
diff --git a/src/model/SchemasWafFirewallVersion.js b/src/model/SchemasWafFirewallVersion.js
index 4a13e164e..9f0692af0 100644
--- a/src/model/SchemasWafFirewallVersion.js
+++ b/src/model/SchemasWafFirewallVersion.js
@@ -16,7 +16,7 @@ import SchemasWafFirewallVersionData from './SchemasWafFirewallVersionData';
/**
* The SchemasWafFirewallVersion model module.
* @module model/SchemasWafFirewallVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasWafFirewallVersion {
/**
diff --git a/src/model/SchemasWafFirewallVersionData.js b/src/model/SchemasWafFirewallVersionData.js
index a35748a33..5764efd3d 100644
--- a/src/model/SchemasWafFirewallVersionData.js
+++ b/src/model/SchemasWafFirewallVersionData.js
@@ -17,7 +17,7 @@ import WafFirewallVersionDataAttributes from './WafFirewallVersionDataAttributes
/**
* The SchemasWafFirewallVersionData model module.
* @module model/SchemasWafFirewallVersionData
- * @version 7.4.0
+ * @version 7.5.0
*/
class SchemasWafFirewallVersionData {
/**
diff --git a/src/model/Secret.js b/src/model/Secret.js
index 967922bdd..1e64d611f 100644
--- a/src/model/Secret.js
+++ b/src/model/Secret.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Secret model module.
* @module model/Secret
- * @version 7.4.0
+ * @version 7.5.0
*/
class Secret {
/**
diff --git a/src/model/SecretResponse.js b/src/model/SecretResponse.js
index 0261f9cfd..2889a825d 100644
--- a/src/model/SecretResponse.js
+++ b/src/model/SecretResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SecretResponse model module.
* @module model/SecretResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SecretResponse {
/**
diff --git a/src/model/SecretStore.js b/src/model/SecretStore.js
index 9a2552951..3e6ed81e7 100644
--- a/src/model/SecretStore.js
+++ b/src/model/SecretStore.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SecretStore model module.
* @module model/SecretStore
- * @version 7.4.0
+ * @version 7.5.0
*/
class SecretStore {
/**
diff --git a/src/model/SecretStoreResponse.js b/src/model/SecretStoreResponse.js
index 4fefb1a1b..a5098d051 100644
--- a/src/model/SecretStoreResponse.js
+++ b/src/model/SecretStoreResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SecretStoreResponse model module.
* @module model/SecretStoreResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SecretStoreResponse {
/**
diff --git a/src/model/Server.js b/src/model/Server.js
index 21ef3b591..772cb7a21 100644
--- a/src/model/Server.js
+++ b/src/model/Server.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Server model module.
* @module model/Server
- * @version 7.4.0
+ * @version 7.5.0
*/
class Server {
/**
diff --git a/src/model/ServerResponse.js b/src/model/ServerResponse.js
index c71685e0f..982cb3f93 100644
--- a/src/model/ServerResponse.js
+++ b/src/model/ServerResponse.js
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The ServerResponse model module.
* @module model/ServerResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServerResponse {
/**
diff --git a/src/model/ServerResponseAllOf.js b/src/model/ServerResponseAllOf.js
index 69b473871..1f261ca87 100644
--- a/src/model/ServerResponseAllOf.js
+++ b/src/model/ServerResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServerResponseAllOf model module.
* @module model/ServerResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServerResponseAllOf {
/**
diff --git a/src/model/Service.js b/src/model/Service.js
index 123bf380f..2216d31ed 100644
--- a/src/model/Service.js
+++ b/src/model/Service.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Service model module.
* @module model/Service
- * @version 7.4.0
+ * @version 7.5.0
*/
class Service {
/**
diff --git a/src/model/ServiceAuthorization.js b/src/model/ServiceAuthorization.js
index 37a364ab3..e1c478006 100644
--- a/src/model/ServiceAuthorization.js
+++ b/src/model/ServiceAuthorization.js
@@ -16,7 +16,7 @@ import ServiceAuthorizationData from './ServiceAuthorizationData';
/**
* The ServiceAuthorization model module.
* @module model/ServiceAuthorization
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorization {
/**
diff --git a/src/model/ServiceAuthorizationData.js b/src/model/ServiceAuthorizationData.js
index 8f8eddd5a..79c9b0eea 100644
--- a/src/model/ServiceAuthorizationData.js
+++ b/src/model/ServiceAuthorizationData.js
@@ -18,7 +18,7 @@ import TypeServiceAuthorization from './TypeServiceAuthorization';
/**
* The ServiceAuthorizationData model module.
* @module model/ServiceAuthorizationData
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationData {
/**
diff --git a/src/model/ServiceAuthorizationDataAttributes.js b/src/model/ServiceAuthorizationDataAttributes.js
index e81db8bed..15d73bea2 100644
--- a/src/model/ServiceAuthorizationDataAttributes.js
+++ b/src/model/ServiceAuthorizationDataAttributes.js
@@ -16,7 +16,7 @@ import Permission from './Permission';
/**
* The ServiceAuthorizationDataAttributes model module.
* @module model/ServiceAuthorizationDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationDataAttributes {
/**
diff --git a/src/model/ServiceAuthorizationDataRelationships.js b/src/model/ServiceAuthorizationDataRelationships.js
index c18c14301..c7444fa55 100644
--- a/src/model/ServiceAuthorizationDataRelationships.js
+++ b/src/model/ServiceAuthorizationDataRelationships.js
@@ -17,7 +17,7 @@ import ServiceAuthorizationDataRelationshipsUser from './ServiceAuthorizationDat
/**
* The ServiceAuthorizationDataRelationships model module.
* @module model/ServiceAuthorizationDataRelationships
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationDataRelationships {
/**
diff --git a/src/model/ServiceAuthorizationDataRelationshipsUser.js b/src/model/ServiceAuthorizationDataRelationshipsUser.js
index ce2a852ef..5e147d4db 100644
--- a/src/model/ServiceAuthorizationDataRelationshipsUser.js
+++ b/src/model/ServiceAuthorizationDataRelationshipsUser.js
@@ -16,7 +16,7 @@ import ServiceAuthorizationDataRelationshipsUserData from './ServiceAuthorizatio
/**
* The ServiceAuthorizationDataRelationshipsUser model module.
* @module model/ServiceAuthorizationDataRelationshipsUser
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationDataRelationshipsUser {
/**
diff --git a/src/model/ServiceAuthorizationDataRelationshipsUserData.js b/src/model/ServiceAuthorizationDataRelationshipsUserData.js
index f0bc4d741..633787bf6 100644
--- a/src/model/ServiceAuthorizationDataRelationshipsUserData.js
+++ b/src/model/ServiceAuthorizationDataRelationshipsUserData.js
@@ -16,7 +16,7 @@ import TypeUser from './TypeUser';
/**
* The ServiceAuthorizationDataRelationshipsUserData model module.
* @module model/ServiceAuthorizationDataRelationshipsUserData
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationDataRelationshipsUserData {
/**
diff --git a/src/model/ServiceAuthorizationResponse.js b/src/model/ServiceAuthorizationResponse.js
index acfb2e76c..730253177 100644
--- a/src/model/ServiceAuthorizationResponse.js
+++ b/src/model/ServiceAuthorizationResponse.js
@@ -16,7 +16,7 @@ import ServiceAuthorizationResponseData from './ServiceAuthorizationResponseData
/**
* The ServiceAuthorizationResponse model module.
* @module model/ServiceAuthorizationResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationResponse {
/**
diff --git a/src/model/ServiceAuthorizationResponseData.js b/src/model/ServiceAuthorizationResponseData.js
index ff2437e91..041a4859d 100644
--- a/src/model/ServiceAuthorizationResponseData.js
+++ b/src/model/ServiceAuthorizationResponseData.js
@@ -20,7 +20,7 @@ import TypeServiceAuthorization from './TypeServiceAuthorization';
/**
* The ServiceAuthorizationResponseData model module.
* @module model/ServiceAuthorizationResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationResponseData {
/**
diff --git a/src/model/ServiceAuthorizationResponseDataAllOf.js b/src/model/ServiceAuthorizationResponseDataAllOf.js
index 1aafe8095..18776f4cd 100644
--- a/src/model/ServiceAuthorizationResponseDataAllOf.js
+++ b/src/model/ServiceAuthorizationResponseDataAllOf.js
@@ -16,7 +16,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceAuthorizationResponseDataAllOf model module.
* @module model/ServiceAuthorizationResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationResponseDataAllOf {
/**
diff --git a/src/model/ServiceAuthorizationsResponse.js b/src/model/ServiceAuthorizationsResponse.js
index 33cbfbf3a..97d573f66 100644
--- a/src/model/ServiceAuthorizationsResponse.js
+++ b/src/model/ServiceAuthorizationsResponse.js
@@ -20,7 +20,7 @@ import ServiceAuthorizationsResponseAllOf from './ServiceAuthorizationsResponseA
/**
* The ServiceAuthorizationsResponse model module.
* @module model/ServiceAuthorizationsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationsResponse {
/**
diff --git a/src/model/ServiceAuthorizationsResponseAllOf.js b/src/model/ServiceAuthorizationsResponseAllOf.js
index 68fd44556..d5e77216f 100644
--- a/src/model/ServiceAuthorizationsResponseAllOf.js
+++ b/src/model/ServiceAuthorizationsResponseAllOf.js
@@ -16,7 +16,7 @@ import ServiceAuthorizationResponseData from './ServiceAuthorizationResponseData
/**
* The ServiceAuthorizationsResponseAllOf model module.
* @module model/ServiceAuthorizationsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceAuthorizationsResponseAllOf {
/**
diff --git a/src/model/ServiceCreate.js b/src/model/ServiceCreate.js
index 9b844b859..d8826c39e 100644
--- a/src/model/ServiceCreate.js
+++ b/src/model/ServiceCreate.js
@@ -17,7 +17,7 @@ import ServiceCreateAllOf from './ServiceCreateAllOf';
/**
* The ServiceCreate model module.
* @module model/ServiceCreate
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceCreate {
/**
diff --git a/src/model/ServiceCreateAllOf.js b/src/model/ServiceCreateAllOf.js
index 1cca62bb4..5c8d41f40 100644
--- a/src/model/ServiceCreateAllOf.js
+++ b/src/model/ServiceCreateAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceCreateAllOf model module.
* @module model/ServiceCreateAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceCreateAllOf {
/**
diff --git a/src/model/ServiceDetail.js b/src/model/ServiceDetail.js
index b60d42e51..8bfe9a01b 100644
--- a/src/model/ServiceDetail.js
+++ b/src/model/ServiceDetail.js
@@ -20,7 +20,7 @@ import ServiceVersionDetailOrNull from './ServiceVersionDetailOrNull';
/**
* The ServiceDetail model module.
* @module model/ServiceDetail
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceDetail {
/**
diff --git a/src/model/ServiceDetailAllOf.js b/src/model/ServiceDetailAllOf.js
index c2b4f0b84..1879e3a98 100644
--- a/src/model/ServiceDetailAllOf.js
+++ b/src/model/ServiceDetailAllOf.js
@@ -17,7 +17,7 @@ import ServiceVersionDetailOrNull from './ServiceVersionDetailOrNull';
/**
* The ServiceDetailAllOf model module.
* @module model/ServiceDetailAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceDetailAllOf {
/**
diff --git a/src/model/ServiceIdAndVersion.js b/src/model/ServiceIdAndVersion.js
index 57a3a8acf..aee2a9c37 100644
--- a/src/model/ServiceIdAndVersion.js
+++ b/src/model/ServiceIdAndVersion.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceIdAndVersion model module.
* @module model/ServiceIdAndVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceIdAndVersion {
/**
diff --git a/src/model/ServiceIdAndVersionString.js b/src/model/ServiceIdAndVersionString.js
index 8194fba47..8e12bfe6c 100644
--- a/src/model/ServiceIdAndVersionString.js
+++ b/src/model/ServiceIdAndVersionString.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceIdAndVersionString model module.
* @module model/ServiceIdAndVersionString
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceIdAndVersionString {
/**
diff --git a/src/model/ServiceInvitation.js b/src/model/ServiceInvitation.js
index e363421a9..550192680 100644
--- a/src/model/ServiceInvitation.js
+++ b/src/model/ServiceInvitation.js
@@ -16,7 +16,7 @@ import ServiceInvitationData from './ServiceInvitationData';
/**
* The ServiceInvitation model module.
* @module model/ServiceInvitation
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitation {
/**
diff --git a/src/model/ServiceInvitationData.js b/src/model/ServiceInvitationData.js
index e83de31e1..befc3b960 100644
--- a/src/model/ServiceInvitationData.js
+++ b/src/model/ServiceInvitationData.js
@@ -18,7 +18,7 @@ import TypeServiceInvitation from './TypeServiceInvitation';
/**
* The ServiceInvitationData model module.
* @module model/ServiceInvitationData
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitationData {
/**
diff --git a/src/model/ServiceInvitationDataAttributes.js b/src/model/ServiceInvitationDataAttributes.js
index 493b55a08..71701a0dd 100644
--- a/src/model/ServiceInvitationDataAttributes.js
+++ b/src/model/ServiceInvitationDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceInvitationDataAttributes model module.
* @module model/ServiceInvitationDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitationDataAttributes {
/**
diff --git a/src/model/ServiceInvitationDataRelationships.js b/src/model/ServiceInvitationDataRelationships.js
index 42b5b9361..72d49d6d4 100644
--- a/src/model/ServiceInvitationDataRelationships.js
+++ b/src/model/ServiceInvitationDataRelationships.js
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The ServiceInvitationDataRelationships model module.
* @module model/ServiceInvitationDataRelationships
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitationDataRelationships {
/**
diff --git a/src/model/ServiceInvitationResponse.js b/src/model/ServiceInvitationResponse.js
index 313c3d55d..571e9425f 100644
--- a/src/model/ServiceInvitationResponse.js
+++ b/src/model/ServiceInvitationResponse.js
@@ -18,7 +18,7 @@ import ServiceInvitationResponseAllOfData from './ServiceInvitationResponseAllOf
/**
* The ServiceInvitationResponse model module.
* @module model/ServiceInvitationResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitationResponse {
/**
diff --git a/src/model/ServiceInvitationResponseAllOf.js b/src/model/ServiceInvitationResponseAllOf.js
index ee1cc6c65..2990a1d20 100644
--- a/src/model/ServiceInvitationResponseAllOf.js
+++ b/src/model/ServiceInvitationResponseAllOf.js
@@ -16,7 +16,7 @@ import ServiceInvitationResponseAllOfData from './ServiceInvitationResponseAllOf
/**
* The ServiceInvitationResponseAllOf model module.
* @module model/ServiceInvitationResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitationResponseAllOf {
/**
diff --git a/src/model/ServiceInvitationResponseAllOfData.js b/src/model/ServiceInvitationResponseAllOfData.js
index e81416a0a..0d5f6eacb 100644
--- a/src/model/ServiceInvitationResponseAllOfData.js
+++ b/src/model/ServiceInvitationResponseAllOfData.js
@@ -16,7 +16,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceInvitationResponseAllOfData model module.
* @module model/ServiceInvitationResponseAllOfData
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceInvitationResponseAllOfData {
/**
diff --git a/src/model/ServiceListResponse.js b/src/model/ServiceListResponse.js
index 9077a5790..8ed19ad50 100644
--- a/src/model/ServiceListResponse.js
+++ b/src/model/ServiceListResponse.js
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceListResponse model module.
* @module model/ServiceListResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceListResponse {
/**
diff --git a/src/model/ServiceListResponseAllOf.js b/src/model/ServiceListResponseAllOf.js
index a08a59ae9..4f1969da5 100644
--- a/src/model/ServiceListResponseAllOf.js
+++ b/src/model/ServiceListResponseAllOf.js
@@ -16,7 +16,7 @@ import SchemasVersionResponse from './SchemasVersionResponse';
/**
* The ServiceListResponseAllOf model module.
* @module model/ServiceListResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceListResponseAllOf {
/**
diff --git a/src/model/ServiceResponse.js b/src/model/ServiceResponse.js
index 2e3c15594..2b27fc5ed 100644
--- a/src/model/ServiceResponse.js
+++ b/src/model/ServiceResponse.js
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceResponse model module.
* @module model/ServiceResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceResponse {
/**
diff --git a/src/model/ServiceResponseAllOf.js b/src/model/ServiceResponseAllOf.js
index ef292fe5e..2e8def84f 100644
--- a/src/model/ServiceResponseAllOf.js
+++ b/src/model/ServiceResponseAllOf.js
@@ -16,7 +16,7 @@ import SchemasVersionResponse from './SchemasVersionResponse';
/**
* The ServiceResponseAllOf model module.
* @module model/ServiceResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceResponseAllOf {
/**
diff --git a/src/model/ServiceVersionDetail.js b/src/model/ServiceVersionDetail.js
index 048a4feb0..3ba471e40 100644
--- a/src/model/ServiceVersionDetail.js
+++ b/src/model/ServiceVersionDetail.js
@@ -30,7 +30,7 @@ import VersionDetailSettings from './VersionDetailSettings';
/**
* The ServiceVersionDetail model module.
* @module model/ServiceVersionDetail
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceVersionDetail {
/**
diff --git a/src/model/ServiceVersionDetailOrNull.js b/src/model/ServiceVersionDetailOrNull.js
index 935ee5094..0b056545e 100644
--- a/src/model/ServiceVersionDetailOrNull.js
+++ b/src/model/ServiceVersionDetailOrNull.js
@@ -30,7 +30,7 @@ import VersionDetailSettings from './VersionDetailSettings';
/**
* The ServiceVersionDetailOrNull model module.
* @module model/ServiceVersionDetailOrNull
- * @version 7.4.0
+ * @version 7.5.0
*/
class ServiceVersionDetailOrNull {
/**
diff --git a/src/model/Settings.js b/src/model/Settings.js
index d9c16c682..100c9c725 100644
--- a/src/model/Settings.js
+++ b/src/model/Settings.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Settings model module.
* @module model/Settings
- * @version 7.4.0
+ * @version 7.5.0
*/
class Settings {
/**
diff --git a/src/model/SettingsResponse.js b/src/model/SettingsResponse.js
index ad434d4e3..9181eb64e 100644
--- a/src/model/SettingsResponse.js
+++ b/src/model/SettingsResponse.js
@@ -17,7 +17,7 @@ import Settings from './Settings';
/**
* The SettingsResponse model module.
* @module model/SettingsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SettingsResponse {
/**
diff --git a/src/model/SigningKey.js b/src/model/SigningKey.js
index 622f1aaac..b4875e46a 100644
--- a/src/model/SigningKey.js
+++ b/src/model/SigningKey.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SigningKey model module.
* @module model/SigningKey
- * @version 7.4.0
+ * @version 7.5.0
*/
class SigningKey {
/**
diff --git a/src/model/Snippet.js b/src/model/Snippet.js
index 99a634ebf..6dfd531c6 100644
--- a/src/model/Snippet.js
+++ b/src/model/Snippet.js
@@ -17,7 +17,7 @@ import SnippetCommon from './SnippetCommon';
/**
* The Snippet model module.
* @module model/Snippet
- * @version 7.4.0
+ * @version 7.5.0
*/
class Snippet {
/**
diff --git a/src/model/SnippetAllOf.js b/src/model/SnippetAllOf.js
index 6d793c0d0..eaba164bb 100644
--- a/src/model/SnippetAllOf.js
+++ b/src/model/SnippetAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetAllOf model module.
* @module model/SnippetAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetAllOf {
/**
diff --git a/src/model/SnippetCommon.js b/src/model/SnippetCommon.js
index 8e2a8bfa8..d8b841018 100644
--- a/src/model/SnippetCommon.js
+++ b/src/model/SnippetCommon.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetCommon model module.
* @module model/SnippetCommon
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetCommon {
/**
diff --git a/src/model/SnippetResponse.js b/src/model/SnippetResponse.js
index 52528c4db..97c189351 100644
--- a/src/model/SnippetResponse.js
+++ b/src/model/SnippetResponse.js
@@ -17,7 +17,7 @@ import SnippetResponseCommon from './SnippetResponseCommon';
/**
* The SnippetResponse model module.
* @module model/SnippetResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetResponse {
/**
diff --git a/src/model/SnippetResponseCommon.js b/src/model/SnippetResponseCommon.js
index d0cd3f21c..d7aa85ec6 100644
--- a/src/model/SnippetResponseCommon.js
+++ b/src/model/SnippetResponseCommon.js
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The SnippetResponseCommon model module.
* @module model/SnippetResponseCommon
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetResponseCommon {
/**
diff --git a/src/model/SnippetResponseCommonAllOf.js b/src/model/SnippetResponseCommonAllOf.js
index 789c00ba9..6d1c8f1a1 100644
--- a/src/model/SnippetResponseCommonAllOf.js
+++ b/src/model/SnippetResponseCommonAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetResponseCommonAllOf model module.
* @module model/SnippetResponseCommonAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetResponseCommonAllOf {
/**
diff --git a/src/model/SnippetResponsePost.js b/src/model/SnippetResponsePost.js
index 1ae6fe094..862a092f4 100644
--- a/src/model/SnippetResponsePost.js
+++ b/src/model/SnippetResponsePost.js
@@ -17,7 +17,7 @@ import SnippetWithDynamicNumber from './SnippetWithDynamicNumber';
/**
* The SnippetResponsePost model module.
* @module model/SnippetResponsePost
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetResponsePost {
/**
diff --git a/src/model/SnippetWithDynamicNumber.js b/src/model/SnippetWithDynamicNumber.js
index 1a77fb7c3..6b20e22d1 100644
--- a/src/model/SnippetWithDynamicNumber.js
+++ b/src/model/SnippetWithDynamicNumber.js
@@ -17,7 +17,7 @@ import SnippetWithDynamicNumberAllOf from './SnippetWithDynamicNumberAllOf';
/**
* The SnippetWithDynamicNumber model module.
* @module model/SnippetWithDynamicNumber
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetWithDynamicNumber {
/**
diff --git a/src/model/SnippetWithDynamicNumberAllOf.js b/src/model/SnippetWithDynamicNumberAllOf.js
index d1b933115..6bb773cc5 100644
--- a/src/model/SnippetWithDynamicNumberAllOf.js
+++ b/src/model/SnippetWithDynamicNumberAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetWithDynamicNumberAllOf model module.
* @module model/SnippetWithDynamicNumberAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class SnippetWithDynamicNumberAllOf {
/**
diff --git a/src/model/Star.js b/src/model/Star.js
index e5dbb2bfe..1e07d679d 100644
--- a/src/model/Star.js
+++ b/src/model/Star.js
@@ -16,7 +16,7 @@ import StarData from './StarData';
/**
* The Star model module.
* @module model/Star
- * @version 7.4.0
+ * @version 7.5.0
*/
class Star {
/**
diff --git a/src/model/StarData.js b/src/model/StarData.js
index 8dc3d6667..f383f376f 100644
--- a/src/model/StarData.js
+++ b/src/model/StarData.js
@@ -17,7 +17,7 @@ import TypeStar from './TypeStar';
/**
* The StarData model module.
* @module model/StarData
- * @version 7.4.0
+ * @version 7.5.0
*/
class StarData {
/**
diff --git a/src/model/StarResponse.js b/src/model/StarResponse.js
index fffd0a3f5..408b26f13 100644
--- a/src/model/StarResponse.js
+++ b/src/model/StarResponse.js
@@ -17,7 +17,7 @@ import StarResponseAllOf from './StarResponseAllOf';
/**
* The StarResponse model module.
* @module model/StarResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class StarResponse {
/**
diff --git a/src/model/StarResponseAllOf.js b/src/model/StarResponseAllOf.js
index b947e4ddf..5aeb30901 100644
--- a/src/model/StarResponseAllOf.js
+++ b/src/model/StarResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The StarResponseAllOf model module.
* @module model/StarResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class StarResponseAllOf {
/**
diff --git a/src/model/Stats.js b/src/model/Stats.js
index cd0e9f328..a86ea64e6 100644
--- a/src/model/Stats.js
+++ b/src/model/Stats.js
@@ -16,7 +16,7 @@ import Results from './Results';
/**
* The Stats model module.
* @module model/Stats
- * @version 7.4.0
+ * @version 7.5.0
*/
class Stats {
/**
diff --git a/src/model/Store.js b/src/model/Store.js
index f36e1e2df..8e7ca658b 100644
--- a/src/model/Store.js
+++ b/src/model/Store.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Store model module.
* @module model/Store
- * @version 7.4.0
+ * @version 7.5.0
*/
class Store {
/**
diff --git a/src/model/StoreResponse.js b/src/model/StoreResponse.js
index 7873c14c7..a79402516 100644
--- a/src/model/StoreResponse.js
+++ b/src/model/StoreResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The StoreResponse model module.
* @module model/StoreResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class StoreResponse {
/**
diff --git a/src/model/SubsequentRequestTimestamp.js b/src/model/SubsequentRequestTimestamp.js
index 81f422783..4fe93a5a4 100644
--- a/src/model/SubsequentRequestTimestamp.js
+++ b/src/model/SubsequentRequestTimestamp.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SubsequentRequestTimestamp model module.
* @module model/SubsequentRequestTimestamp
- * @version 7.4.0
+ * @version 7.5.0
*/
class SubsequentRequestTimestamp {
/**
diff --git a/src/model/SudoGenericTokenError.js b/src/model/SudoGenericTokenError.js
index f494c77ca..d1f5f48ef 100644
--- a/src/model/SudoGenericTokenError.js
+++ b/src/model/SudoGenericTokenError.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SudoGenericTokenError model module.
* @module model/SudoGenericTokenError
- * @version 7.4.0
+ * @version 7.5.0
*/
class SudoGenericTokenError {
/**
diff --git a/src/model/SudoRequest.js b/src/model/SudoRequest.js
index 4b2215ef4..f2537bcf2 100644
--- a/src/model/SudoRequest.js
+++ b/src/model/SudoRequest.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SudoRequest model module.
* @module model/SudoRequest
- * @version 7.4.0
+ * @version 7.5.0
*/
class SudoRequest {
/**
diff --git a/src/model/SudoResponse.js b/src/model/SudoResponse.js
index 35dbb53c7..f3513ee8a 100644
--- a/src/model/SudoResponse.js
+++ b/src/model/SudoResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SudoResponse model module.
* @module model/SudoResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class SudoResponse {
/**
diff --git a/src/model/Timestamps.js b/src/model/Timestamps.js
index 5ea1009b9..d94b54233 100644
--- a/src/model/Timestamps.js
+++ b/src/model/Timestamps.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Timestamps model module.
* @module model/Timestamps
- * @version 7.4.0
+ * @version 7.5.0
*/
class Timestamps {
/**
diff --git a/src/model/TimestampsNoDelete.js b/src/model/TimestampsNoDelete.js
index c4e8f8eb7..9c2f48419 100644
--- a/src/model/TimestampsNoDelete.js
+++ b/src/model/TimestampsNoDelete.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TimestampsNoDelete model module.
* @module model/TimestampsNoDelete
- * @version 7.4.0
+ * @version 7.5.0
*/
class TimestampsNoDelete {
/**
diff --git a/src/model/TlsActivation.js b/src/model/TlsActivation.js
index a6cd5fbe8..cc4d56141 100644
--- a/src/model/TlsActivation.js
+++ b/src/model/TlsActivation.js
@@ -16,7 +16,7 @@ import TlsActivationData from './TlsActivationData';
/**
* The TlsActivation model module.
* @module model/TlsActivation
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivation {
/**
diff --git a/src/model/TlsActivationData.js b/src/model/TlsActivationData.js
index f479b2f77..1e654dd83 100644
--- a/src/model/TlsActivationData.js
+++ b/src/model/TlsActivationData.js
@@ -17,7 +17,7 @@ import TypeTlsActivation from './TypeTlsActivation';
/**
* The TlsActivationData model module.
* @module model/TlsActivationData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivationData {
/**
diff --git a/src/model/TlsActivationResponse.js b/src/model/TlsActivationResponse.js
index a8a587dac..050572b5b 100644
--- a/src/model/TlsActivationResponse.js
+++ b/src/model/TlsActivationResponse.js
@@ -16,7 +16,7 @@ import TlsActivationResponseData from './TlsActivationResponseData';
/**
* The TlsActivationResponse model module.
* @module model/TlsActivationResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivationResponse {
/**
diff --git a/src/model/TlsActivationResponseData.js b/src/model/TlsActivationResponseData.js
index 7c7696b7f..b9fb8e263 100644
--- a/src/model/TlsActivationResponseData.js
+++ b/src/model/TlsActivationResponseData.js
@@ -20,7 +20,7 @@ import TypeTlsActivation from './TypeTlsActivation';
/**
* The TlsActivationResponseData model module.
* @module model/TlsActivationResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivationResponseData {
/**
diff --git a/src/model/TlsActivationResponseDataAllOf.js b/src/model/TlsActivationResponseDataAllOf.js
index 77bc7755e..324f6b011 100644
--- a/src/model/TlsActivationResponseDataAllOf.js
+++ b/src/model/TlsActivationResponseDataAllOf.js
@@ -16,7 +16,7 @@ import Timestamps from './Timestamps';
/**
* The TlsActivationResponseDataAllOf model module.
* @module model/TlsActivationResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivationResponseDataAllOf {
/**
diff --git a/src/model/TlsActivationsResponse.js b/src/model/TlsActivationsResponse.js
index d0dc316a1..91aca2a7d 100644
--- a/src/model/TlsActivationsResponse.js
+++ b/src/model/TlsActivationsResponse.js
@@ -20,7 +20,7 @@ import TlsActivationsResponseAllOf from './TlsActivationsResponseAllOf';
/**
* The TlsActivationsResponse model module.
* @module model/TlsActivationsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivationsResponse {
/**
diff --git a/src/model/TlsActivationsResponseAllOf.js b/src/model/TlsActivationsResponseAllOf.js
index 7bd5ac527..1c17703f9 100644
--- a/src/model/TlsActivationsResponseAllOf.js
+++ b/src/model/TlsActivationsResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsActivationResponseData from './TlsActivationResponseData';
/**
* The TlsActivationsResponseAllOf model module.
* @module model/TlsActivationsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsActivationsResponseAllOf {
/**
diff --git a/src/model/TlsBulkCertificate.js b/src/model/TlsBulkCertificate.js
index 74e9892c2..7a5715620 100644
--- a/src/model/TlsBulkCertificate.js
+++ b/src/model/TlsBulkCertificate.js
@@ -16,7 +16,7 @@ import TlsBulkCertificateData from './TlsBulkCertificateData';
/**
* The TlsBulkCertificate model module.
* @module model/TlsBulkCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificate {
/**
diff --git a/src/model/TlsBulkCertificateData.js b/src/model/TlsBulkCertificateData.js
index 25c59a5cb..4962a1a7a 100644
--- a/src/model/TlsBulkCertificateData.js
+++ b/src/model/TlsBulkCertificateData.js
@@ -18,7 +18,7 @@ import TypeTlsBulkCertificate from './TypeTlsBulkCertificate';
/**
* The TlsBulkCertificateData model module.
* @module model/TlsBulkCertificateData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateData {
/**
diff --git a/src/model/TlsBulkCertificateDataAttributes.js b/src/model/TlsBulkCertificateDataAttributes.js
index 45581a340..45b354d6e 100644
--- a/src/model/TlsBulkCertificateDataAttributes.js
+++ b/src/model/TlsBulkCertificateDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsBulkCertificateDataAttributes model module.
* @module model/TlsBulkCertificateDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateDataAttributes {
/**
diff --git a/src/model/TlsBulkCertificateResponse.js b/src/model/TlsBulkCertificateResponse.js
index 77839a539..2194d1dea 100644
--- a/src/model/TlsBulkCertificateResponse.js
+++ b/src/model/TlsBulkCertificateResponse.js
@@ -16,7 +16,7 @@ import TlsBulkCertificateResponseData from './TlsBulkCertificateResponseData';
/**
* The TlsBulkCertificateResponse model module.
* @module model/TlsBulkCertificateResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateResponse {
/**
diff --git a/src/model/TlsBulkCertificateResponseAttributes.js b/src/model/TlsBulkCertificateResponseAttributes.js
index 114b05f20..c5319bbb6 100644
--- a/src/model/TlsBulkCertificateResponseAttributes.js
+++ b/src/model/TlsBulkCertificateResponseAttributes.js
@@ -17,7 +17,7 @@ import TlsBulkCertificateResponseAttributesAllOf from './TlsBulkCertificateRespo
/**
* The TlsBulkCertificateResponseAttributes model module.
* @module model/TlsBulkCertificateResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateResponseAttributes {
/**
diff --git a/src/model/TlsBulkCertificateResponseAttributesAllOf.js b/src/model/TlsBulkCertificateResponseAttributesAllOf.js
index ce6124ec3..ab200b3cf 100644
--- a/src/model/TlsBulkCertificateResponseAttributesAllOf.js
+++ b/src/model/TlsBulkCertificateResponseAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsBulkCertificateResponseAttributesAllOf model module.
* @module model/TlsBulkCertificateResponseAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateResponseAttributesAllOf {
/**
diff --git a/src/model/TlsBulkCertificateResponseData.js b/src/model/TlsBulkCertificateResponseData.js
index d6307e3e7..2da8bd362 100644
--- a/src/model/TlsBulkCertificateResponseData.js
+++ b/src/model/TlsBulkCertificateResponseData.js
@@ -20,7 +20,7 @@ import TypeTlsBulkCertificate from './TypeTlsBulkCertificate';
/**
* The TlsBulkCertificateResponseData model module.
* @module model/TlsBulkCertificateResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateResponseData {
/**
diff --git a/src/model/TlsBulkCertificateResponseDataAllOf.js b/src/model/TlsBulkCertificateResponseDataAllOf.js
index be3709421..ab2d04389 100644
--- a/src/model/TlsBulkCertificateResponseDataAllOf.js
+++ b/src/model/TlsBulkCertificateResponseDataAllOf.js
@@ -16,7 +16,7 @@ import TlsBulkCertificateResponseAttributes from './TlsBulkCertificateResponseAt
/**
* The TlsBulkCertificateResponseDataAllOf model module.
* @module model/TlsBulkCertificateResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificateResponseDataAllOf {
/**
diff --git a/src/model/TlsBulkCertificatesResponse.js b/src/model/TlsBulkCertificatesResponse.js
index 20531a68b..fbf775da7 100644
--- a/src/model/TlsBulkCertificatesResponse.js
+++ b/src/model/TlsBulkCertificatesResponse.js
@@ -20,7 +20,7 @@ import TlsBulkCertificatesResponseAllOf from './TlsBulkCertificatesResponseAllOf
/**
* The TlsBulkCertificatesResponse model module.
* @module model/TlsBulkCertificatesResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificatesResponse {
/**
diff --git a/src/model/TlsBulkCertificatesResponseAllOf.js b/src/model/TlsBulkCertificatesResponseAllOf.js
index 8939f8e4c..dad35c2ac 100644
--- a/src/model/TlsBulkCertificatesResponseAllOf.js
+++ b/src/model/TlsBulkCertificatesResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsBulkCertificateResponseData from './TlsBulkCertificateResponseData';
/**
* The TlsBulkCertificatesResponseAllOf model module.
* @module model/TlsBulkCertificatesResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsBulkCertificatesResponseAllOf {
/**
diff --git a/src/model/TlsCertificate.js b/src/model/TlsCertificate.js
index 338b84e43..aae62f0f6 100644
--- a/src/model/TlsCertificate.js
+++ b/src/model/TlsCertificate.js
@@ -16,7 +16,7 @@ import TlsCertificateData from './TlsCertificateData';
/**
* The TlsCertificate model module.
* @module model/TlsCertificate
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificate {
/**
diff --git a/src/model/TlsCertificateData.js b/src/model/TlsCertificateData.js
index 363538108..96341633a 100644
--- a/src/model/TlsCertificateData.js
+++ b/src/model/TlsCertificateData.js
@@ -18,7 +18,7 @@ import TypeTlsCertificate from './TypeTlsCertificate';
/**
* The TlsCertificateData model module.
* @module model/TlsCertificateData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateData {
/**
diff --git a/src/model/TlsCertificateDataAttributes.js b/src/model/TlsCertificateDataAttributes.js
index c3af2e134..054b3f516 100644
--- a/src/model/TlsCertificateDataAttributes.js
+++ b/src/model/TlsCertificateDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCertificateDataAttributes model module.
* @module model/TlsCertificateDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateDataAttributes {
/**
diff --git a/src/model/TlsCertificateResponse.js b/src/model/TlsCertificateResponse.js
index 2ecbbf729..a5510d86a 100644
--- a/src/model/TlsCertificateResponse.js
+++ b/src/model/TlsCertificateResponse.js
@@ -16,7 +16,7 @@ import TlsCertificateResponseData from './TlsCertificateResponseData';
/**
* The TlsCertificateResponse model module.
* @module model/TlsCertificateResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateResponse {
/**
diff --git a/src/model/TlsCertificateResponseAttributes.js b/src/model/TlsCertificateResponseAttributes.js
index c6d5159ee..f458fbf11 100644
--- a/src/model/TlsCertificateResponseAttributes.js
+++ b/src/model/TlsCertificateResponseAttributes.js
@@ -17,7 +17,7 @@ import TlsCertificateResponseAttributesAllOf from './TlsCertificateResponseAttri
/**
* The TlsCertificateResponseAttributes model module.
* @module model/TlsCertificateResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateResponseAttributes {
/**
diff --git a/src/model/TlsCertificateResponseAttributesAllOf.js b/src/model/TlsCertificateResponseAttributesAllOf.js
index 9c7132991..4f52e43ca 100644
--- a/src/model/TlsCertificateResponseAttributesAllOf.js
+++ b/src/model/TlsCertificateResponseAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCertificateResponseAttributesAllOf model module.
* @module model/TlsCertificateResponseAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateResponseAttributesAllOf {
/**
diff --git a/src/model/TlsCertificateResponseData.js b/src/model/TlsCertificateResponseData.js
index 82cf6f8b5..a31560f6f 100644
--- a/src/model/TlsCertificateResponseData.js
+++ b/src/model/TlsCertificateResponseData.js
@@ -20,7 +20,7 @@ import TypeTlsCertificate from './TypeTlsCertificate';
/**
* The TlsCertificateResponseData model module.
* @module model/TlsCertificateResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateResponseData {
/**
diff --git a/src/model/TlsCertificateResponseDataAllOf.js b/src/model/TlsCertificateResponseDataAllOf.js
index 818f15d3e..092010e1b 100644
--- a/src/model/TlsCertificateResponseDataAllOf.js
+++ b/src/model/TlsCertificateResponseDataAllOf.js
@@ -16,7 +16,7 @@ import TlsCertificateResponseAttributes from './TlsCertificateResponseAttributes
/**
* The TlsCertificateResponseDataAllOf model module.
* @module model/TlsCertificateResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificateResponseDataAllOf {
/**
diff --git a/src/model/TlsCertificatesResponse.js b/src/model/TlsCertificatesResponse.js
index ae855e529..ee0e7d7bb 100644
--- a/src/model/TlsCertificatesResponse.js
+++ b/src/model/TlsCertificatesResponse.js
@@ -20,7 +20,7 @@ import TlsCertificatesResponseAllOf from './TlsCertificatesResponseAllOf';
/**
* The TlsCertificatesResponse model module.
* @module model/TlsCertificatesResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificatesResponse {
/**
diff --git a/src/model/TlsCertificatesResponseAllOf.js b/src/model/TlsCertificatesResponseAllOf.js
index 221733a40..9690fabb6 100644
--- a/src/model/TlsCertificatesResponseAllOf.js
+++ b/src/model/TlsCertificatesResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsCertificateResponseData from './TlsCertificateResponseData';
/**
* The TlsCertificatesResponseAllOf model module.
* @module model/TlsCertificatesResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCertificatesResponseAllOf {
/**
diff --git a/src/model/TlsCommonResponse.js b/src/model/TlsCommonResponse.js
index 1863bb1da..4ac94374b 100644
--- a/src/model/TlsCommonResponse.js
+++ b/src/model/TlsCommonResponse.js
@@ -17,7 +17,7 @@ import TlsCommonResponseAllOf1 from './TlsCommonResponseAllOf1';
/**
* The TlsCommonResponse model module.
* @module model/TlsCommonResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCommonResponse {
/**
diff --git a/src/model/TlsCommonResponseAllOf.js b/src/model/TlsCommonResponseAllOf.js
index 6fa1a13f8..a3f8de343 100644
--- a/src/model/TlsCommonResponseAllOf.js
+++ b/src/model/TlsCommonResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCommonResponseAllOf model module.
* @module model/TlsCommonResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCommonResponseAllOf {
/**
diff --git a/src/model/TlsCommonResponseAllOf1.js b/src/model/TlsCommonResponseAllOf1.js
index 257d08144..7f2432fea 100644
--- a/src/model/TlsCommonResponseAllOf1.js
+++ b/src/model/TlsCommonResponseAllOf1.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCommonResponseAllOf1 model module.
* @module model/TlsCommonResponseAllOf1
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCommonResponseAllOf1 {
/**
diff --git a/src/model/TlsConfiguration.js b/src/model/TlsConfiguration.js
index d3065c4e7..7e95f3e6c 100644
--- a/src/model/TlsConfiguration.js
+++ b/src/model/TlsConfiguration.js
@@ -16,7 +16,7 @@ import TlsConfigurationData from './TlsConfigurationData';
/**
* The TlsConfiguration model module.
* @module model/TlsConfiguration
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfiguration {
/**
diff --git a/src/model/TlsConfigurationData.js b/src/model/TlsConfigurationData.js
index 6b41e1718..e8419e4a0 100644
--- a/src/model/TlsConfigurationData.js
+++ b/src/model/TlsConfigurationData.js
@@ -18,7 +18,7 @@ import TypeTlsConfiguration from './TypeTlsConfiguration';
/**
* The TlsConfigurationData model module.
* @module model/TlsConfigurationData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationData {
/**
diff --git a/src/model/TlsConfigurationDataAttributes.js b/src/model/TlsConfigurationDataAttributes.js
index 4cf4e0249..f04f344e4 100644
--- a/src/model/TlsConfigurationDataAttributes.js
+++ b/src/model/TlsConfigurationDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsConfigurationDataAttributes model module.
* @module model/TlsConfigurationDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationDataAttributes {
/**
diff --git a/src/model/TlsConfigurationResponse.js b/src/model/TlsConfigurationResponse.js
index ab7461c29..48b27b059 100644
--- a/src/model/TlsConfigurationResponse.js
+++ b/src/model/TlsConfigurationResponse.js
@@ -16,7 +16,7 @@ import TlsConfigurationResponseData from './TlsConfigurationResponseData';
/**
* The TlsConfigurationResponse model module.
* @module model/TlsConfigurationResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationResponse {
/**
diff --git a/src/model/TlsConfigurationResponseAttributes.js b/src/model/TlsConfigurationResponseAttributes.js
index 1fe2b63f1..5b8a2ed6a 100644
--- a/src/model/TlsConfigurationResponseAttributes.js
+++ b/src/model/TlsConfigurationResponseAttributes.js
@@ -17,7 +17,7 @@ import TlsConfigurationResponseAttributesAllOf from './TlsConfigurationResponseA
/**
* The TlsConfigurationResponseAttributes model module.
* @module model/TlsConfigurationResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationResponseAttributes {
/**
diff --git a/src/model/TlsConfigurationResponseAttributesAllOf.js b/src/model/TlsConfigurationResponseAttributesAllOf.js
index 59a81a12d..9e68a16ea 100644
--- a/src/model/TlsConfigurationResponseAttributesAllOf.js
+++ b/src/model/TlsConfigurationResponseAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsConfigurationResponseAttributesAllOf model module.
* @module model/TlsConfigurationResponseAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationResponseAttributesAllOf {
/**
diff --git a/src/model/TlsConfigurationResponseData.js b/src/model/TlsConfigurationResponseData.js
index 49d6b74c4..aefb80e0e 100644
--- a/src/model/TlsConfigurationResponseData.js
+++ b/src/model/TlsConfigurationResponseData.js
@@ -20,7 +20,7 @@ import TypeTlsConfiguration from './TypeTlsConfiguration';
/**
* The TlsConfigurationResponseData model module.
* @module model/TlsConfigurationResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationResponseData {
/**
diff --git a/src/model/TlsConfigurationResponseDataAllOf.js b/src/model/TlsConfigurationResponseDataAllOf.js
index 3af573cac..f6a0ea6d6 100644
--- a/src/model/TlsConfigurationResponseDataAllOf.js
+++ b/src/model/TlsConfigurationResponseDataAllOf.js
@@ -16,7 +16,7 @@ import TlsConfigurationResponseAttributes from './TlsConfigurationResponseAttrib
/**
* The TlsConfigurationResponseDataAllOf model module.
* @module model/TlsConfigurationResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationResponseDataAllOf {
/**
diff --git a/src/model/TlsConfigurationsResponse.js b/src/model/TlsConfigurationsResponse.js
index 8d02b859d..f89042812 100644
--- a/src/model/TlsConfigurationsResponse.js
+++ b/src/model/TlsConfigurationsResponse.js
@@ -20,7 +20,7 @@ import TlsConfigurationsResponseAllOf from './TlsConfigurationsResponseAllOf';
/**
* The TlsConfigurationsResponse model module.
* @module model/TlsConfigurationsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationsResponse {
/**
diff --git a/src/model/TlsConfigurationsResponseAllOf.js b/src/model/TlsConfigurationsResponseAllOf.js
index 90ab0c572..4b18a0dbf 100644
--- a/src/model/TlsConfigurationsResponseAllOf.js
+++ b/src/model/TlsConfigurationsResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsConfigurationResponseData from './TlsConfigurationResponseData';
/**
* The TlsConfigurationsResponseAllOf model module.
* @module model/TlsConfigurationsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsConfigurationsResponseAllOf {
/**
diff --git a/src/model/TlsCsr.js b/src/model/TlsCsr.js
index 8d9609aae..076bbe172 100644
--- a/src/model/TlsCsr.js
+++ b/src/model/TlsCsr.js
@@ -16,7 +16,7 @@ import TlsCsrData from './TlsCsrData';
/**
* The TlsCsr model module.
* @module model/TlsCsr
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsr {
/**
diff --git a/src/model/TlsCsrData.js b/src/model/TlsCsrData.js
index 025cba50d..50fe47dba 100644
--- a/src/model/TlsCsrData.js
+++ b/src/model/TlsCsrData.js
@@ -18,7 +18,7 @@ import TypeTlsCsr from './TypeTlsCsr';
/**
* The TlsCsrData model module.
* @module model/TlsCsrData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsrData {
/**
diff --git a/src/model/TlsCsrDataAttributes.js b/src/model/TlsCsrDataAttributes.js
index 9a301996b..771352c0e 100644
--- a/src/model/TlsCsrDataAttributes.js
+++ b/src/model/TlsCsrDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCsrDataAttributes model module.
* @module model/TlsCsrDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsrDataAttributes {
/**
diff --git a/src/model/TlsCsrErrorResponse.js b/src/model/TlsCsrErrorResponse.js
index 41f63842b..68345049e 100644
--- a/src/model/TlsCsrErrorResponse.js
+++ b/src/model/TlsCsrErrorResponse.js
@@ -16,7 +16,7 @@ import ErrorResponseData from './ErrorResponseData';
/**
* The TlsCsrErrorResponse model module.
* @module model/TlsCsrErrorResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsrErrorResponse {
/**
diff --git a/src/model/TlsCsrResponse.js b/src/model/TlsCsrResponse.js
index 0fe5d9b56..ceee64750 100644
--- a/src/model/TlsCsrResponse.js
+++ b/src/model/TlsCsrResponse.js
@@ -16,7 +16,7 @@ import TlsCsrResponseData from './TlsCsrResponseData';
/**
* The TlsCsrResponse model module.
* @module model/TlsCsrResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsrResponse {
/**
diff --git a/src/model/TlsCsrResponseAttributes.js b/src/model/TlsCsrResponseAttributes.js
index 62efe569f..2a3647757 100644
--- a/src/model/TlsCsrResponseAttributes.js
+++ b/src/model/TlsCsrResponseAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCsrResponseAttributes model module.
* @module model/TlsCsrResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsrResponseAttributes {
/**
diff --git a/src/model/TlsCsrResponseData.js b/src/model/TlsCsrResponseData.js
index 047a5d12f..23c621782 100644
--- a/src/model/TlsCsrResponseData.js
+++ b/src/model/TlsCsrResponseData.js
@@ -18,7 +18,7 @@ import TypeTlsCsr from './TypeTlsCsr';
/**
* The TlsCsrResponseData model module.
* @module model/TlsCsrResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsCsrResponseData {
/**
diff --git a/src/model/TlsDnsRecord.js b/src/model/TlsDnsRecord.js
index 72b275d8b..2557e2dde 100644
--- a/src/model/TlsDnsRecord.js
+++ b/src/model/TlsDnsRecord.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsDnsRecord model module.
* @module model/TlsDnsRecord
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsDnsRecord {
/**
diff --git a/src/model/TlsDomainData.js b/src/model/TlsDomainData.js
index b217506ef..1b7d9296f 100644
--- a/src/model/TlsDomainData.js
+++ b/src/model/TlsDomainData.js
@@ -17,7 +17,7 @@ import TypeTlsDomain from './TypeTlsDomain';
/**
* The TlsDomainData model module.
* @module model/TlsDomainData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsDomainData {
/**
diff --git a/src/model/TlsDomainsResponse.js b/src/model/TlsDomainsResponse.js
index 8dabc9e7d..8ec90c080 100644
--- a/src/model/TlsDomainsResponse.js
+++ b/src/model/TlsDomainsResponse.js
@@ -20,7 +20,7 @@ import TlsDomainsResponseAllOf from './TlsDomainsResponseAllOf';
/**
* The TlsDomainsResponse model module.
* @module model/TlsDomainsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsDomainsResponse {
/**
diff --git a/src/model/TlsDomainsResponseAllOf.js b/src/model/TlsDomainsResponseAllOf.js
index 7c4836c35..51f2549d5 100644
--- a/src/model/TlsDomainsResponseAllOf.js
+++ b/src/model/TlsDomainsResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsDomainData from './TlsDomainData';
/**
* The TlsDomainsResponseAllOf model module.
* @module model/TlsDomainsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsDomainsResponseAllOf {
/**
diff --git a/src/model/TlsPrivateKey.js b/src/model/TlsPrivateKey.js
index 1fdec45b0..98ece2e53 100644
--- a/src/model/TlsPrivateKey.js
+++ b/src/model/TlsPrivateKey.js
@@ -16,7 +16,7 @@ import TlsPrivateKeyData from './TlsPrivateKeyData';
/**
* The TlsPrivateKey model module.
* @module model/TlsPrivateKey
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKey {
/**
diff --git a/src/model/TlsPrivateKeyData.js b/src/model/TlsPrivateKeyData.js
index b96567837..181fab465 100644
--- a/src/model/TlsPrivateKeyData.js
+++ b/src/model/TlsPrivateKeyData.js
@@ -18,7 +18,7 @@ import TypeTlsPrivateKey from './TypeTlsPrivateKey';
/**
* The TlsPrivateKeyData model module.
* @module model/TlsPrivateKeyData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeyData {
/**
diff --git a/src/model/TlsPrivateKeyDataAttributes.js b/src/model/TlsPrivateKeyDataAttributes.js
index 0a334e6dc..252a0387d 100644
--- a/src/model/TlsPrivateKeyDataAttributes.js
+++ b/src/model/TlsPrivateKeyDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsPrivateKeyDataAttributes model module.
* @module model/TlsPrivateKeyDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeyDataAttributes {
/**
diff --git a/src/model/TlsPrivateKeyResponse.js b/src/model/TlsPrivateKeyResponse.js
index 2d9108664..fa6bacd05 100644
--- a/src/model/TlsPrivateKeyResponse.js
+++ b/src/model/TlsPrivateKeyResponse.js
@@ -16,7 +16,7 @@ import TlsPrivateKeyResponseData from './TlsPrivateKeyResponseData';
/**
* The TlsPrivateKeyResponse model module.
* @module model/TlsPrivateKeyResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeyResponse {
/**
diff --git a/src/model/TlsPrivateKeyResponseAttributes.js b/src/model/TlsPrivateKeyResponseAttributes.js
index 5a22d9406..e28ceb15e 100644
--- a/src/model/TlsPrivateKeyResponseAttributes.js
+++ b/src/model/TlsPrivateKeyResponseAttributes.js
@@ -17,7 +17,7 @@ import TlsPrivateKeyResponseAttributesAllOf from './TlsPrivateKeyResponseAttribu
/**
* The TlsPrivateKeyResponseAttributes model module.
* @module model/TlsPrivateKeyResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeyResponseAttributes {
/**
diff --git a/src/model/TlsPrivateKeyResponseAttributesAllOf.js b/src/model/TlsPrivateKeyResponseAttributesAllOf.js
index fe350ff3e..69b87f8c9 100644
--- a/src/model/TlsPrivateKeyResponseAttributesAllOf.js
+++ b/src/model/TlsPrivateKeyResponseAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsPrivateKeyResponseAttributesAllOf model module.
* @module model/TlsPrivateKeyResponseAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeyResponseAttributesAllOf {
/**
diff --git a/src/model/TlsPrivateKeyResponseData.js b/src/model/TlsPrivateKeyResponseData.js
index 62b1290a2..0af68f98b 100644
--- a/src/model/TlsPrivateKeyResponseData.js
+++ b/src/model/TlsPrivateKeyResponseData.js
@@ -17,7 +17,7 @@ import TypeTlsPrivateKey from './TypeTlsPrivateKey';
/**
* The TlsPrivateKeyResponseData model module.
* @module model/TlsPrivateKeyResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeyResponseData {
/**
diff --git a/src/model/TlsPrivateKeysResponse.js b/src/model/TlsPrivateKeysResponse.js
index ddb66669f..e5674e8e2 100644
--- a/src/model/TlsPrivateKeysResponse.js
+++ b/src/model/TlsPrivateKeysResponse.js
@@ -20,7 +20,7 @@ import TlsPrivateKeysResponseAllOf from './TlsPrivateKeysResponseAllOf';
/**
* The TlsPrivateKeysResponse model module.
* @module model/TlsPrivateKeysResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeysResponse {
/**
diff --git a/src/model/TlsPrivateKeysResponseAllOf.js b/src/model/TlsPrivateKeysResponseAllOf.js
index b55a5f68c..73889bd06 100644
--- a/src/model/TlsPrivateKeysResponseAllOf.js
+++ b/src/model/TlsPrivateKeysResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsPrivateKeyResponseData from './TlsPrivateKeyResponseData';
/**
* The TlsPrivateKeysResponseAllOf model module.
* @module model/TlsPrivateKeysResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsPrivateKeysResponseAllOf {
/**
diff --git a/src/model/TlsSubscription.js b/src/model/TlsSubscription.js
index 1a6cfbe82..d14cb9ed1 100644
--- a/src/model/TlsSubscription.js
+++ b/src/model/TlsSubscription.js
@@ -16,7 +16,7 @@ import TlsSubscriptionData from './TlsSubscriptionData';
/**
* The TlsSubscription model module.
* @module model/TlsSubscription
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscription {
/**
diff --git a/src/model/TlsSubscriptionData.js b/src/model/TlsSubscriptionData.js
index a3fd19784..3eb29e122 100644
--- a/src/model/TlsSubscriptionData.js
+++ b/src/model/TlsSubscriptionData.js
@@ -18,7 +18,7 @@ import TypeTlsSubscription from './TypeTlsSubscription';
/**
* The TlsSubscriptionData model module.
* @module model/TlsSubscriptionData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionData {
/**
diff --git a/src/model/TlsSubscriptionDataAttributes.js b/src/model/TlsSubscriptionDataAttributes.js
index 04ef0521e..1b7897b18 100644
--- a/src/model/TlsSubscriptionDataAttributes.js
+++ b/src/model/TlsSubscriptionDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsSubscriptionDataAttributes model module.
* @module model/TlsSubscriptionDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionDataAttributes {
/**
diff --git a/src/model/TlsSubscriptionResponse.js b/src/model/TlsSubscriptionResponse.js
index f4c58177d..ec5315ec3 100644
--- a/src/model/TlsSubscriptionResponse.js
+++ b/src/model/TlsSubscriptionResponse.js
@@ -16,7 +16,7 @@ import TlsSubscriptionResponseData from './TlsSubscriptionResponseData';
/**
* The TlsSubscriptionResponse model module.
* @module model/TlsSubscriptionResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionResponse {
/**
diff --git a/src/model/TlsSubscriptionResponseAttributes.js b/src/model/TlsSubscriptionResponseAttributes.js
index 53be17673..b7b22f3a2 100644
--- a/src/model/TlsSubscriptionResponseAttributes.js
+++ b/src/model/TlsSubscriptionResponseAttributes.js
@@ -17,7 +17,7 @@ import TlsSubscriptionResponseAttributesAllOf from './TlsSubscriptionResponseAtt
/**
* The TlsSubscriptionResponseAttributes model module.
* @module model/TlsSubscriptionResponseAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionResponseAttributes {
/**
diff --git a/src/model/TlsSubscriptionResponseAttributesAllOf.js b/src/model/TlsSubscriptionResponseAttributesAllOf.js
index 6b66626c5..397be9903 100644
--- a/src/model/TlsSubscriptionResponseAttributesAllOf.js
+++ b/src/model/TlsSubscriptionResponseAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsSubscriptionResponseAttributesAllOf model module.
* @module model/TlsSubscriptionResponseAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionResponseAttributesAllOf {
/**
diff --git a/src/model/TlsSubscriptionResponseData.js b/src/model/TlsSubscriptionResponseData.js
index 1bb845d43..93051e44f 100644
--- a/src/model/TlsSubscriptionResponseData.js
+++ b/src/model/TlsSubscriptionResponseData.js
@@ -16,7 +16,7 @@ import TlsSubscriptionResponseAttributes from './TlsSubscriptionResponseAttribut
/**
* The TlsSubscriptionResponseData model module.
* @module model/TlsSubscriptionResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionResponseData {
/**
diff --git a/src/model/TlsSubscriptionsResponse.js b/src/model/TlsSubscriptionsResponse.js
index a7757b9da..bfad0a1c0 100644
--- a/src/model/TlsSubscriptionsResponse.js
+++ b/src/model/TlsSubscriptionsResponse.js
@@ -20,7 +20,7 @@ import TlsSubscriptionsResponseAllOf from './TlsSubscriptionsResponseAllOf';
/**
* The TlsSubscriptionsResponse model module.
* @module model/TlsSubscriptionsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionsResponse {
/**
diff --git a/src/model/TlsSubscriptionsResponseAllOf.js b/src/model/TlsSubscriptionsResponseAllOf.js
index 3cfda5f12..bd6cc0a22 100644
--- a/src/model/TlsSubscriptionsResponseAllOf.js
+++ b/src/model/TlsSubscriptionsResponseAllOf.js
@@ -16,7 +16,7 @@ import TlsSubscriptionResponse from './TlsSubscriptionResponse';
/**
* The TlsSubscriptionsResponseAllOf model module.
* @module model/TlsSubscriptionsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TlsSubscriptionsResponseAllOf {
/**
diff --git a/src/model/Token.js b/src/model/Token.js
index 4279de6e7..d1354a975 100644
--- a/src/model/Token.js
+++ b/src/model/Token.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Token model module.
* @module model/Token
- * @version 7.4.0
+ * @version 7.5.0
*/
class Token {
/**
diff --git a/src/model/TokenCreatedResponse.js b/src/model/TokenCreatedResponse.js
index 07bfa2e96..0214d9d33 100644
--- a/src/model/TokenCreatedResponse.js
+++ b/src/model/TokenCreatedResponse.js
@@ -17,7 +17,7 @@ import TokenResponse from './TokenResponse';
/**
* The TokenCreatedResponse model module.
* @module model/TokenCreatedResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TokenCreatedResponse {
/**
diff --git a/src/model/TokenCreatedResponseAllOf.js b/src/model/TokenCreatedResponseAllOf.js
index 8aebdde6c..1890756b3 100644
--- a/src/model/TokenCreatedResponseAllOf.js
+++ b/src/model/TokenCreatedResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TokenCreatedResponseAllOf model module.
* @module model/TokenCreatedResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TokenCreatedResponseAllOf {
/**
diff --git a/src/model/TokenResponse.js b/src/model/TokenResponse.js
index 08451d6f3..93291c71d 100644
--- a/src/model/TokenResponse.js
+++ b/src/model/TokenResponse.js
@@ -18,7 +18,7 @@ import TokenResponseAllOf from './TokenResponseAllOf';
/**
* The TokenResponse model module.
* @module model/TokenResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class TokenResponse {
/**
diff --git a/src/model/TokenResponseAllOf.js b/src/model/TokenResponseAllOf.js
index ca79e6f8f..8d21fdc3f 100644
--- a/src/model/TokenResponseAllOf.js
+++ b/src/model/TokenResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TokenResponseAllOf model module.
* @module model/TokenResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class TokenResponseAllOf {
/**
diff --git a/src/model/TokensAdditionalProps.js b/src/model/TokensAdditionalProps.js
index b8a014917..907312e4a 100644
--- a/src/model/TokensAdditionalProps.js
+++ b/src/model/TokensAdditionalProps.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TokensAdditionalProps model module.
* @module model/TokensAdditionalProps
- * @version 7.4.0
+ * @version 7.5.0
*/
class TokensAdditionalProps {
/**
diff --git a/src/model/UpdateBillingAddressRequest.js b/src/model/UpdateBillingAddressRequest.js
index 28caac543..7d3790333 100644
--- a/src/model/UpdateBillingAddressRequest.js
+++ b/src/model/UpdateBillingAddressRequest.js
@@ -16,7 +16,7 @@ import UpdateBillingAddressRequestData from './UpdateBillingAddressRequestData';
/**
* The UpdateBillingAddressRequest model module.
* @module model/UpdateBillingAddressRequest
- * @version 7.4.0
+ * @version 7.5.0
*/
class UpdateBillingAddressRequest {
/**
diff --git a/src/model/UpdateBillingAddressRequestData.js b/src/model/UpdateBillingAddressRequestData.js
index 827eceb14..b53a5bde2 100644
--- a/src/model/UpdateBillingAddressRequestData.js
+++ b/src/model/UpdateBillingAddressRequestData.js
@@ -17,7 +17,7 @@ import TypeBillingAddress from './TypeBillingAddress';
/**
* The UpdateBillingAddressRequestData model module.
* @module model/UpdateBillingAddressRequestData
- * @version 7.4.0
+ * @version 7.5.0
*/
class UpdateBillingAddressRequestData {
/**
diff --git a/src/model/User.js b/src/model/User.js
index 8e5eb27d1..e3504881a 100644
--- a/src/model/User.js
+++ b/src/model/User.js
@@ -16,7 +16,7 @@ import RoleUser from './RoleUser';
/**
* The User model module.
* @module model/User
- * @version 7.4.0
+ * @version 7.5.0
*/
class User {
/**
diff --git a/src/model/UserResponse.js b/src/model/UserResponse.js
index 4645c24fb..90961bcb9 100644
--- a/src/model/UserResponse.js
+++ b/src/model/UserResponse.js
@@ -19,7 +19,7 @@ import UserResponseReadOnly from './UserResponseReadOnly';
/**
* The UserResponse model module.
* @module model/UserResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class UserResponse {
/**
diff --git a/src/model/UserResponseReadOnly.js b/src/model/UserResponseReadOnly.js
index adacc12cb..f9aa3fc4b 100644
--- a/src/model/UserResponseReadOnly.js
+++ b/src/model/UserResponseReadOnly.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The UserResponseReadOnly model module.
* @module model/UserResponseReadOnly
- * @version 7.4.0
+ * @version 7.5.0
*/
class UserResponseReadOnly {
/**
diff --git a/src/model/ValidatorResult.js b/src/model/ValidatorResult.js
index 80e43558f..2474b59bd 100644
--- a/src/model/ValidatorResult.js
+++ b/src/model/ValidatorResult.js
@@ -16,7 +16,7 @@ import ValidatorResultData from './ValidatorResultData';
/**
* The ValidatorResult model module.
* @module model/ValidatorResult
- * @version 7.4.0
+ * @version 7.5.0
*/
class ValidatorResult {
/**
diff --git a/src/model/ValidatorResultData.js b/src/model/ValidatorResultData.js
index b2a3f53ee..930d20017 100644
--- a/src/model/ValidatorResultData.js
+++ b/src/model/ValidatorResultData.js
@@ -16,7 +16,7 @@ import ValidatorResultDataAttributes from './ValidatorResultDataAttributes';
/**
* The ValidatorResultData model module.
* @module model/ValidatorResultData
- * @version 7.4.0
+ * @version 7.5.0
*/
class ValidatorResultData {
/**
diff --git a/src/model/ValidatorResultDataAttributes.js b/src/model/ValidatorResultDataAttributes.js
index d39752013..5326be7dc 100644
--- a/src/model/ValidatorResultDataAttributes.js
+++ b/src/model/ValidatorResultDataAttributes.js
@@ -16,7 +16,7 @@ import ValidatorResultDataAttributesMessages from './ValidatorResultDataAttribut
/**
* The ValidatorResultDataAttributes model module.
* @module model/ValidatorResultDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class ValidatorResultDataAttributes {
/**
diff --git a/src/model/ValidatorResultDataAttributesMessages.js b/src/model/ValidatorResultDataAttributesMessages.js
index b40403f79..37bdc4d36 100644
--- a/src/model/ValidatorResultDataAttributesMessages.js
+++ b/src/model/ValidatorResultDataAttributesMessages.js
@@ -16,7 +16,7 @@ import TokensAdditionalProps from './TokensAdditionalProps';
/**
* The ValidatorResultDataAttributesMessages model module.
* @module model/ValidatorResultDataAttributesMessages
- * @version 7.4.0
+ * @version 7.5.0
*/
class ValidatorResultDataAttributesMessages {
/**
diff --git a/src/model/Values.js b/src/model/Values.js
index 19007545d..9f5b4b7ba 100644
--- a/src/model/Values.js
+++ b/src/model/Values.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Values model module.
* @module model/Values
- * @version 7.4.0
+ * @version 7.5.0
*/
class Values {
/**
diff --git a/src/model/ValuesDdos.js b/src/model/ValuesDdos.js
index 7a91e2a7e..01b44ebba 100644
--- a/src/model/ValuesDdos.js
+++ b/src/model/ValuesDdos.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ValuesDdos model module.
* @module model/ValuesDdos
- * @version 7.4.0
+ * @version 7.5.0
*/
class ValuesDdos {
/**
diff --git a/src/model/Vcl.js b/src/model/Vcl.js
index bda5ab18e..8fd83b7cd 100644
--- a/src/model/Vcl.js
+++ b/src/model/Vcl.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Vcl model module.
* @module model/Vcl
- * @version 7.4.0
+ * @version 7.5.0
*/
class Vcl {
/**
diff --git a/src/model/VclDiff.js b/src/model/VclDiff.js
index bad7a351f..613c4293c 100644
--- a/src/model/VclDiff.js
+++ b/src/model/VclDiff.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VclDiff model module.
* @module model/VclDiff
- * @version 7.4.0
+ * @version 7.5.0
*/
class VclDiff {
/**
diff --git a/src/model/VclResponse.js b/src/model/VclResponse.js
index 3a907d17a..391019db0 100644
--- a/src/model/VclResponse.js
+++ b/src/model/VclResponse.js
@@ -18,7 +18,7 @@ import Vcl from './Vcl';
/**
* The VclResponse model module.
* @module model/VclResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class VclResponse {
/**
diff --git a/src/model/VclSyntaxHighlightingResponse.js b/src/model/VclSyntaxHighlightingResponse.js
index 85cde1dfc..9a46f64a2 100644
--- a/src/model/VclSyntaxHighlightingResponse.js
+++ b/src/model/VclSyntaxHighlightingResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VclSyntaxHighlightingResponse model module.
* @module model/VclSyntaxHighlightingResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class VclSyntaxHighlightingResponse {
/**
diff --git a/src/model/Version.js b/src/model/Version.js
index b3121facf..ebb6547b3 100644
--- a/src/model/Version.js
+++ b/src/model/Version.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Version model module.
* @module model/Version
- * @version 7.4.0
+ * @version 7.5.0
*/
class Version {
/**
diff --git a/src/model/VersionCreateResponse.js b/src/model/VersionCreateResponse.js
index 29f5a476b..1da6765cd 100644
--- a/src/model/VersionCreateResponse.js
+++ b/src/model/VersionCreateResponse.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VersionCreateResponse model module.
* @module model/VersionCreateResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class VersionCreateResponse {
/**
diff --git a/src/model/VersionDetail.js b/src/model/VersionDetail.js
index 51587481d..6513155fb 100644
--- a/src/model/VersionDetail.js
+++ b/src/model/VersionDetail.js
@@ -28,7 +28,7 @@ import VersionDetailSettings from './VersionDetailSettings';
/**
* The VersionDetail model module.
* @module model/VersionDetail
- * @version 7.4.0
+ * @version 7.5.0
*/
class VersionDetail {
/**
diff --git a/src/model/VersionDetailSettings.js b/src/model/VersionDetailSettings.js
index 62b991349..bbd7a2ed0 100644
--- a/src/model/VersionDetailSettings.js
+++ b/src/model/VersionDetailSettings.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VersionDetailSettings model module.
* @module model/VersionDetailSettings
- * @version 7.4.0
+ * @version 7.5.0
*/
class VersionDetailSettings {
/**
diff --git a/src/model/VersionResponse.js b/src/model/VersionResponse.js
index aaff409f0..71b13f921 100644
--- a/src/model/VersionResponse.js
+++ b/src/model/VersionResponse.js
@@ -18,7 +18,7 @@ import VersionResponseAllOf from './VersionResponseAllOf';
/**
* The VersionResponse model module.
* @module model/VersionResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class VersionResponse {
/**
diff --git a/src/model/VersionResponseAllOf.js b/src/model/VersionResponseAllOf.js
index a9f0bebc0..fbd253a87 100644
--- a/src/model/VersionResponseAllOf.js
+++ b/src/model/VersionResponseAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VersionResponseAllOf model module.
* @module model/VersionResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class VersionResponseAllOf {
/**
diff --git a/src/model/WafActiveRule.js b/src/model/WafActiveRule.js
index b1330ebbc..6f6bca416 100644
--- a/src/model/WafActiveRule.js
+++ b/src/model/WafActiveRule.js
@@ -16,7 +16,7 @@ import WafActiveRuleData from './WafActiveRuleData';
/**
* The WafActiveRule model module.
* @module model/WafActiveRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRule {
/**
diff --git a/src/model/WafActiveRuleCreationResponse.js b/src/model/WafActiveRuleCreationResponse.js
index 63b32e62a..3cbc100e2 100644
--- a/src/model/WafActiveRuleCreationResponse.js
+++ b/src/model/WafActiveRuleCreationResponse.js
@@ -21,7 +21,7 @@ import WafActiveRulesResponse from './WafActiveRulesResponse';
/**
* The WafActiveRuleCreationResponse model module.
* @module model/WafActiveRuleCreationResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleCreationResponse {
/**
diff --git a/src/model/WafActiveRuleData.js b/src/model/WafActiveRuleData.js
index b5429308b..fd117f6e5 100644
--- a/src/model/WafActiveRuleData.js
+++ b/src/model/WafActiveRuleData.js
@@ -18,7 +18,7 @@ import WafActiveRuleDataAttributes from './WafActiveRuleDataAttributes';
/**
* The WafActiveRuleData model module.
* @module model/WafActiveRuleData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleData {
/**
diff --git a/src/model/WafActiveRuleDataAttributes.js b/src/model/WafActiveRuleDataAttributes.js
index 3a19e49cb..0d5087206 100644
--- a/src/model/WafActiveRuleDataAttributes.js
+++ b/src/model/WafActiveRuleDataAttributes.js
@@ -16,7 +16,7 @@ import WafRuleRevisionOrLatest from './WafRuleRevisionOrLatest';
/**
* The WafActiveRuleDataAttributes model module.
* @module model/WafActiveRuleDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleDataAttributes {
/**
diff --git a/src/model/WafActiveRuleResponse.js b/src/model/WafActiveRuleResponse.js
index 6691c9165..6a9f1c2a4 100644
--- a/src/model/WafActiveRuleResponse.js
+++ b/src/model/WafActiveRuleResponse.js
@@ -16,7 +16,7 @@ import WafActiveRuleResponseData from './WafActiveRuleResponseData';
/**
* The WafActiveRuleResponse model module.
* @module model/WafActiveRuleResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleResponse {
/**
diff --git a/src/model/WafActiveRuleResponseData.js b/src/model/WafActiveRuleResponseData.js
index 9f2f91f74..9fa0af9a6 100644
--- a/src/model/WafActiveRuleResponseData.js
+++ b/src/model/WafActiveRuleResponseData.js
@@ -20,7 +20,7 @@ import WafActiveRuleResponseDataRelationships from './WafActiveRuleResponseDataR
/**
* The WafActiveRuleResponseData model module.
* @module model/WafActiveRuleResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleResponseData {
/**
diff --git a/src/model/WafActiveRuleResponseDataAllOf.js b/src/model/WafActiveRuleResponseDataAllOf.js
index 79a904f5b..af0c59d51 100644
--- a/src/model/WafActiveRuleResponseDataAllOf.js
+++ b/src/model/WafActiveRuleResponseDataAllOf.js
@@ -17,7 +17,7 @@ import WafActiveRuleResponseDataRelationships from './WafActiveRuleResponseDataR
/**
* The WafActiveRuleResponseDataAllOf model module.
* @module model/WafActiveRuleResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleResponseDataAllOf {
/**
diff --git a/src/model/WafActiveRuleResponseDataAttributes.js b/src/model/WafActiveRuleResponseDataAttributes.js
index 2d464d9c9..5f88ea7a0 100644
--- a/src/model/WafActiveRuleResponseDataAttributes.js
+++ b/src/model/WafActiveRuleResponseDataAttributes.js
@@ -17,7 +17,7 @@ import WafActiveRuleResponseDataAttributesAllOf from './WafActiveRuleResponseDat
/**
* The WafActiveRuleResponseDataAttributes model module.
* @module model/WafActiveRuleResponseDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleResponseDataAttributes {
/**
diff --git a/src/model/WafActiveRuleResponseDataAttributesAllOf.js b/src/model/WafActiveRuleResponseDataAttributesAllOf.js
index 86f897a94..4d9984d34 100644
--- a/src/model/WafActiveRuleResponseDataAttributesAllOf.js
+++ b/src/model/WafActiveRuleResponseDataAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafActiveRuleResponseDataAttributesAllOf model module.
* @module model/WafActiveRuleResponseDataAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafActiveRuleResponseDataRelationships.js b/src/model/WafActiveRuleResponseDataRelationships.js
index 517b48857..2db0035cd 100644
--- a/src/model/WafActiveRuleResponseDataRelationships.js
+++ b/src/model/WafActiveRuleResponseDataRelationships.js
@@ -19,7 +19,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The WafActiveRuleResponseDataRelationships model module.
* @module model/WafActiveRuleResponseDataRelationships
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRuleResponseDataRelationships {
/**
diff --git a/src/model/WafActiveRulesResponse.js b/src/model/WafActiveRulesResponse.js
index cbe997ed4..9937e1428 100644
--- a/src/model/WafActiveRulesResponse.js
+++ b/src/model/WafActiveRulesResponse.js
@@ -21,7 +21,7 @@ import WafActiveRulesResponseAllOf from './WafActiveRulesResponseAllOf';
/**
* The WafActiveRulesResponse model module.
* @module model/WafActiveRulesResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRulesResponse {
/**
diff --git a/src/model/WafActiveRulesResponseAllOf.js b/src/model/WafActiveRulesResponseAllOf.js
index 13ab0a979..161fa3b5c 100644
--- a/src/model/WafActiveRulesResponseAllOf.js
+++ b/src/model/WafActiveRulesResponseAllOf.js
@@ -17,7 +17,7 @@ import WafActiveRuleResponseData from './WafActiveRuleResponseData';
/**
* The WafActiveRulesResponseAllOf model module.
* @module model/WafActiveRulesResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafActiveRulesResponseAllOf {
/**
diff --git a/src/model/WafExclusion.js b/src/model/WafExclusion.js
index 8d580d760..4b137740a 100644
--- a/src/model/WafExclusion.js
+++ b/src/model/WafExclusion.js
@@ -16,7 +16,7 @@ import WafExclusionData from './WafExclusionData';
/**
* The WafExclusion model module.
* @module model/WafExclusion
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusion {
/**
diff --git a/src/model/WafExclusionData.js b/src/model/WafExclusionData.js
index cfcdff4f5..cc7ed2e35 100644
--- a/src/model/WafExclusionData.js
+++ b/src/model/WafExclusionData.js
@@ -18,7 +18,7 @@ import WafExclusionDataAttributes from './WafExclusionDataAttributes';
/**
* The WafExclusionData model module.
* @module model/WafExclusionData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionData {
/**
diff --git a/src/model/WafExclusionDataAttributes.js b/src/model/WafExclusionDataAttributes.js
index 80846ad49..bdc766a4f 100644
--- a/src/model/WafExclusionDataAttributes.js
+++ b/src/model/WafExclusionDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafExclusionDataAttributes model module.
* @module model/WafExclusionDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionDataAttributes {
/**
diff --git a/src/model/WafExclusionResponse.js b/src/model/WafExclusionResponse.js
index 9a817dacc..bf860ede0 100644
--- a/src/model/WafExclusionResponse.js
+++ b/src/model/WafExclusionResponse.js
@@ -16,7 +16,7 @@ import WafExclusionResponseData from './WafExclusionResponseData';
/**
* The WafExclusionResponse model module.
* @module model/WafExclusionResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionResponse {
/**
diff --git a/src/model/WafExclusionResponseData.js b/src/model/WafExclusionResponseData.js
index 6294abf46..d2a0a8bb3 100644
--- a/src/model/WafExclusionResponseData.js
+++ b/src/model/WafExclusionResponseData.js
@@ -20,7 +20,7 @@ import WafExclusionResponseDataRelationships from './WafExclusionResponseDataRel
/**
* The WafExclusionResponseData model module.
* @module model/WafExclusionResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionResponseData {
/**
diff --git a/src/model/WafExclusionResponseDataAllOf.js b/src/model/WafExclusionResponseDataAllOf.js
index dc6031722..68d44be5f 100644
--- a/src/model/WafExclusionResponseDataAllOf.js
+++ b/src/model/WafExclusionResponseDataAllOf.js
@@ -17,7 +17,7 @@ import WafExclusionResponseDataRelationships from './WafExclusionResponseDataRel
/**
* The WafExclusionResponseDataAllOf model module.
* @module model/WafExclusionResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionResponseDataAllOf {
/**
diff --git a/src/model/WafExclusionResponseDataAttributes.js b/src/model/WafExclusionResponseDataAttributes.js
index 10d81e3b2..6bfe383a7 100644
--- a/src/model/WafExclusionResponseDataAttributes.js
+++ b/src/model/WafExclusionResponseDataAttributes.js
@@ -17,7 +17,7 @@ import WafExclusionResponseDataAttributesAllOf from './WafExclusionResponseDataA
/**
* The WafExclusionResponseDataAttributes model module.
* @module model/WafExclusionResponseDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionResponseDataAttributes {
/**
diff --git a/src/model/WafExclusionResponseDataAttributesAllOf.js b/src/model/WafExclusionResponseDataAttributesAllOf.js
index e30920660..f4040cfe9 100644
--- a/src/model/WafExclusionResponseDataAttributesAllOf.js
+++ b/src/model/WafExclusionResponseDataAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafExclusionResponseDataAttributesAllOf model module.
* @module model/WafExclusionResponseDataAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafExclusionResponseDataRelationships.js b/src/model/WafExclusionResponseDataRelationships.js
index b067a0cb5..26931a64d 100644
--- a/src/model/WafExclusionResponseDataRelationships.js
+++ b/src/model/WafExclusionResponseDataRelationships.js
@@ -19,7 +19,7 @@ import RelationshipWafRules from './RelationshipWafRules';
/**
* The WafExclusionResponseDataRelationships model module.
* @module model/WafExclusionResponseDataRelationships
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionResponseDataRelationships {
/**
diff --git a/src/model/WafExclusionsResponse.js b/src/model/WafExclusionsResponse.js
index 0a5398697..911425779 100644
--- a/src/model/WafExclusionsResponse.js
+++ b/src/model/WafExclusionsResponse.js
@@ -21,7 +21,7 @@ import WafExclusionsResponseAllOf from './WafExclusionsResponseAllOf';
/**
* The WafExclusionsResponse model module.
* @module model/WafExclusionsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionsResponse {
/**
diff --git a/src/model/WafExclusionsResponseAllOf.js b/src/model/WafExclusionsResponseAllOf.js
index f5a311dcc..765932a53 100644
--- a/src/model/WafExclusionsResponseAllOf.js
+++ b/src/model/WafExclusionsResponseAllOf.js
@@ -17,7 +17,7 @@ import WafExclusionResponseData from './WafExclusionResponseData';
/**
* The WafExclusionsResponseAllOf model module.
* @module model/WafExclusionsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafExclusionsResponseAllOf {
/**
diff --git a/src/model/WafFirewall.js b/src/model/WafFirewall.js
index 3f7db3b60..f0ce2eae5 100644
--- a/src/model/WafFirewall.js
+++ b/src/model/WafFirewall.js
@@ -16,7 +16,7 @@ import WafFirewallData from './WafFirewallData';
/**
* The WafFirewall model module.
* @module model/WafFirewall
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewall {
/**
diff --git a/src/model/WafFirewallData.js b/src/model/WafFirewallData.js
index dbd74a9e7..f1b8b7a5e 100644
--- a/src/model/WafFirewallData.js
+++ b/src/model/WafFirewallData.js
@@ -17,7 +17,7 @@ import WafFirewallDataAttributes from './WafFirewallDataAttributes';
/**
* The WafFirewallData model module.
* @module model/WafFirewallData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallData {
/**
diff --git a/src/model/WafFirewallDataAttributes.js b/src/model/WafFirewallDataAttributes.js
index e3caf9965..3331e1570 100644
--- a/src/model/WafFirewallDataAttributes.js
+++ b/src/model/WafFirewallDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallDataAttributes model module.
* @module model/WafFirewallDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallDataAttributes {
/**
diff --git a/src/model/WafFirewallResponse.js b/src/model/WafFirewallResponse.js
index 7340ac93b..747c6ceaf 100644
--- a/src/model/WafFirewallResponse.js
+++ b/src/model/WafFirewallResponse.js
@@ -17,7 +17,7 @@ import WafFirewallResponseData from './WafFirewallResponseData';
/**
* The WafFirewallResponse model module.
* @module model/WafFirewallResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallResponse {
/**
diff --git a/src/model/WafFirewallResponseData.js b/src/model/WafFirewallResponseData.js
index f4bd8e6bf..c01a087b9 100644
--- a/src/model/WafFirewallResponseData.js
+++ b/src/model/WafFirewallResponseData.js
@@ -20,7 +20,7 @@ import WafFirewallResponseDataAttributes from './WafFirewallResponseDataAttribut
/**
* The WafFirewallResponseData model module.
* @module model/WafFirewallResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallResponseData {
/**
diff --git a/src/model/WafFirewallResponseDataAllOf.js b/src/model/WafFirewallResponseDataAllOf.js
index 0076952ed..9aee260b4 100644
--- a/src/model/WafFirewallResponseDataAllOf.js
+++ b/src/model/WafFirewallResponseDataAllOf.js
@@ -17,7 +17,7 @@ import WafFirewallResponseDataAttributes from './WafFirewallResponseDataAttribut
/**
* The WafFirewallResponseDataAllOf model module.
* @module model/WafFirewallResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallResponseDataAllOf {
/**
diff --git a/src/model/WafFirewallResponseDataAttributes.js b/src/model/WafFirewallResponseDataAttributes.js
index ba3e9dae3..7c4b6b81f 100644
--- a/src/model/WafFirewallResponseDataAttributes.js
+++ b/src/model/WafFirewallResponseDataAttributes.js
@@ -17,7 +17,7 @@ import WafFirewallResponseDataAttributesAllOf from './WafFirewallResponseDataAtt
/**
* The WafFirewallResponseDataAttributes model module.
* @module model/WafFirewallResponseDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallResponseDataAttributes {
/**
diff --git a/src/model/WafFirewallResponseDataAttributesAllOf.js b/src/model/WafFirewallResponseDataAttributesAllOf.js
index 254236362..a8c35e6ec 100644
--- a/src/model/WafFirewallResponseDataAttributesAllOf.js
+++ b/src/model/WafFirewallResponseDataAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallResponseDataAttributesAllOf model module.
* @module model/WafFirewallResponseDataAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafFirewallVersion.js b/src/model/WafFirewallVersion.js
index 5b5c2346f..560f89541 100644
--- a/src/model/WafFirewallVersion.js
+++ b/src/model/WafFirewallVersion.js
@@ -16,7 +16,7 @@ import WafFirewallVersionData from './WafFirewallVersionData';
/**
* The WafFirewallVersion model module.
* @module model/WafFirewallVersion
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersion {
/**
diff --git a/src/model/WafFirewallVersionData.js b/src/model/WafFirewallVersionData.js
index 44fb498e2..f7299ef81 100644
--- a/src/model/WafFirewallVersionData.js
+++ b/src/model/WafFirewallVersionData.js
@@ -17,7 +17,7 @@ import WafFirewallVersionDataAttributes from './WafFirewallVersionDataAttributes
/**
* The WafFirewallVersionData model module.
* @module model/WafFirewallVersionData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionData {
/**
diff --git a/src/model/WafFirewallVersionDataAttributes.js b/src/model/WafFirewallVersionDataAttributes.js
index c12a097c4..4a3d16b21 100644
--- a/src/model/WafFirewallVersionDataAttributes.js
+++ b/src/model/WafFirewallVersionDataAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallVersionDataAttributes model module.
* @module model/WafFirewallVersionDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionDataAttributes {
/**
diff --git a/src/model/WafFirewallVersionResponse.js b/src/model/WafFirewallVersionResponse.js
index 8e49c4f9a..189f1e263 100644
--- a/src/model/WafFirewallVersionResponse.js
+++ b/src/model/WafFirewallVersionResponse.js
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseData from './WafFirewallVersionResponseData';
/**
* The WafFirewallVersionResponse model module.
* @module model/WafFirewallVersionResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionResponse {
/**
diff --git a/src/model/WafFirewallVersionResponseData.js b/src/model/WafFirewallVersionResponseData.js
index 6cf89a61a..5cac5572c 100644
--- a/src/model/WafFirewallVersionResponseData.js
+++ b/src/model/WafFirewallVersionResponseData.js
@@ -20,7 +20,7 @@ import WafFirewallVersionResponseDataAttributes from './WafFirewallVersionRespon
/**
* The WafFirewallVersionResponseData model module.
* @module model/WafFirewallVersionResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionResponseData {
/**
diff --git a/src/model/WafFirewallVersionResponseDataAllOf.js b/src/model/WafFirewallVersionResponseDataAllOf.js
index 4e177f19d..7a28af5c9 100644
--- a/src/model/WafFirewallVersionResponseDataAllOf.js
+++ b/src/model/WafFirewallVersionResponseDataAllOf.js
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseDataAttributes from './WafFirewallVersionRespon
/**
* The WafFirewallVersionResponseDataAllOf model module.
* @module model/WafFirewallVersionResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionResponseDataAllOf {
/**
diff --git a/src/model/WafFirewallVersionResponseDataAttributes.js b/src/model/WafFirewallVersionResponseDataAttributes.js
index 0802ade68..352085b42 100644
--- a/src/model/WafFirewallVersionResponseDataAttributes.js
+++ b/src/model/WafFirewallVersionResponseDataAttributes.js
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseDataAttributesAllOf from './WafFirewallVersionR
/**
* The WafFirewallVersionResponseDataAttributes model module.
* @module model/WafFirewallVersionResponseDataAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionResponseDataAttributes {
/**
diff --git a/src/model/WafFirewallVersionResponseDataAttributesAllOf.js b/src/model/WafFirewallVersionResponseDataAttributesAllOf.js
index a9f054772..3b459b9c5 100644
--- a/src/model/WafFirewallVersionResponseDataAttributesAllOf.js
+++ b/src/model/WafFirewallVersionResponseDataAttributesAllOf.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallVersionResponseDataAttributesAllOf model module.
* @module model/WafFirewallVersionResponseDataAttributesAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafFirewallVersionsResponse.js b/src/model/WafFirewallVersionsResponse.js
index 0938f4789..bdf235f87 100644
--- a/src/model/WafFirewallVersionsResponse.js
+++ b/src/model/WafFirewallVersionsResponse.js
@@ -21,7 +21,7 @@ import WafFirewallVersionsResponseAllOf from './WafFirewallVersionsResponseAllOf
/**
* The WafFirewallVersionsResponse model module.
* @module model/WafFirewallVersionsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionsResponse {
/**
diff --git a/src/model/WafFirewallVersionsResponseAllOf.js b/src/model/WafFirewallVersionsResponseAllOf.js
index c01e6d10e..859177135 100644
--- a/src/model/WafFirewallVersionsResponseAllOf.js
+++ b/src/model/WafFirewallVersionsResponseAllOf.js
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseData from './WafFirewallVersionResponseData';
/**
* The WafFirewallVersionsResponseAllOf model module.
* @module model/WafFirewallVersionsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallVersionsResponseAllOf {
/**
diff --git a/src/model/WafFirewallsResponse.js b/src/model/WafFirewallsResponse.js
index e09d2d074..6c5e72b8d 100644
--- a/src/model/WafFirewallsResponse.js
+++ b/src/model/WafFirewallsResponse.js
@@ -21,7 +21,7 @@ import WafFirewallsResponseAllOf from './WafFirewallsResponseAllOf';
/**
* The WafFirewallsResponse model module.
* @module model/WafFirewallsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallsResponse {
/**
diff --git a/src/model/WafFirewallsResponseAllOf.js b/src/model/WafFirewallsResponseAllOf.js
index 37f211c75..67538ef6c 100644
--- a/src/model/WafFirewallsResponseAllOf.js
+++ b/src/model/WafFirewallsResponseAllOf.js
@@ -17,7 +17,7 @@ import WafFirewallResponseData from './WafFirewallResponseData';
/**
* The WafFirewallsResponseAllOf model module.
* @module model/WafFirewallsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafFirewallsResponseAllOf {
/**
diff --git a/src/model/WafRule.js b/src/model/WafRule.js
index 9285c7097..596c20c3f 100644
--- a/src/model/WafRule.js
+++ b/src/model/WafRule.js
@@ -17,7 +17,7 @@ import WafRuleAttributes from './WafRuleAttributes';
/**
* The WafRule model module.
* @module model/WafRule
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRule {
/**
diff --git a/src/model/WafRuleAttributes.js b/src/model/WafRuleAttributes.js
index 502283c42..dba9fedc3 100644
--- a/src/model/WafRuleAttributes.js
+++ b/src/model/WafRuleAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafRuleAttributes model module.
* @module model/WafRuleAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleAttributes {
/**
diff --git a/src/model/WafRuleResponse.js b/src/model/WafRuleResponse.js
index 348d15572..5abe3c91c 100644
--- a/src/model/WafRuleResponse.js
+++ b/src/model/WafRuleResponse.js
@@ -17,7 +17,7 @@ import WafRuleResponseData from './WafRuleResponseData';
/**
* The WafRuleResponse model module.
* @module model/WafRuleResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleResponse {
/**
diff --git a/src/model/WafRuleResponseData.js b/src/model/WafRuleResponseData.js
index 076e290a1..5decb48ed 100644
--- a/src/model/WafRuleResponseData.js
+++ b/src/model/WafRuleResponseData.js
@@ -20,7 +20,7 @@ import WafRuleResponseDataAllOf from './WafRuleResponseDataAllOf';
/**
* The WafRuleResponseData model module.
* @module model/WafRuleResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleResponseData {
/**
diff --git a/src/model/WafRuleResponseDataAllOf.js b/src/model/WafRuleResponseDataAllOf.js
index de55f903e..6d7f03e91 100644
--- a/src/model/WafRuleResponseDataAllOf.js
+++ b/src/model/WafRuleResponseDataAllOf.js
@@ -16,7 +16,7 @@ import RelationshipsForWafRule from './RelationshipsForWafRule';
/**
* The WafRuleResponseDataAllOf model module.
* @module model/WafRuleResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleResponseDataAllOf {
/**
diff --git a/src/model/WafRuleRevision.js b/src/model/WafRuleRevision.js
index 6bc8f8370..ba98821b8 100644
--- a/src/model/WafRuleRevision.js
+++ b/src/model/WafRuleRevision.js
@@ -17,7 +17,7 @@ import WafRuleRevisionAttributes from './WafRuleRevisionAttributes';
/**
* The WafRuleRevision model module.
* @module model/WafRuleRevision
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevision {
/**
diff --git a/src/model/WafRuleRevisionAttributes.js b/src/model/WafRuleRevisionAttributes.js
index fd86496b3..fe050272a 100644
--- a/src/model/WafRuleRevisionAttributes.js
+++ b/src/model/WafRuleRevisionAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafRuleRevisionAttributes model module.
* @module model/WafRuleRevisionAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionAttributes {
/**
diff --git a/src/model/WafRuleRevisionOrLatest.js b/src/model/WafRuleRevisionOrLatest.js
index f210ceb54..69e03ae96 100644
--- a/src/model/WafRuleRevisionOrLatest.js
+++ b/src/model/WafRuleRevisionOrLatest.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafRuleRevisionOrLatest model module.
* @module model/WafRuleRevisionOrLatest
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionOrLatest {
/**
diff --git a/src/model/WafRuleRevisionResponse.js b/src/model/WafRuleRevisionResponse.js
index 8e749a909..dd7b862cf 100644
--- a/src/model/WafRuleRevisionResponse.js
+++ b/src/model/WafRuleRevisionResponse.js
@@ -17,7 +17,7 @@ import WafRuleRevisionResponseData from './WafRuleRevisionResponseData';
/**
* The WafRuleRevisionResponse model module.
* @module model/WafRuleRevisionResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionResponse {
/**
diff --git a/src/model/WafRuleRevisionResponseData.js b/src/model/WafRuleRevisionResponseData.js
index 55f39dd4c..d886b54e0 100644
--- a/src/model/WafRuleRevisionResponseData.js
+++ b/src/model/WafRuleRevisionResponseData.js
@@ -20,7 +20,7 @@ import WafRuleRevisionResponseDataAllOf from './WafRuleRevisionResponseDataAllOf
/**
* The WafRuleRevisionResponseData model module.
* @module model/WafRuleRevisionResponseData
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionResponseData {
/**
diff --git a/src/model/WafRuleRevisionResponseDataAllOf.js b/src/model/WafRuleRevisionResponseDataAllOf.js
index 6af1cae11..3fc83db5f 100644
--- a/src/model/WafRuleRevisionResponseDataAllOf.js
+++ b/src/model/WafRuleRevisionResponseDataAllOf.js
@@ -16,7 +16,7 @@ import RelationshipWafRule from './RelationshipWafRule';
/**
* The WafRuleRevisionResponseDataAllOf model module.
* @module model/WafRuleRevisionResponseDataAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionResponseDataAllOf {
/**
diff --git a/src/model/WafRuleRevisionsResponse.js b/src/model/WafRuleRevisionsResponse.js
index 692cc7e2b..eab04afa4 100644
--- a/src/model/WafRuleRevisionsResponse.js
+++ b/src/model/WafRuleRevisionsResponse.js
@@ -21,7 +21,7 @@ import WafRuleRevisionsResponseAllOf from './WafRuleRevisionsResponseAllOf';
/**
* The WafRuleRevisionsResponse model module.
* @module model/WafRuleRevisionsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionsResponse {
/**
diff --git a/src/model/WafRuleRevisionsResponseAllOf.js b/src/model/WafRuleRevisionsResponseAllOf.js
index 2639c63f9..cf32d9526 100644
--- a/src/model/WafRuleRevisionsResponseAllOf.js
+++ b/src/model/WafRuleRevisionsResponseAllOf.js
@@ -17,7 +17,7 @@ import WafRuleRevisionResponseData from './WafRuleRevisionResponseData';
/**
* The WafRuleRevisionsResponseAllOf model module.
* @module model/WafRuleRevisionsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRuleRevisionsResponseAllOf {
/**
diff --git a/src/model/WafRulesResponse.js b/src/model/WafRulesResponse.js
index 332fc51cf..bc00935e0 100644
--- a/src/model/WafRulesResponse.js
+++ b/src/model/WafRulesResponse.js
@@ -21,7 +21,7 @@ import WafRulesResponseAllOf from './WafRulesResponseAllOf';
/**
* The WafRulesResponse model module.
* @module model/WafRulesResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRulesResponse {
/**
diff --git a/src/model/WafRulesResponseAllOf.js b/src/model/WafRulesResponseAllOf.js
index 7583bd5c6..6634f850e 100644
--- a/src/model/WafRulesResponseAllOf.js
+++ b/src/model/WafRulesResponseAllOf.js
@@ -17,7 +17,7 @@ import WafRuleResponseData from './WafRuleResponseData';
/**
* The WafRulesResponseAllOf model module.
* @module model/WafRulesResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafRulesResponseAllOf {
/**
diff --git a/src/model/WafTag.js b/src/model/WafTag.js
index dc2a73082..54d6b2139 100644
--- a/src/model/WafTag.js
+++ b/src/model/WafTag.js
@@ -17,7 +17,7 @@ import WafTagAttributes from './WafTagAttributes';
/**
* The WafTag model module.
* @module model/WafTag
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafTag {
/**
diff --git a/src/model/WafTagAttributes.js b/src/model/WafTagAttributes.js
index cd05c4cc8..135124f8b 100644
--- a/src/model/WafTagAttributes.js
+++ b/src/model/WafTagAttributes.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafTagAttributes model module.
* @module model/WafTagAttributes
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafTagAttributes {
/**
diff --git a/src/model/WafTagsResponse.js b/src/model/WafTagsResponse.js
index e939da8fe..82c8a2a31 100644
--- a/src/model/WafTagsResponse.js
+++ b/src/model/WafTagsResponse.js
@@ -21,7 +21,7 @@ import WafTagsResponseDataItem from './WafTagsResponseDataItem';
/**
* The WafTagsResponse model module.
* @module model/WafTagsResponse
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafTagsResponse {
/**
diff --git a/src/model/WafTagsResponseAllOf.js b/src/model/WafTagsResponseAllOf.js
index ef54fef80..9c848cd31 100644
--- a/src/model/WafTagsResponseAllOf.js
+++ b/src/model/WafTagsResponseAllOf.js
@@ -17,7 +17,7 @@ import WafTagsResponseDataItem from './WafTagsResponseDataItem';
/**
* The WafTagsResponseAllOf model module.
* @module model/WafTagsResponseAllOf
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafTagsResponseAllOf {
/**
diff --git a/src/model/WafTagsResponseDataItem.js b/src/model/WafTagsResponseDataItem.js
index 3c4e84d92..af8e36241 100644
--- a/src/model/WafTagsResponseDataItem.js
+++ b/src/model/WafTagsResponseDataItem.js
@@ -20,7 +20,7 @@ import WafTagAttributes from './WafTagAttributes';
/**
* The WafTagsResponseDataItem model module.
* @module model/WafTagsResponseDataItem
- * @version 7.4.0
+ * @version 7.5.0
*/
class WafTagsResponseDataItem {
/**
diff --git a/src/model/WsMessageFormat.js b/src/model/WsMessageFormat.js
index 912ddd6c6..3d9585f04 100644
--- a/src/model/WsMessageFormat.js
+++ b/src/model/WsMessageFormat.js
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WsMessageFormat model module.
* @module model/WsMessageFormat
- * @version 7.4.0
+ * @version 7.5.0
*/
class WsMessageFormat {
/**