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.} and HTTP response @@ -79,7 +79,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 data of type {@link Array.} diff --git a/src/api/CustomerApi.js b/src/api/CustomerApi.js index 616aa270e..add481137 100644 --- a/src/api/CustomerApi.js +++ b/src/api/CustomerApi.js @@ -19,7 +19,7 @@ import SchemasUserResponse from '../model/SchemasUserResponse'; /** * Customer service. * @module api/CustomerApi -* @version 7.4.0 +* @version 7.5.0 */ export default class CustomerApi { diff --git a/src/api/DictionaryApi.js b/src/api/DictionaryApi.js index 1411e321b..843145ba5 100644 --- a/src/api/DictionaryApi.js +++ b/src/api/DictionaryApi.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Dictionary service. * @module api/DictionaryApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DictionaryApi { diff --git a/src/api/DictionaryInfoApi.js b/src/api/DictionaryInfoApi.js index 97ee42683..b05a7141f 100644 --- a/src/api/DictionaryInfoApi.js +++ b/src/api/DictionaryInfoApi.js @@ -17,7 +17,7 @@ import DictionaryInfoResponse from '../model/DictionaryInfoResponse'; /** * DictionaryInfo service. * @module api/DictionaryInfoApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DictionaryInfoApi { diff --git a/src/api/DictionaryItemApi.js b/src/api/DictionaryItemApi.js index 3e8e9135c..14808238a 100644 --- a/src/api/DictionaryItemApi.js +++ b/src/api/DictionaryItemApi.js @@ -19,7 +19,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * DictionaryItem service. * @module api/DictionaryItemApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DictionaryItemApi { diff --git a/src/api/DiffApi.js b/src/api/DiffApi.js index 625b721f9..fc38ff282 100644 --- a/src/api/DiffApi.js +++ b/src/api/DiffApi.js @@ -17,7 +17,7 @@ import DiffResponse from '../model/DiffResponse'; /** * Diff service. * @module api/DiffApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DiffApi { diff --git a/src/api/DirectorApi.js b/src/api/DirectorApi.js index 0fcb72719..d98ce56de 100644 --- a/src/api/DirectorApi.js +++ b/src/api/DirectorApi.js @@ -19,7 +19,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Director service. * @module api/DirectorApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DirectorApi { diff --git a/src/api/DirectorBackendApi.js b/src/api/DirectorBackendApi.js index 262278cb2..76a13e6ad 100644 --- a/src/api/DirectorBackendApi.js +++ b/src/api/DirectorBackendApi.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * DirectorBackend service. * @module api/DirectorBackendApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DirectorBackendApi { diff --git a/src/api/DomainApi.js b/src/api/DomainApi.js index 5d8baffdf..dd1c203ce 100644 --- a/src/api/DomainApi.js +++ b/src/api/DomainApi.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Domain service. * @module api/DomainApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DomainApi { diff --git a/src/api/DomainInspectorHistoricalApi.js b/src/api/DomainInspectorHistoricalApi.js index 38ae55054..6a5409b8e 100644 --- a/src/api/DomainInspectorHistoricalApi.js +++ b/src/api/DomainInspectorHistoricalApi.js @@ -17,7 +17,7 @@ import HistoricalDomainsResponse from '../model/HistoricalDomainsResponse'; /** * DomainInspectorHistorical service. * @module api/DomainInspectorHistoricalApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DomainInspectorHistoricalApi { diff --git a/src/api/DomainInspectorRealtimeApi.js b/src/api/DomainInspectorRealtimeApi.js index 7b4438ce1..388d409ad 100644 --- a/src/api/DomainInspectorRealtimeApi.js +++ b/src/api/DomainInspectorRealtimeApi.js @@ -17,7 +17,7 @@ import DomainInspector from '../model/DomainInspector'; /** * DomainInspectorRealtime service. * @module api/DomainInspectorRealtimeApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DomainInspectorRealtimeApi { diff --git a/src/api/DomainOwnershipsApi.js b/src/api/DomainOwnershipsApi.js index 8abbf95c5..ac82e20ec 100644 --- a/src/api/DomainOwnershipsApi.js +++ b/src/api/DomainOwnershipsApi.js @@ -17,7 +17,7 @@ import InlineResponse2002 from '../model/InlineResponse2002'; /** * DomainOwnerships service. * @module api/DomainOwnershipsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class DomainOwnershipsApi { diff --git a/src/api/EnabledProductsApi.js b/src/api/EnabledProductsApi.js index 48b3c5338..70011098b 100644 --- a/src/api/EnabledProductsApi.js +++ b/src/api/EnabledProductsApi.js @@ -17,7 +17,7 @@ import EnabledProductResponse from '../model/EnabledProductResponse'; /** * EnabledProducts service. * @module api/EnabledProductsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class EnabledProductsApi { diff --git a/src/api/EventsApi.js b/src/api/EventsApi.js index dce55fefa..4f68e7acb 100644 --- a/src/api/EventsApi.js +++ b/src/api/EventsApi.js @@ -18,7 +18,7 @@ import EventsResponse from '../model/EventsResponse'; /** * Events service. * @module api/EventsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class EventsApi { diff --git a/src/api/GzipApi.js b/src/api/GzipApi.js index b8c281855..91c5d4d88 100644 --- a/src/api/GzipApi.js +++ b/src/api/GzipApi.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Gzip service. * @module api/GzipApi -* @version 7.4.0 +* @version 7.5.0 */ export default class GzipApi { diff --git a/src/api/HeaderApi.js b/src/api/HeaderApi.js index 7475be7b1..eb0900966 100644 --- a/src/api/HeaderApi.js +++ b/src/api/HeaderApi.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Header service. * @module api/HeaderApi -* @version 7.4.0 +* @version 7.5.0 */ export default class HeaderApi { diff --git a/src/api/HealthcheckApi.js b/src/api/HealthcheckApi.js index 69763833d..cd05dd206 100644 --- a/src/api/HealthcheckApi.js +++ b/src/api/HealthcheckApi.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Healthcheck service. * @module api/HealthcheckApi -* @version 7.4.0 +* @version 7.5.0 */ export default class HealthcheckApi { diff --git a/src/api/HistoricalApi.js b/src/api/HistoricalApi.js index 682c4170e..c8b5a1673 100644 --- a/src/api/HistoricalApi.js +++ b/src/api/HistoricalApi.js @@ -22,7 +22,7 @@ import HistoricalUsageServiceResponse from '../model/HistoricalUsageServiceRespo /** * Historical service. * @module api/HistoricalApi -* @version 7.4.0 +* @version 7.5.0 */ export default class HistoricalApi { diff --git a/src/api/Http3Api.js b/src/api/Http3Api.js index 10af96bc6..fed54e1b6 100644 --- a/src/api/Http3Api.js +++ b/src/api/Http3Api.js @@ -18,7 +18,7 @@ import InlineResponse200 from '../model/InlineResponse200'; /** * Http3 service. * @module api/Http3Api -* @version 7.4.0 +* @version 7.5.0 */ export default class Http3Api { diff --git a/src/api/IamPermissionsApi.js b/src/api/IamPermissionsApi.js index 78cdcf8b3..86fea1cb7 100644 --- a/src/api/IamPermissionsApi.js +++ b/src/api/IamPermissionsApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * IamPermissions service. * @module api/IamPermissionsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class IamPermissionsApi { diff --git a/src/api/IamRolesApi.js b/src/api/IamRolesApi.js index b600657c9..2a7dc3b5e 100644 --- a/src/api/IamRolesApi.js +++ b/src/api/IamRolesApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * IamRoles service. * @module api/IamRolesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class IamRolesApi { diff --git a/src/api/IamServiceGroupsApi.js b/src/api/IamServiceGroupsApi.js index 0bbe4b04b..eacd78c61 100644 --- a/src/api/IamServiceGroupsApi.js +++ b/src/api/IamServiceGroupsApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * IamServiceGroups service. * @module api/IamServiceGroupsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class IamServiceGroupsApi { diff --git a/src/api/IamUserGroupsApi.js b/src/api/IamUserGroupsApi.js index 20472ac0c..6d16ac015 100644 --- a/src/api/IamUserGroupsApi.js +++ b/src/api/IamUserGroupsApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * IamUserGroups service. * @module api/IamUserGroupsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class IamUserGroupsApi { diff --git a/src/api/ImageOptimizerDefaultSettingsApi.js b/src/api/ImageOptimizerDefaultSettingsApi.js index 6ff86fd81..5cbd4712b 100644 --- a/src/api/ImageOptimizerDefaultSettingsApi.js +++ b/src/api/ImageOptimizerDefaultSettingsApi.js @@ -19,7 +19,7 @@ import DefaultSettingsResponse from '../model/DefaultSettingsResponse'; /** * ImageOptimizerDefaultSettings service. * @module api/ImageOptimizerDefaultSettingsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class ImageOptimizerDefaultSettingsApi { diff --git a/src/api/InvitationsApi.js b/src/api/InvitationsApi.js index b54a8c3bf..b45b45f08 100644 --- a/src/api/InvitationsApi.js +++ b/src/api/InvitationsApi.js @@ -19,7 +19,7 @@ import InvitationsResponse from '../model/InvitationsResponse'; /** * Invitations service. * @module api/InvitationsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class InvitationsApi { diff --git a/src/api/KvStoreApi.js b/src/api/KvStoreApi.js index efac0c241..80b8d40cf 100644 --- a/src/api/KvStoreApi.js +++ b/src/api/KvStoreApi.js @@ -19,7 +19,7 @@ import StoreResponse from '../model/StoreResponse'; /** * KvStore service. * @module api/KvStoreApi -* @version 7.4.0 +* @version 7.5.0 */ export default class KvStoreApi { diff --git a/src/api/KvStoreItemApi.js b/src/api/KvStoreItemApi.js index 292248569..5e77d920e 100644 --- a/src/api/KvStoreItemApi.js +++ b/src/api/KvStoreItemApi.js @@ -17,7 +17,7 @@ import InlineResponse2004 from '../model/InlineResponse2004'; /** * KvStoreItem service. * @module api/KvStoreItemApi -* @version 7.4.0 +* @version 7.5.0 */ export default class KvStoreItemApi { diff --git a/src/api/LegacyWafConfigurationSetsApi.js b/src/api/LegacyWafConfigurationSetsApi.js index 9dec81e56..bce611442 100644 --- a/src/api/LegacyWafConfigurationSetsApi.js +++ b/src/api/LegacyWafConfigurationSetsApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafConfigurationSets service. * @module api/LegacyWafConfigurationSetsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafConfigurationSetsApi { diff --git a/src/api/LegacyWafFirewallApi.js b/src/api/LegacyWafFirewallApi.js index 4e959d660..57b8f3707 100644 --- a/src/api/LegacyWafFirewallApi.js +++ b/src/api/LegacyWafFirewallApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafFirewall service. * @module api/LegacyWafFirewallApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafFirewallApi { diff --git a/src/api/LegacyWafOwaspApi.js b/src/api/LegacyWafOwaspApi.js index 0e2ddcb27..35fcd92a7 100644 --- a/src/api/LegacyWafOwaspApi.js +++ b/src/api/LegacyWafOwaspApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafOwasp service. * @module api/LegacyWafOwaspApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafOwaspApi { diff --git a/src/api/LegacyWafRuleApi.js b/src/api/LegacyWafRuleApi.js index 326ff25f1..68664aca2 100644 --- a/src/api/LegacyWafRuleApi.js +++ b/src/api/LegacyWafRuleApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafRule service. * @module api/LegacyWafRuleApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafRuleApi { diff --git a/src/api/LegacyWafRuleStatusApi.js b/src/api/LegacyWafRuleStatusApi.js index b4dd1e920..b6ef4ea7b 100644 --- a/src/api/LegacyWafRuleStatusApi.js +++ b/src/api/LegacyWafRuleStatusApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafRuleStatus service. * @module api/LegacyWafRuleStatusApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafRuleStatusApi { diff --git a/src/api/LegacyWafRulesetApi.js b/src/api/LegacyWafRulesetApi.js index ea21650b0..b94f86dc3 100644 --- a/src/api/LegacyWafRulesetApi.js +++ b/src/api/LegacyWafRulesetApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafRuleset service. * @module api/LegacyWafRulesetApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafRulesetApi { diff --git a/src/api/LegacyWafTagApi.js b/src/api/LegacyWafTagApi.js index 843903c6b..9e87a9ea4 100644 --- a/src/api/LegacyWafTagApi.js +++ b/src/api/LegacyWafTagApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafTag service. * @module api/LegacyWafTagApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafTagApi { diff --git a/src/api/LegacyWafUpdateStatusApi.js b/src/api/LegacyWafUpdateStatusApi.js index 41c913a77..c45666aa6 100644 --- a/src/api/LegacyWafUpdateStatusApi.js +++ b/src/api/LegacyWafUpdateStatusApi.js @@ -16,7 +16,7 @@ import ApiClient from "../ApiClient"; /** * LegacyWafUpdateStatus service. * @module api/LegacyWafUpdateStatusApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LegacyWafUpdateStatusApi { diff --git a/src/api/LoggingAzureblobApi.js b/src/api/LoggingAzureblobApi.js index 1c1dfe74b..b512951eb 100644 --- a/src/api/LoggingAzureblobApi.js +++ b/src/api/LoggingAzureblobApi.js @@ -18,7 +18,7 @@ import LoggingAzureblobResponse from '../model/LoggingAzureblobResponse'; /** * LoggingAzureblob service. * @module api/LoggingAzureblobApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingAzureblobApi { diff --git a/src/api/LoggingBigqueryApi.js b/src/api/LoggingBigqueryApi.js index e6b320e91..d70d01776 100644 --- a/src/api/LoggingBigqueryApi.js +++ b/src/api/LoggingBigqueryApi.js @@ -18,7 +18,7 @@ import LoggingBigqueryResponse from '../model/LoggingBigqueryResponse'; /** * LoggingBigquery service. * @module api/LoggingBigqueryApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingBigqueryApi { diff --git a/src/api/LoggingCloudfilesApi.js b/src/api/LoggingCloudfilesApi.js index f0e5c896f..a5593b832 100644 --- a/src/api/LoggingCloudfilesApi.js +++ b/src/api/LoggingCloudfilesApi.js @@ -18,7 +18,7 @@ import LoggingCloudfilesResponse from '../model/LoggingCloudfilesResponse'; /** * LoggingCloudfiles service. * @module api/LoggingCloudfilesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingCloudfilesApi { diff --git a/src/api/LoggingDatadogApi.js b/src/api/LoggingDatadogApi.js index c9abe5594..1fe2e3573 100644 --- a/src/api/LoggingDatadogApi.js +++ b/src/api/LoggingDatadogApi.js @@ -18,7 +18,7 @@ import LoggingDatadogResponse from '../model/LoggingDatadogResponse'; /** * LoggingDatadog service. * @module api/LoggingDatadogApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingDatadogApi { diff --git a/src/api/LoggingDigitaloceanApi.js b/src/api/LoggingDigitaloceanApi.js index 8b767cbd7..e51a22c95 100644 --- a/src/api/LoggingDigitaloceanApi.js +++ b/src/api/LoggingDigitaloceanApi.js @@ -18,7 +18,7 @@ import LoggingDigitaloceanResponse from '../model/LoggingDigitaloceanResponse'; /** * LoggingDigitalocean service. * @module api/LoggingDigitaloceanApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingDigitaloceanApi { diff --git a/src/api/LoggingElasticsearchApi.js b/src/api/LoggingElasticsearchApi.js index 331b9b423..e3c4711e8 100644 --- a/src/api/LoggingElasticsearchApi.js +++ b/src/api/LoggingElasticsearchApi.js @@ -18,7 +18,7 @@ import LoggingElasticsearchResponse from '../model/LoggingElasticsearchResponse' /** * LoggingElasticsearch service. * @module api/LoggingElasticsearchApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingElasticsearchApi { diff --git a/src/api/LoggingFtpApi.js b/src/api/LoggingFtpApi.js index 6fc1796c8..964a880ed 100644 --- a/src/api/LoggingFtpApi.js +++ b/src/api/LoggingFtpApi.js @@ -18,7 +18,7 @@ import LoggingFtpResponse from '../model/LoggingFtpResponse'; /** * LoggingFtp service. * @module api/LoggingFtpApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingFtpApi { diff --git a/src/api/LoggingGcsApi.js b/src/api/LoggingGcsApi.js index 0fbb48f4e..573a8bd2f 100644 --- a/src/api/LoggingGcsApi.js +++ b/src/api/LoggingGcsApi.js @@ -18,7 +18,7 @@ import LoggingGcsResponse from '../model/LoggingGcsResponse'; /** * LoggingGcs service. * @module api/LoggingGcsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingGcsApi { diff --git a/src/api/LoggingHerokuApi.js b/src/api/LoggingHerokuApi.js index 7371433c7..737240cca 100644 --- a/src/api/LoggingHerokuApi.js +++ b/src/api/LoggingHerokuApi.js @@ -18,7 +18,7 @@ import LoggingHerokuResponse from '../model/LoggingHerokuResponse'; /** * LoggingHeroku service. * @module api/LoggingHerokuApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingHerokuApi { diff --git a/src/api/LoggingHoneycombApi.js b/src/api/LoggingHoneycombApi.js index d8fe2d2fd..1d34357c4 100644 --- a/src/api/LoggingHoneycombApi.js +++ b/src/api/LoggingHoneycombApi.js @@ -18,7 +18,7 @@ import LoggingHoneycombResponse from '../model/LoggingHoneycombResponse'; /** * LoggingHoneycomb service. * @module api/LoggingHoneycombApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingHoneycombApi { diff --git a/src/api/LoggingHttpsApi.js b/src/api/LoggingHttpsApi.js index 221070ff0..80f8b8108 100644 --- a/src/api/LoggingHttpsApi.js +++ b/src/api/LoggingHttpsApi.js @@ -19,7 +19,7 @@ import LoggingMessageType from '../model/LoggingMessageType'; /** * LoggingHttps service. * @module api/LoggingHttpsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingHttpsApi { diff --git a/src/api/LoggingKafkaApi.js b/src/api/LoggingKafkaApi.js index 2ca00ef05..6149fe2ed 100644 --- a/src/api/LoggingKafkaApi.js +++ b/src/api/LoggingKafkaApi.js @@ -15,12 +15,12 @@ import ApiClient from "../ApiClient"; import InlineResponse200 from '../model/InlineResponse200'; import LoggingKafkaResponse from '../model/LoggingKafkaResponse'; import LoggingKafkaResponsePost from '../model/LoggingKafkaResponsePost'; -import LoggingUseTls from '../model/LoggingUseTls'; +import LoggingUseTlsString from '../model/LoggingUseTlsString'; /** * LoggingKafka service. * @module api/LoggingKafkaApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingKafkaApi { @@ -63,7 +63,7 @@ export default class LoggingKafkaApi { * @param {module:model/String} [options.auth_method] - SASL authentication method. * @param {String} [options.user] - SASL user. * @param {String} [options.password] - SASL password. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingKafkaResponsePost} and HTTP response */ createLogKafkaWithHttpInfo(options = {}) { @@ -152,7 +152,7 @@ export default class LoggingKafkaApi { * @param {module:model/String} [options.auth_method] - SASL authentication method. * @param {String} [options.user] - SASL user. * @param {String} [options.password] - SASL password. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingKafkaResponsePost} */ createLogKafka(options = {}) { diff --git a/src/api/LoggingKinesisApi.js b/src/api/LoggingKinesisApi.js index 5c79da590..43d74d0c8 100644 --- a/src/api/LoggingKinesisApi.js +++ b/src/api/LoggingKinesisApi.js @@ -20,7 +20,7 @@ import LoggingPlacement from '../model/LoggingPlacement'; /** * LoggingKinesis service. * @module api/LoggingKinesisApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingKinesisApi { diff --git a/src/api/LoggingLogentriesApi.js b/src/api/LoggingLogentriesApi.js index f2695112b..9d00060f8 100644 --- a/src/api/LoggingLogentriesApi.js +++ b/src/api/LoggingLogentriesApi.js @@ -14,12 +14,12 @@ import ApiClient from "../ApiClient"; import InlineResponse200 from '../model/InlineResponse200'; import LoggingLogentriesResponse from '../model/LoggingLogentriesResponse'; -import LoggingUseTls from '../model/LoggingUseTls'; +import LoggingUseTlsString from '../model/LoggingUseTlsString'; /** * LoggingLogentries service. * @module api/LoggingLogentriesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingLogentriesApi { @@ -51,7 +51,7 @@ export default class LoggingLogentriesApi { * @param {module:model/Number} [options.format_version=FormatVersionEnum.v2] - 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`. * @param {Number} [options.port=20000] - The port number. * @param {String} [options.token] - Use token based authentication. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @param {module:model/String} [options.region] - The region to which to stream logs. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingLogentriesResponse} and HTTP response */ @@ -120,7 +120,7 @@ export default class LoggingLogentriesApi { * @param {module:model/Number} [options.format_version=FormatVersionEnum.v2] - 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`. * @param {Number} [options.port=20000] - The port number. * @param {String} [options.token] - Use token based authentication. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @param {module:model/String} [options.region] - The region to which to stream logs. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingLogentriesResponse} */ @@ -353,7 +353,7 @@ export default class LoggingLogentriesApi { * @param {module:model/Number} [options.format_version=FormatVersionEnum.v2] - 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`. * @param {Number} [options.port=20000] - The port number. * @param {String} [options.token] - Use token based authentication. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @param {module:model/String} [options.region] - The region to which to stream logs. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingLogentriesResponse} and HTTP response */ @@ -428,7 +428,7 @@ export default class LoggingLogentriesApi { * @param {module:model/Number} [options.format_version=FormatVersionEnum.v2] - 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`. * @param {Number} [options.port=20000] - The port number. * @param {String} [options.token] - Use token based authentication. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @param {module:model/String} [options.region] - The region to which to stream logs. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingLogentriesResponse} */ diff --git a/src/api/LoggingLogglyApi.js b/src/api/LoggingLogglyApi.js index a244dbed0..54d6a290a 100644 --- a/src/api/LoggingLogglyApi.js +++ b/src/api/LoggingLogglyApi.js @@ -18,7 +18,7 @@ import LoggingLogglyResponse from '../model/LoggingLogglyResponse'; /** * LoggingLoggly service. * @module api/LoggingLogglyApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingLogglyApi { diff --git a/src/api/LoggingLogshuttleApi.js b/src/api/LoggingLogshuttleApi.js index 130cabd4b..f37afab8e 100644 --- a/src/api/LoggingLogshuttleApi.js +++ b/src/api/LoggingLogshuttleApi.js @@ -18,7 +18,7 @@ import LoggingLogshuttleResponse from '../model/LoggingLogshuttleResponse'; /** * LoggingLogshuttle service. * @module api/LoggingLogshuttleApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingLogshuttleApi { diff --git a/src/api/LoggingNewrelicApi.js b/src/api/LoggingNewrelicApi.js index 3a8b70ecb..857037c04 100644 --- a/src/api/LoggingNewrelicApi.js +++ b/src/api/LoggingNewrelicApi.js @@ -18,7 +18,7 @@ import LoggingNewrelicResponse from '../model/LoggingNewrelicResponse'; /** * LoggingNewrelic service. * @module api/LoggingNewrelicApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingNewrelicApi { diff --git a/src/api/LoggingNewrelicotlpApi.js b/src/api/LoggingNewrelicotlpApi.js index 9d235d142..41a8ef443 100644 --- a/src/api/LoggingNewrelicotlpApi.js +++ b/src/api/LoggingNewrelicotlpApi.js @@ -18,7 +18,7 @@ import LoggingNewrelicotlpResponse from '../model/LoggingNewrelicotlpResponse'; /** * LoggingNewrelicotlp service. * @module api/LoggingNewrelicotlpApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingNewrelicotlpApi { diff --git a/src/api/LoggingOpenstackApi.js b/src/api/LoggingOpenstackApi.js index 79c1586e5..e4d80a825 100644 --- a/src/api/LoggingOpenstackApi.js +++ b/src/api/LoggingOpenstackApi.js @@ -18,7 +18,7 @@ import LoggingOpenstackResponse from '../model/LoggingOpenstackResponse'; /** * LoggingOpenstack service. * @module api/LoggingOpenstackApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingOpenstackApi { diff --git a/src/api/LoggingPapertrailApi.js b/src/api/LoggingPapertrailApi.js index ad0e6441c..654199270 100644 --- a/src/api/LoggingPapertrailApi.js +++ b/src/api/LoggingPapertrailApi.js @@ -18,7 +18,7 @@ import LoggingPapertrailResponse from '../model/LoggingPapertrailResponse'; /** * LoggingPapertrail service. * @module api/LoggingPapertrailApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingPapertrailApi { diff --git a/src/api/LoggingPubsubApi.js b/src/api/LoggingPubsubApi.js index fdd13c156..c10e93ac4 100644 --- a/src/api/LoggingPubsubApi.js +++ b/src/api/LoggingPubsubApi.js @@ -18,7 +18,7 @@ import LoggingGooglePubsubResponse from '../model/LoggingGooglePubsubResponse'; /** * LoggingPubsub service. * @module api/LoggingPubsubApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingPubsubApi { diff --git a/src/api/LoggingS3Api.js b/src/api/LoggingS3Api.js index dff3813ce..c6712bfdb 100644 --- a/src/api/LoggingS3Api.js +++ b/src/api/LoggingS3Api.js @@ -18,7 +18,7 @@ import LoggingS3Response from '../model/LoggingS3Response'; /** * LoggingS3 service. * @module api/LoggingS3Api -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingS3Api { diff --git a/src/api/LoggingScalyrApi.js b/src/api/LoggingScalyrApi.js index 53c72c477..a08c4c350 100644 --- a/src/api/LoggingScalyrApi.js +++ b/src/api/LoggingScalyrApi.js @@ -18,7 +18,7 @@ import LoggingScalyrResponse from '../model/LoggingScalyrResponse'; /** * LoggingScalyr service. * @module api/LoggingScalyrApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingScalyrApi { diff --git a/src/api/LoggingSftpApi.js b/src/api/LoggingSftpApi.js index 22c1af3ca..0e7d7fcad 100644 --- a/src/api/LoggingSftpApi.js +++ b/src/api/LoggingSftpApi.js @@ -18,7 +18,7 @@ import LoggingSftpResponse from '../model/LoggingSftpResponse'; /** * LoggingSftp service. * @module api/LoggingSftpApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingSftpApi { diff --git a/src/api/LoggingSplunkApi.js b/src/api/LoggingSplunkApi.js index 4e046b90f..f5bd31d90 100644 --- a/src/api/LoggingSplunkApi.js +++ b/src/api/LoggingSplunkApi.js @@ -14,12 +14,12 @@ import ApiClient from "../ApiClient"; import InlineResponse200 from '../model/InlineResponse200'; import LoggingSplunkResponse from '../model/LoggingSplunkResponse'; -import LoggingUseTls from '../model/LoggingUseTls'; +import LoggingUseTlsString from '../model/LoggingUseTlsString'; /** * LoggingSplunk service. * @module api/LoggingSplunkApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingSplunkApi { @@ -57,7 +57,7 @@ export default class LoggingSplunkApi { * @param {Number} [options.request_max_bytes=0] - The maximum number of bytes sent in one request. Defaults `0` for unbounded. * @param {String} [options.url] - The URL to post logs to. * @param {String} [options.token] - A Splunk token for use in posting logs over HTTP to your collector. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingSplunkResponse} and HTTP response */ createLogSplunkWithHttpInfo(options = {}) { @@ -136,7 +136,7 @@ export default class LoggingSplunkApi { * @param {Number} [options.request_max_bytes=0] - The maximum number of bytes sent in one request. Defaults `0` for unbounded. * @param {String} [options.url] - The URL to post logs to. * @param {String} [options.token] - A Splunk token for use in posting logs over HTTP to your collector. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingSplunkResponse} */ createLogSplunk(options = {}) { @@ -374,7 +374,7 @@ export default class LoggingSplunkApi { * @param {Number} [options.request_max_bytes=0] - The maximum number of bytes sent in one request. Defaults `0` for unbounded. * @param {String} [options.url] - The URL to post logs to. * @param {String} [options.token] - A Splunk token for use in posting logs over HTTP to your collector. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingSplunkResponse} and HTTP response */ updateLogSplunkWithHttpInfo(options = {}) { @@ -459,7 +459,7 @@ export default class LoggingSplunkApi { * @param {Number} [options.request_max_bytes=0] - The maximum number of bytes sent in one request. Defaults `0` for unbounded. * @param {String} [options.url] - The URL to post logs to. * @param {String} [options.token] - A Splunk token for use in posting logs over HTTP to your collector. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingSplunkResponse} */ updateLogSplunk(options = {}) { diff --git a/src/api/LoggingSumologicApi.js b/src/api/LoggingSumologicApi.js index de5ce33f9..440ba4c7b 100644 --- a/src/api/LoggingSumologicApi.js +++ b/src/api/LoggingSumologicApi.js @@ -19,7 +19,7 @@ import LoggingSumologicResponse from '../model/LoggingSumologicResponse'; /** * LoggingSumologic service. * @module api/LoggingSumologicApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingSumologicApi { diff --git a/src/api/LoggingSyslogApi.js b/src/api/LoggingSyslogApi.js index d8d6733b3..b11605b40 100644 --- a/src/api/LoggingSyslogApi.js +++ b/src/api/LoggingSyslogApi.js @@ -15,12 +15,12 @@ import ApiClient from "../ApiClient"; import InlineResponse200 from '../model/InlineResponse200'; import LoggingMessageType from '../model/LoggingMessageType'; import LoggingSyslogResponse from '../model/LoggingSyslogResponse'; -import LoggingUseTls from '../model/LoggingUseTls'; +import LoggingUseTlsString from '../model/LoggingUseTlsString'; /** * LoggingSyslog service. * @module api/LoggingSyslogApi -* @version 7.4.0 +* @version 7.5.0 */ export default class LoggingSyslogApi { @@ -60,7 +60,7 @@ export default class LoggingSyslogApi { * @param {String} [options.hostname] - The hostname used for the syslog endpoint. * @param {String} [options.ipv4] - The IPv4 address used for the syslog endpoint. * @param {String} [options.token='null'] - Whether to prepend each message with a specific token. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingSyslogResponse} and HTTP response */ createLogSyslogWithHttpInfo(options = {}) { @@ -143,7 +143,7 @@ export default class LoggingSyslogApi { * @param {String} [options.hostname] - The hostname used for the syslog endpoint. * @param {String} [options.ipv4] - The IPv4 address used for the syslog endpoint. * @param {String} [options.token='null'] - Whether to prepend each message with a specific token. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingSyslogResponse} */ createLogSyslog(options = {}) { @@ -383,7 +383,7 @@ export default class LoggingSyslogApi { * @param {String} [options.hostname] - The hostname used for the syslog endpoint. * @param {String} [options.ipv4] - The IPv4 address used for the syslog endpoint. * @param {String} [options.token='null'] - Whether to prepend each message with a specific token. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/LoggingSyslogResponse} and HTTP response */ updateLogSyslogWithHttpInfo(options = {}) { @@ -472,7 +472,7 @@ export default class LoggingSyslogApi { * @param {String} [options.hostname] - The hostname used for the syslog endpoint. * @param {String} [options.ipv4] - The IPv4 address used for the syslog endpoint. * @param {String} [options.token='null'] - Whether to prepend each message with a specific token. - * @param {module:model/LoggingUseTls} [options.use_tls] + * @param {module:model/LoggingUseTlsString} [options.use_tls] * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/LoggingSyslogResponse} */ updateLogSyslog(options = {}) { diff --git a/src/api/MutualAuthenticationApi.js b/src/api/MutualAuthenticationApi.js index 9bffc015e..0e949ca52 100644 --- a/src/api/MutualAuthenticationApi.js +++ b/src/api/MutualAuthenticationApi.js @@ -19,7 +19,7 @@ import MutualAuthenticationsResponse from '../model/MutualAuthenticationsRespons /** * MutualAuthentication service. * @module api/MutualAuthenticationApi -* @version 7.4.0 +* @version 7.5.0 */ export default class MutualAuthenticationApi { diff --git a/src/api/OriginInspectorHistoricalApi.js b/src/api/OriginInspectorHistoricalApi.js index afa5e15c5..7be30ebee 100644 --- a/src/api/OriginInspectorHistoricalApi.js +++ b/src/api/OriginInspectorHistoricalApi.js @@ -17,7 +17,7 @@ import HistoricalOriginsResponse from '../model/HistoricalOriginsResponse'; /** * OriginInspectorHistorical service. * @module api/OriginInspectorHistoricalApi -* @version 7.4.0 +* @version 7.5.0 */ export default class OriginInspectorHistoricalApi { diff --git a/src/api/OriginInspectorRealtimeApi.js b/src/api/OriginInspectorRealtimeApi.js index b80c6341d..84822518b 100644 --- a/src/api/OriginInspectorRealtimeApi.js +++ b/src/api/OriginInspectorRealtimeApi.js @@ -17,7 +17,7 @@ import OriginInspector from '../model/OriginInspector'; /** * OriginInspectorRealtime service. * @module api/OriginInspectorRealtimeApi -* @version 7.4.0 +* @version 7.5.0 */ export default class OriginInspectorRealtimeApi { diff --git a/src/api/PackageApi.js b/src/api/PackageApi.js index 5618f5ca0..5ee762dd1 100644 --- a/src/api/PackageApi.js +++ b/src/api/PackageApi.js @@ -17,7 +17,7 @@ import PackageResponse from '../model/PackageResponse'; /** * Package service. * @module api/PackageApi -* @version 7.4.0 +* @version 7.5.0 */ export default class PackageApi { diff --git a/src/api/PoolApi.js b/src/api/PoolApi.js index 3c900ea14..524211c6d 100644 --- a/src/api/PoolApi.js +++ b/src/api/PoolApi.js @@ -19,7 +19,7 @@ import PoolResponsePost from '../model/PoolResponsePost'; /** * Pool service. * @module api/PoolApi -* @version 7.4.0 +* @version 7.5.0 */ export default class PoolApi { diff --git a/src/api/PopApi.js b/src/api/PopApi.js index 86f3015a1..d5de13787 100644 --- a/src/api/PopApi.js +++ b/src/api/PopApi.js @@ -17,7 +17,7 @@ import Pop from '../model/Pop'; /** * Pop service. * @module api/PopApi -* @version 7.4.0 +* @version 7.5.0 */ export default class PopApi { diff --git a/src/api/PublicIpListApi.js b/src/api/PublicIpListApi.js index 24f6849e0..51261cab7 100644 --- a/src/api/PublicIpListApi.js +++ b/src/api/PublicIpListApi.js @@ -17,7 +17,7 @@ import PublicIpList from '../model/PublicIpList'; /** * PublicIpList service. * @module api/PublicIpListApi -* @version 7.4.0 +* @version 7.5.0 */ export default class PublicIpListApi { diff --git a/src/api/PublishApi.js b/src/api/PublishApi.js index aed3c6fb5..aada04897 100644 --- a/src/api/PublishApi.js +++ b/src/api/PublishApi.js @@ -17,7 +17,7 @@ import PublishRequest from '../model/PublishRequest'; /** * Publish service. * @module api/PublishApi -* @version 7.4.0 +* @version 7.5.0 */ export default class PublishApi { diff --git a/src/api/PurgeApi.js b/src/api/PurgeApi.js index 38f928059..f35d0d97d 100644 --- a/src/api/PurgeApi.js +++ b/src/api/PurgeApi.js @@ -18,7 +18,7 @@ import PurgeResponse from '../model/PurgeResponse'; /** * Purge service. * @module api/PurgeApi -* @version 7.4.0 +* @version 7.5.0 */ export default class PurgeApi { diff --git a/src/api/RateLimiterApi.js b/src/api/RateLimiterApi.js index 61901fe00..35cdb3014 100644 --- a/src/api/RateLimiterApi.js +++ b/src/api/RateLimiterApi.js @@ -18,7 +18,7 @@ import RateLimiterResponse from '../model/RateLimiterResponse'; /** * RateLimiter service. * @module api/RateLimiterApi -* @version 7.4.0 +* @version 7.5.0 */ export default class RateLimiterApi { diff --git a/src/api/RealtimeApi.js b/src/api/RealtimeApi.js index 21de5e08d..d05bcccb5 100644 --- a/src/api/RealtimeApi.js +++ b/src/api/RealtimeApi.js @@ -17,7 +17,7 @@ import Realtime from '../model/Realtime'; /** * Realtime service. * @module api/RealtimeApi -* @version 7.4.0 +* @version 7.5.0 */ export default class RealtimeApi { diff --git a/src/api/RequestSettingsApi.js b/src/api/RequestSettingsApi.js index d97bd551b..b8bf42d21 100644 --- a/src/api/RequestSettingsApi.js +++ b/src/api/RequestSettingsApi.js @@ -18,7 +18,7 @@ import RequestSettingsResponse from '../model/RequestSettingsResponse'; /** * RequestSettings service. * @module api/RequestSettingsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class RequestSettingsApi { diff --git a/src/api/ResourceApi.js b/src/api/ResourceApi.js index 67173371a..37b5234bc 100644 --- a/src/api/ResourceApi.js +++ b/src/api/ResourceApi.js @@ -18,7 +18,7 @@ import ResourceResponse from '../model/ResourceResponse'; /** * Resource service. * @module api/ResourceApi -* @version 7.4.0 +* @version 7.5.0 */ export default class ResourceApi { diff --git a/src/api/ResponseObjectApi.js b/src/api/ResponseObjectApi.js index 9dd5f3832..7cffff0db 100644 --- a/src/api/ResponseObjectApi.js +++ b/src/api/ResponseObjectApi.js @@ -19,7 +19,7 @@ import ResponseObjectResponse from '../model/ResponseObjectResponse'; /** * ResponseObject service. * @module api/ResponseObjectApi -* @version 7.4.0 +* @version 7.5.0 */ export default class ResponseObjectApi { diff --git a/src/api/SecretStoreApi.js b/src/api/SecretStoreApi.js index e4fe3a301..bc8217af5 100644 --- a/src/api/SecretStoreApi.js +++ b/src/api/SecretStoreApi.js @@ -21,7 +21,7 @@ import SigningKey from '../model/SigningKey'; /** * SecretStore service. * @module api/SecretStoreApi -* @version 7.4.0 +* @version 7.5.0 */ export default class SecretStoreApi { diff --git a/src/api/SecretStoreItemApi.js b/src/api/SecretStoreItemApi.js index 0b6fe35b4..23b8505fb 100644 --- a/src/api/SecretStoreItemApi.js +++ b/src/api/SecretStoreItemApi.js @@ -19,7 +19,7 @@ import SecretResponse from '../model/SecretResponse'; /** * SecretStoreItem service. * @module api/SecretStoreItemApi -* @version 7.4.0 +* @version 7.5.0 */ export default class SecretStoreItemApi { diff --git a/src/api/ServerApi.js b/src/api/ServerApi.js index 6f3f0cb19..a80cb4a35 100644 --- a/src/api/ServerApi.js +++ b/src/api/ServerApi.js @@ -18,7 +18,7 @@ import ServerResponse from '../model/ServerResponse'; /** * Server service. * @module api/ServerApi -* @version 7.4.0 +* @version 7.5.0 */ export default class ServerApi { diff --git a/src/api/ServiceApi.js b/src/api/ServiceApi.js index f9b032f5a..67c793d22 100644 --- a/src/api/ServiceApi.js +++ b/src/api/ServiceApi.js @@ -21,7 +21,7 @@ import ServiceResponse from '../model/ServiceResponse'; /** * Service service. * @module api/ServiceApi -* @version 7.4.0 +* @version 7.5.0 */ export default class ServiceApi { diff --git a/src/api/ServiceAuthorizationsApi.js b/src/api/ServiceAuthorizationsApi.js index fdbe5c0ec..461488994 100644 --- a/src/api/ServiceAuthorizationsApi.js +++ b/src/api/ServiceAuthorizationsApi.js @@ -20,7 +20,7 @@ import ServiceAuthorizationsResponse from '../model/ServiceAuthorizationsRespons /** * ServiceAuthorizations service. * @module api/ServiceAuthorizationsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class ServiceAuthorizationsApi { diff --git a/src/api/SettingsApi.js b/src/api/SettingsApi.js index dad37ec54..94130609f 100644 --- a/src/api/SettingsApi.js +++ b/src/api/SettingsApi.js @@ -17,7 +17,7 @@ import SettingsResponse from '../model/SettingsResponse'; /** * Settings service. * @module api/SettingsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class SettingsApi { diff --git a/src/api/SnippetApi.js b/src/api/SnippetApi.js index f21a41f10..3b7444325 100644 --- a/src/api/SnippetApi.js +++ b/src/api/SnippetApi.js @@ -19,7 +19,7 @@ import SnippetResponsePost from '../model/SnippetResponsePost'; /** * Snippet service. * @module api/SnippetApi -* @version 7.4.0 +* @version 7.5.0 */ export default class SnippetApi { diff --git a/src/api/StarApi.js b/src/api/StarApi.js index 09b89cfc1..3322dd6d6 100644 --- a/src/api/StarApi.js +++ b/src/api/StarApi.js @@ -19,7 +19,7 @@ import StarResponse from '../model/StarResponse'; /** * Star service. * @module api/StarApi -* @version 7.4.0 +* @version 7.5.0 */ export default class StarApi { diff --git a/src/api/StatsApi.js b/src/api/StatsApi.js index 1f1f941d1..4eb98a673 100644 --- a/src/api/StatsApi.js +++ b/src/api/StatsApi.js @@ -17,7 +17,7 @@ import Stats from '../model/Stats'; /** * Stats service. * @module api/StatsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class StatsApi { diff --git a/src/api/SudoApi.js b/src/api/SudoApi.js index de7e11402..0b9d7638c 100644 --- a/src/api/SudoApi.js +++ b/src/api/SudoApi.js @@ -19,7 +19,7 @@ import SudoResponse from '../model/SudoResponse'; /** * Sudo service. * @module api/SudoApi -* @version 7.4.0 +* @version 7.5.0 */ export default class SudoApi { diff --git a/src/api/TlsActivationsApi.js b/src/api/TlsActivationsApi.js index 781b1da63..17638d284 100644 --- a/src/api/TlsActivationsApi.js +++ b/src/api/TlsActivationsApi.js @@ -19,7 +19,7 @@ import TlsActivationsResponse from '../model/TlsActivationsResponse'; /** * TlsActivations service. * @module api/TlsActivationsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsActivationsApi { diff --git a/src/api/TlsBulkCertificatesApi.js b/src/api/TlsBulkCertificatesApi.js index 2ad1e20ed..d115cdb90 100644 --- a/src/api/TlsBulkCertificatesApi.js +++ b/src/api/TlsBulkCertificatesApi.js @@ -19,7 +19,7 @@ import TlsBulkCertificatesResponse from '../model/TlsBulkCertificatesResponse'; /** * TlsBulkCertificates service. * @module api/TlsBulkCertificatesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsBulkCertificatesApi { diff --git a/src/api/TlsCertificatesApi.js b/src/api/TlsCertificatesApi.js index dc1ed24c5..cbb618629 100644 --- a/src/api/TlsCertificatesApi.js +++ b/src/api/TlsCertificatesApi.js @@ -19,7 +19,7 @@ import TlsCertificatesResponse from '../model/TlsCertificatesResponse'; /** * TlsCertificates service. * @module api/TlsCertificatesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsCertificatesApi { diff --git a/src/api/TlsConfigurationsApi.js b/src/api/TlsConfigurationsApi.js index 4123e2a31..554439f47 100644 --- a/src/api/TlsConfigurationsApi.js +++ b/src/api/TlsConfigurationsApi.js @@ -19,7 +19,7 @@ import TlsConfigurationsResponse from '../model/TlsConfigurationsResponse'; /** * TlsConfigurations service. * @module api/TlsConfigurationsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsConfigurationsApi { diff --git a/src/api/TlsCsrsApi.js b/src/api/TlsCsrsApi.js index 77ce4b446..c15934806 100644 --- a/src/api/TlsCsrsApi.js +++ b/src/api/TlsCsrsApi.js @@ -18,7 +18,7 @@ import TlsCsrResponse from '../model/TlsCsrResponse'; /** * TlsCsrs service. * @module api/TlsCsrsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsCsrsApi { diff --git a/src/api/TlsDomainsApi.js b/src/api/TlsDomainsApi.js index 05acba5fc..1d51641e0 100644 --- a/src/api/TlsDomainsApi.js +++ b/src/api/TlsDomainsApi.js @@ -17,7 +17,7 @@ import TlsDomainsResponse from '../model/TlsDomainsResponse'; /** * TlsDomains service. * @module api/TlsDomainsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsDomainsApi { diff --git a/src/api/TlsPrivateKeysApi.js b/src/api/TlsPrivateKeysApi.js index f24d71b93..764adfea0 100644 --- a/src/api/TlsPrivateKeysApi.js +++ b/src/api/TlsPrivateKeysApi.js @@ -19,7 +19,7 @@ import TlsPrivateKeysResponse from '../model/TlsPrivateKeysResponse'; /** * TlsPrivateKeys service. * @module api/TlsPrivateKeysApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsPrivateKeysApi { diff --git a/src/api/TlsSubscriptionsApi.js b/src/api/TlsSubscriptionsApi.js index deeaef63c..a883d488e 100644 --- a/src/api/TlsSubscriptionsApi.js +++ b/src/api/TlsSubscriptionsApi.js @@ -19,7 +19,7 @@ import TlsSubscriptionsResponse from '../model/TlsSubscriptionsResponse'; /** * TlsSubscriptions service. * @module api/TlsSubscriptionsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TlsSubscriptionsApi { diff --git a/src/api/TokensApi.js b/src/api/TokensApi.js index 4f1cc85b7..d9cb19521 100644 --- a/src/api/TokensApi.js +++ b/src/api/TokensApi.js @@ -20,7 +20,7 @@ import TokenResponse from '../model/TokenResponse'; /** * Tokens service. * @module api/TokensApi -* @version 7.4.0 +* @version 7.5.0 */ export default class TokensApi { diff --git a/src/api/UserApi.js b/src/api/UserApi.js index 6ea8909e7..f1b8b0978 100644 --- a/src/api/UserApi.js +++ b/src/api/UserApi.js @@ -19,7 +19,7 @@ import UserResponse from '../model/UserResponse'; /** * User service. * @module api/UserApi -* @version 7.4.0 +* @version 7.5.0 */ export default class UserApi { diff --git a/src/api/VclApi.js b/src/api/VclApi.js index 389265fd1..6b1f76afd 100644 --- a/src/api/VclApi.js +++ b/src/api/VclApi.js @@ -22,7 +22,7 @@ import VclSyntaxHighlightingResponse from '../model/VclSyntaxHighlightingRespons /** * Vcl service. * @module api/VclApi -* @version 7.4.0 +* @version 7.5.0 */ export default class VclApi { diff --git a/src/api/VclDiffApi.js b/src/api/VclDiffApi.js index 8ef5e93c6..7ef583fb0 100644 --- a/src/api/VclDiffApi.js +++ b/src/api/VclDiffApi.js @@ -17,7 +17,7 @@ import VclDiff from '../model/VclDiff'; /** * VclDiff service. * @module api/VclDiffApi -* @version 7.4.0 +* @version 7.5.0 */ export default class VclDiffApi { diff --git a/src/api/VersionApi.js b/src/api/VersionApi.js index 64dfb9fed..41ab7417f 100644 --- a/src/api/VersionApi.js +++ b/src/api/VersionApi.js @@ -20,7 +20,7 @@ import VersionResponse from '../model/VersionResponse'; /** * Version service. * @module api/VersionApi -* @version 7.4.0 +* @version 7.5.0 */ export default class VersionApi { diff --git a/src/api/WafActiveRulesApi.js b/src/api/WafActiveRulesApi.js index 2cf228e13..7ced1c999 100644 --- a/src/api/WafActiveRulesApi.js +++ b/src/api/WafActiveRulesApi.js @@ -22,7 +22,7 @@ import WafActiveRulesResponse from '../model/WafActiveRulesResponse'; /** * WafActiveRules service. * @module api/WafActiveRulesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafActiveRulesApi { diff --git a/src/api/WafExclusionsApi.js b/src/api/WafExclusionsApi.js index 31a7a6d7d..4928558a3 100644 --- a/src/api/WafExclusionsApi.js +++ b/src/api/WafExclusionsApi.js @@ -19,7 +19,7 @@ import WafExclusionsResponse from '../model/WafExclusionsResponse'; /** * WafExclusions service. * @module api/WafExclusionsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafExclusionsApi { diff --git a/src/api/WafFirewallVersionsApi.js b/src/api/WafFirewallVersionsApi.js index c60ca4152..9f08714b2 100644 --- a/src/api/WafFirewallVersionsApi.js +++ b/src/api/WafFirewallVersionsApi.js @@ -19,7 +19,7 @@ import WafFirewallVersionsResponse from '../model/WafFirewallVersionsResponse'; /** * WafFirewallVersions service. * @module api/WafFirewallVersionsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafFirewallVersionsApi { diff --git a/src/api/WafFirewallsApi.js b/src/api/WafFirewallsApi.js index ebe23a33d..bec47f5ee 100644 --- a/src/api/WafFirewallsApi.js +++ b/src/api/WafFirewallsApi.js @@ -19,7 +19,7 @@ import WafFirewallsResponse from '../model/WafFirewallsResponse'; /** * WafFirewalls service. * @module api/WafFirewallsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafFirewallsApi { diff --git a/src/api/WafRuleRevisionsApi.js b/src/api/WafRuleRevisionsApi.js index f67f8df22..1f446a053 100644 --- a/src/api/WafRuleRevisionsApi.js +++ b/src/api/WafRuleRevisionsApi.js @@ -18,7 +18,7 @@ import WafRuleRevisionsResponse from '../model/WafRuleRevisionsResponse'; /** * WafRuleRevisions service. * @module api/WafRuleRevisionsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafRuleRevisionsApi { diff --git a/src/api/WafRulesApi.js b/src/api/WafRulesApi.js index b9456031c..443488bbc 100644 --- a/src/api/WafRulesApi.js +++ b/src/api/WafRulesApi.js @@ -18,7 +18,7 @@ import WafRulesResponse from '../model/WafRulesResponse'; /** * WafRules service. * @module api/WafRulesApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafRulesApi { diff --git a/src/api/WafTagsApi.js b/src/api/WafTagsApi.js index dacc6b14a..68ffbf47c 100644 --- a/src/api/WafTagsApi.js +++ b/src/api/WafTagsApi.js @@ -17,7 +17,7 @@ import WafTagsResponse from '../model/WafTagsResponse'; /** * WafTags service. * @module api/WafTagsApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WafTagsApi { diff --git a/src/api/WholePlatformDdosHistoricalApi.js b/src/api/WholePlatformDdosHistoricalApi.js index d1aa85df0..2ecb0d204 100644 --- a/src/api/WholePlatformDdosHistoricalApi.js +++ b/src/api/WholePlatformDdosHistoricalApi.js @@ -17,7 +17,7 @@ import PlatformDdosResponse from '../model/PlatformDdosResponse'; /** * WholePlatformDdosHistorical service. * @module api/WholePlatformDdosHistoricalApi -* @version 7.4.0 +* @version 7.5.0 */ export default class WholePlatformDdosHistoricalApi { diff --git a/src/index.js b/src/index.js index ce0a3b078..13286832e 100644 --- a/src/index.js +++ b/src/index.js @@ -272,7 +272,7 @@ import LoggingSumologicResponse from './model/LoggingSumologicResponse'; import LoggingSyslogAdditional from './model/LoggingSyslogAdditional'; import LoggingSyslogResponse from './model/LoggingSyslogResponse'; import LoggingTlsCommon from './model/LoggingTlsCommon'; -import LoggingUseTls from './model/LoggingUseTls'; +import LoggingUseTlsString from './model/LoggingUseTlsString'; import Metadata from './model/Metadata'; import MutualAuthentication from './model/MutualAuthentication'; import MutualAuthenticationData from './model/MutualAuthenticationData'; @@ -854,7 +854,7 @@ function authenticate (key) { * *

* @module index -* @version 7.4.0 +* @version 7.5.0 */ export { /** @@ -2424,10 +2424,10 @@ export { LoggingTlsCommon, /** - * The LoggingUseTls model constructor. - * @property {module:model/LoggingUseTls} + * The LoggingUseTlsString model constructor. + * @property {module:model/LoggingUseTlsString} */ - LoggingUseTls, + LoggingUseTlsString, /** * The Metadata model constructor. diff --git a/src/model/Acl.js b/src/model/Acl.js index ce34a93d6..4dd58ef12 100644 --- a/src/model/Acl.js +++ b/src/model/Acl.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Acl model module. * @module model/Acl - * @version 7.4.0 + * @version 7.5.0 */ class Acl { /** diff --git a/src/model/AclEntry.js b/src/model/AclEntry.js index b5bc902ec..c28e45275 100644 --- a/src/model/AclEntry.js +++ b/src/model/AclEntry.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The AclEntry model module. * @module model/AclEntry - * @version 7.4.0 + * @version 7.5.0 */ class AclEntry { /** diff --git a/src/model/AclEntryResponse.js b/src/model/AclEntryResponse.js index 29701259d..8513a559d 100644 --- a/src/model/AclEntryResponse.js +++ b/src/model/AclEntryResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The AclEntryResponse model module. * @module model/AclEntryResponse - * @version 7.4.0 + * @version 7.5.0 */ class AclEntryResponse { /** diff --git a/src/model/AclEntryResponseAllOf.js b/src/model/AclEntryResponseAllOf.js index f6304ecf9..12959f124 100644 --- a/src/model/AclEntryResponseAllOf.js +++ b/src/model/AclEntryResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The AclEntryResponseAllOf model module. * @module model/AclEntryResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class AclEntryResponseAllOf { /** diff --git a/src/model/AclResponse.js b/src/model/AclResponse.js index f9e4e8d5c..a7a7e358a 100644 --- a/src/model/AclResponse.js +++ b/src/model/AclResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The AclResponse model module. * @module model/AclResponse - * @version 7.4.0 + * @version 7.5.0 */ class AclResponse { /** diff --git a/src/model/AclResponseAllOf.js b/src/model/AclResponseAllOf.js index 7267961ad..294e07284 100644 --- a/src/model/AclResponseAllOf.js +++ b/src/model/AclResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The AclResponseAllOf model module. * @module model/AclResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class AclResponseAllOf { /** diff --git a/src/model/ApexRedirect.js b/src/model/ApexRedirect.js index 0c321306f..7aee4f288 100644 --- a/src/model/ApexRedirect.js +++ b/src/model/ApexRedirect.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The ApexRedirect model module. * @module model/ApexRedirect - * @version 7.4.0 + * @version 7.5.0 */ class ApexRedirect { /** diff --git a/src/model/ApexRedirectAllOf.js b/src/model/ApexRedirectAllOf.js index aae30ab01..7235d1e6d 100644 --- a/src/model/ApexRedirectAllOf.js +++ b/src/model/ApexRedirectAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ApexRedirectAllOf model module. * @module model/ApexRedirectAllOf - * @version 7.4.0 + * @version 7.5.0 */ class ApexRedirectAllOf { /** diff --git a/src/model/AutomationToken.js b/src/model/AutomationToken.js index ea14c02d2..b7797cd8b 100644 --- a/src/model/AutomationToken.js +++ b/src/model/AutomationToken.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The AutomationToken model module. * @module model/AutomationToken - * @version 7.4.0 + * @version 7.5.0 */ class AutomationToken { /** diff --git a/src/model/AutomationTokenCreateRequest.js b/src/model/AutomationTokenCreateRequest.js index 89a21ff92..57a5fcf6a 100644 --- a/src/model/AutomationTokenCreateRequest.js +++ b/src/model/AutomationTokenCreateRequest.js @@ -16,7 +16,7 @@ import AutomationTokenCreateRequestAttributes from './AutomationTokenCreateReque /** * The AutomationTokenCreateRequest model module. * @module model/AutomationTokenCreateRequest - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenCreateRequest { /** diff --git a/src/model/AutomationTokenCreateRequestAttributes.js b/src/model/AutomationTokenCreateRequestAttributes.js index d3f0cbc91..9e760b1cc 100644 --- a/src/model/AutomationTokenCreateRequestAttributes.js +++ b/src/model/AutomationTokenCreateRequestAttributes.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The AutomationTokenCreateRequestAttributes model module. * @module model/AutomationTokenCreateRequestAttributes - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenCreateRequestAttributes { /** diff --git a/src/model/AutomationTokenCreateResponse.js b/src/model/AutomationTokenCreateResponse.js index af0979897..21108bbd5 100644 --- a/src/model/AutomationTokenCreateResponse.js +++ b/src/model/AutomationTokenCreateResponse.js @@ -21,7 +21,7 @@ import Timestamps from './Timestamps'; /** * The AutomationTokenCreateResponse model module. * @module model/AutomationTokenCreateResponse - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenCreateResponse { /** diff --git a/src/model/AutomationTokenCreateResponseAllOf.js b/src/model/AutomationTokenCreateResponseAllOf.js index 2b2c0e8a4..3470da95c 100644 --- a/src/model/AutomationTokenCreateResponseAllOf.js +++ b/src/model/AutomationTokenCreateResponseAllOf.js @@ -18,7 +18,7 @@ import ReadOnlyUserId from './ReadOnlyUserId'; /** * The AutomationTokenCreateResponseAllOf model module. * @module model/AutomationTokenCreateResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenCreateResponseAllOf { /** diff --git a/src/model/AutomationTokenErrorResponse.js b/src/model/AutomationTokenErrorResponse.js index b8276d3d1..27dc73123 100644 --- a/src/model/AutomationTokenErrorResponse.js +++ b/src/model/AutomationTokenErrorResponse.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The AutomationTokenErrorResponse model module. * @module model/AutomationTokenErrorResponse - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenErrorResponse { /** diff --git a/src/model/AutomationTokenResponse.js b/src/model/AutomationTokenResponse.js index bd4ed62bb..948e568a5 100644 --- a/src/model/AutomationTokenResponse.js +++ b/src/model/AutomationTokenResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The AutomationTokenResponse model module. * @module model/AutomationTokenResponse - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenResponse { /** diff --git a/src/model/AutomationTokenResponseAllOf.js b/src/model/AutomationTokenResponseAllOf.js index 356801078..68b5324f7 100644 --- a/src/model/AutomationTokenResponseAllOf.js +++ b/src/model/AutomationTokenResponseAllOf.js @@ -17,7 +17,7 @@ import ReadOnlyId from './ReadOnlyId'; /** * The AutomationTokenResponseAllOf model module. * @module model/AutomationTokenResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class AutomationTokenResponseAllOf { /** diff --git a/src/model/Backend.js b/src/model/Backend.js index 08e8c181d..7b3135eac 100644 --- a/src/model/Backend.js +++ b/src/model/Backend.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Backend model module. * @module model/Backend - * @version 7.4.0 + * @version 7.5.0 */ class Backend { /** diff --git a/src/model/BackendResponse.js b/src/model/BackendResponse.js index 40bb9dc25..b58e0f5d6 100644 --- a/src/model/BackendResponse.js +++ b/src/model/BackendResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The BackendResponse model module. * @module model/BackendResponse - * @version 7.4.0 + * @version 7.5.0 */ class BackendResponse { /** diff --git a/src/model/BackendResponseAllOf.js b/src/model/BackendResponseAllOf.js index 3067398c5..b94657feb 100644 --- a/src/model/BackendResponseAllOf.js +++ b/src/model/BackendResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BackendResponseAllOf model module. * @module model/BackendResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class BackendResponseAllOf { /** diff --git a/src/model/Batch.js b/src/model/Batch.js index c2d2bb996..a4376e138 100644 --- a/src/model/Batch.js +++ b/src/model/Batch.js @@ -16,7 +16,7 @@ import BatchErrors from './BatchErrors'; /** * The Batch model module. * @module model/Batch - * @version 7.4.0 + * @version 7.5.0 */ class Batch { /** diff --git a/src/model/BatchErrors.js b/src/model/BatchErrors.js index 9a77bc682..24173e94f 100644 --- a/src/model/BatchErrors.js +++ b/src/model/BatchErrors.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BatchErrors model module. * @module model/BatchErrors - * @version 7.4.0 + * @version 7.5.0 */ class BatchErrors { /** diff --git a/src/model/Billing.js b/src/model/Billing.js index 3c3da649c..8b99a1f3b 100644 --- a/src/model/Billing.js +++ b/src/model/Billing.js @@ -17,7 +17,7 @@ import BillingTotal from './BillingTotal'; /** * The Billing model module. * @module model/Billing - * @version 7.4.0 + * @version 7.5.0 */ class Billing { /** diff --git a/src/model/BillingAddressAttributes.js b/src/model/BillingAddressAttributes.js index 1b3cae042..5ea70f847 100644 --- a/src/model/BillingAddressAttributes.js +++ b/src/model/BillingAddressAttributes.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BillingAddressAttributes model module. * @module model/BillingAddressAttributes - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressAttributes { /** diff --git a/src/model/BillingAddressRequest.js b/src/model/BillingAddressRequest.js index d619ef402..d259da3ab 100644 --- a/src/model/BillingAddressRequest.js +++ b/src/model/BillingAddressRequest.js @@ -16,7 +16,7 @@ import BillingAddressRequestData from './BillingAddressRequestData'; /** * The BillingAddressRequest model module. * @module model/BillingAddressRequest - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressRequest { /** diff --git a/src/model/BillingAddressRequestData.js b/src/model/BillingAddressRequestData.js index a7d690a7f..86cff2250 100644 --- a/src/model/BillingAddressRequestData.js +++ b/src/model/BillingAddressRequestData.js @@ -17,7 +17,7 @@ import TypeBillingAddress from './TypeBillingAddress'; /** * The BillingAddressRequestData model module. * @module model/BillingAddressRequestData - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressRequestData { /** diff --git a/src/model/BillingAddressResponse.js b/src/model/BillingAddressResponse.js index 25b235b8a..69b0dbb85 100644 --- a/src/model/BillingAddressResponse.js +++ b/src/model/BillingAddressResponse.js @@ -16,7 +16,7 @@ import BillingAddressResponseData from './BillingAddressResponseData'; /** * The BillingAddressResponse model module. * @module model/BillingAddressResponse - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressResponse { /** diff --git a/src/model/BillingAddressResponseData.js b/src/model/BillingAddressResponseData.js index 9b57f6621..d8d9a35c2 100644 --- a/src/model/BillingAddressResponseData.js +++ b/src/model/BillingAddressResponseData.js @@ -18,7 +18,7 @@ import TypeBillingAddress from './TypeBillingAddress'; /** * The BillingAddressResponseData model module. * @module model/BillingAddressResponseData - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressResponseData { /** diff --git a/src/model/BillingAddressVerificationErrorResponse.js b/src/model/BillingAddressVerificationErrorResponse.js index 24e6e1a38..e9277d206 100644 --- a/src/model/BillingAddressVerificationErrorResponse.js +++ b/src/model/BillingAddressVerificationErrorResponse.js @@ -16,7 +16,7 @@ import BillingAddressVerificationErrorResponseErrors from './BillingAddressVerif /** * The BillingAddressVerificationErrorResponse model module. * @module model/BillingAddressVerificationErrorResponse - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressVerificationErrorResponse { /** diff --git a/src/model/BillingAddressVerificationErrorResponseErrors.js b/src/model/BillingAddressVerificationErrorResponseErrors.js index e8079765f..75636856c 100644 --- a/src/model/BillingAddressVerificationErrorResponseErrors.js +++ b/src/model/BillingAddressVerificationErrorResponseErrors.js @@ -16,7 +16,7 @@ import BillingAddressAttributes from './BillingAddressAttributes'; /** * The BillingAddressVerificationErrorResponseErrors model module. * @module model/BillingAddressVerificationErrorResponseErrors - * @version 7.4.0 + * @version 7.5.0 */ class BillingAddressVerificationErrorResponseErrors { /** diff --git a/src/model/BillingEstimateLines.js b/src/model/BillingEstimateLines.js index b4fcbaf17..7ccc09d66 100644 --- a/src/model/BillingEstimateLines.js +++ b/src/model/BillingEstimateLines.js @@ -16,7 +16,7 @@ import BillingEstimateLinesLineItems from './BillingEstimateLinesLineItems'; /** * The BillingEstimateLines model module. * @module model/BillingEstimateLines - * @version 7.4.0 + * @version 7.5.0 */ class BillingEstimateLines { /** diff --git a/src/model/BillingEstimateLinesLineItems.js b/src/model/BillingEstimateLinesLineItems.js index 370411b8e..7cc558da7 100644 --- a/src/model/BillingEstimateLinesLineItems.js +++ b/src/model/BillingEstimateLinesLineItems.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BillingEstimateLinesLineItems model module. * @module model/BillingEstimateLinesLineItems - * @version 7.4.0 + * @version 7.5.0 */ class BillingEstimateLinesLineItems { /** diff --git a/src/model/BillingEstimateResponse.js b/src/model/BillingEstimateResponse.js index 22132e4d5..2703a9030 100644 --- a/src/model/BillingEstimateResponse.js +++ b/src/model/BillingEstimateResponse.js @@ -20,7 +20,7 @@ import BillingTotal from './BillingTotal'; /** * The BillingEstimateResponse model module. * @module model/BillingEstimateResponse - * @version 7.4.0 + * @version 7.5.0 */ class BillingEstimateResponse { /** diff --git a/src/model/BillingResponse.js b/src/model/BillingResponse.js index bc2b556f2..e5597abcd 100644 --- a/src/model/BillingResponse.js +++ b/src/model/BillingResponse.js @@ -20,7 +20,7 @@ import BillingTotal from './BillingTotal'; /** * The BillingResponse model module. * @module model/BillingResponse - * @version 7.4.0 + * @version 7.5.0 */ class BillingResponse { /** diff --git a/src/model/BillingResponseItemItemsData.js b/src/model/BillingResponseItemItemsData.js index 519dcbaf7..636d38fc9 100644 --- a/src/model/BillingResponseItemItemsData.js +++ b/src/model/BillingResponseItemItemsData.js @@ -16,7 +16,7 @@ import BillingResponseLineItem from './BillingResponseLineItem'; /** * The BillingResponseItemItemsData model module. * @module model/BillingResponseItemItemsData - * @version 7.4.0 + * @version 7.5.0 */ class BillingResponseItemItemsData { /** diff --git a/src/model/BillingResponseLineItem.js b/src/model/BillingResponseLineItem.js index cae56208c..ad066c236 100644 --- a/src/model/BillingResponseLineItem.js +++ b/src/model/BillingResponseLineItem.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The BillingResponseLineItem model module. * @module model/BillingResponseLineItem - * @version 7.4.0 + * @version 7.5.0 */ class BillingResponseLineItem { /** diff --git a/src/model/BillingStatus.js b/src/model/BillingStatus.js index 8d3561db3..28084d002 100644 --- a/src/model/BillingStatus.js +++ b/src/model/BillingStatus.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BillingStatus model module. * @module model/BillingStatus - * @version 7.4.0 + * @version 7.5.0 */ class BillingStatus { /** diff --git a/src/model/BillingTotal.js b/src/model/BillingTotal.js index 01b427934..0ba62e2ae 100644 --- a/src/model/BillingTotal.js +++ b/src/model/BillingTotal.js @@ -16,7 +16,7 @@ import BillingTotalExtras from './BillingTotalExtras'; /** * The BillingTotal model module. * @module model/BillingTotal - * @version 7.4.0 + * @version 7.5.0 */ class BillingTotal { /** diff --git a/src/model/BillingTotalExtras.js b/src/model/BillingTotalExtras.js index 4e3f309a9..db4dce480 100644 --- a/src/model/BillingTotalExtras.js +++ b/src/model/BillingTotalExtras.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BillingTotalExtras model module. * @module model/BillingTotalExtras - * @version 7.4.0 + * @version 7.5.0 */ class BillingTotalExtras { /** diff --git a/src/model/BulkUpdateAclEntriesRequest.js b/src/model/BulkUpdateAclEntriesRequest.js index 7e2504095..748ad54b3 100644 --- a/src/model/BulkUpdateAclEntriesRequest.js +++ b/src/model/BulkUpdateAclEntriesRequest.js @@ -16,7 +16,7 @@ import BulkUpdateAclEntry from './BulkUpdateAclEntry'; /** * The BulkUpdateAclEntriesRequest model module. * @module model/BulkUpdateAclEntriesRequest - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateAclEntriesRequest { /** diff --git a/src/model/BulkUpdateAclEntry.js b/src/model/BulkUpdateAclEntry.js index b6e7762a8..3a142c77d 100644 --- a/src/model/BulkUpdateAclEntry.js +++ b/src/model/BulkUpdateAclEntry.js @@ -17,7 +17,7 @@ import BulkUpdateAclEntryAllOf from './BulkUpdateAclEntryAllOf'; /** * The BulkUpdateAclEntry model module. * @module model/BulkUpdateAclEntry - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateAclEntry { /** diff --git a/src/model/BulkUpdateAclEntryAllOf.js b/src/model/BulkUpdateAclEntryAllOf.js index e92900b9f..92a28ab67 100644 --- a/src/model/BulkUpdateAclEntryAllOf.js +++ b/src/model/BulkUpdateAclEntryAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BulkUpdateAclEntryAllOf model module. * @module model/BulkUpdateAclEntryAllOf - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateAclEntryAllOf { /** diff --git a/src/model/BulkUpdateConfigStoreItem.js b/src/model/BulkUpdateConfigStoreItem.js index a05e40ddd..c7f4b0c07 100644 --- a/src/model/BulkUpdateConfigStoreItem.js +++ b/src/model/BulkUpdateConfigStoreItem.js @@ -17,7 +17,7 @@ import ConfigStoreItem from './ConfigStoreItem'; /** * The BulkUpdateConfigStoreItem model module. * @module model/BulkUpdateConfigStoreItem - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateConfigStoreItem { /** diff --git a/src/model/BulkUpdateConfigStoreItemAllOf.js b/src/model/BulkUpdateConfigStoreItemAllOf.js index 5295beb34..fda3a1ec8 100644 --- a/src/model/BulkUpdateConfigStoreItemAllOf.js +++ b/src/model/BulkUpdateConfigStoreItemAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The BulkUpdateConfigStoreItemAllOf model module. * @module model/BulkUpdateConfigStoreItemAllOf - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateConfigStoreItemAllOf { /** diff --git a/src/model/BulkUpdateConfigStoreListRequest.js b/src/model/BulkUpdateConfigStoreListRequest.js index 446a42a96..cfae0f203 100644 --- a/src/model/BulkUpdateConfigStoreListRequest.js +++ b/src/model/BulkUpdateConfigStoreListRequest.js @@ -16,7 +16,7 @@ import BulkUpdateConfigStoreItem from './BulkUpdateConfigStoreItem'; /** * The BulkUpdateConfigStoreListRequest model module. * @module model/BulkUpdateConfigStoreListRequest - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateConfigStoreListRequest { /** diff --git a/src/model/BulkUpdateDictionaryItem.js b/src/model/BulkUpdateDictionaryItem.js index ddb1e9ee7..c57843bf0 100644 --- a/src/model/BulkUpdateDictionaryItem.js +++ b/src/model/BulkUpdateDictionaryItem.js @@ -17,7 +17,7 @@ import DictionaryItem from './DictionaryItem'; /** * The BulkUpdateDictionaryItem model module. * @module model/BulkUpdateDictionaryItem - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateDictionaryItem { /** diff --git a/src/model/BulkUpdateDictionaryListRequest.js b/src/model/BulkUpdateDictionaryListRequest.js index d28e86023..efce87ff8 100644 --- a/src/model/BulkUpdateDictionaryListRequest.js +++ b/src/model/BulkUpdateDictionaryListRequest.js @@ -16,7 +16,7 @@ import BulkUpdateDictionaryItem from './BulkUpdateDictionaryItem'; /** * The BulkUpdateDictionaryListRequest model module. * @module model/BulkUpdateDictionaryListRequest - * @version 7.4.0 + * @version 7.5.0 */ class BulkUpdateDictionaryListRequest { /** diff --git a/src/model/BulkWafActiveRules.js b/src/model/BulkWafActiveRules.js index 3381d3388..c7c21916c 100644 --- a/src/model/BulkWafActiveRules.js +++ b/src/model/BulkWafActiveRules.js @@ -16,7 +16,7 @@ import WafActiveRuleData from './WafActiveRuleData'; /** * The BulkWafActiveRules model module. * @module model/BulkWafActiveRules - * @version 7.4.0 + * @version 7.5.0 */ class BulkWafActiveRules { /** diff --git a/src/model/CacheSetting.js b/src/model/CacheSetting.js index 3c390247d..31a473309 100644 --- a/src/model/CacheSetting.js +++ b/src/model/CacheSetting.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The CacheSetting model module. * @module model/CacheSetting - * @version 7.4.0 + * @version 7.5.0 */ class CacheSetting { /** diff --git a/src/model/CacheSettingResponse.js b/src/model/CacheSettingResponse.js index 87f0c95d4..c546c9276 100644 --- a/src/model/CacheSettingResponse.js +++ b/src/model/CacheSettingResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The CacheSettingResponse model module. * @module model/CacheSettingResponse - * @version 7.4.0 + * @version 7.5.0 */ class CacheSettingResponse { /** diff --git a/src/model/ClientKey.js b/src/model/ClientKey.js index f0f0cb608..259b84fd2 100644 --- a/src/model/ClientKey.js +++ b/src/model/ClientKey.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ClientKey model module. * @module model/ClientKey - * @version 7.4.0 + * @version 7.5.0 */ class ClientKey { /** diff --git a/src/model/Condition.js b/src/model/Condition.js index 94ef5e215..60c819b85 100644 --- a/src/model/Condition.js +++ b/src/model/Condition.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Condition model module. * @module model/Condition - * @version 7.4.0 + * @version 7.5.0 */ class Condition { /** diff --git a/src/model/ConditionResponse.js b/src/model/ConditionResponse.js index d352412e6..72d1293cc 100644 --- a/src/model/ConditionResponse.js +++ b/src/model/ConditionResponse.js @@ -17,7 +17,7 @@ import Timestamps from './Timestamps'; /** * The ConditionResponse model module. * @module model/ConditionResponse - * @version 7.4.0 + * @version 7.5.0 */ class ConditionResponse { /** diff --git a/src/model/ConfigStore.js b/src/model/ConfigStore.js index 71962063d..6c9eaf362 100644 --- a/src/model/ConfigStore.js +++ b/src/model/ConfigStore.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ConfigStore model module. * @module model/ConfigStore - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStore { /** diff --git a/src/model/ConfigStoreInfoResponse.js b/src/model/ConfigStoreInfoResponse.js index fdd1c1c44..de44d6912 100644 --- a/src/model/ConfigStoreInfoResponse.js +++ b/src/model/ConfigStoreInfoResponse.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ConfigStoreInfoResponse model module. * @module model/ConfigStoreInfoResponse - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStoreInfoResponse { /** diff --git a/src/model/ConfigStoreItem.js b/src/model/ConfigStoreItem.js index 23bf7230f..9edeed806 100644 --- a/src/model/ConfigStoreItem.js +++ b/src/model/ConfigStoreItem.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ConfigStoreItem model module. * @module model/ConfigStoreItem - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStoreItem { /** diff --git a/src/model/ConfigStoreItemResponse.js b/src/model/ConfigStoreItemResponse.js index 842a32c43..59920fc17 100644 --- a/src/model/ConfigStoreItemResponse.js +++ b/src/model/ConfigStoreItemResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The ConfigStoreItemResponse model module. * @module model/ConfigStoreItemResponse - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStoreItemResponse { /** diff --git a/src/model/ConfigStoreItemResponseAllOf.js b/src/model/ConfigStoreItemResponseAllOf.js index f85e3c4dc..5c695f2c5 100644 --- a/src/model/ConfigStoreItemResponseAllOf.js +++ b/src/model/ConfigStoreItemResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ConfigStoreItemResponseAllOf model module. * @module model/ConfigStoreItemResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStoreItemResponseAllOf { /** diff --git a/src/model/ConfigStoreResponse.js b/src/model/ConfigStoreResponse.js index 5533ba5d8..448757ffb 100644 --- a/src/model/ConfigStoreResponse.js +++ b/src/model/ConfigStoreResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The ConfigStoreResponse model module. * @module model/ConfigStoreResponse - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStoreResponse { /** diff --git a/src/model/ConfigStoreResponseAllOf.js b/src/model/ConfigStoreResponseAllOf.js index d9e82d539..0f6afa1bb 100644 --- a/src/model/ConfigStoreResponseAllOf.js +++ b/src/model/ConfigStoreResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ConfigStoreResponseAllOf model module. * @module model/ConfigStoreResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class ConfigStoreResponseAllOf { /** diff --git a/src/model/Contact.js b/src/model/Contact.js index 96496a9ff..499d9372b 100644 --- a/src/model/Contact.js +++ b/src/model/Contact.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Contact model module. * @module model/Contact - * @version 7.4.0 + * @version 7.5.0 */ class Contact { /** diff --git a/src/model/ContactResponse.js b/src/model/ContactResponse.js index 8f6e6328d..8847cc06a 100644 --- a/src/model/ContactResponse.js +++ b/src/model/ContactResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The ContactResponse model module. * @module model/ContactResponse - * @version 7.4.0 + * @version 7.5.0 */ class ContactResponse { /** diff --git a/src/model/ContactResponseAllOf.js b/src/model/ContactResponseAllOf.js index a6a7bfe14..3625e5e41 100644 --- a/src/model/ContactResponseAllOf.js +++ b/src/model/ContactResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ContactResponseAllOf model module. * @module model/ContactResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class ContactResponseAllOf { /** diff --git a/src/model/Content.js b/src/model/Content.js index 7108e5146..04ed6b876 100644 --- a/src/model/Content.js +++ b/src/model/Content.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Content model module. * @module model/Content - * @version 7.4.0 + * @version 7.5.0 */ class Content { /** diff --git a/src/model/CreateResponseObjectRequest.js b/src/model/CreateResponseObjectRequest.js index 247465f3e..9c3de6a14 100644 --- a/src/model/CreateResponseObjectRequest.js +++ b/src/model/CreateResponseObjectRequest.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The CreateResponseObjectRequest model module. * @module model/CreateResponseObjectRequest - * @version 7.4.0 + * @version 7.5.0 */ class CreateResponseObjectRequest { /** diff --git a/src/model/Customer.js b/src/model/Customer.js index 7fd3d6885..de17f71db 100644 --- a/src/model/Customer.js +++ b/src/model/Customer.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Customer model module. * @module model/Customer - * @version 7.4.0 + * @version 7.5.0 */ class Customer { /** diff --git a/src/model/CustomerResponse.js b/src/model/CustomerResponse.js index 5b0cf0109..36f24d861 100644 --- a/src/model/CustomerResponse.js +++ b/src/model/CustomerResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The CustomerResponse model module. * @module model/CustomerResponse - * @version 7.4.0 + * @version 7.5.0 */ class CustomerResponse { /** diff --git a/src/model/CustomerResponseAllOf.js b/src/model/CustomerResponseAllOf.js index 79a508574..2a7e10196 100644 --- a/src/model/CustomerResponseAllOf.js +++ b/src/model/CustomerResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The CustomerResponseAllOf model module. * @module model/CustomerResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class CustomerResponseAllOf { /** diff --git a/src/model/DefaultSettings.js b/src/model/DefaultSettings.js index 8d7f773da..5df39214e 100644 --- a/src/model/DefaultSettings.js +++ b/src/model/DefaultSettings.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DefaultSettings model module. * @module model/DefaultSettings - * @version 7.4.0 + * @version 7.5.0 */ class DefaultSettings { /** diff --git a/src/model/DefaultSettingsError.js b/src/model/DefaultSettingsError.js index 3bc352820..ff0c2e740 100644 --- a/src/model/DefaultSettingsError.js +++ b/src/model/DefaultSettingsError.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DefaultSettingsError model module. * @module model/DefaultSettingsError - * @version 7.4.0 + * @version 7.5.0 */ class DefaultSettingsError { /** diff --git a/src/model/DefaultSettingsResponse.js b/src/model/DefaultSettingsResponse.js index c1f0ed0d2..524f536b6 100644 --- a/src/model/DefaultSettingsResponse.js +++ b/src/model/DefaultSettingsResponse.js @@ -16,7 +16,7 @@ import DefaultSettings from './DefaultSettings'; /** * The DefaultSettingsResponse model module. * @module model/DefaultSettingsResponse - * @version 7.4.0 + * @version 7.5.0 */ class DefaultSettingsResponse { /** diff --git a/src/model/Dictionary.js b/src/model/Dictionary.js index 4761b988f..87d0c1c68 100644 --- a/src/model/Dictionary.js +++ b/src/model/Dictionary.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Dictionary model module. * @module model/Dictionary - * @version 7.4.0 + * @version 7.5.0 */ class Dictionary { /** diff --git a/src/model/DictionaryInfoResponse.js b/src/model/DictionaryInfoResponse.js index 8eda10c97..5c9fb55fb 100644 --- a/src/model/DictionaryInfoResponse.js +++ b/src/model/DictionaryInfoResponse.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DictionaryInfoResponse model module. * @module model/DictionaryInfoResponse - * @version 7.4.0 + * @version 7.5.0 */ class DictionaryInfoResponse { /** diff --git a/src/model/DictionaryItem.js b/src/model/DictionaryItem.js index 70d31b89f..63a1818b3 100644 --- a/src/model/DictionaryItem.js +++ b/src/model/DictionaryItem.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DictionaryItem model module. * @module model/DictionaryItem - * @version 7.4.0 + * @version 7.5.0 */ class DictionaryItem { /** diff --git a/src/model/DictionaryItemResponse.js b/src/model/DictionaryItemResponse.js index f3a1436cc..aeed0dbb6 100644 --- a/src/model/DictionaryItemResponse.js +++ b/src/model/DictionaryItemResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The DictionaryItemResponse model module. * @module model/DictionaryItemResponse - * @version 7.4.0 + * @version 7.5.0 */ class DictionaryItemResponse { /** diff --git a/src/model/DictionaryItemResponseAllOf.js b/src/model/DictionaryItemResponseAllOf.js index 0cc626f32..d554daf7b 100644 --- a/src/model/DictionaryItemResponseAllOf.js +++ b/src/model/DictionaryItemResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DictionaryItemResponseAllOf model module. * @module model/DictionaryItemResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class DictionaryItemResponseAllOf { /** diff --git a/src/model/DictionaryResponse.js b/src/model/DictionaryResponse.js index 0621c1d83..8ae5c416e 100644 --- a/src/model/DictionaryResponse.js +++ b/src/model/DictionaryResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The DictionaryResponse model module. * @module model/DictionaryResponse - * @version 7.4.0 + * @version 7.5.0 */ class DictionaryResponse { /** diff --git a/src/model/DictionaryResponseAllOf.js b/src/model/DictionaryResponseAllOf.js index 9415046bc..18d71d745 100644 --- a/src/model/DictionaryResponseAllOf.js +++ b/src/model/DictionaryResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DictionaryResponseAllOf model module. * @module model/DictionaryResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class DictionaryResponseAllOf { /** diff --git a/src/model/DiffResponse.js b/src/model/DiffResponse.js index 7d33dcbb1..cc71d551c 100644 --- a/src/model/DiffResponse.js +++ b/src/model/DiffResponse.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DiffResponse model module. * @module model/DiffResponse - * @version 7.4.0 + * @version 7.5.0 */ class DiffResponse { /** diff --git a/src/model/Director.js b/src/model/Director.js index 3e7ad7349..85e04efb4 100644 --- a/src/model/Director.js +++ b/src/model/Director.js @@ -16,7 +16,7 @@ import Backend from './Backend'; /** * The Director model module. * @module model/Director - * @version 7.4.0 + * @version 7.5.0 */ class Director { /** diff --git a/src/model/DirectorBackend.js b/src/model/DirectorBackend.js index 84a0e4158..21eef0cb1 100644 --- a/src/model/DirectorBackend.js +++ b/src/model/DirectorBackend.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The DirectorBackend model module. * @module model/DirectorBackend - * @version 7.4.0 + * @version 7.5.0 */ class DirectorBackend { /** diff --git a/src/model/DirectorBackendAllOf.js b/src/model/DirectorBackendAllOf.js index 624b53364..229de4a98 100644 --- a/src/model/DirectorBackendAllOf.js +++ b/src/model/DirectorBackendAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DirectorBackendAllOf model module. * @module model/DirectorBackendAllOf - * @version 7.4.0 + * @version 7.5.0 */ class DirectorBackendAllOf { /** diff --git a/src/model/DirectorResponse.js b/src/model/DirectorResponse.js index 8c9c46cb4..7497d2d9b 100644 --- a/src/model/DirectorResponse.js +++ b/src/model/DirectorResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The DirectorResponse model module. * @module model/DirectorResponse - * @version 7.4.0 + * @version 7.5.0 */ class DirectorResponse { /** diff --git a/src/model/Domain.js b/src/model/Domain.js index 030d63d56..a438829b2 100644 --- a/src/model/Domain.js +++ b/src/model/Domain.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Domain model module. * @module model/Domain - * @version 7.4.0 + * @version 7.5.0 */ class Domain { /** diff --git a/src/model/DomainInspector.js b/src/model/DomainInspector.js index 05072a82f..4db0ca139 100644 --- a/src/model/DomainInspector.js +++ b/src/model/DomainInspector.js @@ -17,7 +17,7 @@ import SubsequentRequestTimestamp from './SubsequentRequestTimestamp'; /** * The DomainInspector model module. * @module model/DomainInspector - * @version 7.4.0 + * @version 7.5.0 */ class DomainInspector { /** diff --git a/src/model/DomainInspectorEntry.js b/src/model/DomainInspectorEntry.js index c1bfecc09..45910154c 100644 --- a/src/model/DomainInspectorEntry.js +++ b/src/model/DomainInspectorEntry.js @@ -17,7 +17,7 @@ import Values from './Values'; /** * The DomainInspectorEntry model module. * @module model/DomainInspectorEntry - * @version 7.4.0 + * @version 7.5.0 */ class DomainInspectorEntry { /** diff --git a/src/model/DomainInspectorEntryDimensions.js b/src/model/DomainInspectorEntryDimensions.js index a9f7ce2e0..0df497fec 100644 --- a/src/model/DomainInspectorEntryDimensions.js +++ b/src/model/DomainInspectorEntryDimensions.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DomainInspectorEntryDimensions model module. * @module model/DomainInspectorEntryDimensions - * @version 7.4.0 + * @version 7.5.0 */ class DomainInspectorEntryDimensions { /** diff --git a/src/model/DomainInspectorMeasurements.js b/src/model/DomainInspectorMeasurements.js index edc61d0fb..bb11b0fd1 100644 --- a/src/model/DomainInspectorMeasurements.js +++ b/src/model/DomainInspectorMeasurements.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The DomainInspectorMeasurements model module. * @module model/DomainInspectorMeasurements - * @version 7.4.0 + * @version 7.5.0 */ class DomainInspectorMeasurements { /** diff --git a/src/model/DomainInspectorRealtimeEntry.js b/src/model/DomainInspectorRealtimeEntry.js index 86b5b92ce..684be4cda 100644 --- a/src/model/DomainInspectorRealtimeEntry.js +++ b/src/model/DomainInspectorRealtimeEntry.js @@ -17,7 +17,7 @@ import RecordedTimestamp from './RecordedTimestamp'; /** * The DomainInspectorRealtimeEntry model module. * @module model/DomainInspectorRealtimeEntry - * @version 7.4.0 + * @version 7.5.0 */ class DomainInspectorRealtimeEntry { /** diff --git a/src/model/DomainResponse.js b/src/model/DomainResponse.js index 2f24b4008..5d9233fda 100644 --- a/src/model/DomainResponse.js +++ b/src/model/DomainResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The DomainResponse model module. * @module model/DomainResponse - * @version 7.4.0 + * @version 7.5.0 */ class DomainResponse { /** diff --git a/src/model/EnabledProductResponse.js b/src/model/EnabledProductResponse.js index d3a32591a..eb97fc3e8 100644 --- a/src/model/EnabledProductResponse.js +++ b/src/model/EnabledProductResponse.js @@ -18,7 +18,7 @@ import EnabledProductResponseService from './EnabledProductResponseService'; /** * The EnabledProductResponse model module. * @module model/EnabledProductResponse - * @version 7.4.0 + * @version 7.5.0 */ class EnabledProductResponse { /** diff --git a/src/model/EnabledProductResponseLinks.js b/src/model/EnabledProductResponseLinks.js index 421b4b4de..f52bf2034 100644 --- a/src/model/EnabledProductResponseLinks.js +++ b/src/model/EnabledProductResponseLinks.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The EnabledProductResponseLinks model module. * @module model/EnabledProductResponseLinks - * @version 7.4.0 + * @version 7.5.0 */ class EnabledProductResponseLinks { /** diff --git a/src/model/EnabledProductResponseProduct.js b/src/model/EnabledProductResponseProduct.js index 9bd20a24e..39cd5158e 100644 --- a/src/model/EnabledProductResponseProduct.js +++ b/src/model/EnabledProductResponseProduct.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The EnabledProductResponseProduct model module. * @module model/EnabledProductResponseProduct - * @version 7.4.0 + * @version 7.5.0 */ class EnabledProductResponseProduct { /** diff --git a/src/model/EnabledProductResponseService.js b/src/model/EnabledProductResponseService.js index c12bbfb41..916bdbc49 100644 --- a/src/model/EnabledProductResponseService.js +++ b/src/model/EnabledProductResponseService.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The EnabledProductResponseService model module. * @module model/EnabledProductResponseService - * @version 7.4.0 + * @version 7.5.0 */ class EnabledProductResponseService { /** diff --git a/src/model/Error.js b/src/model/Error.js index 0086707eb..f22c29cde 100644 --- a/src/model/Error.js +++ b/src/model/Error.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Error model module. * @module model/Error - * @version 7.4.0 + * @version 7.5.0 */ class Error { /** diff --git a/src/model/ErrorResponseData.js b/src/model/ErrorResponseData.js index 9794ee403..66edad6f6 100644 --- a/src/model/ErrorResponseData.js +++ b/src/model/ErrorResponseData.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The ErrorResponseData model module. * @module model/ErrorResponseData - * @version 7.4.0 + * @version 7.5.0 */ class ErrorResponseData { /** diff --git a/src/model/Event.js b/src/model/Event.js index fc8b96f64..9833a5e1b 100644 --- a/src/model/Event.js +++ b/src/model/Event.js @@ -17,7 +17,7 @@ import TypeEvent from './TypeEvent'; /** * The Event model module. * @module model/Event - * @version 7.4.0 + * @version 7.5.0 */ class Event { /** diff --git a/src/model/EventAttributes.js b/src/model/EventAttributes.js index de088a18f..24ccc55ae 100644 --- a/src/model/EventAttributes.js +++ b/src/model/EventAttributes.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The EventAttributes model module. * @module model/EventAttributes - * @version 7.4.0 + * @version 7.5.0 */ class EventAttributes { /** diff --git a/src/model/EventData.js b/src/model/EventData.js index 64d9f6e17..2dd657200 100644 --- a/src/model/EventData.js +++ b/src/model/EventData.js @@ -16,7 +16,7 @@ import Event from './Event'; /** * The EventData model module. * @module model/EventData - * @version 7.4.0 + * @version 7.5.0 */ class EventData { /** diff --git a/src/model/EventResponse.js b/src/model/EventResponse.js index 77759913b..8bee47093 100644 --- a/src/model/EventResponse.js +++ b/src/model/EventResponse.js @@ -16,7 +16,7 @@ import Event from './Event'; /** * The EventResponse model module. * @module model/EventResponse - * @version 7.4.0 + * @version 7.5.0 */ class EventResponse { /** diff --git a/src/model/EventsResponse.js b/src/model/EventsResponse.js index 19b8f842e..e14ac10d8 100644 --- a/src/model/EventsResponse.js +++ b/src/model/EventsResponse.js @@ -20,7 +20,7 @@ import PaginationMeta from './PaginationMeta'; /** * The EventsResponse model module. * @module model/EventsResponse - * @version 7.4.0 + * @version 7.5.0 */ class EventsResponse { /** diff --git a/src/model/GenericTokenError.js b/src/model/GenericTokenError.js index 7c71d6c92..94e668993 100644 --- a/src/model/GenericTokenError.js +++ b/src/model/GenericTokenError.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The GenericTokenError model module. * @module model/GenericTokenError - * @version 7.4.0 + * @version 7.5.0 */ class GenericTokenError { /** diff --git a/src/model/Gzip.js b/src/model/Gzip.js index 6170becde..a84a9b827 100644 --- a/src/model/Gzip.js +++ b/src/model/Gzip.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Gzip model module. * @module model/Gzip - * @version 7.4.0 + * @version 7.5.0 */ class Gzip { /** diff --git a/src/model/GzipResponse.js b/src/model/GzipResponse.js index 809698484..a13a00481 100644 --- a/src/model/GzipResponse.js +++ b/src/model/GzipResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The GzipResponse model module. * @module model/GzipResponse - * @version 7.4.0 + * @version 7.5.0 */ class GzipResponse { /** diff --git a/src/model/Header.js b/src/model/Header.js index 12a000f63..45a1ec029 100644 --- a/src/model/Header.js +++ b/src/model/Header.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Header model module. * @module model/Header - * @version 7.4.0 + * @version 7.5.0 */ class Header { /** diff --git a/src/model/HeaderResponse.js b/src/model/HeaderResponse.js index 2c83dfc55..3bc18476e 100644 --- a/src/model/HeaderResponse.js +++ b/src/model/HeaderResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The HeaderResponse model module. * @module model/HeaderResponse - * @version 7.4.0 + * @version 7.5.0 */ class HeaderResponse { /** diff --git a/src/model/HeaderResponseAdditional.js b/src/model/HeaderResponseAdditional.js index 5ffafb4de..47d77cde5 100644 --- a/src/model/HeaderResponseAdditional.js +++ b/src/model/HeaderResponseAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HeaderResponseAdditional model module. * @module model/HeaderResponseAdditional - * @version 7.4.0 + * @version 7.5.0 */ class HeaderResponseAdditional { /** diff --git a/src/model/Healthcheck.js b/src/model/Healthcheck.js index a9c81ab9f..0f3e31f7e 100644 --- a/src/model/Healthcheck.js +++ b/src/model/Healthcheck.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Healthcheck model module. * @module model/Healthcheck - * @version 7.4.0 + * @version 7.5.0 */ class Healthcheck { /** diff --git a/src/model/HealthcheckResponse.js b/src/model/HealthcheckResponse.js index 69d899b96..7ba02f346 100644 --- a/src/model/HealthcheckResponse.js +++ b/src/model/HealthcheckResponse.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The HealthcheckResponse model module. * @module model/HealthcheckResponse - * @version 7.4.0 + * @version 7.5.0 */ class HealthcheckResponse { /** diff --git a/src/model/Historical.js b/src/model/Historical.js index fa6ae98a3..a3056acc7 100644 --- a/src/model/Historical.js +++ b/src/model/Historical.js @@ -16,7 +16,7 @@ import HistoricalMeta from './HistoricalMeta'; /** * The Historical model module. * @module model/Historical - * @version 7.4.0 + * @version 7.5.0 */ class Historical { /** diff --git a/src/model/HistoricalDdos.js b/src/model/HistoricalDdos.js index d3af995da..40d7c4c3d 100644 --- a/src/model/HistoricalDdos.js +++ b/src/model/HistoricalDdos.js @@ -17,7 +17,7 @@ import PlatformDdosDataItems from './PlatformDdosDataItems'; /** * The HistoricalDdos model module. * @module model/HistoricalDdos - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDdos { /** diff --git a/src/model/HistoricalDdosMeta.js b/src/model/HistoricalDdosMeta.js index 5ee44a6fe..9cafa974d 100644 --- a/src/model/HistoricalDdosMeta.js +++ b/src/model/HistoricalDdosMeta.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HistoricalDdosMeta model module. * @module model/HistoricalDdosMeta - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDdosMeta { /** diff --git a/src/model/HistoricalDomains.js b/src/model/HistoricalDomains.js index e11bc1a7a..0d36c1eea 100644 --- a/src/model/HistoricalDomains.js +++ b/src/model/HistoricalDomains.js @@ -17,7 +17,7 @@ import HistoricalDomainsMeta from './HistoricalDomainsMeta'; /** * The HistoricalDomains model module. * @module model/HistoricalDomains - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDomains { /** diff --git a/src/model/HistoricalDomainsData.js b/src/model/HistoricalDomainsData.js index 978ffa75e..c10c18a6e 100644 --- a/src/model/HistoricalDomainsData.js +++ b/src/model/HistoricalDomainsData.js @@ -17,7 +17,7 @@ import Values from './Values'; /** * The HistoricalDomainsData model module. * @module model/HistoricalDomainsData - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDomainsData { /** diff --git a/src/model/HistoricalDomainsMeta.js b/src/model/HistoricalDomainsMeta.js index 45564c23b..20bcb8139 100644 --- a/src/model/HistoricalDomainsMeta.js +++ b/src/model/HistoricalDomainsMeta.js @@ -16,7 +16,7 @@ import HistoricalDomainsMetaFilters from './HistoricalDomainsMetaFilters'; /** * The HistoricalDomainsMeta model module. * @module model/HistoricalDomainsMeta - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDomainsMeta { /** diff --git a/src/model/HistoricalDomainsMetaFilters.js b/src/model/HistoricalDomainsMetaFilters.js index 1655927bb..4ba606882 100644 --- a/src/model/HistoricalDomainsMetaFilters.js +++ b/src/model/HistoricalDomainsMetaFilters.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HistoricalDomainsMetaFilters model module. * @module model/HistoricalDomainsMetaFilters - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDomainsMetaFilters { /** diff --git a/src/model/HistoricalDomainsResponse.js b/src/model/HistoricalDomainsResponse.js index 9f01cbc79..f72a0872c 100644 --- a/src/model/HistoricalDomainsResponse.js +++ b/src/model/HistoricalDomainsResponse.js @@ -19,7 +19,7 @@ import HistoricalDomainsResponseAllOf from './HistoricalDomainsResponseAllOf'; /** * The HistoricalDomainsResponse model module. * @module model/HistoricalDomainsResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDomainsResponse { /** diff --git a/src/model/HistoricalDomainsResponseAllOf.js b/src/model/HistoricalDomainsResponseAllOf.js index d7f5c2d13..3bf8605a9 100644 --- a/src/model/HistoricalDomainsResponseAllOf.js +++ b/src/model/HistoricalDomainsResponseAllOf.js @@ -16,7 +16,7 @@ import DomainInspectorEntry from './DomainInspectorEntry'; /** * The HistoricalDomainsResponseAllOf model module. * @module model/HistoricalDomainsResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalDomainsResponseAllOf { /** diff --git a/src/model/HistoricalMeta.js b/src/model/HistoricalMeta.js index 065befae4..11ded235b 100644 --- a/src/model/HistoricalMeta.js +++ b/src/model/HistoricalMeta.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HistoricalMeta model module. * @module model/HistoricalMeta - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalMeta { /** diff --git a/src/model/HistoricalOriginsResponse.js b/src/model/HistoricalOriginsResponse.js index eb4784cc1..b945b2354 100644 --- a/src/model/HistoricalOriginsResponse.js +++ b/src/model/HistoricalOriginsResponse.js @@ -19,7 +19,7 @@ import OriginInspectorHistoricalMeta from './OriginInspectorHistoricalMeta'; /** * The HistoricalOriginsResponse model module. * @module model/HistoricalOriginsResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalOriginsResponse { /** diff --git a/src/model/HistoricalOriginsResponseAllOf.js b/src/model/HistoricalOriginsResponseAllOf.js index 68b448c18..d9a4b6e60 100644 --- a/src/model/HistoricalOriginsResponseAllOf.js +++ b/src/model/HistoricalOriginsResponseAllOf.js @@ -16,7 +16,7 @@ import OriginInspectorEntry from './OriginInspectorEntry'; /** * The HistoricalOriginsResponseAllOf model module. * @module model/HistoricalOriginsResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalOriginsResponseAllOf { /** diff --git a/src/model/HistoricalRegionsResponse.js b/src/model/HistoricalRegionsResponse.js index c9a73e96e..fcd35fe56 100644 --- a/src/model/HistoricalRegionsResponse.js +++ b/src/model/HistoricalRegionsResponse.js @@ -18,7 +18,7 @@ import HistoricalRegionsResponseAllOf from './HistoricalRegionsResponseAllOf'; /** * The HistoricalRegionsResponse model module. * @module model/HistoricalRegionsResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalRegionsResponse { /** diff --git a/src/model/HistoricalRegionsResponseAllOf.js b/src/model/HistoricalRegionsResponseAllOf.js index cdb7ca502..42c37af9c 100644 --- a/src/model/HistoricalRegionsResponseAllOf.js +++ b/src/model/HistoricalRegionsResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HistoricalRegionsResponseAllOf model module. * @module model/HistoricalRegionsResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalRegionsResponseAllOf { /** diff --git a/src/model/HistoricalStatsAggregatedResponse.js b/src/model/HistoricalStatsAggregatedResponse.js index 8c132c1ee..ecde3c035 100644 --- a/src/model/HistoricalStatsAggregatedResponse.js +++ b/src/model/HistoricalStatsAggregatedResponse.js @@ -19,7 +19,7 @@ import Results from './Results'; /** * The HistoricalStatsAggregatedResponse model module. * @module model/HistoricalStatsAggregatedResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalStatsAggregatedResponse { /** diff --git a/src/model/HistoricalStatsAggregatedResponseAllOf.js b/src/model/HistoricalStatsAggregatedResponseAllOf.js index 532dc19de..adf3beda8 100644 --- a/src/model/HistoricalStatsAggregatedResponseAllOf.js +++ b/src/model/HistoricalStatsAggregatedResponseAllOf.js @@ -16,7 +16,7 @@ import Results from './Results'; /** * The HistoricalStatsAggregatedResponseAllOf model module. * @module model/HistoricalStatsAggregatedResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalStatsAggregatedResponseAllOf { /** diff --git a/src/model/HistoricalStatsByServiceResponse.js b/src/model/HistoricalStatsByServiceResponse.js index dceff638e..e03db87ac 100644 --- a/src/model/HistoricalStatsByServiceResponse.js +++ b/src/model/HistoricalStatsByServiceResponse.js @@ -19,7 +19,7 @@ import Results from './Results'; /** * The HistoricalStatsByServiceResponse model module. * @module model/HistoricalStatsByServiceResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalStatsByServiceResponse { /** diff --git a/src/model/HistoricalStatsByServiceResponseAllOf.js b/src/model/HistoricalStatsByServiceResponseAllOf.js index b7d19e6c1..0eb1309a2 100644 --- a/src/model/HistoricalStatsByServiceResponseAllOf.js +++ b/src/model/HistoricalStatsByServiceResponseAllOf.js @@ -16,7 +16,7 @@ import Results from './Results'; /** * The HistoricalStatsByServiceResponseAllOf model module. * @module model/HistoricalStatsByServiceResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalStatsByServiceResponseAllOf { /** diff --git a/src/model/HistoricalUsageAggregatedResponse.js b/src/model/HistoricalUsageAggregatedResponse.js index 26d55a166..ee262e654 100644 --- a/src/model/HistoricalUsageAggregatedResponse.js +++ b/src/model/HistoricalUsageAggregatedResponse.js @@ -19,7 +19,7 @@ import HistoricalUsageData from './HistoricalUsageData'; /** * The HistoricalUsageAggregatedResponse model module. * @module model/HistoricalUsageAggregatedResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageAggregatedResponse { /** diff --git a/src/model/HistoricalUsageAggregatedResponseAllOf.js b/src/model/HistoricalUsageAggregatedResponseAllOf.js index 89f4bfc6c..ed94107a9 100644 --- a/src/model/HistoricalUsageAggregatedResponseAllOf.js +++ b/src/model/HistoricalUsageAggregatedResponseAllOf.js @@ -16,7 +16,7 @@ import HistoricalUsageData from './HistoricalUsageData'; /** * The HistoricalUsageAggregatedResponseAllOf model module. * @module model/HistoricalUsageAggregatedResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageAggregatedResponseAllOf { /** diff --git a/src/model/HistoricalUsageData.js b/src/model/HistoricalUsageData.js index c5d3fc502..9aca0c62d 100644 --- a/src/model/HistoricalUsageData.js +++ b/src/model/HistoricalUsageData.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HistoricalUsageData model module. * @module model/HistoricalUsageData - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageData { /** diff --git a/src/model/HistoricalUsageMonthResponse.js b/src/model/HistoricalUsageMonthResponse.js index ac00ddbd6..797b9b5d4 100644 --- a/src/model/HistoricalUsageMonthResponse.js +++ b/src/model/HistoricalUsageMonthResponse.js @@ -19,7 +19,7 @@ import HistoricalUsageMonthResponseData from './HistoricalUsageMonthResponseData /** * The HistoricalUsageMonthResponse model module. * @module model/HistoricalUsageMonthResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageMonthResponse { /** diff --git a/src/model/HistoricalUsageMonthResponseAllOf.js b/src/model/HistoricalUsageMonthResponseAllOf.js index 6a098dea0..11dff6e24 100644 --- a/src/model/HistoricalUsageMonthResponseAllOf.js +++ b/src/model/HistoricalUsageMonthResponseAllOf.js @@ -16,7 +16,7 @@ import HistoricalUsageMonthResponseData from './HistoricalUsageMonthResponseData /** * The HistoricalUsageMonthResponseAllOf model module. * @module model/HistoricalUsageMonthResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageMonthResponseAllOf { /** diff --git a/src/model/HistoricalUsageMonthResponseData.js b/src/model/HistoricalUsageMonthResponseData.js index e372258e6..8e9f63245 100644 --- a/src/model/HistoricalUsageMonthResponseData.js +++ b/src/model/HistoricalUsageMonthResponseData.js @@ -17,7 +17,7 @@ import HistoricalUsageService from './HistoricalUsageService'; /** * The HistoricalUsageMonthResponseData model module. * @module model/HistoricalUsageMonthResponseData - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageMonthResponseData { /** diff --git a/src/model/HistoricalUsageService.js b/src/model/HistoricalUsageService.js index 856dacc70..eeaef7e61 100644 --- a/src/model/HistoricalUsageService.js +++ b/src/model/HistoricalUsageService.js @@ -16,7 +16,7 @@ import HistoricalUsageData from './HistoricalUsageData'; /** * The HistoricalUsageService model module. * @module model/HistoricalUsageService - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageService { /** diff --git a/src/model/HistoricalUsageServiceResponse.js b/src/model/HistoricalUsageServiceResponse.js index 759f5ba08..2701d5c2f 100644 --- a/src/model/HistoricalUsageServiceResponse.js +++ b/src/model/HistoricalUsageServiceResponse.js @@ -19,7 +19,7 @@ import HistoricalUsageServiceResponseAllOf from './HistoricalUsageServiceRespons /** * The HistoricalUsageServiceResponse model module. * @module model/HistoricalUsageServiceResponse - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageServiceResponse { /** diff --git a/src/model/HistoricalUsageServiceResponseAllOf.js b/src/model/HistoricalUsageServiceResponseAllOf.js index a46a1a235..3e647bf40 100644 --- a/src/model/HistoricalUsageServiceResponseAllOf.js +++ b/src/model/HistoricalUsageServiceResponseAllOf.js @@ -16,7 +16,7 @@ import HistoricalUsageData from './HistoricalUsageData'; /** * The HistoricalUsageServiceResponseAllOf model module. * @module model/HistoricalUsageServiceResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class HistoricalUsageServiceResponseAllOf { /** diff --git a/src/model/Http3.js b/src/model/Http3.js index 10fa49f36..bd50057b1 100644 --- a/src/model/Http3.js +++ b/src/model/Http3.js @@ -18,7 +18,7 @@ import Timestamps from './Timestamps'; /** * The Http3 model module. * @module model/Http3 - * @version 7.4.0 + * @version 7.5.0 */ class Http3 { /** diff --git a/src/model/Http3AllOf.js b/src/model/Http3AllOf.js index ce2b30a84..b8bdfc3e3 100644 --- a/src/model/Http3AllOf.js +++ b/src/model/Http3AllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Http3AllOf model module. * @module model/Http3AllOf - * @version 7.4.0 + * @version 7.5.0 */ class Http3AllOf { /** diff --git a/src/model/HttpResponseFormat.js b/src/model/HttpResponseFormat.js index f9da1dc9d..d15448e4b 100644 --- a/src/model/HttpResponseFormat.js +++ b/src/model/HttpResponseFormat.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HttpResponseFormat model module. * @module model/HttpResponseFormat - * @version 7.4.0 + * @version 7.5.0 */ class HttpResponseFormat { /** diff --git a/src/model/HttpStreamFormat.js b/src/model/HttpStreamFormat.js index b243e890b..a298619ce 100644 --- a/src/model/HttpStreamFormat.js +++ b/src/model/HttpStreamFormat.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The HttpStreamFormat model module. * @module model/HttpStreamFormat - * @version 7.4.0 + * @version 7.5.0 */ class HttpStreamFormat { /** diff --git a/src/model/IamPermission.js b/src/model/IamPermission.js index c692ce98c..cb625ee15 100644 --- a/src/model/IamPermission.js +++ b/src/model/IamPermission.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The IamPermission model module. * @module model/IamPermission - * @version 7.4.0 + * @version 7.5.0 */ class IamPermission { /** diff --git a/src/model/IamRole.js b/src/model/IamRole.js index 78fa2bcab..c25cde7d3 100644 --- a/src/model/IamRole.js +++ b/src/model/IamRole.js @@ -17,7 +17,7 @@ import TimestampsNoDelete from './TimestampsNoDelete'; /** * The IamRole model module. * @module model/IamRole - * @version 7.4.0 + * @version 7.5.0 */ class IamRole { /** diff --git a/src/model/IamRoleAllOf.js b/src/model/IamRoleAllOf.js index cb62843ae..f3f4c0b57 100644 --- a/src/model/IamRoleAllOf.js +++ b/src/model/IamRoleAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The IamRoleAllOf model module. * @module model/IamRoleAllOf - * @version 7.4.0 + * @version 7.5.0 */ class IamRoleAllOf { /** diff --git a/src/model/IamServiceGroup.js b/src/model/IamServiceGroup.js index 251a12543..fe2d1c622 100644 --- a/src/model/IamServiceGroup.js +++ b/src/model/IamServiceGroup.js @@ -17,7 +17,7 @@ import TimestampsNoDelete from './TimestampsNoDelete'; /** * The IamServiceGroup model module. * @module model/IamServiceGroup - * @version 7.4.0 + * @version 7.5.0 */ class IamServiceGroup { /** diff --git a/src/model/IamServiceGroupAllOf.js b/src/model/IamServiceGroupAllOf.js index 75541dd66..fec2f24ea 100644 --- a/src/model/IamServiceGroupAllOf.js +++ b/src/model/IamServiceGroupAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The IamServiceGroupAllOf model module. * @module model/IamServiceGroupAllOf - * @version 7.4.0 + * @version 7.5.0 */ class IamServiceGroupAllOf { /** diff --git a/src/model/IamUserGroup.js b/src/model/IamUserGroup.js index 7c7d26497..d49c22b60 100644 --- a/src/model/IamUserGroup.js +++ b/src/model/IamUserGroup.js @@ -17,7 +17,7 @@ import TimestampsNoDelete from './TimestampsNoDelete'; /** * The IamUserGroup model module. * @module model/IamUserGroup - * @version 7.4.0 + * @version 7.5.0 */ class IamUserGroup { /** diff --git a/src/model/IamUserGroupAllOf.js b/src/model/IamUserGroupAllOf.js index d8de3b21c..79303d3fa 100644 --- a/src/model/IamUserGroupAllOf.js +++ b/src/model/IamUserGroupAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The IamUserGroupAllOf model module. * @module model/IamUserGroupAllOf - * @version 7.4.0 + * @version 7.5.0 */ class IamUserGroupAllOf { /** diff --git a/src/model/IncludedWithWafActiveRuleItem.js b/src/model/IncludedWithWafActiveRuleItem.js index 36895a638..a8bfbdd23 100644 --- a/src/model/IncludedWithWafActiveRuleItem.js +++ b/src/model/IncludedWithWafActiveRuleItem.js @@ -20,7 +20,7 @@ import WafRuleRevisionAttributes from './WafRuleRevisionAttributes'; /** * The IncludedWithWafActiveRuleItem model module. * @module model/IncludedWithWafActiveRuleItem - * @version 7.4.0 + * @version 7.5.0 */ class IncludedWithWafActiveRuleItem { /** diff --git a/src/model/IncludedWithWafExclusionItem.js b/src/model/IncludedWithWafExclusionItem.js index 6981d120a..032f4219f 100644 --- a/src/model/IncludedWithWafExclusionItem.js +++ b/src/model/IncludedWithWafExclusionItem.js @@ -19,7 +19,7 @@ import WafRuleRevisionAttributes from './WafRuleRevisionAttributes'; /** * The IncludedWithWafExclusionItem model module. * @module model/IncludedWithWafExclusionItem - * @version 7.4.0 + * @version 7.5.0 */ class IncludedWithWafExclusionItem { /** diff --git a/src/model/IncludedWithWafFirewallVersionItem.js b/src/model/IncludedWithWafFirewallVersionItem.js index a29182254..f03b2c3d2 100644 --- a/src/model/IncludedWithWafFirewallVersionItem.js +++ b/src/model/IncludedWithWafFirewallVersionItem.js @@ -18,7 +18,7 @@ import WafActiveRuleData from './WafActiveRuleData'; /** * The IncludedWithWafFirewallVersionItem model module. * @module model/IncludedWithWafFirewallVersionItem - * @version 7.4.0 + * @version 7.5.0 */ class IncludedWithWafFirewallVersionItem { /** diff --git a/src/model/IncludedWithWafRuleItem.js b/src/model/IncludedWithWafRuleItem.js index 9c688caf2..161f7889d 100644 --- a/src/model/IncludedWithWafRuleItem.js +++ b/src/model/IncludedWithWafRuleItem.js @@ -19,7 +19,7 @@ import WafTag from './WafTag'; /** * The IncludedWithWafRuleItem model module. * @module model/IncludedWithWafRuleItem - * @version 7.4.0 + * @version 7.5.0 */ class IncludedWithWafRuleItem { /** diff --git a/src/model/InlineObject.js b/src/model/InlineObject.js index 4009582f9..926eab3a8 100644 --- a/src/model/InlineObject.js +++ b/src/model/InlineObject.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineObject model module. * @module model/InlineObject - * @version 7.4.0 + * @version 7.5.0 */ class InlineObject { /** diff --git a/src/model/InlineObject1.js b/src/model/InlineObject1.js index 0ef057268..8abf5332d 100644 --- a/src/model/InlineObject1.js +++ b/src/model/InlineObject1.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineObject1 model module. * @module model/InlineObject1 - * @version 7.4.0 + * @version 7.5.0 */ class InlineObject1 { /** diff --git a/src/model/InlineResponse200.js b/src/model/InlineResponse200.js index e37db5be4..8da860a8f 100644 --- a/src/model/InlineResponse200.js +++ b/src/model/InlineResponse200.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineResponse200 model module. * @module model/InlineResponse200 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse200 { /** diff --git a/src/model/InlineResponse2001.js b/src/model/InlineResponse2001.js index 7c311be4e..0690b24dc 100644 --- a/src/model/InlineResponse2001.js +++ b/src/model/InlineResponse2001.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineResponse2001 model module. * @module model/InlineResponse2001 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2001 { /** diff --git a/src/model/InlineResponse2002.js b/src/model/InlineResponse2002.js index 3ba0ef220..aa0b71593 100644 --- a/src/model/InlineResponse2002.js +++ b/src/model/InlineResponse2002.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineResponse2002 model module. * @module model/InlineResponse2002 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2002 { /** diff --git a/src/model/InlineResponse2003.js b/src/model/InlineResponse2003.js index 61ca0f3e9..0bcb9e120 100644 --- a/src/model/InlineResponse2003.js +++ b/src/model/InlineResponse2003.js @@ -17,7 +17,7 @@ import StoreResponse from './StoreResponse'; /** * The InlineResponse2003 model module. * @module model/InlineResponse2003 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2003 { /** diff --git a/src/model/InlineResponse2003Meta.js b/src/model/InlineResponse2003Meta.js index 63e6ce58f..372290ddf 100644 --- a/src/model/InlineResponse2003Meta.js +++ b/src/model/InlineResponse2003Meta.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineResponse2003Meta model module. * @module model/InlineResponse2003Meta - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2003Meta { /** diff --git a/src/model/InlineResponse2004.js b/src/model/InlineResponse2004.js index 2dd557c5e..966bf6ade 100644 --- a/src/model/InlineResponse2004.js +++ b/src/model/InlineResponse2004.js @@ -16,7 +16,7 @@ import InlineResponse2004Meta from './InlineResponse2004Meta'; /** * The InlineResponse2004 model module. * @module model/InlineResponse2004 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2004 { /** diff --git a/src/model/InlineResponse2004Meta.js b/src/model/InlineResponse2004Meta.js index 59a1f05d6..50910d2fd 100644 --- a/src/model/InlineResponse2004Meta.js +++ b/src/model/InlineResponse2004Meta.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineResponse2004Meta model module. * @module model/InlineResponse2004Meta - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2004Meta { /** diff --git a/src/model/InlineResponse2005.js b/src/model/InlineResponse2005.js index 60cb3c752..539665b8e 100644 --- a/src/model/InlineResponse2005.js +++ b/src/model/InlineResponse2005.js @@ -17,7 +17,7 @@ import SecretStoreResponse from './SecretStoreResponse'; /** * The InlineResponse2005 model module. * @module model/InlineResponse2005 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2005 { /** diff --git a/src/model/InlineResponse2006.js b/src/model/InlineResponse2006.js index d94a57554..e5680f3de 100644 --- a/src/model/InlineResponse2006.js +++ b/src/model/InlineResponse2006.js @@ -17,7 +17,7 @@ import SecretResponse from './SecretResponse'; /** * The InlineResponse2006 model module. * @module model/InlineResponse2006 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2006 { /** diff --git a/src/model/InlineResponse2007.js b/src/model/InlineResponse2007.js index c74dbf515..4980683b1 100644 --- a/src/model/InlineResponse2007.js +++ b/src/model/InlineResponse2007.js @@ -16,7 +16,7 @@ import ServiceAuthorizationResponseData from './ServiceAuthorizationResponseData /** * The InlineResponse2007 model module. * @module model/InlineResponse2007 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse2007 { /** diff --git a/src/model/InlineResponse400.js b/src/model/InlineResponse400.js index 43dcb7903..4dc99b144 100644 --- a/src/model/InlineResponse400.js +++ b/src/model/InlineResponse400.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The InlineResponse400 model module. * @module model/InlineResponse400 - * @version 7.4.0 + * @version 7.5.0 */ class InlineResponse400 { /** diff --git a/src/model/Invitation.js b/src/model/Invitation.js index af6273826..bf483f69a 100644 --- a/src/model/Invitation.js +++ b/src/model/Invitation.js @@ -16,7 +16,7 @@ import InvitationData from './InvitationData'; /** * The Invitation model module. * @module model/Invitation - * @version 7.4.0 + * @version 7.5.0 */ class Invitation { /** diff --git a/src/model/InvitationData.js b/src/model/InvitationData.js index 6c94d9106..71fd6d6f4 100644 --- a/src/model/InvitationData.js +++ b/src/model/InvitationData.js @@ -18,7 +18,7 @@ import TypeInvitation from './TypeInvitation'; /** * The InvitationData model module. * @module model/InvitationData - * @version 7.4.0 + * @version 7.5.0 */ class InvitationData { /** diff --git a/src/model/InvitationDataAttributes.js b/src/model/InvitationDataAttributes.js index e655c6838..aa658b878 100644 --- a/src/model/InvitationDataAttributes.js +++ b/src/model/InvitationDataAttributes.js @@ -16,7 +16,7 @@ import RoleUser from './RoleUser'; /** * The InvitationDataAttributes model module. * @module model/InvitationDataAttributes - * @version 7.4.0 + * @version 7.5.0 */ class InvitationDataAttributes { /** diff --git a/src/model/InvitationResponse.js b/src/model/InvitationResponse.js index 02b827690..d5c03a76f 100644 --- a/src/model/InvitationResponse.js +++ b/src/model/InvitationResponse.js @@ -18,7 +18,7 @@ import InvitationResponseData from './InvitationResponseData'; /** * The InvitationResponse model module. * @module model/InvitationResponse - * @version 7.4.0 + * @version 7.5.0 */ class InvitationResponse { /** diff --git a/src/model/InvitationResponseAllOf.js b/src/model/InvitationResponseAllOf.js index fe07c591d..49e33cf19 100644 --- a/src/model/InvitationResponseAllOf.js +++ b/src/model/InvitationResponseAllOf.js @@ -16,7 +16,7 @@ import InvitationResponseData from './InvitationResponseData'; /** * The InvitationResponseAllOf model module. * @module model/InvitationResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class InvitationResponseAllOf { /** diff --git a/src/model/InvitationResponseData.js b/src/model/InvitationResponseData.js index 8dcb2299c..7a3672dfa 100644 --- a/src/model/InvitationResponseData.js +++ b/src/model/InvitationResponseData.js @@ -20,7 +20,7 @@ import TypeInvitation from './TypeInvitation'; /** * The InvitationResponseData model module. * @module model/InvitationResponseData - * @version 7.4.0 + * @version 7.5.0 */ class InvitationResponseData { /** diff --git a/src/model/InvitationResponseDataAllOf.js b/src/model/InvitationResponseDataAllOf.js index 8163e7d49..6d24c32a1 100644 --- a/src/model/InvitationResponseDataAllOf.js +++ b/src/model/InvitationResponseDataAllOf.js @@ -17,7 +17,7 @@ import Timestamps from './Timestamps'; /** * The InvitationResponseDataAllOf model module. * @module model/InvitationResponseDataAllOf - * @version 7.4.0 + * @version 7.5.0 */ class InvitationResponseDataAllOf { /** diff --git a/src/model/InvitationsResponse.js b/src/model/InvitationsResponse.js index 87575ea92..000c7f667 100644 --- a/src/model/InvitationsResponse.js +++ b/src/model/InvitationsResponse.js @@ -20,7 +20,7 @@ import PaginationMeta from './PaginationMeta'; /** * The InvitationsResponse model module. * @module model/InvitationsResponse - * @version 7.4.0 + * @version 7.5.0 */ class InvitationsResponse { /** diff --git a/src/model/InvitationsResponseAllOf.js b/src/model/InvitationsResponseAllOf.js index 504d7a22b..4aa753963 100644 --- a/src/model/InvitationsResponseAllOf.js +++ b/src/model/InvitationsResponseAllOf.js @@ -16,7 +16,7 @@ import InvitationResponseData from './InvitationResponseData'; /** * The InvitationsResponseAllOf model module. * @module model/InvitationsResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class InvitationsResponseAllOf { /** diff --git a/src/model/Invoice.js b/src/model/Invoice.js index 461956a1a..1ad88a6f5 100644 --- a/src/model/Invoice.js +++ b/src/model/Invoice.js @@ -16,7 +16,7 @@ import Invoicelineitems from './Invoicelineitems'; /** * The Invoice model module. * @module model/Invoice - * @version 7.4.0 + * @version 7.5.0 */ class Invoice { /** diff --git a/src/model/InvoiceResponse.js b/src/model/InvoiceResponse.js index 796e59d29..79da28db0 100644 --- a/src/model/InvoiceResponse.js +++ b/src/model/InvoiceResponse.js @@ -17,7 +17,7 @@ import Invoicelineitems from './Invoicelineitems'; /** * The InvoiceResponse model module. * @module model/InvoiceResponse - * @version 7.4.0 + * @version 7.5.0 */ class InvoiceResponse { /** diff --git a/src/model/Invoicelineitems.js b/src/model/Invoicelineitems.js index 2be986b2f..395760169 100644 --- a/src/model/Invoicelineitems.js +++ b/src/model/Invoicelineitems.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The Invoicelineitems model module. * @module model/Invoicelineitems - * @version 7.4.0 + * @version 7.5.0 */ class Invoicelineitems { /** diff --git a/src/model/LegacyWafConfigurationSet.js b/src/model/LegacyWafConfigurationSet.js index f122d6a18..beff43b67 100644 --- a/src/model/LegacyWafConfigurationSet.js +++ b/src/model/LegacyWafConfigurationSet.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafConfigurationSet model module. * @module model/LegacyWafConfigurationSet - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafConfigurationSet { /** diff --git a/src/model/LegacyWafFirewall.js b/src/model/LegacyWafFirewall.js index 4f22de25f..491d7569e 100644 --- a/src/model/LegacyWafFirewall.js +++ b/src/model/LegacyWafFirewall.js @@ -17,7 +17,7 @@ import ReadOnlyVersion from './ReadOnlyVersion'; /** * The LegacyWafFirewall model module. * @module model/LegacyWafFirewall - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafFirewall { /** diff --git a/src/model/LegacyWafOwasp.js b/src/model/LegacyWafOwasp.js index 1328c2e9c..3a6a0037e 100644 --- a/src/model/LegacyWafOwasp.js +++ b/src/model/LegacyWafOwasp.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafOwasp model module. * @module model/LegacyWafOwasp - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafOwasp { /** diff --git a/src/model/LegacyWafRule.js b/src/model/LegacyWafRule.js index 9d3468fb0..260f269ec 100644 --- a/src/model/LegacyWafRule.js +++ b/src/model/LegacyWafRule.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafRule model module. * @module model/LegacyWafRule - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafRule { /** diff --git a/src/model/LegacyWafRuleStatus.js b/src/model/LegacyWafRuleStatus.js index 867c68172..79fdfafcb 100644 --- a/src/model/LegacyWafRuleStatus.js +++ b/src/model/LegacyWafRuleStatus.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafRuleStatus model module. * @module model/LegacyWafRuleStatus - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafRuleStatus { /** diff --git a/src/model/LegacyWafRuleset.js b/src/model/LegacyWafRuleset.js index ca496cbfc..e486edc16 100644 --- a/src/model/LegacyWafRuleset.js +++ b/src/model/LegacyWafRuleset.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafRuleset model module. * @module model/LegacyWafRuleset - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafRuleset { /** diff --git a/src/model/LegacyWafTag.js b/src/model/LegacyWafTag.js index 7b12a07b7..48ce23891 100644 --- a/src/model/LegacyWafTag.js +++ b/src/model/LegacyWafTag.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafTag model module. * @module model/LegacyWafTag - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafTag { /** diff --git a/src/model/LegacyWafUpdateStatus.js b/src/model/LegacyWafUpdateStatus.js index 18c3d1ceb..5f49de93f 100644 --- a/src/model/LegacyWafUpdateStatus.js +++ b/src/model/LegacyWafUpdateStatus.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LegacyWafUpdateStatus model module. * @module model/LegacyWafUpdateStatus - * @version 7.4.0 + * @version 7.5.0 */ class LegacyWafUpdateStatus { /** diff --git a/src/model/LineItemData.js b/src/model/LineItemData.js index f2adc1583..1bb1bcb74 100644 --- a/src/model/LineItemData.js +++ b/src/model/LineItemData.js @@ -16,7 +16,7 @@ import LineItemDataReadOnlyInvoiceId from './LineItemDataReadOnlyInvoiceId'; /** * The LineItemData model module. * @module model/LineItemData - * @version 7.4.0 + * @version 7.5.0 */ class LineItemData { /** diff --git a/src/model/LineItemDataReadOnlyInvoiceId.js b/src/model/LineItemDataReadOnlyInvoiceId.js index e9ca4ff6e..658ee9d0b 100644 --- a/src/model/LineItemDataReadOnlyInvoiceId.js +++ b/src/model/LineItemDataReadOnlyInvoiceId.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LineItemDataReadOnlyInvoiceId model module. * @module model/LineItemDataReadOnlyInvoiceId - * @version 7.4.0 + * @version 7.5.0 */ class LineItemDataReadOnlyInvoiceId { /** diff --git a/src/model/ListInvoicesResponse.js b/src/model/ListInvoicesResponse.js index 79f9e6644..88b6cffdb 100644 --- a/src/model/ListInvoicesResponse.js +++ b/src/model/ListInvoicesResponse.js @@ -18,7 +18,7 @@ import Metadata from './Metadata'; /** * The ListInvoicesResponse model module. * @module model/ListInvoicesResponse - * @version 7.4.0 + * @version 7.5.0 */ class ListInvoicesResponse { /** diff --git a/src/model/Listinvoices.js b/src/model/Listinvoices.js index d6570f965..1c6ffaab0 100644 --- a/src/model/Listinvoices.js +++ b/src/model/Listinvoices.js @@ -17,7 +17,7 @@ import Metadata from './Metadata'; /** * The Listinvoices model module. * @module model/Listinvoices - * @version 7.4.0 + * @version 7.5.0 */ class Listinvoices { /** diff --git a/src/model/LoggingAddressAndPort.js b/src/model/LoggingAddressAndPort.js index 09848871f..bbdca6f52 100644 --- a/src/model/LoggingAddressAndPort.js +++ b/src/model/LoggingAddressAndPort.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingAddressAndPort model module. * @module model/LoggingAddressAndPort - * @version 7.4.0 + * @version 7.5.0 */ class LoggingAddressAndPort { /** diff --git a/src/model/LoggingAzureblobAdditional.js b/src/model/LoggingAzureblobAdditional.js index 07cec156d..b263c572f 100644 --- a/src/model/LoggingAzureblobAdditional.js +++ b/src/model/LoggingAzureblobAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingAzureblobAdditional model module. * @module model/LoggingAzureblobAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingAzureblobAdditional { /** diff --git a/src/model/LoggingAzureblobResponse.js b/src/model/LoggingAzureblobResponse.js index a68982906..4d5907951 100644 --- a/src/model/LoggingAzureblobResponse.js +++ b/src/model/LoggingAzureblobResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingAzureblobResponse model module. * @module model/LoggingAzureblobResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingAzureblobResponse { /** diff --git a/src/model/LoggingBigqueryAdditional.js b/src/model/LoggingBigqueryAdditional.js index de85e5e86..c27099901 100644 --- a/src/model/LoggingBigqueryAdditional.js +++ b/src/model/LoggingBigqueryAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingBigqueryAdditional model module. * @module model/LoggingBigqueryAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingBigqueryAdditional { /** diff --git a/src/model/LoggingBigqueryResponse.js b/src/model/LoggingBigqueryResponse.js index 1b33cfee7..c66386dbe 100644 --- a/src/model/LoggingBigqueryResponse.js +++ b/src/model/LoggingBigqueryResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingBigqueryResponse model module. * @module model/LoggingBigqueryResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingBigqueryResponse { /** diff --git a/src/model/LoggingCloudfilesAdditional.js b/src/model/LoggingCloudfilesAdditional.js index 0d6906d62..60aaf9c13 100644 --- a/src/model/LoggingCloudfilesAdditional.js +++ b/src/model/LoggingCloudfilesAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingCloudfilesAdditional model module. * @module model/LoggingCloudfilesAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingCloudfilesAdditional { /** diff --git a/src/model/LoggingCloudfilesResponse.js b/src/model/LoggingCloudfilesResponse.js index df3cf76f9..d9c68d4ac 100644 --- a/src/model/LoggingCloudfilesResponse.js +++ b/src/model/LoggingCloudfilesResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingCloudfilesResponse model module. * @module model/LoggingCloudfilesResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingCloudfilesResponse { /** diff --git a/src/model/LoggingCommon.js b/src/model/LoggingCommon.js index 7b3c9438e..a9c498c70 100644 --- a/src/model/LoggingCommon.js +++ b/src/model/LoggingCommon.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingCommon model module. * @module model/LoggingCommon - * @version 7.4.0 + * @version 7.5.0 */ class LoggingCommon { /** diff --git a/src/model/LoggingCommonResponse.js b/src/model/LoggingCommonResponse.js index cc3ee207e..7d1abff8c 100644 --- a/src/model/LoggingCommonResponse.js +++ b/src/model/LoggingCommonResponse.js @@ -17,7 +17,7 @@ import LoggingCommonResponseAllOf1 from './LoggingCommonResponseAllOf1'; /** * The LoggingCommonResponse model module. * @module model/LoggingCommonResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingCommonResponse { /** diff --git a/src/model/LoggingCommonResponseAllOf.js b/src/model/LoggingCommonResponseAllOf.js index bcc185b88..adca8b522 100644 --- a/src/model/LoggingCommonResponseAllOf.js +++ b/src/model/LoggingCommonResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingCommonResponseAllOf model module. * @module model/LoggingCommonResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class LoggingCommonResponseAllOf { /** diff --git a/src/model/LoggingCommonResponseAllOf1.js b/src/model/LoggingCommonResponseAllOf1.js index c36441544..c5f727417 100644 --- a/src/model/LoggingCommonResponseAllOf1.js +++ b/src/model/LoggingCommonResponseAllOf1.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingCommonResponseAllOf1 model module. * @module model/LoggingCommonResponseAllOf1 - * @version 7.4.0 + * @version 7.5.0 */ class LoggingCommonResponseAllOf1 { /** diff --git a/src/model/LoggingDatadogAdditional.js b/src/model/LoggingDatadogAdditional.js index d82b298f6..899913926 100644 --- a/src/model/LoggingDatadogAdditional.js +++ b/src/model/LoggingDatadogAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingDatadogAdditional model module. * @module model/LoggingDatadogAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingDatadogAdditional { /** @@ -100,10 +100,34 @@ LoggingDatadogAdditional['RegionEnum'] = { "US": "US", /** - * value: "EU" + * value: "US3" * @const */ - "EU": "EU" + "US3": "US3", + + /** + * value: "US5" + * @const + */ + "US5": "US5", + + /** + * value: "EU (legacy, same as EU1)" + * @const + */ + "EU (legacy, same as EU1)": "EU (legacy, same as EU1)", + + /** + * value: "EU1" + * @const + */ + "EU1": "EU1", + + /** + * value: "AP1" + * @const + */ + "AP1": "AP1" }; diff --git a/src/model/LoggingDatadogResponse.js b/src/model/LoggingDatadogResponse.js index 963893116..832777e7f 100644 --- a/src/model/LoggingDatadogResponse.js +++ b/src/model/LoggingDatadogResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingDatadogResponse model module. * @module model/LoggingDatadogResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingDatadogResponse { /** @@ -311,10 +311,34 @@ LoggingDatadogResponse['RegionEnum'] = { "US": "US", /** - * value: "EU" + * value: "US3" * @const */ - "EU": "EU" + "US3": "US3", + + /** + * value: "US5" + * @const + */ + "US5": "US5", + + /** + * value: "EU (legacy, same as EU1)" + * @const + */ + "EU (legacy, same as EU1)": "EU (legacy, same as EU1)", + + /** + * value: "EU1" + * @const + */ + "EU1": "EU1", + + /** + * value: "AP1" + * @const + */ + "AP1": "AP1" }; diff --git a/src/model/LoggingDigitaloceanAdditional.js b/src/model/LoggingDigitaloceanAdditional.js index 14a31df06..c18151e54 100644 --- a/src/model/LoggingDigitaloceanAdditional.js +++ b/src/model/LoggingDigitaloceanAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingDigitaloceanAdditional model module. * @module model/LoggingDigitaloceanAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingDigitaloceanAdditional { /** diff --git a/src/model/LoggingDigitaloceanResponse.js b/src/model/LoggingDigitaloceanResponse.js index 06e17ec04..56a47a0cb 100644 --- a/src/model/LoggingDigitaloceanResponse.js +++ b/src/model/LoggingDigitaloceanResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingDigitaloceanResponse model module. * @module model/LoggingDigitaloceanResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingDigitaloceanResponse { /** diff --git a/src/model/LoggingElasticsearchAdditional.js b/src/model/LoggingElasticsearchAdditional.js index 06231d83a..05f75e663 100644 --- a/src/model/LoggingElasticsearchAdditional.js +++ b/src/model/LoggingElasticsearchAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingElasticsearchAdditional model module. * @module model/LoggingElasticsearchAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingElasticsearchAdditional { /** diff --git a/src/model/LoggingElasticsearchResponse.js b/src/model/LoggingElasticsearchResponse.js index 777afc1cc..7c7362f90 100644 --- a/src/model/LoggingElasticsearchResponse.js +++ b/src/model/LoggingElasticsearchResponse.js @@ -21,7 +21,7 @@ import Timestamps from './Timestamps'; /** * The LoggingElasticsearchResponse model module. * @module model/LoggingElasticsearchResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingElasticsearchResponse { /** diff --git a/src/model/LoggingFormatVersionInteger.js b/src/model/LoggingFormatVersionInteger.js index 9a4d82fe3..5fc599ad7 100644 --- a/src/model/LoggingFormatVersionInteger.js +++ b/src/model/LoggingFormatVersionInteger.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingFormatVersionInteger model module. * @module model/LoggingFormatVersionInteger - * @version 7.4.0 + * @version 7.5.0 */ class LoggingFormatVersionInteger { /** diff --git a/src/model/LoggingFormatVersionString.js b/src/model/LoggingFormatVersionString.js index 58c003d69..6119ba0db 100644 --- a/src/model/LoggingFormatVersionString.js +++ b/src/model/LoggingFormatVersionString.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingFormatVersionString model module. * @module model/LoggingFormatVersionString - * @version 7.4.0 + * @version 7.5.0 */ class LoggingFormatVersionString { /** diff --git a/src/model/LoggingFtpAdditional.js b/src/model/LoggingFtpAdditional.js index ad44b0612..8fb7fcdb9 100644 --- a/src/model/LoggingFtpAdditional.js +++ b/src/model/LoggingFtpAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingFtpAdditional model module. * @module model/LoggingFtpAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingFtpAdditional { /** diff --git a/src/model/LoggingFtpResponse.js b/src/model/LoggingFtpResponse.js index 21ca33845..73be0452a 100644 --- a/src/model/LoggingFtpResponse.js +++ b/src/model/LoggingFtpResponse.js @@ -21,7 +21,7 @@ import Timestamps from './Timestamps'; /** * The LoggingFtpResponse model module. * @module model/LoggingFtpResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingFtpResponse { /** diff --git a/src/model/LoggingFtpResponseAllOf.js b/src/model/LoggingFtpResponseAllOf.js index 369e49f4d..8948a55df 100644 --- a/src/model/LoggingFtpResponseAllOf.js +++ b/src/model/LoggingFtpResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingFtpResponseAllOf model module. * @module model/LoggingFtpResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class LoggingFtpResponseAllOf { /** diff --git a/src/model/LoggingGcsAdditional.js b/src/model/LoggingGcsAdditional.js index 1252a1232..0da97818b 100644 --- a/src/model/LoggingGcsAdditional.js +++ b/src/model/LoggingGcsAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingGcsAdditional model module. * @module model/LoggingGcsAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGcsAdditional { /** diff --git a/src/model/LoggingGcsCommon.js b/src/model/LoggingGcsCommon.js index c47d5f86d..b41e7f40d 100644 --- a/src/model/LoggingGcsCommon.js +++ b/src/model/LoggingGcsCommon.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingGcsCommon model module. * @module model/LoggingGcsCommon - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGcsCommon { /** diff --git a/src/model/LoggingGcsResponse.js b/src/model/LoggingGcsResponse.js index a5b4a9620..ee72d11af 100644 --- a/src/model/LoggingGcsResponse.js +++ b/src/model/LoggingGcsResponse.js @@ -21,7 +21,7 @@ import Timestamps from './Timestamps'; /** * The LoggingGcsResponse model module. * @module model/LoggingGcsResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGcsResponse { /** diff --git a/src/model/LoggingGenericCommon.js b/src/model/LoggingGenericCommon.js index 39647748e..83cd86c28 100644 --- a/src/model/LoggingGenericCommon.js +++ b/src/model/LoggingGenericCommon.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingGenericCommon model module. * @module model/LoggingGenericCommon - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGenericCommon { /** diff --git a/src/model/LoggingGenericCommonResponse.js b/src/model/LoggingGenericCommonResponse.js index 2e97ee8f4..935619551 100644 --- a/src/model/LoggingGenericCommonResponse.js +++ b/src/model/LoggingGenericCommonResponse.js @@ -17,7 +17,7 @@ import LoggingGenericCommonResponseAllOf1 from './LoggingGenericCommonResponseAl /** * The LoggingGenericCommonResponse model module. * @module model/LoggingGenericCommonResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGenericCommonResponse { /** diff --git a/src/model/LoggingGenericCommonResponseAllOf.js b/src/model/LoggingGenericCommonResponseAllOf.js index 2332341a7..7ed085edc 100644 --- a/src/model/LoggingGenericCommonResponseAllOf.js +++ b/src/model/LoggingGenericCommonResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingGenericCommonResponseAllOf model module. * @module model/LoggingGenericCommonResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGenericCommonResponseAllOf { /** diff --git a/src/model/LoggingGenericCommonResponseAllOf1.js b/src/model/LoggingGenericCommonResponseAllOf1.js index aa6af0515..069985930 100644 --- a/src/model/LoggingGenericCommonResponseAllOf1.js +++ b/src/model/LoggingGenericCommonResponseAllOf1.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingGenericCommonResponseAllOf1 model module. * @module model/LoggingGenericCommonResponseAllOf1 - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGenericCommonResponseAllOf1 { /** diff --git a/src/model/LoggingGooglePubsubAdditional.js b/src/model/LoggingGooglePubsubAdditional.js index e6c2a65e5..e1dcd100f 100644 --- a/src/model/LoggingGooglePubsubAdditional.js +++ b/src/model/LoggingGooglePubsubAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingGooglePubsubAdditional model module. * @module model/LoggingGooglePubsubAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGooglePubsubAdditional { /** diff --git a/src/model/LoggingGooglePubsubResponse.js b/src/model/LoggingGooglePubsubResponse.js index 050aba743..a0851ec37 100644 --- a/src/model/LoggingGooglePubsubResponse.js +++ b/src/model/LoggingGooglePubsubResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingGooglePubsubResponse model module. * @module model/LoggingGooglePubsubResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingGooglePubsubResponse { /** diff --git a/src/model/LoggingHerokuAdditional.js b/src/model/LoggingHerokuAdditional.js index 48c1ade9e..979069f70 100644 --- a/src/model/LoggingHerokuAdditional.js +++ b/src/model/LoggingHerokuAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingHerokuAdditional model module. * @module model/LoggingHerokuAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingHerokuAdditional { /** diff --git a/src/model/LoggingHerokuResponse.js b/src/model/LoggingHerokuResponse.js index 2b3346f6d..ac84602e3 100644 --- a/src/model/LoggingHerokuResponse.js +++ b/src/model/LoggingHerokuResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingHerokuResponse model module. * @module model/LoggingHerokuResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingHerokuResponse { /** diff --git a/src/model/LoggingHoneycombAdditional.js b/src/model/LoggingHoneycombAdditional.js index bd0d34eaf..2ee2c4cce 100644 --- a/src/model/LoggingHoneycombAdditional.js +++ b/src/model/LoggingHoneycombAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingHoneycombAdditional model module. * @module model/LoggingHoneycombAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingHoneycombAdditional { /** diff --git a/src/model/LoggingHoneycombResponse.js b/src/model/LoggingHoneycombResponse.js index 1baba0c86..51eed45bb 100644 --- a/src/model/LoggingHoneycombResponse.js +++ b/src/model/LoggingHoneycombResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingHoneycombResponse model module. * @module model/LoggingHoneycombResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingHoneycombResponse { /** diff --git a/src/model/LoggingHttpsAdditional.js b/src/model/LoggingHttpsAdditional.js index 480648004..a3d055283 100644 --- a/src/model/LoggingHttpsAdditional.js +++ b/src/model/LoggingHttpsAdditional.js @@ -16,7 +16,7 @@ import LoggingMessageType from './LoggingMessageType'; /** * The LoggingHttpsAdditional model module. * @module model/LoggingHttpsAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingHttpsAdditional { /** diff --git a/src/model/LoggingHttpsResponse.js b/src/model/LoggingHttpsResponse.js index 030a09181..2dd70282d 100644 --- a/src/model/LoggingHttpsResponse.js +++ b/src/model/LoggingHttpsResponse.js @@ -22,7 +22,7 @@ import Timestamps from './Timestamps'; /** * The LoggingHttpsResponse model module. * @module model/LoggingHttpsResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingHttpsResponse { /** diff --git a/src/model/LoggingKafkaAdditional.js b/src/model/LoggingKafkaAdditional.js index afcdaa81b..61db72851 100644 --- a/src/model/LoggingKafkaAdditional.js +++ b/src/model/LoggingKafkaAdditional.js @@ -11,12 +11,12 @@ */ import ApiClient from '../ApiClient'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; /** * The LoggingKafkaAdditional model module. * @module model/LoggingKafkaAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingKafkaAdditional { /** @@ -75,7 +75,7 @@ class LoggingKafkaAdditional { obj['password'] = ApiClient.convertToType(data['password'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } } return obj; @@ -141,7 +141,7 @@ LoggingKafkaAdditional.prototype['user'] = undefined; LoggingKafkaAdditional.prototype['password'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingKafkaAdditional.prototype['use_tls'] = undefined; diff --git a/src/model/LoggingKafkaResponse.js b/src/model/LoggingKafkaResponse.js index 7a6dbf490..bc716289a 100644 --- a/src/model/LoggingKafkaResponse.js +++ b/src/model/LoggingKafkaResponse.js @@ -14,14 +14,14 @@ import ApiClient from '../ApiClient'; import LoggingCommonResponse from './LoggingCommonResponse'; import LoggingKafkaAdditional from './LoggingKafkaAdditional'; import LoggingTlsCommon from './LoggingTlsCommon'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; import ServiceIdAndVersionString from './ServiceIdAndVersionString'; import Timestamps from './Timestamps'; /** * The LoggingKafkaResponse model module. * @module model/LoggingKafkaResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingKafkaResponse { /** @@ -132,7 +132,7 @@ class LoggingKafkaResponse { obj['password'] = ApiClient.convertToType(data['password'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } } return obj; @@ -286,7 +286,7 @@ LoggingKafkaResponse.prototype['user'] = undefined; LoggingKafkaResponse.prototype['password'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingKafkaResponse.prototype['use_tls'] = undefined; @@ -418,7 +418,7 @@ LoggingKafkaAdditional.prototype['user'] = undefined; */ LoggingKafkaAdditional.prototype['password'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingKafkaAdditional.prototype['use_tls'] = undefined; diff --git a/src/model/LoggingKafkaResponsePost.js b/src/model/LoggingKafkaResponsePost.js index 0183fe5a2..c50855e3c 100644 --- a/src/model/LoggingKafkaResponsePost.js +++ b/src/model/LoggingKafkaResponsePost.js @@ -15,14 +15,14 @@ import LoggingCommon from './LoggingCommon'; import LoggingFormatVersionInteger from './LoggingFormatVersionInteger'; import LoggingKafkaAdditional from './LoggingKafkaAdditional'; import LoggingTlsCommon from './LoggingTlsCommon'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; import ServiceIdAndVersionString from './ServiceIdAndVersionString'; import Timestamps from './Timestamps'; /** * The LoggingKafkaResponsePost model module. * @module model/LoggingKafkaResponsePost - * @version 7.4.0 + * @version 7.5.0 */ class LoggingKafkaResponsePost { /** @@ -135,7 +135,7 @@ class LoggingKafkaResponsePost { obj['password'] = ApiClient.convertToType(data['password'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } } return obj; @@ -289,7 +289,7 @@ LoggingKafkaResponsePost.prototype['user'] = undefined; LoggingKafkaResponsePost.prototype['password'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingKafkaResponsePost.prototype['use_tls'] = undefined; @@ -422,7 +422,7 @@ LoggingKafkaAdditional.prototype['user'] = undefined; */ LoggingKafkaAdditional.prototype['password'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingKafkaAdditional.prototype['use_tls'] = undefined; diff --git a/src/model/LoggingKinesisAdditional.js b/src/model/LoggingKinesisAdditional.js index 8c825dd48..8e2c8756e 100644 --- a/src/model/LoggingKinesisAdditional.js +++ b/src/model/LoggingKinesisAdditional.js @@ -17,7 +17,7 @@ import LoggingPlacement from './LoggingPlacement'; /** * The LoggingKinesisAdditional model module. * @module model/LoggingKinesisAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingKinesisAdditional { /** diff --git a/src/model/LoggingKinesisResponse.js b/src/model/LoggingKinesisResponse.js index b1ff8dbc8..357188746 100644 --- a/src/model/LoggingKinesisResponse.js +++ b/src/model/LoggingKinesisResponse.js @@ -21,7 +21,7 @@ import Timestamps from './Timestamps'; /** * The LoggingKinesisResponse model module. * @module model/LoggingKinesisResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingKinesisResponse { /** diff --git a/src/model/LoggingLogentriesAdditional.js b/src/model/LoggingLogentriesAdditional.js index a8762e9dd..c3757168d 100644 --- a/src/model/LoggingLogentriesAdditional.js +++ b/src/model/LoggingLogentriesAdditional.js @@ -11,12 +11,12 @@ */ import ApiClient from '../ApiClient'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; /** * The LoggingLogentriesAdditional model module. * @module model/LoggingLogentriesAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingLogentriesAdditional { /** @@ -54,7 +54,7 @@ class LoggingLogentriesAdditional { obj['token'] = ApiClient.convertToType(data['token'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } if (data.hasOwnProperty('region')) { obj['region'] = ApiClient.convertToType(data['region'], 'String'); @@ -80,7 +80,7 @@ LoggingLogentriesAdditional.prototype['port'] = 20000; LoggingLogentriesAdditional.prototype['token'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingLogentriesAdditional.prototype['use_tls'] = undefined; diff --git a/src/model/LoggingLogentriesResponse.js b/src/model/LoggingLogentriesResponse.js index 5c36f9126..3845fbe08 100644 --- a/src/model/LoggingLogentriesResponse.js +++ b/src/model/LoggingLogentriesResponse.js @@ -13,14 +13,14 @@ import ApiClient from '../ApiClient'; import LoggingCommonResponse from './LoggingCommonResponse'; import LoggingLogentriesAdditional from './LoggingLogentriesAdditional'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; import ServiceIdAndVersionString from './ServiceIdAndVersionString'; import Timestamps from './Timestamps'; /** * The LoggingLogentriesResponse model module. * @module model/LoggingLogentriesResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingLogentriesResponse { /** @@ -81,7 +81,7 @@ class LoggingLogentriesResponse { obj['token'] = ApiClient.convertToType(data['token'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } if (data.hasOwnProperty('region')) { obj['region'] = ApiClient.convertToType(data['region'], 'String'); @@ -154,7 +154,7 @@ LoggingLogentriesResponse.prototype['port'] = 20000; LoggingLogentriesResponse.prototype['token'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingLogentriesResponse.prototype['use_tls'] = undefined; @@ -234,7 +234,7 @@ LoggingLogentriesAdditional.prototype['port'] = 20000; */ LoggingLogentriesAdditional.prototype['token'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingLogentriesAdditional.prototype['use_tls'] = undefined; /** diff --git a/src/model/LoggingLogglyAdditional.js b/src/model/LoggingLogglyAdditional.js index 8e179e461..55796663f 100644 --- a/src/model/LoggingLogglyAdditional.js +++ b/src/model/LoggingLogglyAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingLogglyAdditional model module. * @module model/LoggingLogglyAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingLogglyAdditional { /** diff --git a/src/model/LoggingLogglyResponse.js b/src/model/LoggingLogglyResponse.js index f4dd5e2f2..f1d233126 100644 --- a/src/model/LoggingLogglyResponse.js +++ b/src/model/LoggingLogglyResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingLogglyResponse model module. * @module model/LoggingLogglyResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingLogglyResponse { /** diff --git a/src/model/LoggingLogshuttleAdditional.js b/src/model/LoggingLogshuttleAdditional.js index 112459914..7b6c0307e 100644 --- a/src/model/LoggingLogshuttleAdditional.js +++ b/src/model/LoggingLogshuttleAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingLogshuttleAdditional model module. * @module model/LoggingLogshuttleAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingLogshuttleAdditional { /** diff --git a/src/model/LoggingLogshuttleResponse.js b/src/model/LoggingLogshuttleResponse.js index d86f07704..7a7d23c99 100644 --- a/src/model/LoggingLogshuttleResponse.js +++ b/src/model/LoggingLogshuttleResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingLogshuttleResponse model module. * @module model/LoggingLogshuttleResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingLogshuttleResponse { /** diff --git a/src/model/LoggingNewrelicAdditional.js b/src/model/LoggingNewrelicAdditional.js index 9e8f97e07..17d8a4d32 100644 --- a/src/model/LoggingNewrelicAdditional.js +++ b/src/model/LoggingNewrelicAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingNewrelicAdditional model module. * @module model/LoggingNewrelicAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingNewrelicAdditional { /** diff --git a/src/model/LoggingNewrelicResponse.js b/src/model/LoggingNewrelicResponse.js index 7dbede0c9..e7f5cfd25 100644 --- a/src/model/LoggingNewrelicResponse.js +++ b/src/model/LoggingNewrelicResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingNewrelicResponse model module. * @module model/LoggingNewrelicResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingNewrelicResponse { /** diff --git a/src/model/LoggingNewrelicotlpAdditional.js b/src/model/LoggingNewrelicotlpAdditional.js index 3ce239608..f8778c027 100644 --- a/src/model/LoggingNewrelicotlpAdditional.js +++ b/src/model/LoggingNewrelicotlpAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingNewrelicotlpAdditional model module. * @module model/LoggingNewrelicotlpAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingNewrelicotlpAdditional { /** diff --git a/src/model/LoggingNewrelicotlpResponse.js b/src/model/LoggingNewrelicotlpResponse.js index fd9ba4358..02a9f4a99 100644 --- a/src/model/LoggingNewrelicotlpResponse.js +++ b/src/model/LoggingNewrelicotlpResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingNewrelicotlpResponse model module. * @module model/LoggingNewrelicotlpResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingNewrelicotlpResponse { /** diff --git a/src/model/LoggingOpenstackAdditional.js b/src/model/LoggingOpenstackAdditional.js index 6b069034c..3afcc86c3 100644 --- a/src/model/LoggingOpenstackAdditional.js +++ b/src/model/LoggingOpenstackAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingOpenstackAdditional model module. * @module model/LoggingOpenstackAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingOpenstackAdditional { /** diff --git a/src/model/LoggingOpenstackResponse.js b/src/model/LoggingOpenstackResponse.js index cc9f495f0..05a9af153 100644 --- a/src/model/LoggingOpenstackResponse.js +++ b/src/model/LoggingOpenstackResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingOpenstackResponse model module. * @module model/LoggingOpenstackResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingOpenstackResponse { /** diff --git a/src/model/LoggingPapertrailResponse.js b/src/model/LoggingPapertrailResponse.js index 62d0b5ca9..47a32e30f 100644 --- a/src/model/LoggingPapertrailResponse.js +++ b/src/model/LoggingPapertrailResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingPapertrailResponse model module. * @module model/LoggingPapertrailResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingPapertrailResponse { /** diff --git a/src/model/LoggingRequestCapsCommon.js b/src/model/LoggingRequestCapsCommon.js index c1d2b3f26..fd87fef39 100644 --- a/src/model/LoggingRequestCapsCommon.js +++ b/src/model/LoggingRequestCapsCommon.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingRequestCapsCommon model module. * @module model/LoggingRequestCapsCommon - * @version 7.4.0 + * @version 7.5.0 */ class LoggingRequestCapsCommon { /** diff --git a/src/model/LoggingS3Additional.js b/src/model/LoggingS3Additional.js index 2ec23eea1..87dabe3ac 100644 --- a/src/model/LoggingS3Additional.js +++ b/src/model/LoggingS3Additional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingS3Additional model module. * @module model/LoggingS3Additional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingS3Additional { /** diff --git a/src/model/LoggingS3Response.js b/src/model/LoggingS3Response.js index 6dac948e7..860501707 100644 --- a/src/model/LoggingS3Response.js +++ b/src/model/LoggingS3Response.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingS3Response model module. * @module model/LoggingS3Response - * @version 7.4.0 + * @version 7.5.0 */ class LoggingS3Response { /** diff --git a/src/model/LoggingScalyrAdditional.js b/src/model/LoggingScalyrAdditional.js index d512395b7..acc17aeb7 100644 --- a/src/model/LoggingScalyrAdditional.js +++ b/src/model/LoggingScalyrAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingScalyrAdditional model module. * @module model/LoggingScalyrAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingScalyrAdditional { /** diff --git a/src/model/LoggingScalyrResponse.js b/src/model/LoggingScalyrResponse.js index 06cd770e7..2a779ee74 100644 --- a/src/model/LoggingScalyrResponse.js +++ b/src/model/LoggingScalyrResponse.js @@ -19,7 +19,7 @@ import Timestamps from './Timestamps'; /** * The LoggingScalyrResponse model module. * @module model/LoggingScalyrResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingScalyrResponse { /** diff --git a/src/model/LoggingSftpAdditional.js b/src/model/LoggingSftpAdditional.js index 47a0fdb9a..aac180ced 100644 --- a/src/model/LoggingSftpAdditional.js +++ b/src/model/LoggingSftpAdditional.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingSftpAdditional model module. * @module model/LoggingSftpAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSftpAdditional { /** diff --git a/src/model/LoggingSftpResponse.js b/src/model/LoggingSftpResponse.js index 9fffa2e3c..137a184c0 100644 --- a/src/model/LoggingSftpResponse.js +++ b/src/model/LoggingSftpResponse.js @@ -21,7 +21,7 @@ import Timestamps from './Timestamps'; /** * The LoggingSftpResponse model module. * @module model/LoggingSftpResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSftpResponse { /** diff --git a/src/model/LoggingSftpResponseAllOf.js b/src/model/LoggingSftpResponseAllOf.js index 7082d33bf..7e8b80741 100644 --- a/src/model/LoggingSftpResponseAllOf.js +++ b/src/model/LoggingSftpResponseAllOf.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingSftpResponseAllOf model module. * @module model/LoggingSftpResponseAllOf - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSftpResponseAllOf { /** diff --git a/src/model/LoggingSplunkAdditional.js b/src/model/LoggingSplunkAdditional.js index 45c18e8a5..883fdf71a 100644 --- a/src/model/LoggingSplunkAdditional.js +++ b/src/model/LoggingSplunkAdditional.js @@ -11,12 +11,12 @@ */ import ApiClient from '../ApiClient'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; /** * The LoggingSplunkAdditional model module. * @module model/LoggingSplunkAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSplunkAdditional { /** @@ -54,7 +54,7 @@ class LoggingSplunkAdditional { obj['token'] = ApiClient.convertToType(data['token'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } } return obj; @@ -76,7 +76,7 @@ LoggingSplunkAdditional.prototype['url'] = undefined; LoggingSplunkAdditional.prototype['token'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingSplunkAdditional.prototype['use_tls'] = undefined; diff --git a/src/model/LoggingSplunkResponse.js b/src/model/LoggingSplunkResponse.js index 5afbd2c9b..a59e8a59c 100644 --- a/src/model/LoggingSplunkResponse.js +++ b/src/model/LoggingSplunkResponse.js @@ -15,14 +15,14 @@ import LoggingCommonResponse from './LoggingCommonResponse'; import LoggingRequestCapsCommon from './LoggingRequestCapsCommon'; import LoggingSplunkAdditional from './LoggingSplunkAdditional'; import LoggingTlsCommon from './LoggingTlsCommon'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; import ServiceIdAndVersionString from './ServiceIdAndVersionString'; import Timestamps from './Timestamps'; /** * The LoggingSplunkResponse model module. * @module model/LoggingSplunkResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSplunkResponse { /** @@ -105,7 +105,7 @@ class LoggingSplunkResponse { obj['token'] = ApiClient.convertToType(data['token'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } if (data.hasOwnProperty('created_at')) { obj['created_at'] = ApiClient.convertToType(data['created_at'], 'Date'); @@ -216,7 +216,7 @@ LoggingSplunkResponse.prototype['url'] = undefined; LoggingSplunkResponse.prototype['token'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingSplunkResponse.prototype['use_tls'] = undefined; @@ -327,7 +327,7 @@ LoggingSplunkAdditional.prototype['url'] = undefined; */ LoggingSplunkAdditional.prototype['token'] = undefined; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingSplunkAdditional.prototype['use_tls'] = undefined; // Implement Timestamps interface: diff --git a/src/model/LoggingSumologicAdditional.js b/src/model/LoggingSumologicAdditional.js index e27742f05..d918307dd 100644 --- a/src/model/LoggingSumologicAdditional.js +++ b/src/model/LoggingSumologicAdditional.js @@ -16,7 +16,7 @@ import LoggingMessageType from './LoggingMessageType'; /** * The LoggingSumologicAdditional model module. * @module model/LoggingSumologicAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSumologicAdditional { /** diff --git a/src/model/LoggingSumologicResponse.js b/src/model/LoggingSumologicResponse.js index e276c1765..602358cff 100644 --- a/src/model/LoggingSumologicResponse.js +++ b/src/model/LoggingSumologicResponse.js @@ -20,7 +20,7 @@ import Timestamps from './Timestamps'; /** * The LoggingSumologicResponse model module. * @module model/LoggingSumologicResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSumologicResponse { /** diff --git a/src/model/LoggingSyslogAdditional.js b/src/model/LoggingSyslogAdditional.js index 5f6b05b8b..be6b872de 100644 --- a/src/model/LoggingSyslogAdditional.js +++ b/src/model/LoggingSyslogAdditional.js @@ -12,12 +12,12 @@ import ApiClient from '../ApiClient'; import LoggingMessageType from './LoggingMessageType'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; /** * The LoggingSyslogAdditional model module. * @module model/LoggingSyslogAdditional - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSyslogAdditional { /** @@ -61,7 +61,7 @@ class LoggingSyslogAdditional { obj['token'] = ApiClient.convertToType(data['token'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } } return obj; @@ -95,7 +95,7 @@ LoggingSyslogAdditional.prototype['ipv4'] = undefined; LoggingSyslogAdditional.prototype['token'] = 'null'; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingSyslogAdditional.prototype['use_tls'] = undefined; diff --git a/src/model/LoggingSyslogResponse.js b/src/model/LoggingSyslogResponse.js index d75a20a00..41bace0eb 100644 --- a/src/model/LoggingSyslogResponse.js +++ b/src/model/LoggingSyslogResponse.js @@ -16,14 +16,14 @@ import LoggingCommonResponse from './LoggingCommonResponse'; import LoggingMessageType from './LoggingMessageType'; import LoggingSyslogAdditional from './LoggingSyslogAdditional'; import LoggingTlsCommon from './LoggingTlsCommon'; -import LoggingUseTls from './LoggingUseTls'; +import LoggingUseTlsString from './LoggingUseTlsString'; import ServiceIdAndVersionString from './ServiceIdAndVersionString'; import Timestamps from './Timestamps'; /** * The LoggingSyslogResponse model module. * @module model/LoggingSyslogResponse - * @version 7.4.0 + * @version 7.5.0 */ class LoggingSyslogResponse { /** @@ -112,7 +112,7 @@ class LoggingSyslogResponse { obj['token'] = ApiClient.convertToType(data['token'], 'String'); } if (data.hasOwnProperty('use_tls')) { - obj['use_tls'] = LoggingUseTls.constructFromObject(data['use_tls']); + obj['use_tls'] = LoggingUseTlsString.constructFromObject(data['use_tls']); } if (data.hasOwnProperty('created_at')) { obj['created_at'] = ApiClient.convertToType(data['created_at'], 'Date'); @@ -234,7 +234,7 @@ LoggingSyslogResponse.prototype['ipv4'] = undefined; LoggingSyslogResponse.prototype['token'] = 'null'; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingSyslogResponse.prototype['use_tls'] = undefined; @@ -354,7 +354,7 @@ LoggingSyslogAdditional.prototype['ipv4'] = undefined; */ LoggingSyslogAdditional.prototype['token'] = 'null'; /** - * @member {module:model/LoggingUseTls} use_tls + * @member {module:model/LoggingUseTlsString} use_tls */ LoggingSyslogAdditional.prototype['use_tls'] = undefined; // Implement Timestamps interface: diff --git a/src/model/LoggingTlsCommon.js b/src/model/LoggingTlsCommon.js index 5c1cfa946..509806678 100644 --- a/src/model/LoggingTlsCommon.js +++ b/src/model/LoggingTlsCommon.js @@ -15,7 +15,7 @@ import ApiClient from '../ApiClient'; /** * The LoggingTlsCommon model module. * @module model/LoggingTlsCommon - * @version 7.4.0 + * @version 7.5.0 */ class LoggingTlsCommon { /** diff --git a/src/model/LoggingUseTls.js b/src/model/LoggingUseTlsString.js similarity index 75% rename from src/model/LoggingUseTls.js rename to src/model/LoggingUseTlsString.js index 623c8c333..212fe759c 100644 --- a/src/model/LoggingUseTls.js +++ b/src/model/LoggingUseTlsString.js @@ -12,31 +12,31 @@ import ApiClient from '../ApiClient'; /** -* Enum class LoggingUseTls. +* Enum class LoggingUseTlsString. * @enum {} * @readonly */ -export default class LoggingUseTls { +export default class LoggingUseTlsString { /** - * value: 0 + * value: "0" * @const */ - "no_tls" = 0; + "no_tls" = "0"; /** - * value: 1 + * value: "1" * @const */ - "use_tls" = 1; + "use_tls" = "1"; /** - * Returns a 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 { /**