From ba52a92d5b0faf0a5320c91d476c0d67855c4462 Mon Sep 17 00:00:00 2001
From: github-actions Table of API endpoints
Class | Method | Description
---- | --- | ---
+----- | ------ | -----------
*Fastly.AclApi* | [**createAcl**](docs/AclApi.md#createAcl) | Create a new ACL
*Fastly.AclApi* | [**deleteAcl**](docs/AclApi.md#deleteAcl) | Delete an ACL
*Fastly.AclApi* | [**getAcl**](docs/AclApi.md#getAcl) | Describe an ACL
@@ -213,6 +221,8 @@ Class | Method | Description
*Fastly.IamUserGroupsApi* | [**removeUserGroupRoles**](docs/IamUserGroupsApi.md#removeUserGroupRoles) | Remove roles from a user group
*Fastly.IamUserGroupsApi* | [**removeUserGroupServiceGroups**](docs/IamUserGroupsApi.md#removeUserGroupServiceGroups) | Remove service groups from a user group
*Fastly.IamUserGroupsApi* | [**updateAUserGroup**](docs/IamUserGroupsApi.md#updateAUserGroup) | Update a user group
+*Fastly.ImageOptimizerDefaultSettingsApi* | [**getDefaultSettings**](docs/ImageOptimizerDefaultSettingsApi.md#getDefaultSettings) | Get current Image Optimizer Default Settings
+*Fastly.ImageOptimizerDefaultSettingsApi* | [**updateDefaultSettings**](docs/ImageOptimizerDefaultSettingsApi.md#updateDefaultSettings) | Update Image Optimizer Default Settings
*Fastly.InvitationsApi* | [**createInvitation**](docs/InvitationsApi.md#createInvitation) | Create an invitation
*Fastly.InvitationsApi* | [**deleteInvitation**](docs/InvitationsApi.md#deleteInvitation) | Delete an invitation
*Fastly.InvitationsApi* | [**listInvitations**](docs/InvitationsApi.md#listInvitations) | List invitations
@@ -581,6 +591,8 @@ Class | Method | Description
*Fastly.WholePlatformDdosHistoricalApi* | [**getPlatformDdosHistorical**](docs/WholePlatformDdosHistoricalApi.md#getPlatformDdosHistorical) | Get historical DDoS metrics for the entire Fastly platform
+
DefaultSettings
.
+ * @alias module:model/DefaultSettings
+ */
+ constructor() {
+
+ DefaultSettings.initialize(this);
+ }
+
+ /**
+ * Initializes the fields of this object.
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
+ * Only for internal use.
+ */
+ static initialize(obj) {
+ }
+
+ /**
+ * Constructs a DefaultSettings
from a plain JavaScript object, optionally creating a new instance.
+ * Copies all relevant properties from data
to obj
if supplied or a new instance if not.
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
+ * @param {module:model/DefaultSettings} obj Optional instance to populate.
+ * @return {module:model/DefaultSettings} The populated DefaultSettings
instance.
+ */
+ static constructFromObject(data, obj) {
+ if (data) {
+ obj = obj || new DefaultSettings();
+
+ if (data.hasOwnProperty('resize_filter')) {
+ obj['resize_filter'] = ApiClient.convertToType(data['resize_filter'], 'String');
+ }
+ if (data.hasOwnProperty('webp')) {
+ obj['webp'] = ApiClient.convertToType(data['webp'], 'Boolean');
+ }
+ if (data.hasOwnProperty('webp_quality')) {
+ obj['webp_quality'] = ApiClient.convertToType(data['webp_quality'], 'Number');
+ }
+ if (data.hasOwnProperty('jpeg_type')) {
+ obj['jpeg_type'] = ApiClient.convertToType(data['jpeg_type'], 'String');
+ }
+ if (data.hasOwnProperty('jpeg_quality')) {
+ obj['jpeg_quality'] = ApiClient.convertToType(data['jpeg_quality'], 'Number');
+ }
+ if (data.hasOwnProperty('upscale')) {
+ obj['upscale'] = ApiClient.convertToType(data['upscale'], 'Boolean');
+ }
+ if (data.hasOwnProperty('allow_video')) {
+ obj['allow_video'] = ApiClient.convertToType(data['allow_video'], 'Boolean');
+ }
+ }
+ return obj;
+ }
+
+
+}
+
+/**
+ * The type of filter to use while resizing an image.
+ * @member {module:model/DefaultSettings.ResizeFilterEnum} resize_filter
+ * @default 'lanczos3'
+ */
+DefaultSettings.prototype['resize_filter'] = undefined;
+
+/**
+ * Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests.
+ * @member {Boolean} webp
+ * @default false
+ */
+DefaultSettings.prototype['webp'] = false;
+
+/**
+ * The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests.
+ * @member {Number} webp_quality
+ * @default 85
+ */
+DefaultSettings.prototype['webp_quality'] = 85;
+
+/**
+ * The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests.
+ * @member {module:model/DefaultSettings.JpegTypeEnum} jpeg_type
+ * @default 'auto'
+ */
+DefaultSettings.prototype['jpeg_type'] = undefined;
+
+/**
+ * The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests.
+ * @member {Number} jpeg_quality
+ * @default 85
+ */
+DefaultSettings.prototype['jpeg_quality'] = 85;
+
+/**
+ * Whether or not we should allow output images to render at sizes larger than input.
+ * @member {Boolean} upscale
+ * @default false
+ */
+DefaultSettings.prototype['upscale'] = false;
+
+/**
+ * Enables GIF to MP4 transformations on this service.
+ * @member {Boolean} allow_video
+ * @default false
+ */
+DefaultSettings.prototype['allow_video'] = false;
+
+
+
+
+
+/**
+ * Allowed values for the resize_filter
property.
+ * @enum {String}
+ * @readonly
+ */
+DefaultSettings['ResizeFilterEnum'] = {
+
+ /**
+ * value: "lanczos3"
+ * @const
+ */
+ "lanczos3": "lanczos3",
+
+ /**
+ * value: "lanczos2"
+ * @const
+ */
+ "lanczos2": "lanczos2",
+
+ /**
+ * value: "bicubic"
+ * @const
+ */
+ "bicubic": "bicubic",
+
+ /**
+ * value: "bilinear"
+ * @const
+ */
+ "bilinear": "bilinear",
+
+ /**
+ * value: "nearest"
+ * @const
+ */
+ "nearest": "nearest"
+};
+
+
+/**
+ * Allowed values for the jpeg_type
property.
+ * @enum {String}
+ * @readonly
+ */
+DefaultSettings['JpegTypeEnum'] = {
+
+ /**
+ * value: "auto"
+ * @const
+ */
+ "auto": "auto",
+
+ /**
+ * value: "baseline"
+ * @const
+ */
+ "baseline": "baseline",
+
+ /**
+ * value: "progressive"
+ * @const
+ */
+ "progressive": "progressive"
+};
+
+
+
+export default DefaultSettings;
+
diff --git a/src/model/DefaultSettingsError.js b/src/model/DefaultSettingsError.js
new file mode 100644
index 000000000..956f84c58
--- /dev/null
+++ b/src/model/DefaultSettingsError.js
@@ -0,0 +1,86 @@
+/**
+ * Fastly API
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
+ *
+ * The version of the OpenAPI document: 1.0.0
+ * Contact: oss@fastly.com
+ *
+ * NOTE: This class is auto generated.
+ * Do not edit the class manually.
+ *
+ */
+
+import ApiClient from '../ApiClient';
+
+/**
+ * The DefaultSettingsError model module.
+ * @module model/DefaultSettingsError
+ * @version 7.3.0
+ */
+class DefaultSettingsError {
+ /**
+ * Constructs a new DefaultSettingsError
.
+ * @alias module:model/DefaultSettingsError
+ */
+ constructor() {
+
+ DefaultSettingsError.initialize(this);
+ }
+
+ /**
+ * Initializes the fields of this object.
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
+ * Only for internal use.
+ */
+ static initialize(obj) {
+ }
+
+ /**
+ * Constructs a DefaultSettingsError
from a plain JavaScript object, optionally creating a new instance.
+ * Copies all relevant properties from data
to obj
if supplied or a new instance if not.
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
+ * @param {module:model/DefaultSettingsError} obj Optional instance to populate.
+ * @return {module:model/DefaultSettingsError} The populated DefaultSettingsError
instance.
+ */
+ static constructFromObject(data, obj) {
+ if (data) {
+ obj = obj || new DefaultSettingsError();
+
+ if (data.hasOwnProperty('title')) {
+ obj['title'] = ApiClient.convertToType(data['title'], 'String');
+ }
+ if (data.hasOwnProperty('type')) {
+ obj['type'] = ApiClient.convertToType(data['type'], 'String');
+ }
+ if (data.hasOwnProperty('detail')) {
+ obj['detail'] = ApiClient.convertToType(data['detail'], 'String');
+ }
+ }
+ return obj;
+ }
+
+
+}
+
+/**
+ * @member {String} title
+ */
+DefaultSettingsError.prototype['title'] = undefined;
+
+/**
+ * @member {String} type
+ */
+DefaultSettingsError.prototype['type'] = undefined;
+
+/**
+ * @member {String} detail
+ */
+DefaultSettingsError.prototype['detail'] = undefined;
+
+
+
+
+
+
+export default DefaultSettingsError;
+
diff --git a/src/model/DefaultSettingsResponse.js b/src/model/DefaultSettingsResponse.js
new file mode 100644
index 000000000..efdf15044
--- /dev/null
+++ b/src/model/DefaultSettingsResponse.js
@@ -0,0 +1,258 @@
+/**
+ * Fastly API
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
+ *
+ * The version of the OpenAPI document: 1.0.0
+ * Contact: oss@fastly.com
+ *
+ * NOTE: This class is auto generated.
+ * Do not edit the class manually.
+ *
+ */
+
+import ApiClient from '../ApiClient';
+import DefaultSettings from './DefaultSettings';
+
+/**
+ * The DefaultSettingsResponse model module.
+ * @module model/DefaultSettingsResponse
+ * @version 7.3.0
+ */
+class DefaultSettingsResponse {
+ /**
+ * Constructs a new DefaultSettingsResponse
.
+ * @alias module:model/DefaultSettingsResponse
+ * @implements module:model/DefaultSettings
+ * @param resize_filter {module:model/DefaultSettingsResponse.ResizeFilterEnum} The type of filter to use while resizing an image.
+ * @param webp {Boolean} Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests.
+ * @param webp_quality {Number} The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests.
+ * @param jpeg_type {module:model/DefaultSettingsResponse.JpegTypeEnum} The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests.
+ * @param jpeg_quality {Number} The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests.
+ * @param upscale {Boolean} Whether or not we should allow output images to render at sizes larger than input.
+ * @param allow_video {Boolean} Enables GIF to MP4 transformations on this service.
+ */
+ constructor(resize_filter, webp, webp_quality, jpeg_type, jpeg_quality, upscale, allow_video) {
+ DefaultSettings.initialize(this);
+ DefaultSettingsResponse.initialize(this, resize_filter, webp, webp_quality, jpeg_type, jpeg_quality, upscale, allow_video);
+ }
+
+ /**
+ * Initializes the fields of this object.
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
+ * Only for internal use.
+ */
+ static initialize(obj, resize_filter, webp, webp_quality, jpeg_type, jpeg_quality, upscale, allow_video) {
+ obj['resize_filter'] = resize_filter || 'lanczos3';
+ obj['webp'] = webp || false;
+ obj['webp_quality'] = webp_quality || 85;
+ obj['jpeg_type'] = jpeg_type || 'auto';
+ obj['jpeg_quality'] = jpeg_quality || 85;
+ obj['upscale'] = upscale || false;
+ obj['allow_video'] = allow_video || false;
+ }
+
+ /**
+ * Constructs a DefaultSettingsResponse
from a plain JavaScript object, optionally creating a new instance.
+ * Copies all relevant properties from data
to obj
if supplied or a new instance if not.
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
+ * @param {module:model/DefaultSettingsResponse} obj Optional instance to populate.
+ * @return {module:model/DefaultSettingsResponse} The populated DefaultSettingsResponse
instance.
+ */
+ static constructFromObject(data, obj) {
+ if (data) {
+ obj = obj || new DefaultSettingsResponse();
+ DefaultSettings.constructFromObject(data, obj);
+
+ if (data.hasOwnProperty('resize_filter')) {
+ obj['resize_filter'] = ApiClient.convertToType(data['resize_filter'], 'String');
+ }
+ if (data.hasOwnProperty('webp')) {
+ obj['webp'] = ApiClient.convertToType(data['webp'], 'Boolean');
+ }
+ if (data.hasOwnProperty('webp_quality')) {
+ obj['webp_quality'] = ApiClient.convertToType(data['webp_quality'], 'Number');
+ }
+ if (data.hasOwnProperty('jpeg_type')) {
+ obj['jpeg_type'] = ApiClient.convertToType(data['jpeg_type'], 'String');
+ }
+ if (data.hasOwnProperty('jpeg_quality')) {
+ obj['jpeg_quality'] = ApiClient.convertToType(data['jpeg_quality'], 'Number');
+ }
+ if (data.hasOwnProperty('upscale')) {
+ obj['upscale'] = ApiClient.convertToType(data['upscale'], 'Boolean');
+ }
+ if (data.hasOwnProperty('allow_video')) {
+ obj['allow_video'] = ApiClient.convertToType(data['allow_video'], 'Boolean');
+ }
+ }
+ return obj;
+ }
+
+
+}
+
+/**
+ * The type of filter to use while resizing an image.
+ * @member {module:model/DefaultSettingsResponse.ResizeFilterEnum} resize_filter
+ * @default 'lanczos3'
+ */
+DefaultSettingsResponse.prototype['resize_filter'] = undefined;
+
+/**
+ * Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests.
+ * @member {Boolean} webp
+ * @default false
+ */
+DefaultSettingsResponse.prototype['webp'] = false;
+
+/**
+ * The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests.
+ * @member {Number} webp_quality
+ * @default 85
+ */
+DefaultSettingsResponse.prototype['webp_quality'] = 85;
+
+/**
+ * The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests.
+ * @member {module:model/DefaultSettingsResponse.JpegTypeEnum} jpeg_type
+ * @default 'auto'
+ */
+DefaultSettingsResponse.prototype['jpeg_type'] = undefined;
+
+/**
+ * The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests.
+ * @member {Number} jpeg_quality
+ * @default 85
+ */
+DefaultSettingsResponse.prototype['jpeg_quality'] = 85;
+
+/**
+ * Whether or not we should allow output images to render at sizes larger than input.
+ * @member {Boolean} upscale
+ * @default false
+ */
+DefaultSettingsResponse.prototype['upscale'] = false;
+
+/**
+ * Enables GIF to MP4 transformations on this service.
+ * @member {Boolean} allow_video
+ * @default false
+ */
+DefaultSettingsResponse.prototype['allow_video'] = false;
+
+
+// Implement DefaultSettings interface:
+/**
+ * The type of filter to use while resizing an image.
+ * @member {module:model/DefaultSettings.ResizeFilterEnum} resize_filter
+ * @default 'lanczos3'
+ */
+DefaultSettings.prototype['resize_filter'] = undefined;
+/**
+ * Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests.
+ * @member {Boolean} webp
+ * @default false
+ */
+DefaultSettings.prototype['webp'] = false;
+/**
+ * The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests.
+ * @member {Number} webp_quality
+ * @default 85
+ */
+DefaultSettings.prototype['webp_quality'] = 85;
+/**
+ * The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests.
+ * @member {module:model/DefaultSettings.JpegTypeEnum} jpeg_type
+ * @default 'auto'
+ */
+DefaultSettings.prototype['jpeg_type'] = undefined;
+/**
+ * The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests.
+ * @member {Number} jpeg_quality
+ * @default 85
+ */
+DefaultSettings.prototype['jpeg_quality'] = 85;
+/**
+ * Whether or not we should allow output images to render at sizes larger than input.
+ * @member {Boolean} upscale
+ * @default false
+ */
+DefaultSettings.prototype['upscale'] = false;
+/**
+ * Enables GIF to MP4 transformations on this service.
+ * @member {Boolean} allow_video
+ * @default false
+ */
+DefaultSettings.prototype['allow_video'] = false;
+
+
+
+/**
+ * Allowed values for the resize_filter
property.
+ * @enum {String}
+ * @readonly
+ */
+DefaultSettingsResponse['ResizeFilterEnum'] = {
+
+ /**
+ * value: "lanczos3"
+ * @const
+ */
+ "lanczos3": "lanczos3",
+
+ /**
+ * value: "lanczos2"
+ * @const
+ */
+ "lanczos2": "lanczos2",
+
+ /**
+ * value: "bicubic"
+ * @const
+ */
+ "bicubic": "bicubic",
+
+ /**
+ * value: "bilinear"
+ * @const
+ */
+ "bilinear": "bilinear",
+
+ /**
+ * value: "nearest"
+ * @const
+ */
+ "nearest": "nearest"
+};
+
+
+/**
+ * Allowed values for the jpeg_type
property.
+ * @enum {String}
+ * @readonly
+ */
+DefaultSettingsResponse['JpegTypeEnum'] = {
+
+ /**
+ * value: "auto"
+ * @const
+ */
+ "auto": "auto",
+
+ /**
+ * value: "baseline"
+ * @const
+ */
+ "baseline": "baseline",
+
+ /**
+ * value: "progressive"
+ * @const
+ */
+ "progressive": "progressive"
+};
+
+
+
+export default DefaultSettingsResponse;
+
diff --git a/src/model/Dictionary.js b/src/model/Dictionary.js
index 61c5ff6ab..cb3041d97 100644
--- a/src/model/Dictionary.js
+++ b/src/model/Dictionary.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Dictionary model module.
* @module model/Dictionary
- * @version 7.2.0
+ * @version 7.3.0
*/
class Dictionary {
/**
diff --git a/src/model/DictionaryInfoResponse.js b/src/model/DictionaryInfoResponse.js
index 1689d7edb..205d287c5 100644
--- a/src/model/DictionaryInfoResponse.js
+++ b/src/model/DictionaryInfoResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DictionaryInfoResponse model module.
* @module model/DictionaryInfoResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class DictionaryInfoResponse {
/**
diff --git a/src/model/DictionaryItem.js b/src/model/DictionaryItem.js
index 82b18b3a1..b3df4bab7 100644
--- a/src/model/DictionaryItem.js
+++ b/src/model/DictionaryItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DictionaryItem model module.
* @module model/DictionaryItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class DictionaryItem {
/**
diff --git a/src/model/DictionaryItemResponse.js b/src/model/DictionaryItemResponse.js
index f194cc5c8..3410373ad 100644
--- a/src/model/DictionaryItemResponse.js
+++ b/src/model/DictionaryItemResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The DictionaryItemResponse model module.
* @module model/DictionaryItemResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class DictionaryItemResponse {
/**
diff --git a/src/model/DictionaryItemResponseAllOf.js b/src/model/DictionaryItemResponseAllOf.js
index bdb240981..74bfeeb79 100644
--- a/src/model/DictionaryItemResponseAllOf.js
+++ b/src/model/DictionaryItemResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DictionaryItemResponseAllOf model module.
* @module model/DictionaryItemResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class DictionaryItemResponseAllOf {
/**
diff --git a/src/model/DictionaryResponse.js b/src/model/DictionaryResponse.js
index 88d949988..8e43b08cb 100644
--- a/src/model/DictionaryResponse.js
+++ b/src/model/DictionaryResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The DictionaryResponse model module.
* @module model/DictionaryResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class DictionaryResponse {
/**
diff --git a/src/model/DictionaryResponseAllOf.js b/src/model/DictionaryResponseAllOf.js
index 2761a2ce6..fcd1f131b 100644
--- a/src/model/DictionaryResponseAllOf.js
+++ b/src/model/DictionaryResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DictionaryResponseAllOf model module.
* @module model/DictionaryResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class DictionaryResponseAllOf {
/**
diff --git a/src/model/DiffResponse.js b/src/model/DiffResponse.js
index 5e41ec6aa..a2fb1d2d1 100644
--- a/src/model/DiffResponse.js
+++ b/src/model/DiffResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DiffResponse model module.
* @module model/DiffResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class DiffResponse {
/**
diff --git a/src/model/Director.js b/src/model/Director.js
index 2f3c23cb2..97ab667db 100644
--- a/src/model/Director.js
+++ b/src/model/Director.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Backend from './Backend';
/**
* The Director model module.
* @module model/Director
- * @version 7.2.0
+ * @version 7.3.0
*/
class Director {
/**
diff --git a/src/model/DirectorBackend.js b/src/model/DirectorBackend.js
index f73072c0e..60256434a 100644
--- a/src/model/DirectorBackend.js
+++ b/src/model/DirectorBackend.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The DirectorBackend model module.
* @module model/DirectorBackend
- * @version 7.2.0
+ * @version 7.3.0
*/
class DirectorBackend {
/**
diff --git a/src/model/DirectorBackendAllOf.js b/src/model/DirectorBackendAllOf.js
index f546929e5..e3c5d82b3 100644
--- a/src/model/DirectorBackendAllOf.js
+++ b/src/model/DirectorBackendAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DirectorBackendAllOf model module.
* @module model/DirectorBackendAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class DirectorBackendAllOf {
/**
diff --git a/src/model/DirectorResponse.js b/src/model/DirectorResponse.js
index 3e96eca1a..1b2402024 100644
--- a/src/model/DirectorResponse.js
+++ b/src/model/DirectorResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The DirectorResponse model module.
* @module model/DirectorResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class DirectorResponse {
/**
diff --git a/src/model/Domain.js b/src/model/Domain.js
index 8bea60984..bff575ed2 100644
--- a/src/model/Domain.js
+++ b/src/model/Domain.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Domain model module.
* @module model/Domain
- * @version 7.2.0
+ * @version 7.3.0
*/
class Domain {
/**
diff --git a/src/model/DomainInspector.js b/src/model/DomainInspector.js
index 2a1b02a56..a2ba6f70c 100644
--- a/src/model/DomainInspector.js
+++ b/src/model/DomainInspector.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SubsequentRequestTimestamp from './SubsequentRequestTimestamp';
/**
* The DomainInspector model module.
* @module model/DomainInspector
- * @version 7.2.0
+ * @version 7.3.0
*/
class DomainInspector {
/**
diff --git a/src/model/DomainInspectorEntry.js b/src/model/DomainInspectorEntry.js
index f1ed6d56b..320b89e7c 100644
--- a/src/model/DomainInspectorEntry.js
+++ b/src/model/DomainInspectorEntry.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Values from './Values';
/**
* The DomainInspectorEntry model module.
* @module model/DomainInspectorEntry
- * @version 7.2.0
+ * @version 7.3.0
*/
class DomainInspectorEntry {
/**
diff --git a/src/model/DomainInspectorEntryDimensions.js b/src/model/DomainInspectorEntryDimensions.js
index a95ef41d7..f38aedb99 100644
--- a/src/model/DomainInspectorEntryDimensions.js
+++ b/src/model/DomainInspectorEntryDimensions.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DomainInspectorEntryDimensions model module.
* @module model/DomainInspectorEntryDimensions
- * @version 7.2.0
+ * @version 7.3.0
*/
class DomainInspectorEntryDimensions {
/**
diff --git a/src/model/DomainInspectorMeasurements.js b/src/model/DomainInspectorMeasurements.js
index 2ef39859a..59af1549e 100644
--- a/src/model/DomainInspectorMeasurements.js
+++ b/src/model/DomainInspectorMeasurements.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The DomainInspectorMeasurements model module.
* @module model/DomainInspectorMeasurements
- * @version 7.2.0
+ * @version 7.3.0
*/
class DomainInspectorMeasurements {
/**
diff --git a/src/model/DomainInspectorRealtimeEntry.js b/src/model/DomainInspectorRealtimeEntry.js
index 330d4c3cc..a61678204 100644
--- a/src/model/DomainInspectorRealtimeEntry.js
+++ b/src/model/DomainInspectorRealtimeEntry.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import RecordedTimestamp from './RecordedTimestamp';
/**
* The DomainInspectorRealtimeEntry model module.
* @module model/DomainInspectorRealtimeEntry
- * @version 7.2.0
+ * @version 7.3.0
*/
class DomainInspectorRealtimeEntry {
/**
diff --git a/src/model/DomainResponse.js b/src/model/DomainResponse.js
index 7f1e3d382..e743715f4 100644
--- a/src/model/DomainResponse.js
+++ b/src/model/DomainResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The DomainResponse model module.
* @module model/DomainResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class DomainResponse {
/**
diff --git a/src/model/EnabledProductResponse.js b/src/model/EnabledProductResponse.js
index ee7292eee..a0b872708 100644
--- a/src/model/EnabledProductResponse.js
+++ b/src/model/EnabledProductResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import EnabledProductResponseService from './EnabledProductResponseService';
/**
* The EnabledProductResponse model module.
* @module model/EnabledProductResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class EnabledProductResponse {
/**
diff --git a/src/model/EnabledProductResponseLinks.js b/src/model/EnabledProductResponseLinks.js
index 613e10e7c..272c387ca 100644
--- a/src/model/EnabledProductResponseLinks.js
+++ b/src/model/EnabledProductResponseLinks.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The EnabledProductResponseLinks model module.
* @module model/EnabledProductResponseLinks
- * @version 7.2.0
+ * @version 7.3.0
*/
class EnabledProductResponseLinks {
/**
diff --git a/src/model/EnabledProductResponseProduct.js b/src/model/EnabledProductResponseProduct.js
index ccc1fccfe..9d6b6e835 100644
--- a/src/model/EnabledProductResponseProduct.js
+++ b/src/model/EnabledProductResponseProduct.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The EnabledProductResponseProduct model module.
* @module model/EnabledProductResponseProduct
- * @version 7.2.0
+ * @version 7.3.0
*/
class EnabledProductResponseProduct {
/**
diff --git a/src/model/EnabledProductResponseService.js b/src/model/EnabledProductResponseService.js
index 199800eaa..2da5a2f6a 100644
--- a/src/model/EnabledProductResponseService.js
+++ b/src/model/EnabledProductResponseService.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The EnabledProductResponseService model module.
* @module model/EnabledProductResponseService
- * @version 7.2.0
+ * @version 7.3.0
*/
class EnabledProductResponseService {
/**
diff --git a/src/model/Error.js b/src/model/Error.js
index e8943a2a7..bcaf3d4e0 100644
--- a/src/model/Error.js
+++ b/src/model/Error.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Error model module.
* @module model/Error
- * @version 7.2.0
+ * @version 7.3.0
*/
class Error {
/**
diff --git a/src/model/ErrorResponseData.js b/src/model/ErrorResponseData.js
index 22d687c83..ffefe82df 100644
--- a/src/model/ErrorResponseData.js
+++ b/src/model/ErrorResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ErrorResponseData model module.
* @module model/ErrorResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ErrorResponseData {
/**
diff --git a/src/model/Event.js b/src/model/Event.js
index e6aa14007..6a3d1530c 100644
--- a/src/model/Event.js
+++ b/src/model/Event.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TypeEvent from './TypeEvent';
/**
* The Event model module.
* @module model/Event
- * @version 7.2.0
+ * @version 7.3.0
*/
class Event {
/**
diff --git a/src/model/EventAttributes.js b/src/model/EventAttributes.js
index 34c0093f0..1749d8e6e 100644
--- a/src/model/EventAttributes.js
+++ b/src/model/EventAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The EventAttributes model module.
* @module model/EventAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class EventAttributes {
/**
diff --git a/src/model/EventData.js b/src/model/EventData.js
index 33f97cd33..2c641aebc 100644
--- a/src/model/EventData.js
+++ b/src/model/EventData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Event from './Event';
/**
* The EventData model module.
* @module model/EventData
- * @version 7.2.0
+ * @version 7.3.0
*/
class EventData {
/**
diff --git a/src/model/EventResponse.js b/src/model/EventResponse.js
index a7908bf1f..df1552c16 100644
--- a/src/model/EventResponse.js
+++ b/src/model/EventResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Event from './Event';
/**
* The EventResponse model module.
* @module model/EventResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class EventResponse {
/**
diff --git a/src/model/EventsResponse.js b/src/model/EventsResponse.js
index de71664f9..b2c19887d 100644
--- a/src/model/EventsResponse.js
+++ b/src/model/EventsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import PaginationMeta from './PaginationMeta';
/**
* The EventsResponse model module.
* @module model/EventsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class EventsResponse {
/**
diff --git a/src/model/GenericTokenError.js b/src/model/GenericTokenError.js
index ee447cf47..ade96987a 100644
--- a/src/model/GenericTokenError.js
+++ b/src/model/GenericTokenError.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The GenericTokenError model module.
* @module model/GenericTokenError
- * @version 7.2.0
+ * @version 7.3.0
*/
class GenericTokenError {
/**
diff --git a/src/model/Gzip.js b/src/model/Gzip.js
index cfc5ba635..efd3f59eb 100644
--- a/src/model/Gzip.js
+++ b/src/model/Gzip.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Gzip model module.
* @module model/Gzip
- * @version 7.2.0
+ * @version 7.3.0
*/
class Gzip {
/**
diff --git a/src/model/GzipResponse.js b/src/model/GzipResponse.js
index 0f1378521..0d9b99067 100644
--- a/src/model/GzipResponse.js
+++ b/src/model/GzipResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The GzipResponse model module.
* @module model/GzipResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class GzipResponse {
/**
diff --git a/src/model/Header.js b/src/model/Header.js
index ec7925e03..357522a38 100644
--- a/src/model/Header.js
+++ b/src/model/Header.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Header model module.
* @module model/Header
- * @version 7.2.0
+ * @version 7.3.0
*/
class Header {
/**
diff --git a/src/model/HeaderResponse.js b/src/model/HeaderResponse.js
index ed7baf95c..a6c7e0e05 100644
--- a/src/model/HeaderResponse.js
+++ b/src/model/HeaderResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The HeaderResponse model module.
* @module model/HeaderResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HeaderResponse {
/**
diff --git a/src/model/HeaderResponseAdditional.js b/src/model/HeaderResponseAdditional.js
index 1bda41dfa..c264e2747 100644
--- a/src/model/HeaderResponseAdditional.js
+++ b/src/model/HeaderResponseAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HeaderResponseAdditional model module.
* @module model/HeaderResponseAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class HeaderResponseAdditional {
/**
diff --git a/src/model/Healthcheck.js b/src/model/Healthcheck.js
index 5bdab9654..cc01c3fca 100644
--- a/src/model/Healthcheck.js
+++ b/src/model/Healthcheck.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Healthcheck model module.
* @module model/Healthcheck
- * @version 7.2.0
+ * @version 7.3.0
*/
class Healthcheck {
/**
diff --git a/src/model/HealthcheckResponse.js b/src/model/HealthcheckResponse.js
index d558133b9..ed25b4caa 100644
--- a/src/model/HealthcheckResponse.js
+++ b/src/model/HealthcheckResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The HealthcheckResponse model module.
* @module model/HealthcheckResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HealthcheckResponse {
/**
diff --git a/src/model/Historical.js b/src/model/Historical.js
index c0601371f..537d56a22 100644
--- a/src/model/Historical.js
+++ b/src/model/Historical.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import HistoricalMeta from './HistoricalMeta';
/**
* The Historical model module.
* @module model/Historical
- * @version 7.2.0
+ * @version 7.3.0
*/
class Historical {
/**
diff --git a/src/model/HistoricalDdos.js b/src/model/HistoricalDdos.js
index be24ffd01..6c12add89 100644
--- a/src/model/HistoricalDdos.js
+++ b/src/model/HistoricalDdos.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import PlatformDdosDataItems from './PlatformDdosDataItems';
/**
* The HistoricalDdos model module.
* @module model/HistoricalDdos
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDdos {
/**
diff --git a/src/model/HistoricalDdosMeta.js b/src/model/HistoricalDdosMeta.js
index a7d71c30e..ec92d7db4 100644
--- a/src/model/HistoricalDdosMeta.js
+++ b/src/model/HistoricalDdosMeta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HistoricalDdosMeta model module.
* @module model/HistoricalDdosMeta
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDdosMeta {
/**
diff --git a/src/model/HistoricalDomains.js b/src/model/HistoricalDomains.js
index 32e28734b..5ec005c0e 100644
--- a/src/model/HistoricalDomains.js
+++ b/src/model/HistoricalDomains.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import HistoricalDomainsMeta from './HistoricalDomainsMeta';
/**
* The HistoricalDomains model module.
* @module model/HistoricalDomains
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDomains {
/**
diff --git a/src/model/HistoricalDomainsData.js b/src/model/HistoricalDomainsData.js
index 99a457fc1..af4cd5ed8 100644
--- a/src/model/HistoricalDomainsData.js
+++ b/src/model/HistoricalDomainsData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Values from './Values';
/**
* The HistoricalDomainsData model module.
* @module model/HistoricalDomainsData
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDomainsData {
/**
diff --git a/src/model/HistoricalDomainsMeta.js b/src/model/HistoricalDomainsMeta.js
index 051dcc816..72afcc8fe 100644
--- a/src/model/HistoricalDomainsMeta.js
+++ b/src/model/HistoricalDomainsMeta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import HistoricalDomainsMetaFilters from './HistoricalDomainsMetaFilters';
/**
* The HistoricalDomainsMeta model module.
* @module model/HistoricalDomainsMeta
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDomainsMeta {
/**
diff --git a/src/model/HistoricalDomainsMetaFilters.js b/src/model/HistoricalDomainsMetaFilters.js
index e6132e7ef..e13c67fdc 100644
--- a/src/model/HistoricalDomainsMetaFilters.js
+++ b/src/model/HistoricalDomainsMetaFilters.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HistoricalDomainsMetaFilters model module.
* @module model/HistoricalDomainsMetaFilters
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDomainsMetaFilters {
/**
diff --git a/src/model/HistoricalDomainsResponse.js b/src/model/HistoricalDomainsResponse.js
index f9fd80ef9..4afd5cf51 100644
--- a/src/model/HistoricalDomainsResponse.js
+++ b/src/model/HistoricalDomainsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import HistoricalDomainsResponseAllOf from './HistoricalDomainsResponseAllOf';
/**
* The HistoricalDomainsResponse model module.
* @module model/HistoricalDomainsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDomainsResponse {
/**
diff --git a/src/model/HistoricalDomainsResponseAllOf.js b/src/model/HistoricalDomainsResponseAllOf.js
index 1fe533569..de7821c6c 100644
--- a/src/model/HistoricalDomainsResponseAllOf.js
+++ b/src/model/HistoricalDomainsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import DomainInspectorEntry from './DomainInspectorEntry';
/**
* The HistoricalDomainsResponseAllOf model module.
* @module model/HistoricalDomainsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalDomainsResponseAllOf {
/**
diff --git a/src/model/HistoricalMeta.js b/src/model/HistoricalMeta.js
index 8dd7c24c8..4225865c4 100644
--- a/src/model/HistoricalMeta.js
+++ b/src/model/HistoricalMeta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HistoricalMeta model module.
* @module model/HistoricalMeta
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalMeta {
/**
diff --git a/src/model/HistoricalOriginsResponse.js b/src/model/HistoricalOriginsResponse.js
index f37f2a14a..60466fa13 100644
--- a/src/model/HistoricalOriginsResponse.js
+++ b/src/model/HistoricalOriginsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import OriginInspectorHistoricalMeta from './OriginInspectorHistoricalMeta';
/**
* The HistoricalOriginsResponse model module.
* @module model/HistoricalOriginsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalOriginsResponse {
/**
diff --git a/src/model/HistoricalOriginsResponseAllOf.js b/src/model/HistoricalOriginsResponseAllOf.js
index 2b7dd230e..083214208 100644
--- a/src/model/HistoricalOriginsResponseAllOf.js
+++ b/src/model/HistoricalOriginsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import OriginInspectorEntry from './OriginInspectorEntry';
/**
* The HistoricalOriginsResponseAllOf model module.
* @module model/HistoricalOriginsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalOriginsResponseAllOf {
/**
diff --git a/src/model/HistoricalRegionsResponse.js b/src/model/HistoricalRegionsResponse.js
index 1382f6f80..55126d9fe 100644
--- a/src/model/HistoricalRegionsResponse.js
+++ b/src/model/HistoricalRegionsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import HistoricalRegionsResponseAllOf from './HistoricalRegionsResponseAllOf';
/**
* The HistoricalRegionsResponse model module.
* @module model/HistoricalRegionsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalRegionsResponse {
/**
diff --git a/src/model/HistoricalRegionsResponseAllOf.js b/src/model/HistoricalRegionsResponseAllOf.js
index 2e5fcf4a8..824a939e3 100644
--- a/src/model/HistoricalRegionsResponseAllOf.js
+++ b/src/model/HistoricalRegionsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HistoricalRegionsResponseAllOf model module.
* @module model/HistoricalRegionsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalRegionsResponseAllOf {
/**
diff --git a/src/model/HistoricalStatsAggregatedResponse.js b/src/model/HistoricalStatsAggregatedResponse.js
index a049ff057..05aa3f28e 100644
--- a/src/model/HistoricalStatsAggregatedResponse.js
+++ b/src/model/HistoricalStatsAggregatedResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Results from './Results';
/**
* The HistoricalStatsAggregatedResponse model module.
* @module model/HistoricalStatsAggregatedResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalStatsAggregatedResponse {
/**
diff --git a/src/model/HistoricalStatsAggregatedResponseAllOf.js b/src/model/HistoricalStatsAggregatedResponseAllOf.js
index 6cbfebe82..474318cbf 100644
--- a/src/model/HistoricalStatsAggregatedResponseAllOf.js
+++ b/src/model/HistoricalStatsAggregatedResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Results from './Results';
/**
* The HistoricalStatsAggregatedResponseAllOf model module.
* @module model/HistoricalStatsAggregatedResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalStatsAggregatedResponseAllOf {
/**
diff --git a/src/model/HistoricalStatsByServiceResponse.js b/src/model/HistoricalStatsByServiceResponse.js
index ba309718f..cc1d2dc0e 100644
--- a/src/model/HistoricalStatsByServiceResponse.js
+++ b/src/model/HistoricalStatsByServiceResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Results from './Results';
/**
* The HistoricalStatsByServiceResponse model module.
* @module model/HistoricalStatsByServiceResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalStatsByServiceResponse {
/**
diff --git a/src/model/HistoricalStatsByServiceResponseAllOf.js b/src/model/HistoricalStatsByServiceResponseAllOf.js
index dbd14c078..c6f963200 100644
--- a/src/model/HistoricalStatsByServiceResponseAllOf.js
+++ b/src/model/HistoricalStatsByServiceResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Results from './Results';
/**
* The HistoricalStatsByServiceResponseAllOf model module.
* @module model/HistoricalStatsByServiceResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalStatsByServiceResponseAllOf {
/**
diff --git a/src/model/HistoricalUsageAggregatedResponse.js b/src/model/HistoricalUsageAggregatedResponse.js
index 39f708b67..9d077e582 100644
--- a/src/model/HistoricalUsageAggregatedResponse.js
+++ b/src/model/HistoricalUsageAggregatedResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import HistoricalUsageData from './HistoricalUsageData';
/**
* The HistoricalUsageAggregatedResponse model module.
* @module model/HistoricalUsageAggregatedResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageAggregatedResponse {
/**
diff --git a/src/model/HistoricalUsageAggregatedResponseAllOf.js b/src/model/HistoricalUsageAggregatedResponseAllOf.js
index 9963c22a2..c7de156ca 100644
--- a/src/model/HistoricalUsageAggregatedResponseAllOf.js
+++ b/src/model/HistoricalUsageAggregatedResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import HistoricalUsageData from './HistoricalUsageData';
/**
* The HistoricalUsageAggregatedResponseAllOf model module.
* @module model/HistoricalUsageAggregatedResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageAggregatedResponseAllOf {
/**
diff --git a/src/model/HistoricalUsageData.js b/src/model/HistoricalUsageData.js
index 60bda1a44..ce4f88145 100644
--- a/src/model/HistoricalUsageData.js
+++ b/src/model/HistoricalUsageData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HistoricalUsageData model module.
* @module model/HistoricalUsageData
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageData {
/**
diff --git a/src/model/HistoricalUsageMonthResponse.js b/src/model/HistoricalUsageMonthResponse.js
index c08a0a8c4..bc08676d7 100644
--- a/src/model/HistoricalUsageMonthResponse.js
+++ b/src/model/HistoricalUsageMonthResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import HistoricalUsageMonthResponseData from './HistoricalUsageMonthResponseData
/**
* The HistoricalUsageMonthResponse model module.
* @module model/HistoricalUsageMonthResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageMonthResponse {
/**
diff --git a/src/model/HistoricalUsageMonthResponseAllOf.js b/src/model/HistoricalUsageMonthResponseAllOf.js
index 2b5b4ac02..e58ed9969 100644
--- a/src/model/HistoricalUsageMonthResponseAllOf.js
+++ b/src/model/HistoricalUsageMonthResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import HistoricalUsageMonthResponseData from './HistoricalUsageMonthResponseData
/**
* The HistoricalUsageMonthResponseAllOf model module.
* @module model/HistoricalUsageMonthResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageMonthResponseAllOf {
/**
diff --git a/src/model/HistoricalUsageMonthResponseData.js b/src/model/HistoricalUsageMonthResponseData.js
index aa417e7a7..94f8940a9 100644
--- a/src/model/HistoricalUsageMonthResponseData.js
+++ b/src/model/HistoricalUsageMonthResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import HistoricalUsageService from './HistoricalUsageService';
/**
* The HistoricalUsageMonthResponseData model module.
* @module model/HistoricalUsageMonthResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageMonthResponseData {
/**
diff --git a/src/model/HistoricalUsageService.js b/src/model/HistoricalUsageService.js
index 7c2fbd174..4376226aa 100644
--- a/src/model/HistoricalUsageService.js
+++ b/src/model/HistoricalUsageService.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import HistoricalUsageData from './HistoricalUsageData';
/**
* The HistoricalUsageService model module.
* @module model/HistoricalUsageService
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageService {
/**
diff --git a/src/model/HistoricalUsageServiceResponse.js b/src/model/HistoricalUsageServiceResponse.js
index 6486bb7c9..09581b718 100644
--- a/src/model/HistoricalUsageServiceResponse.js
+++ b/src/model/HistoricalUsageServiceResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import HistoricalUsageServiceResponseAllOf from './HistoricalUsageServiceRespons
/**
* The HistoricalUsageServiceResponse model module.
* @module model/HistoricalUsageServiceResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageServiceResponse {
/**
diff --git a/src/model/HistoricalUsageServiceResponseAllOf.js b/src/model/HistoricalUsageServiceResponseAllOf.js
index 27144fff0..f456db405 100644
--- a/src/model/HistoricalUsageServiceResponseAllOf.js
+++ b/src/model/HistoricalUsageServiceResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import HistoricalUsageData from './HistoricalUsageData';
/**
* The HistoricalUsageServiceResponseAllOf model module.
* @module model/HistoricalUsageServiceResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class HistoricalUsageServiceResponseAllOf {
/**
diff --git a/src/model/Http3.js b/src/model/Http3.js
index 29225debc..6d3cc1f39 100644
--- a/src/model/Http3.js
+++ b/src/model/Http3.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The Http3 model module.
* @module model/Http3
- * @version 7.2.0
+ * @version 7.3.0
*/
class Http3 {
/**
diff --git a/src/model/Http3AllOf.js b/src/model/Http3AllOf.js
index 2b4c434db..d67948ffa 100644
--- a/src/model/Http3AllOf.js
+++ b/src/model/Http3AllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Http3AllOf model module.
* @module model/Http3AllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class Http3AllOf {
/**
diff --git a/src/model/HttpResponseFormat.js b/src/model/HttpResponseFormat.js
index 06fad3413..196e32afb 100644
--- a/src/model/HttpResponseFormat.js
+++ b/src/model/HttpResponseFormat.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HttpResponseFormat model module.
* @module model/HttpResponseFormat
- * @version 7.2.0
+ * @version 7.3.0
*/
class HttpResponseFormat {
/**
diff --git a/src/model/HttpStreamFormat.js b/src/model/HttpStreamFormat.js
index 6ef052c63..a0bc90e2f 100644
--- a/src/model/HttpStreamFormat.js
+++ b/src/model/HttpStreamFormat.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The HttpStreamFormat model module.
* @module model/HttpStreamFormat
- * @version 7.2.0
+ * @version 7.3.0
*/
class HttpStreamFormat {
/**
diff --git a/src/model/IamPermission.js b/src/model/IamPermission.js
index 6aeee2506..e92b90a23 100644
--- a/src/model/IamPermission.js
+++ b/src/model/IamPermission.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The IamPermission model module.
* @module model/IamPermission
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamPermission {
/**
diff --git a/src/model/IamRole.js b/src/model/IamRole.js
index 2e92a9ee0..31ca6f92e 100644
--- a/src/model/IamRole.js
+++ b/src/model/IamRole.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TimestampsNoDelete from './TimestampsNoDelete';
/**
* The IamRole model module.
* @module model/IamRole
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamRole {
/**
diff --git a/src/model/IamRoleAllOf.js b/src/model/IamRoleAllOf.js
index afcf410dd..3e0146747 100644
--- a/src/model/IamRoleAllOf.js
+++ b/src/model/IamRoleAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The IamRoleAllOf model module.
* @module model/IamRoleAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamRoleAllOf {
/**
diff --git a/src/model/IamServiceGroup.js b/src/model/IamServiceGroup.js
index 426bd4b44..d4c55652d 100644
--- a/src/model/IamServiceGroup.js
+++ b/src/model/IamServiceGroup.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TimestampsNoDelete from './TimestampsNoDelete';
/**
* The IamServiceGroup model module.
* @module model/IamServiceGroup
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamServiceGroup {
/**
diff --git a/src/model/IamServiceGroupAllOf.js b/src/model/IamServiceGroupAllOf.js
index dc7c1d6b2..24a929923 100644
--- a/src/model/IamServiceGroupAllOf.js
+++ b/src/model/IamServiceGroupAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The IamServiceGroupAllOf model module.
* @module model/IamServiceGroupAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamServiceGroupAllOf {
/**
diff --git a/src/model/IamUserGroup.js b/src/model/IamUserGroup.js
index 09eb386ec..6b37df548 100644
--- a/src/model/IamUserGroup.js
+++ b/src/model/IamUserGroup.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TimestampsNoDelete from './TimestampsNoDelete';
/**
* The IamUserGroup model module.
* @module model/IamUserGroup
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamUserGroup {
/**
diff --git a/src/model/IamUserGroupAllOf.js b/src/model/IamUserGroupAllOf.js
index 1567fe66e..1928a873a 100644
--- a/src/model/IamUserGroupAllOf.js
+++ b/src/model/IamUserGroupAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The IamUserGroupAllOf model module.
* @module model/IamUserGroupAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class IamUserGroupAllOf {
/**
diff --git a/src/model/IncludedWithWafActiveRuleItem.js b/src/model/IncludedWithWafActiveRuleItem.js
index 5e657d94f..4849ba438 100644
--- a/src/model/IncludedWithWafActiveRuleItem.js
+++ b/src/model/IncludedWithWafActiveRuleItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafRuleRevisionAttributes from './WafRuleRevisionAttributes';
/**
* The IncludedWithWafActiveRuleItem model module.
* @module model/IncludedWithWafActiveRuleItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class IncludedWithWafActiveRuleItem {
/**
diff --git a/src/model/IncludedWithWafExclusionItem.js b/src/model/IncludedWithWafExclusionItem.js
index 557dbdbeb..051566e39 100644
--- a/src/model/IncludedWithWafExclusionItem.js
+++ b/src/model/IncludedWithWafExclusionItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import WafRuleRevisionAttributes from './WafRuleRevisionAttributes';
/**
* The IncludedWithWafExclusionItem model module.
* @module model/IncludedWithWafExclusionItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class IncludedWithWafExclusionItem {
/**
diff --git a/src/model/IncludedWithWafFirewallVersionItem.js b/src/model/IncludedWithWafFirewallVersionItem.js
index 2da8a3d6d..4dfe15a28 100644
--- a/src/model/IncludedWithWafFirewallVersionItem.js
+++ b/src/model/IncludedWithWafFirewallVersionItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import WafActiveRuleData from './WafActiveRuleData';
/**
* The IncludedWithWafFirewallVersionItem model module.
* @module model/IncludedWithWafFirewallVersionItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class IncludedWithWafFirewallVersionItem {
/**
diff --git a/src/model/IncludedWithWafRuleItem.js b/src/model/IncludedWithWafRuleItem.js
index 1d5df4bf2..5350e02e1 100644
--- a/src/model/IncludedWithWafRuleItem.js
+++ b/src/model/IncludedWithWafRuleItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import WafTag from './WafTag';
/**
* The IncludedWithWafRuleItem model module.
* @module model/IncludedWithWafRuleItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class IncludedWithWafRuleItem {
/**
diff --git a/src/model/InlineObject.js b/src/model/InlineObject.js
index 8da89fd53..32d1a2555 100644
--- a/src/model/InlineObject.js
+++ b/src/model/InlineObject.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineObject model module.
* @module model/InlineObject
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineObject {
/**
diff --git a/src/model/InlineObject1.js b/src/model/InlineObject1.js
index e29d8ab61..d2f8a6a8f 100644
--- a/src/model/InlineObject1.js
+++ b/src/model/InlineObject1.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineObject1 model module.
* @module model/InlineObject1
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineObject1 {
/**
diff --git a/src/model/InlineResponse200.js b/src/model/InlineResponse200.js
index d22bb3dc9..5a44b15b2 100644
--- a/src/model/InlineResponse200.js
+++ b/src/model/InlineResponse200.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineResponse200 model module.
* @module model/InlineResponse200
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse200 {
/**
diff --git a/src/model/InlineResponse2001.js b/src/model/InlineResponse2001.js
index 63a5b6fb3..60b7a3a34 100644
--- a/src/model/InlineResponse2001.js
+++ b/src/model/InlineResponse2001.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineResponse2001 model module.
* @module model/InlineResponse2001
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2001 {
/**
diff --git a/src/model/InlineResponse2002.js b/src/model/InlineResponse2002.js
index 82465c501..85966d3c1 100644
--- a/src/model/InlineResponse2002.js
+++ b/src/model/InlineResponse2002.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineResponse2002 model module.
* @module model/InlineResponse2002
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2002 {
/**
diff --git a/src/model/InlineResponse2003.js b/src/model/InlineResponse2003.js
index bc3c0ecb5..130bc8d46 100644
--- a/src/model/InlineResponse2003.js
+++ b/src/model/InlineResponse2003.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import StoreResponse from './StoreResponse';
/**
* The InlineResponse2003 model module.
* @module model/InlineResponse2003
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2003 {
/**
diff --git a/src/model/InlineResponse2003Meta.js b/src/model/InlineResponse2003Meta.js
index ac16d44c1..3e2706af1 100644
--- a/src/model/InlineResponse2003Meta.js
+++ b/src/model/InlineResponse2003Meta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineResponse2003Meta model module.
* @module model/InlineResponse2003Meta
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2003Meta {
/**
diff --git a/src/model/InlineResponse2004.js b/src/model/InlineResponse2004.js
index 1a8222b7a..ac9189bd9 100644
--- a/src/model/InlineResponse2004.js
+++ b/src/model/InlineResponse2004.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import InlineResponse2004Meta from './InlineResponse2004Meta';
/**
* The InlineResponse2004 model module.
* @module model/InlineResponse2004
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2004 {
/**
diff --git a/src/model/InlineResponse2004Meta.js b/src/model/InlineResponse2004Meta.js
index 5893d3fcc..185a7e021 100644
--- a/src/model/InlineResponse2004Meta.js
+++ b/src/model/InlineResponse2004Meta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineResponse2004Meta model module.
* @module model/InlineResponse2004Meta
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2004Meta {
/**
diff --git a/src/model/InlineResponse2005.js b/src/model/InlineResponse2005.js
index aba888430..4cf30061b 100644
--- a/src/model/InlineResponse2005.js
+++ b/src/model/InlineResponse2005.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SecretStoreResponse from './SecretStoreResponse';
/**
* The InlineResponse2005 model module.
* @module model/InlineResponse2005
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2005 {
/**
diff --git a/src/model/InlineResponse2006.js b/src/model/InlineResponse2006.js
index 2a0ebc864..325d19808 100644
--- a/src/model/InlineResponse2006.js
+++ b/src/model/InlineResponse2006.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SecretResponse from './SecretResponse';
/**
* The InlineResponse2006 model module.
* @module model/InlineResponse2006
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2006 {
/**
diff --git a/src/model/InlineResponse2007.js b/src/model/InlineResponse2007.js
index 8389efab1..0a794a4e1 100644
--- a/src/model/InlineResponse2007.js
+++ b/src/model/InlineResponse2007.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceAuthorizationResponseData from './ServiceAuthorizationResponseData
/**
* The InlineResponse2007 model module.
* @module model/InlineResponse2007
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse2007 {
/**
diff --git a/src/model/InlineResponse400.js b/src/model/InlineResponse400.js
index 0cd6bdd43..5b3a00b04 100644
--- a/src/model/InlineResponse400.js
+++ b/src/model/InlineResponse400.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The InlineResponse400 model module.
* @module model/InlineResponse400
- * @version 7.2.0
+ * @version 7.3.0
*/
class InlineResponse400 {
/**
diff --git a/src/model/Invitation.js b/src/model/Invitation.js
index 2486d08f4..9e8b597ae 100644
--- a/src/model/Invitation.js
+++ b/src/model/Invitation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import InvitationData from './InvitationData';
/**
* The Invitation model module.
* @module model/Invitation
- * @version 7.2.0
+ * @version 7.3.0
*/
class Invitation {
/**
diff --git a/src/model/InvitationData.js b/src/model/InvitationData.js
index 8bfa77efb..39b9574ae 100644
--- a/src/model/InvitationData.js
+++ b/src/model/InvitationData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeInvitation from './TypeInvitation';
/**
* The InvitationData model module.
* @module model/InvitationData
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationData {
/**
diff --git a/src/model/InvitationDataAttributes.js b/src/model/InvitationDataAttributes.js
index 4e4feeecc..f82c19479 100644
--- a/src/model/InvitationDataAttributes.js
+++ b/src/model/InvitationDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RoleUser from './RoleUser';
/**
* The InvitationDataAttributes model module.
* @module model/InvitationDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationDataAttributes {
/**
diff --git a/src/model/InvitationResponse.js b/src/model/InvitationResponse.js
index 8574a81f0..c95d56eda 100644
--- a/src/model/InvitationResponse.js
+++ b/src/model/InvitationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import InvitationResponseData from './InvitationResponseData';
/**
* The InvitationResponse model module.
* @module model/InvitationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationResponse {
/**
diff --git a/src/model/InvitationResponseAllOf.js b/src/model/InvitationResponseAllOf.js
index 05cde5978..607f530a9 100644
--- a/src/model/InvitationResponseAllOf.js
+++ b/src/model/InvitationResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import InvitationResponseData from './InvitationResponseData';
/**
* The InvitationResponseAllOf model module.
* @module model/InvitationResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationResponseAllOf {
/**
diff --git a/src/model/InvitationResponseData.js b/src/model/InvitationResponseData.js
index 2e1f5f976..2bb5e8fc9 100644
--- a/src/model/InvitationResponseData.js
+++ b/src/model/InvitationResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeInvitation from './TypeInvitation';
/**
* The InvitationResponseData model module.
* @module model/InvitationResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationResponseData {
/**
diff --git a/src/model/InvitationResponseDataAllOf.js b/src/model/InvitationResponseDataAllOf.js
index 6675d9f45..f4195eaf0 100644
--- a/src/model/InvitationResponseDataAllOf.js
+++ b/src/model/InvitationResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The InvitationResponseDataAllOf model module.
* @module model/InvitationResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationResponseDataAllOf {
/**
diff --git a/src/model/InvitationsResponse.js b/src/model/InvitationsResponse.js
index d20ceb5bc..91cab1534 100644
--- a/src/model/InvitationsResponse.js
+++ b/src/model/InvitationsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import PaginationMeta from './PaginationMeta';
/**
* The InvitationsResponse model module.
* @module model/InvitationsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationsResponse {
/**
diff --git a/src/model/InvitationsResponseAllOf.js b/src/model/InvitationsResponseAllOf.js
index 3d321e447..fe19e949d 100644
--- a/src/model/InvitationsResponseAllOf.js
+++ b/src/model/InvitationsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import InvitationResponseData from './InvitationResponseData';
/**
* The InvitationsResponseAllOf model module.
* @module model/InvitationsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvitationsResponseAllOf {
/**
diff --git a/src/model/Invoice.js b/src/model/Invoice.js
index f874bf16e..0a03e957d 100644
--- a/src/model/Invoice.js
+++ b/src/model/Invoice.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Invoicelineitems from './Invoicelineitems';
/**
* The Invoice model module.
* @module model/Invoice
- * @version 7.2.0
+ * @version 7.3.0
*/
class Invoice {
/**
diff --git a/src/model/InvoiceResponse.js b/src/model/InvoiceResponse.js
index e422e0a3c..b9ab5a037 100644
--- a/src/model/InvoiceResponse.js
+++ b/src/model/InvoiceResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Invoicelineitems from './Invoicelineitems';
/**
* The InvoiceResponse model module.
* @module model/InvoiceResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class InvoiceResponse {
/**
diff --git a/src/model/Invoicelineitems.js b/src/model/Invoicelineitems.js
index e6d7feae6..bba5522f1 100644
--- a/src/model/Invoicelineitems.js
+++ b/src/model/Invoicelineitems.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Invoicelineitems model module.
* @module model/Invoicelineitems
- * @version 7.2.0
+ * @version 7.3.0
*/
class Invoicelineitems {
/**
diff --git a/src/model/LegacyWafConfigurationSet.js b/src/model/LegacyWafConfigurationSet.js
index 67d3a5d39..0c24051ae 100644
--- a/src/model/LegacyWafConfigurationSet.js
+++ b/src/model/LegacyWafConfigurationSet.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafConfigurationSet model module.
* @module model/LegacyWafConfigurationSet
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafConfigurationSet {
/**
diff --git a/src/model/LegacyWafFirewall.js b/src/model/LegacyWafFirewall.js
index eaf5767eb..74504b6bc 100644
--- a/src/model/LegacyWafFirewall.js
+++ b/src/model/LegacyWafFirewall.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import ReadOnlyVersion from './ReadOnlyVersion';
/**
* The LegacyWafFirewall model module.
* @module model/LegacyWafFirewall
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafFirewall {
/**
diff --git a/src/model/LegacyWafOwasp.js b/src/model/LegacyWafOwasp.js
index d1a8fd8ef..4e15b5b04 100644
--- a/src/model/LegacyWafOwasp.js
+++ b/src/model/LegacyWafOwasp.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafOwasp model module.
* @module model/LegacyWafOwasp
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafOwasp {
/**
diff --git a/src/model/LegacyWafRule.js b/src/model/LegacyWafRule.js
index 42e14437d..a29c556c8 100644
--- a/src/model/LegacyWafRule.js
+++ b/src/model/LegacyWafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafRule model module.
* @module model/LegacyWafRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafRule {
/**
diff --git a/src/model/LegacyWafRuleStatus.js b/src/model/LegacyWafRuleStatus.js
index 8d7f49131..e87aa1ee6 100644
--- a/src/model/LegacyWafRuleStatus.js
+++ b/src/model/LegacyWafRuleStatus.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafRuleStatus model module.
* @module model/LegacyWafRuleStatus
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafRuleStatus {
/**
diff --git a/src/model/LegacyWafRuleset.js b/src/model/LegacyWafRuleset.js
index e6206995b..dc23c5b7d 100644
--- a/src/model/LegacyWafRuleset.js
+++ b/src/model/LegacyWafRuleset.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafRuleset model module.
* @module model/LegacyWafRuleset
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafRuleset {
/**
diff --git a/src/model/LegacyWafTag.js b/src/model/LegacyWafTag.js
index 489422a26..c260eb43d 100644
--- a/src/model/LegacyWafTag.js
+++ b/src/model/LegacyWafTag.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafTag model module.
* @module model/LegacyWafTag
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafTag {
/**
diff --git a/src/model/LegacyWafUpdateStatus.js b/src/model/LegacyWafUpdateStatus.js
index 7bbbb93ce..ceec48bd7 100644
--- a/src/model/LegacyWafUpdateStatus.js
+++ b/src/model/LegacyWafUpdateStatus.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LegacyWafUpdateStatus model module.
* @module model/LegacyWafUpdateStatus
- * @version 7.2.0
+ * @version 7.3.0
*/
class LegacyWafUpdateStatus {
/**
diff --git a/src/model/LineItemData.js b/src/model/LineItemData.js
index d9b55767f..29ea114cc 100644
--- a/src/model/LineItemData.js
+++ b/src/model/LineItemData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import LineItemDataReadOnlyInvoiceId from './LineItemDataReadOnlyInvoiceId';
/**
* The LineItemData model module.
* @module model/LineItemData
- * @version 7.2.0
+ * @version 7.3.0
*/
class LineItemData {
/**
diff --git a/src/model/LineItemDataReadOnlyInvoiceId.js b/src/model/LineItemDataReadOnlyInvoiceId.js
index ad0922c18..d1c76c592 100644
--- a/src/model/LineItemDataReadOnlyInvoiceId.js
+++ b/src/model/LineItemDataReadOnlyInvoiceId.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LineItemDataReadOnlyInvoiceId model module.
* @module model/LineItemDataReadOnlyInvoiceId
- * @version 7.2.0
+ * @version 7.3.0
*/
class LineItemDataReadOnlyInvoiceId {
/**
diff --git a/src/model/ListInvoicesResponse.js b/src/model/ListInvoicesResponse.js
index 2a547bb6e..b657ede54 100644
--- a/src/model/ListInvoicesResponse.js
+++ b/src/model/ListInvoicesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Metadata from './Metadata';
/**
* The ListInvoicesResponse model module.
* @module model/ListInvoicesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ListInvoicesResponse {
/**
diff --git a/src/model/Listinvoices.js b/src/model/Listinvoices.js
index 68f6e5cc9..6fe2b42cd 100644
--- a/src/model/Listinvoices.js
+++ b/src/model/Listinvoices.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Metadata from './Metadata';
/**
* The Listinvoices model module.
* @module model/Listinvoices
- * @version 7.2.0
+ * @version 7.3.0
*/
class Listinvoices {
/**
diff --git a/src/model/LoggingAddressAndPort.js b/src/model/LoggingAddressAndPort.js
index 0335390fd..886bd43ba 100644
--- a/src/model/LoggingAddressAndPort.js
+++ b/src/model/LoggingAddressAndPort.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingAddressAndPort model module.
* @module model/LoggingAddressAndPort
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingAddressAndPort {
/**
diff --git a/src/model/LoggingAzureblobAdditional.js b/src/model/LoggingAzureblobAdditional.js
index 620a0eabf..a5e2db154 100644
--- a/src/model/LoggingAzureblobAdditional.js
+++ b/src/model/LoggingAzureblobAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingAzureblobAdditional model module.
* @module model/LoggingAzureblobAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingAzureblobAdditional {
/**
diff --git a/src/model/LoggingAzureblobResponse.js b/src/model/LoggingAzureblobResponse.js
index d42360ae6..51dfe1f90 100644
--- a/src/model/LoggingAzureblobResponse.js
+++ b/src/model/LoggingAzureblobResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingAzureblobResponse model module.
* @module model/LoggingAzureblobResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingAzureblobResponse {
/**
diff --git a/src/model/LoggingBigqueryAdditional.js b/src/model/LoggingBigqueryAdditional.js
index 46cd7d708..ae39c1d25 100644
--- a/src/model/LoggingBigqueryAdditional.js
+++ b/src/model/LoggingBigqueryAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingBigqueryAdditional model module.
* @module model/LoggingBigqueryAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingBigqueryAdditional {
/**
diff --git a/src/model/LoggingBigqueryResponse.js b/src/model/LoggingBigqueryResponse.js
index 1148c4957..a626c81ff 100644
--- a/src/model/LoggingBigqueryResponse.js
+++ b/src/model/LoggingBigqueryResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingBigqueryResponse model module.
* @module model/LoggingBigqueryResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingBigqueryResponse {
/**
diff --git a/src/model/LoggingCloudfilesAdditional.js b/src/model/LoggingCloudfilesAdditional.js
index 18c93ff38..0bbdefbac 100644
--- a/src/model/LoggingCloudfilesAdditional.js
+++ b/src/model/LoggingCloudfilesAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingCloudfilesAdditional model module.
* @module model/LoggingCloudfilesAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingCloudfilesAdditional {
/**
diff --git a/src/model/LoggingCloudfilesResponse.js b/src/model/LoggingCloudfilesResponse.js
index b836a1bd2..6ed8098b0 100644
--- a/src/model/LoggingCloudfilesResponse.js
+++ b/src/model/LoggingCloudfilesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingCloudfilesResponse model module.
* @module model/LoggingCloudfilesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingCloudfilesResponse {
/**
diff --git a/src/model/LoggingCommon.js b/src/model/LoggingCommon.js
index 7f1670bb9..f8b3f860e 100644
--- a/src/model/LoggingCommon.js
+++ b/src/model/LoggingCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingCommon model module.
* @module model/LoggingCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingCommon {
/**
diff --git a/src/model/LoggingCommonResponse.js b/src/model/LoggingCommonResponse.js
index 4cb0e7e16..2448d295d 100644
--- a/src/model/LoggingCommonResponse.js
+++ b/src/model/LoggingCommonResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import LoggingCommonResponseAllOf1 from './LoggingCommonResponseAllOf1';
/**
* The LoggingCommonResponse model module.
* @module model/LoggingCommonResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingCommonResponse {
/**
diff --git a/src/model/LoggingCommonResponseAllOf.js b/src/model/LoggingCommonResponseAllOf.js
index c208f1ddc..4c6dd0ed5 100644
--- a/src/model/LoggingCommonResponseAllOf.js
+++ b/src/model/LoggingCommonResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingCommonResponseAllOf model module.
* @module model/LoggingCommonResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingCommonResponseAllOf {
/**
diff --git a/src/model/LoggingCommonResponseAllOf1.js b/src/model/LoggingCommonResponseAllOf1.js
index 67db1cc53..a84e77446 100644
--- a/src/model/LoggingCommonResponseAllOf1.js
+++ b/src/model/LoggingCommonResponseAllOf1.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingCommonResponseAllOf1 model module.
* @module model/LoggingCommonResponseAllOf1
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingCommonResponseAllOf1 {
/**
diff --git a/src/model/LoggingDatadogAdditional.js b/src/model/LoggingDatadogAdditional.js
index c50fba8e2..60c6f8409 100644
--- a/src/model/LoggingDatadogAdditional.js
+++ b/src/model/LoggingDatadogAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingDatadogAdditional model module.
* @module model/LoggingDatadogAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingDatadogAdditional {
/**
diff --git a/src/model/LoggingDatadogResponse.js b/src/model/LoggingDatadogResponse.js
index e21c3ef9a..c388030ce 100644
--- a/src/model/LoggingDatadogResponse.js
+++ b/src/model/LoggingDatadogResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingDatadogResponse model module.
* @module model/LoggingDatadogResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingDatadogResponse {
/**
diff --git a/src/model/LoggingDigitaloceanAdditional.js b/src/model/LoggingDigitaloceanAdditional.js
index 1911ac47c..c62508397 100644
--- a/src/model/LoggingDigitaloceanAdditional.js
+++ b/src/model/LoggingDigitaloceanAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingDigitaloceanAdditional model module.
* @module model/LoggingDigitaloceanAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingDigitaloceanAdditional {
/**
diff --git a/src/model/LoggingDigitaloceanResponse.js b/src/model/LoggingDigitaloceanResponse.js
index 1864d0c52..d960f4be8 100644
--- a/src/model/LoggingDigitaloceanResponse.js
+++ b/src/model/LoggingDigitaloceanResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingDigitaloceanResponse model module.
* @module model/LoggingDigitaloceanResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingDigitaloceanResponse {
/**
diff --git a/src/model/LoggingElasticsearchAdditional.js b/src/model/LoggingElasticsearchAdditional.js
index 9da8c839b..ca28f372b 100644
--- a/src/model/LoggingElasticsearchAdditional.js
+++ b/src/model/LoggingElasticsearchAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingElasticsearchAdditional model module.
* @module model/LoggingElasticsearchAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingElasticsearchAdditional {
/**
diff --git a/src/model/LoggingElasticsearchResponse.js b/src/model/LoggingElasticsearchResponse.js
index 197ca03da..be7f3e9d1 100644
--- a/src/model/LoggingElasticsearchResponse.js
+++ b/src/model/LoggingElasticsearchResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingElasticsearchResponse model module.
* @module model/LoggingElasticsearchResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingElasticsearchResponse {
/**
diff --git a/src/model/LoggingFormatVersionInteger.js b/src/model/LoggingFormatVersionInteger.js
index e53d2a5aa..acc15688a 100644
--- a/src/model/LoggingFormatVersionInteger.js
+++ b/src/model/LoggingFormatVersionInteger.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingFormatVersionInteger model module.
* @module model/LoggingFormatVersionInteger
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingFormatVersionInteger {
/**
diff --git a/src/model/LoggingFormatVersionString.js b/src/model/LoggingFormatVersionString.js
index 7bb90305d..01144cd59 100644
--- a/src/model/LoggingFormatVersionString.js
+++ b/src/model/LoggingFormatVersionString.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingFormatVersionString model module.
* @module model/LoggingFormatVersionString
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingFormatVersionString {
/**
diff --git a/src/model/LoggingFtpAdditional.js b/src/model/LoggingFtpAdditional.js
index f3a4b5f0c..cf1f0951e 100644
--- a/src/model/LoggingFtpAdditional.js
+++ b/src/model/LoggingFtpAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingFtpAdditional model module.
* @module model/LoggingFtpAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingFtpAdditional {
/**
diff --git a/src/model/LoggingFtpResponse.js b/src/model/LoggingFtpResponse.js
index 3ae884769..406e1ba35 100644
--- a/src/model/LoggingFtpResponse.js
+++ b/src/model/LoggingFtpResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingFtpResponse model module.
* @module model/LoggingFtpResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingFtpResponse {
/**
diff --git a/src/model/LoggingFtpResponseAllOf.js b/src/model/LoggingFtpResponseAllOf.js
index 0fed648f1..dc58c40f7 100644
--- a/src/model/LoggingFtpResponseAllOf.js
+++ b/src/model/LoggingFtpResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingFtpResponseAllOf model module.
* @module model/LoggingFtpResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingFtpResponseAllOf {
/**
diff --git a/src/model/LoggingGcsAdditional.js b/src/model/LoggingGcsAdditional.js
index 0a013b51c..4a213f17f 100644
--- a/src/model/LoggingGcsAdditional.js
+++ b/src/model/LoggingGcsAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingGcsAdditional model module.
* @module model/LoggingGcsAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGcsAdditional {
/**
diff --git a/src/model/LoggingGcsCommon.js b/src/model/LoggingGcsCommon.js
index 93db628db..a7ec5b73c 100644
--- a/src/model/LoggingGcsCommon.js
+++ b/src/model/LoggingGcsCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingGcsCommon model module.
* @module model/LoggingGcsCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGcsCommon {
/**
diff --git a/src/model/LoggingGcsResponse.js b/src/model/LoggingGcsResponse.js
index e3ebcbab9..990f52aa1 100644
--- a/src/model/LoggingGcsResponse.js
+++ b/src/model/LoggingGcsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingGcsResponse model module.
* @module model/LoggingGcsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGcsResponse {
/**
diff --git a/src/model/LoggingGenericCommon.js b/src/model/LoggingGenericCommon.js
index 7c63851e8..b28c1d030 100644
--- a/src/model/LoggingGenericCommon.js
+++ b/src/model/LoggingGenericCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingGenericCommon model module.
* @module model/LoggingGenericCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGenericCommon {
/**
diff --git a/src/model/LoggingGenericCommonResponse.js b/src/model/LoggingGenericCommonResponse.js
index 82347ba55..c9c82e133 100644
--- a/src/model/LoggingGenericCommonResponse.js
+++ b/src/model/LoggingGenericCommonResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import LoggingGenericCommonResponseAllOf1 from './LoggingGenericCommonResponseAl
/**
* The LoggingGenericCommonResponse model module.
* @module model/LoggingGenericCommonResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGenericCommonResponse {
/**
diff --git a/src/model/LoggingGenericCommonResponseAllOf.js b/src/model/LoggingGenericCommonResponseAllOf.js
index 6867758ad..714fc1092 100644
--- a/src/model/LoggingGenericCommonResponseAllOf.js
+++ b/src/model/LoggingGenericCommonResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingGenericCommonResponseAllOf model module.
* @module model/LoggingGenericCommonResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGenericCommonResponseAllOf {
/**
diff --git a/src/model/LoggingGenericCommonResponseAllOf1.js b/src/model/LoggingGenericCommonResponseAllOf1.js
index 0ada4ec11..c7f0be470 100644
--- a/src/model/LoggingGenericCommonResponseAllOf1.js
+++ b/src/model/LoggingGenericCommonResponseAllOf1.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingGenericCommonResponseAllOf1 model module.
* @module model/LoggingGenericCommonResponseAllOf1
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGenericCommonResponseAllOf1 {
/**
diff --git a/src/model/LoggingGooglePubsubAdditional.js b/src/model/LoggingGooglePubsubAdditional.js
index 4ca652b4c..434343c7b 100644
--- a/src/model/LoggingGooglePubsubAdditional.js
+++ b/src/model/LoggingGooglePubsubAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingGooglePubsubAdditional model module.
* @module model/LoggingGooglePubsubAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGooglePubsubAdditional {
/**
diff --git a/src/model/LoggingGooglePubsubResponse.js b/src/model/LoggingGooglePubsubResponse.js
index d7c360ebd..b55055c79 100644
--- a/src/model/LoggingGooglePubsubResponse.js
+++ b/src/model/LoggingGooglePubsubResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingGooglePubsubResponse model module.
* @module model/LoggingGooglePubsubResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingGooglePubsubResponse {
/**
diff --git a/src/model/LoggingHerokuAdditional.js b/src/model/LoggingHerokuAdditional.js
index 6f060ed84..8ede2ff62 100644
--- a/src/model/LoggingHerokuAdditional.js
+++ b/src/model/LoggingHerokuAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingHerokuAdditional model module.
* @module model/LoggingHerokuAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingHerokuAdditional {
/**
diff --git a/src/model/LoggingHerokuResponse.js b/src/model/LoggingHerokuResponse.js
index 7608a8d0f..13a0838b0 100644
--- a/src/model/LoggingHerokuResponse.js
+++ b/src/model/LoggingHerokuResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingHerokuResponse model module.
* @module model/LoggingHerokuResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingHerokuResponse {
/**
diff --git a/src/model/LoggingHoneycombAdditional.js b/src/model/LoggingHoneycombAdditional.js
index ec4d8bf39..74b03404b 100644
--- a/src/model/LoggingHoneycombAdditional.js
+++ b/src/model/LoggingHoneycombAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingHoneycombAdditional model module.
* @module model/LoggingHoneycombAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingHoneycombAdditional {
/**
diff --git a/src/model/LoggingHoneycombResponse.js b/src/model/LoggingHoneycombResponse.js
index d053c7151..64070900b 100644
--- a/src/model/LoggingHoneycombResponse.js
+++ b/src/model/LoggingHoneycombResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingHoneycombResponse model module.
* @module model/LoggingHoneycombResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingHoneycombResponse {
/**
diff --git a/src/model/LoggingHttpsAdditional.js b/src/model/LoggingHttpsAdditional.js
index 697bad1c3..e925d3c78 100644
--- a/src/model/LoggingHttpsAdditional.js
+++ b/src/model/LoggingHttpsAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import LoggingMessageType from './LoggingMessageType';
/**
* The LoggingHttpsAdditional model module.
* @module model/LoggingHttpsAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingHttpsAdditional {
/**
diff --git a/src/model/LoggingHttpsResponse.js b/src/model/LoggingHttpsResponse.js
index 5142deb5a..baa9e9fa9 100644
--- a/src/model/LoggingHttpsResponse.js
+++ b/src/model/LoggingHttpsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -22,7 +22,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingHttpsResponse model module.
* @module model/LoggingHttpsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingHttpsResponse {
/**
diff --git a/src/model/LoggingKafkaAdditional.js b/src/model/LoggingKafkaAdditional.js
index dbe818825..a83f771ff 100644
--- a/src/model/LoggingKafkaAdditional.js
+++ b/src/model/LoggingKafkaAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import LoggingUseTls from './LoggingUseTls';
/**
* The LoggingKafkaAdditional model module.
* @module model/LoggingKafkaAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingKafkaAdditional {
/**
diff --git a/src/model/LoggingKafkaResponse.js b/src/model/LoggingKafkaResponse.js
index 11d043575..d15340c65 100644
--- a/src/model/LoggingKafkaResponse.js
+++ b/src/model/LoggingKafkaResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingKafkaResponse model module.
* @module model/LoggingKafkaResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingKafkaResponse {
/**
diff --git a/src/model/LoggingKafkaResponsePost.js b/src/model/LoggingKafkaResponsePost.js
index 7dcf5c573..5162278ee 100644
--- a/src/model/LoggingKafkaResponsePost.js
+++ b/src/model/LoggingKafkaResponsePost.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -22,7 +22,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingKafkaResponsePost model module.
* @module model/LoggingKafkaResponsePost
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingKafkaResponsePost {
/**
diff --git a/src/model/LoggingKinesisAdditional.js b/src/model/LoggingKinesisAdditional.js
index 373b0721a..25454ef4b 100644
--- a/src/model/LoggingKinesisAdditional.js
+++ b/src/model/LoggingKinesisAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import LoggingPlacement from './LoggingPlacement';
/**
* The LoggingKinesisAdditional model module.
* @module model/LoggingKinesisAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingKinesisAdditional {
/**
@@ -91,7 +91,7 @@ LoggingKinesisAdditional.prototype['name'] = undefined;
LoggingKinesisAdditional.prototype['placement'] = undefined;
/**
- * A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest.
+ * A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats).
* @member {String} format
* @default '{"timestamp":"%{begin:%Y-%m-%dT%H:%M:%S}t","time_elapsed":"%{time.elapsed.usec}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","client_ip":"%{req.http.Fastly-Client-IP}V","geo_city":"%{client.geo.city}V","geo_country_code":"%{client.geo.country_code}V","request":"%{req.request}V","host":"%{req.http.Fastly-Orig-Host}V","url":"%{json.escape(req.url)}V","request_referer":"%{json.escape(req.http.Referer)}V","request_user_agent":"%{json.escape(req.http.User-Agent)}V","request_accept_language":"%{json.escape(req.http.Accept-Language)}V","request_accept_charset":"%{json.escape(req.http.Accept-Charset)}V","cache_status":"%{regsub(fastly_info.state, \"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\", \"\\2\\3\") }V"}'
*/
diff --git a/src/model/LoggingKinesisResponse.js b/src/model/LoggingKinesisResponse.js
index 0e79ca4a2..3b72ca16e 100644
--- a/src/model/LoggingKinesisResponse.js
+++ b/src/model/LoggingKinesisResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingKinesisResponse model module.
* @module model/LoggingKinesisResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingKinesisResponse {
/**
@@ -121,7 +121,7 @@ LoggingKinesisResponse.prototype['name'] = undefined;
LoggingKinesisResponse.prototype['placement'] = undefined;
/**
- * A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest.
+ * A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats).
* @member {String} format
* @default '{"timestamp":"%{begin:%Y-%m-%dT%H:%M:%S}t","time_elapsed":"%{time.elapsed.usec}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","client_ip":"%{req.http.Fastly-Client-IP}V","geo_city":"%{client.geo.city}V","geo_country_code":"%{client.geo.country_code}V","request":"%{req.request}V","host":"%{req.http.Fastly-Orig-Host}V","url":"%{json.escape(req.url)}V","request_referer":"%{json.escape(req.http.Referer)}V","request_user_agent":"%{json.escape(req.http.User-Agent)}V","request_accept_language":"%{json.escape(req.http.Accept-Language)}V","request_accept_charset":"%{json.escape(req.http.Accept-Charset)}V","cache_status":"%{regsub(fastly_info.state, \"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\", \"\\2\\3\") }V"}'
*/
@@ -203,7 +203,7 @@ LoggingKinesisAdditional.prototype['name'] = undefined;
*/
LoggingKinesisAdditional.prototype['placement'] = undefined;
/**
- * A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest.
+ * A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats).
* @member {String} format
* @default '{"timestamp":"%{begin:%Y-%m-%dT%H:%M:%S}t","time_elapsed":"%{time.elapsed.usec}V","is_tls":"%{if(req.is_ssl, \"true\", \"false\")}V","client_ip":"%{req.http.Fastly-Client-IP}V","geo_city":"%{client.geo.city}V","geo_country_code":"%{client.geo.country_code}V","request":"%{req.request}V","host":"%{req.http.Fastly-Orig-Host}V","url":"%{json.escape(req.url)}V","request_referer":"%{json.escape(req.http.Referer)}V","request_user_agent":"%{json.escape(req.http.User-Agent)}V","request_accept_language":"%{json.escape(req.http.Accept-Language)}V","request_accept_charset":"%{json.escape(req.http.Accept-Charset)}V","cache_status":"%{regsub(fastly_info.state, \"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\", \"\\2\\3\") }V"}'
*/
diff --git a/src/model/LoggingLogentriesAdditional.js b/src/model/LoggingLogentriesAdditional.js
index 1957bd608..a0de9eb23 100644
--- a/src/model/LoggingLogentriesAdditional.js
+++ b/src/model/LoggingLogentriesAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import LoggingUseTls from './LoggingUseTls';
/**
* The LoggingLogentriesAdditional model module.
* @module model/LoggingLogentriesAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingLogentriesAdditional {
/**
diff --git a/src/model/LoggingLogentriesResponse.js b/src/model/LoggingLogentriesResponse.js
index 30f148c5a..db8a0945e 100644
--- a/src/model/LoggingLogentriesResponse.js
+++ b/src/model/LoggingLogentriesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingLogentriesResponse model module.
* @module model/LoggingLogentriesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingLogentriesResponse {
/**
diff --git a/src/model/LoggingLogglyAdditional.js b/src/model/LoggingLogglyAdditional.js
index 11829fca4..3903316ce 100644
--- a/src/model/LoggingLogglyAdditional.js
+++ b/src/model/LoggingLogglyAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingLogglyAdditional model module.
* @module model/LoggingLogglyAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingLogglyAdditional {
/**
diff --git a/src/model/LoggingLogglyResponse.js b/src/model/LoggingLogglyResponse.js
index 6eacfa029..7cbe0bb3e 100644
--- a/src/model/LoggingLogglyResponse.js
+++ b/src/model/LoggingLogglyResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingLogglyResponse model module.
* @module model/LoggingLogglyResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingLogglyResponse {
/**
diff --git a/src/model/LoggingLogshuttleAdditional.js b/src/model/LoggingLogshuttleAdditional.js
index 71d248442..9dd10a187 100644
--- a/src/model/LoggingLogshuttleAdditional.js
+++ b/src/model/LoggingLogshuttleAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingLogshuttleAdditional model module.
* @module model/LoggingLogshuttleAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingLogshuttleAdditional {
/**
diff --git a/src/model/LoggingLogshuttleResponse.js b/src/model/LoggingLogshuttleResponse.js
index 22f177226..013a7b03d 100644
--- a/src/model/LoggingLogshuttleResponse.js
+++ b/src/model/LoggingLogshuttleResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingLogshuttleResponse model module.
* @module model/LoggingLogshuttleResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingLogshuttleResponse {
/**
diff --git a/src/model/LoggingMessageType.js b/src/model/LoggingMessageType.js
index 14065c89d..3ff851cfa 100644
--- a/src/model/LoggingMessageType.js
+++ b/src/model/LoggingMessageType.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/LoggingNewrelicAdditional.js b/src/model/LoggingNewrelicAdditional.js
index dbeefa155..06a7786e8 100644
--- a/src/model/LoggingNewrelicAdditional.js
+++ b/src/model/LoggingNewrelicAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingNewrelicAdditional model module.
* @module model/LoggingNewrelicAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingNewrelicAdditional {
/**
diff --git a/src/model/LoggingNewrelicResponse.js b/src/model/LoggingNewrelicResponse.js
index 9571eb478..3b4ec2257 100644
--- a/src/model/LoggingNewrelicResponse.js
+++ b/src/model/LoggingNewrelicResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingNewrelicResponse model module.
* @module model/LoggingNewrelicResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingNewrelicResponse {
/**
diff --git a/src/model/LoggingNewrelicotlpAdditional.js b/src/model/LoggingNewrelicotlpAdditional.js
index 7fac2642e..399b77050 100644
--- a/src/model/LoggingNewrelicotlpAdditional.js
+++ b/src/model/LoggingNewrelicotlpAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingNewrelicotlpAdditional model module.
* @module model/LoggingNewrelicotlpAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingNewrelicotlpAdditional {
/**
diff --git a/src/model/LoggingNewrelicotlpResponse.js b/src/model/LoggingNewrelicotlpResponse.js
index 2a4f07b2d..2eeac1e66 100644
--- a/src/model/LoggingNewrelicotlpResponse.js
+++ b/src/model/LoggingNewrelicotlpResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingNewrelicotlpResponse model module.
* @module model/LoggingNewrelicotlpResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingNewrelicotlpResponse {
/**
diff --git a/src/model/LoggingOpenstackAdditional.js b/src/model/LoggingOpenstackAdditional.js
index ab5b89d4a..c8b0fa63d 100644
--- a/src/model/LoggingOpenstackAdditional.js
+++ b/src/model/LoggingOpenstackAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingOpenstackAdditional model module.
* @module model/LoggingOpenstackAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingOpenstackAdditional {
/**
diff --git a/src/model/LoggingOpenstackResponse.js b/src/model/LoggingOpenstackResponse.js
index c70576db8..d85e7797b 100644
--- a/src/model/LoggingOpenstackResponse.js
+++ b/src/model/LoggingOpenstackResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingOpenstackResponse model module.
* @module model/LoggingOpenstackResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingOpenstackResponse {
/**
diff --git a/src/model/LoggingPapertrailResponse.js b/src/model/LoggingPapertrailResponse.js
index 06999eab9..87663914f 100644
--- a/src/model/LoggingPapertrailResponse.js
+++ b/src/model/LoggingPapertrailResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingPapertrailResponse model module.
* @module model/LoggingPapertrailResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingPapertrailResponse {
/**
diff --git a/src/model/LoggingPlacement.js b/src/model/LoggingPlacement.js
index 9db90eef8..2ba4f3d46 100644
--- a/src/model/LoggingPlacement.js
+++ b/src/model/LoggingPlacement.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/LoggingRequestCapsCommon.js b/src/model/LoggingRequestCapsCommon.js
index fea473192..4fe29cd28 100644
--- a/src/model/LoggingRequestCapsCommon.js
+++ b/src/model/LoggingRequestCapsCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingRequestCapsCommon model module.
* @module model/LoggingRequestCapsCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingRequestCapsCommon {
/**
diff --git a/src/model/LoggingS3Additional.js b/src/model/LoggingS3Additional.js
index 08f4afab3..2f639d326 100644
--- a/src/model/LoggingS3Additional.js
+++ b/src/model/LoggingS3Additional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingS3Additional model module.
* @module model/LoggingS3Additional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingS3Additional {
/**
diff --git a/src/model/LoggingS3Response.js b/src/model/LoggingS3Response.js
index d7e5a9a84..5ecee90ef 100644
--- a/src/model/LoggingS3Response.js
+++ b/src/model/LoggingS3Response.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingS3Response model module.
* @module model/LoggingS3Response
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingS3Response {
/**
diff --git a/src/model/LoggingScalyrAdditional.js b/src/model/LoggingScalyrAdditional.js
index 209725590..a10001bf8 100644
--- a/src/model/LoggingScalyrAdditional.js
+++ b/src/model/LoggingScalyrAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingScalyrAdditional model module.
* @module model/LoggingScalyrAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingScalyrAdditional {
/**
diff --git a/src/model/LoggingScalyrResponse.js b/src/model/LoggingScalyrResponse.js
index 432e2cd01..b32f78123 100644
--- a/src/model/LoggingScalyrResponse.js
+++ b/src/model/LoggingScalyrResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingScalyrResponse model module.
* @module model/LoggingScalyrResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingScalyrResponse {
/**
diff --git a/src/model/LoggingSftpAdditional.js b/src/model/LoggingSftpAdditional.js
index 08c093f6a..2e1482e65 100644
--- a/src/model/LoggingSftpAdditional.js
+++ b/src/model/LoggingSftpAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingSftpAdditional model module.
* @module model/LoggingSftpAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSftpAdditional {
/**
diff --git a/src/model/LoggingSftpResponse.js b/src/model/LoggingSftpResponse.js
index c52977188..6fa2ecd16 100644
--- a/src/model/LoggingSftpResponse.js
+++ b/src/model/LoggingSftpResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingSftpResponse model module.
* @module model/LoggingSftpResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSftpResponse {
/**
diff --git a/src/model/LoggingSftpResponseAllOf.js b/src/model/LoggingSftpResponseAllOf.js
index d96506046..34cb7e3f6 100644
--- a/src/model/LoggingSftpResponseAllOf.js
+++ b/src/model/LoggingSftpResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingSftpResponseAllOf model module.
* @module model/LoggingSftpResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSftpResponseAllOf {
/**
diff --git a/src/model/LoggingSplunkAdditional.js b/src/model/LoggingSplunkAdditional.js
index 712729b26..262eaf2d4 100644
--- a/src/model/LoggingSplunkAdditional.js
+++ b/src/model/LoggingSplunkAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import LoggingUseTls from './LoggingUseTls';
/**
* The LoggingSplunkAdditional model module.
* @module model/LoggingSplunkAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSplunkAdditional {
/**
diff --git a/src/model/LoggingSplunkResponse.js b/src/model/LoggingSplunkResponse.js
index 8539726fb..db8e4ed14 100644
--- a/src/model/LoggingSplunkResponse.js
+++ b/src/model/LoggingSplunkResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -22,7 +22,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingSplunkResponse model module.
* @module model/LoggingSplunkResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSplunkResponse {
/**
diff --git a/src/model/LoggingSumologicAdditional.js b/src/model/LoggingSumologicAdditional.js
index 83484125d..850d0de37 100644
--- a/src/model/LoggingSumologicAdditional.js
+++ b/src/model/LoggingSumologicAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import LoggingMessageType from './LoggingMessageType';
/**
* The LoggingSumologicAdditional model module.
* @module model/LoggingSumologicAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSumologicAdditional {
/**
diff --git a/src/model/LoggingSumologicResponse.js b/src/model/LoggingSumologicResponse.js
index dc8706341..f31050e87 100644
--- a/src/model/LoggingSumologicResponse.js
+++ b/src/model/LoggingSumologicResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingSumologicResponse model module.
* @module model/LoggingSumologicResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSumologicResponse {
/**
diff --git a/src/model/LoggingSyslogAdditional.js b/src/model/LoggingSyslogAdditional.js
index d4c758888..5ae7dced0 100644
--- a/src/model/LoggingSyslogAdditional.js
+++ b/src/model/LoggingSyslogAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import LoggingUseTls from './LoggingUseTls';
/**
* The LoggingSyslogAdditional model module.
* @module model/LoggingSyslogAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSyslogAdditional {
/**
diff --git a/src/model/LoggingSyslogResponse.js b/src/model/LoggingSyslogResponse.js
index 1c5c79f9c..c4c1f201d 100644
--- a/src/model/LoggingSyslogResponse.js
+++ b/src/model/LoggingSyslogResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -23,7 +23,7 @@ import Timestamps from './Timestamps';
/**
* The LoggingSyslogResponse model module.
* @module model/LoggingSyslogResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingSyslogResponse {
/**
diff --git a/src/model/LoggingTlsCommon.js b/src/model/LoggingTlsCommon.js
index 6d4756bc6..9b7d13796 100644
--- a/src/model/LoggingTlsCommon.js
+++ b/src/model/LoggingTlsCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The LoggingTlsCommon model module.
* @module model/LoggingTlsCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class LoggingTlsCommon {
/**
diff --git a/src/model/LoggingUseTls.js b/src/model/LoggingUseTls.js
index ab9758909..623c8c333 100644
--- a/src/model/LoggingUseTls.js
+++ b/src/model/LoggingUseTls.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/Metadata.js b/src/model/Metadata.js
index c6755df16..f9c049451 100644
--- a/src/model/Metadata.js
+++ b/src/model/Metadata.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Metadata model module.
* @module model/Metadata
- * @version 7.2.0
+ * @version 7.3.0
*/
class Metadata {
/**
diff --git a/src/model/MutualAuthentication.js b/src/model/MutualAuthentication.js
index a5f1f9897..dfa9d074a 100644
--- a/src/model/MutualAuthentication.js
+++ b/src/model/MutualAuthentication.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import MutualAuthenticationData from './MutualAuthenticationData';
/**
* The MutualAuthentication model module.
* @module model/MutualAuthentication
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthentication {
/**
diff --git a/src/model/MutualAuthenticationData.js b/src/model/MutualAuthenticationData.js
index 7387e9ca9..53d21a7a7 100644
--- a/src/model/MutualAuthenticationData.js
+++ b/src/model/MutualAuthenticationData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeMutualAuthentication from './TypeMutualAuthentication';
/**
* The MutualAuthenticationData model module.
* @module model/MutualAuthenticationData
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationData {
/**
diff --git a/src/model/MutualAuthenticationDataAttributes.js b/src/model/MutualAuthenticationDataAttributes.js
index 6d99b162d..1e10fcec7 100644
--- a/src/model/MutualAuthenticationDataAttributes.js
+++ b/src/model/MutualAuthenticationDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The MutualAuthenticationDataAttributes model module.
* @module model/MutualAuthenticationDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationDataAttributes {
/**
diff --git a/src/model/MutualAuthenticationResponse.js b/src/model/MutualAuthenticationResponse.js
index 2046b11dc..758c2f624 100644
--- a/src/model/MutualAuthenticationResponse.js
+++ b/src/model/MutualAuthenticationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import MutualAuthenticationResponseData from './MutualAuthenticationResponseData
/**
* The MutualAuthenticationResponse model module.
* @module model/MutualAuthenticationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationResponse {
/**
diff --git a/src/model/MutualAuthenticationResponseAttributes.js b/src/model/MutualAuthenticationResponseAttributes.js
index 51dfef336..cc28a38a3 100644
--- a/src/model/MutualAuthenticationResponseAttributes.js
+++ b/src/model/MutualAuthenticationResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The MutualAuthenticationResponseAttributes model module.
* @module model/MutualAuthenticationResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationResponseAttributes {
/**
diff --git a/src/model/MutualAuthenticationResponseAttributesAllOf.js b/src/model/MutualAuthenticationResponseAttributesAllOf.js
index 25ac0dbb7..1ba91a958 100644
--- a/src/model/MutualAuthenticationResponseAttributesAllOf.js
+++ b/src/model/MutualAuthenticationResponseAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The MutualAuthenticationResponseAttributesAllOf model module.
* @module model/MutualAuthenticationResponseAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationResponseAttributesAllOf {
/**
diff --git a/src/model/MutualAuthenticationResponseData.js b/src/model/MutualAuthenticationResponseData.js
index 382f869af..e596a3753 100644
--- a/src/model/MutualAuthenticationResponseData.js
+++ b/src/model/MutualAuthenticationResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeMutualAuthentication from './TypeMutualAuthentication';
/**
* The MutualAuthenticationResponseData model module.
* @module model/MutualAuthenticationResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationResponseData {
/**
diff --git a/src/model/MutualAuthenticationResponseDataAllOf.js b/src/model/MutualAuthenticationResponseDataAllOf.js
index d8043c258..00b8201ec 100644
--- a/src/model/MutualAuthenticationResponseDataAllOf.js
+++ b/src/model/MutualAuthenticationResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import MutualAuthenticationResponseAttributes from './MutualAuthenticationRespon
/**
* The MutualAuthenticationResponseDataAllOf model module.
* @module model/MutualAuthenticationResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationResponseDataAllOf {
/**
diff --git a/src/model/MutualAuthenticationsResponse.js b/src/model/MutualAuthenticationsResponse.js
index 8601b5114..e0dc164f0 100644
--- a/src/model/MutualAuthenticationsResponse.js
+++ b/src/model/MutualAuthenticationsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import PaginationMeta from './PaginationMeta';
/**
* The MutualAuthenticationsResponse model module.
* @module model/MutualAuthenticationsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationsResponse {
/**
diff --git a/src/model/MutualAuthenticationsResponseAllOf.js b/src/model/MutualAuthenticationsResponseAllOf.js
index 28ddc5a63..b6d104355 100644
--- a/src/model/MutualAuthenticationsResponseAllOf.js
+++ b/src/model/MutualAuthenticationsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import MutualAuthenticationResponseData from './MutualAuthenticationResponseData
/**
* The MutualAuthenticationsResponseAllOf model module.
* @module model/MutualAuthenticationsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class MutualAuthenticationsResponseAllOf {
/**
diff --git a/src/model/OriginInspector.js b/src/model/OriginInspector.js
index 95f9c8728..1c2dbf90b 100644
--- a/src/model/OriginInspector.js
+++ b/src/model/OriginInspector.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import OriginInspectorSubsequentRequestTimestamp from './OriginInspectorSubseque
/**
* The OriginInspector model module.
* @module model/OriginInspector
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspector {
/**
diff --git a/src/model/OriginInspectorDimensions.js b/src/model/OriginInspectorDimensions.js
index d35f84ba1..77bd857ca 100644
--- a/src/model/OriginInspectorDimensions.js
+++ b/src/model/OriginInspectorDimensions.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorDimensions model module.
* @module model/OriginInspectorDimensions
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorDimensions {
/**
diff --git a/src/model/OriginInspectorEntry.js b/src/model/OriginInspectorEntry.js
index 8134b88ff..dbfca8696 100644
--- a/src/model/OriginInspectorEntry.js
+++ b/src/model/OriginInspectorEntry.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import OriginInspectorValues from './OriginInspectorValues';
/**
* The OriginInspectorEntry model module.
* @module model/OriginInspectorEntry
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorEntry {
/**
diff --git a/src/model/OriginInspectorHistorical.js b/src/model/OriginInspectorHistorical.js
index fcd8e5f69..2ca64d953 100644
--- a/src/model/OriginInspectorHistorical.js
+++ b/src/model/OriginInspectorHistorical.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import OriginInspectorHistoricalMeta from './OriginInspectorHistoricalMeta';
/**
* The OriginInspectorHistorical model module.
* @module model/OriginInspectorHistorical
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorHistorical {
/**
diff --git a/src/model/OriginInspectorHistoricalData.js b/src/model/OriginInspectorHistoricalData.js
index 72edba7d9..5374ac6e2 100644
--- a/src/model/OriginInspectorHistoricalData.js
+++ b/src/model/OriginInspectorHistoricalData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import OriginInspectorValues from './OriginInspectorValues';
/**
* The OriginInspectorHistoricalData model module.
* @module model/OriginInspectorHistoricalData
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorHistoricalData {
/**
diff --git a/src/model/OriginInspectorHistoricalMeta.js b/src/model/OriginInspectorHistoricalMeta.js
index 115255e2a..c048a94d5 100644
--- a/src/model/OriginInspectorHistoricalMeta.js
+++ b/src/model/OriginInspectorHistoricalMeta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import OriginInspectorHistoricalMetaFilters from './OriginInspectorHistoricalMet
/**
* The OriginInspectorHistoricalMeta model module.
* @module model/OriginInspectorHistoricalMeta
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorHistoricalMeta {
/**
diff --git a/src/model/OriginInspectorHistoricalMetaFilters.js b/src/model/OriginInspectorHistoricalMetaFilters.js
index b30dedc3f..758060b59 100644
--- a/src/model/OriginInspectorHistoricalMetaFilters.js
+++ b/src/model/OriginInspectorHistoricalMetaFilters.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorHistoricalMetaFilters model module.
* @module model/OriginInspectorHistoricalMetaFilters
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorHistoricalMetaFilters {
/**
diff --git a/src/model/OriginInspectorMeasurements.js b/src/model/OriginInspectorMeasurements.js
index 51c67ba9b..07bb82ddc 100644
--- a/src/model/OriginInspectorMeasurements.js
+++ b/src/model/OriginInspectorMeasurements.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorMeasurements model module.
* @module model/OriginInspectorMeasurements
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorMeasurements {
/**
diff --git a/src/model/OriginInspectorRealtimeEntry.js b/src/model/OriginInspectorRealtimeEntry.js
index 89e7e161c..f31e8f254 100644
--- a/src/model/OriginInspectorRealtimeEntry.js
+++ b/src/model/OriginInspectorRealtimeEntry.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import OriginInspectorRealtimeEntryRecorded from './OriginInspectorRealtimeEntry
/**
* The OriginInspectorRealtimeEntry model module.
* @module model/OriginInspectorRealtimeEntry
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorRealtimeEntry {
/**
diff --git a/src/model/OriginInspectorRealtimeEntryRecorded.js b/src/model/OriginInspectorRealtimeEntryRecorded.js
index c895338c4..0a25d33bd 100644
--- a/src/model/OriginInspectorRealtimeEntryRecorded.js
+++ b/src/model/OriginInspectorRealtimeEntryRecorded.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorRealtimeEntryRecorded model module.
* @module model/OriginInspectorRealtimeEntryRecorded
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorRealtimeEntryRecorded {
/**
diff --git a/src/model/OriginInspectorSubsequentRequestTimestamp.js b/src/model/OriginInspectorSubsequentRequestTimestamp.js
index 77c777a9a..d33d7a147 100644
--- a/src/model/OriginInspectorSubsequentRequestTimestamp.js
+++ b/src/model/OriginInspectorSubsequentRequestTimestamp.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorSubsequentRequestTimestamp model module.
* @module model/OriginInspectorSubsequentRequestTimestamp
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorSubsequentRequestTimestamp {
/**
diff --git a/src/model/OriginInspectorValues.js b/src/model/OriginInspectorValues.js
index bfbd163b0..56736d4fb 100644
--- a/src/model/OriginInspectorValues.js
+++ b/src/model/OriginInspectorValues.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The OriginInspectorValues model module.
* @module model/OriginInspectorValues
- * @version 7.2.0
+ * @version 7.3.0
*/
class OriginInspectorValues {
/**
diff --git a/src/model/Package.js b/src/model/Package.js
index 7e39ccc68..2f727cbd8 100644
--- a/src/model/Package.js
+++ b/src/model/Package.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import PackageMetadata from './PackageMetadata';
/**
* The Package model module.
* @module model/Package
- * @version 7.2.0
+ * @version 7.3.0
*/
class Package {
/**
diff --git a/src/model/PackageMetadata.js b/src/model/PackageMetadata.js
index 86ca87939..7fa3d7f92 100644
--- a/src/model/PackageMetadata.js
+++ b/src/model/PackageMetadata.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PackageMetadata model module.
* @module model/PackageMetadata
- * @version 7.2.0
+ * @version 7.3.0
*/
class PackageMetadata {
/**
diff --git a/src/model/PackageResponse.js b/src/model/PackageResponse.js
index a29f61ce6..1f526c312 100644
--- a/src/model/PackageResponse.js
+++ b/src/model/PackageResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import Timestamps from './Timestamps';
/**
* The PackageResponse model module.
* @module model/PackageResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class PackageResponse {
/**
diff --git a/src/model/PackageResponseAllOf.js b/src/model/PackageResponseAllOf.js
index d91714f7f..75e7c0d5f 100644
--- a/src/model/PackageResponseAllOf.js
+++ b/src/model/PackageResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PackageResponseAllOf model module.
* @module model/PackageResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class PackageResponseAllOf {
/**
diff --git a/src/model/Pagination.js b/src/model/Pagination.js
index 7da696616..9dc4e750e 100644
--- a/src/model/Pagination.js
+++ b/src/model/Pagination.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import PaginationMeta from './PaginationMeta';
/**
* The Pagination model module.
* @module model/Pagination
- * @version 7.2.0
+ * @version 7.3.0
*/
class Pagination {
/**
diff --git a/src/model/PaginationCursorMeta.js b/src/model/PaginationCursorMeta.js
index 2bbb6b957..c5e6adf5f 100644
--- a/src/model/PaginationCursorMeta.js
+++ b/src/model/PaginationCursorMeta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PaginationCursorMeta model module.
* @module model/PaginationCursorMeta
- * @version 7.2.0
+ * @version 7.3.0
*/
class PaginationCursorMeta {
/**
diff --git a/src/model/PaginationLinks.js b/src/model/PaginationLinks.js
index 0e863f894..ef263ee23 100644
--- a/src/model/PaginationLinks.js
+++ b/src/model/PaginationLinks.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PaginationLinks model module.
* @module model/PaginationLinks
- * @version 7.2.0
+ * @version 7.3.0
*/
class PaginationLinks {
/**
diff --git a/src/model/PaginationMeta.js b/src/model/PaginationMeta.js
index b2f9f3057..5c7c16cd1 100644
--- a/src/model/PaginationMeta.js
+++ b/src/model/PaginationMeta.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PaginationMeta model module.
* @module model/PaginationMeta
- * @version 7.2.0
+ * @version 7.3.0
*/
class PaginationMeta {
/**
diff --git a/src/model/Permission.js b/src/model/Permission.js
index 45ccd68ae..9e482bd64 100644
--- a/src/model/Permission.js
+++ b/src/model/Permission.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/PlatformDdosDataItems.js b/src/model/PlatformDdosDataItems.js
index 0c6cba983..8cb3925ab 100644
--- a/src/model/PlatformDdosDataItems.js
+++ b/src/model/PlatformDdosDataItems.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Values from './Values';
/**
* The PlatformDdosDataItems model module.
* @module model/PlatformDdosDataItems
- * @version 7.2.0
+ * @version 7.3.0
*/
class PlatformDdosDataItems {
/**
diff --git a/src/model/PlatformDdosEntry.js b/src/model/PlatformDdosEntry.js
index ca854eea3..5c9a716f1 100644
--- a/src/model/PlatformDdosEntry.js
+++ b/src/model/PlatformDdosEntry.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ValuesDdos from './ValuesDdos';
/**
* The PlatformDdosEntry model module.
* @module model/PlatformDdosEntry
- * @version 7.2.0
+ * @version 7.3.0
*/
class PlatformDdosEntry {
/**
diff --git a/src/model/PlatformDdosResponse.js b/src/model/PlatformDdosResponse.js
index 11c89e3fc..d80cde492 100644
--- a/src/model/PlatformDdosResponse.js
+++ b/src/model/PlatformDdosResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import PlatformDdosResponseAllOf from './PlatformDdosResponseAllOf';
/**
* The PlatformDdosResponse model module.
* @module model/PlatformDdosResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class PlatformDdosResponse {
/**
diff --git a/src/model/PlatformDdosResponseAllOf.js b/src/model/PlatformDdosResponseAllOf.js
index 17d3f7afc..e3dd08742 100644
--- a/src/model/PlatformDdosResponseAllOf.js
+++ b/src/model/PlatformDdosResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import PlatformDdosEntry from './PlatformDdosEntry';
/**
* The PlatformDdosResponseAllOf model module.
* @module model/PlatformDdosResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class PlatformDdosResponseAllOf {
/**
diff --git a/src/model/PoolAdditional.js b/src/model/PoolAdditional.js
index 54cc0a806..5caaba17f 100644
--- a/src/model/PoolAdditional.js
+++ b/src/model/PoolAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolAdditional model module.
* @module model/PoolAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class PoolAdditional {
/**
diff --git a/src/model/PoolResponse.js b/src/model/PoolResponse.js
index 246462850..1f93f8b6d 100644
--- a/src/model/PoolResponse.js
+++ b/src/model/PoolResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import TlsCommonResponse from './TlsCommonResponse';
/**
* The PoolResponse model module.
* @module model/PoolResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class PoolResponse {
/**
diff --git a/src/model/PoolResponseAllOf.js b/src/model/PoolResponseAllOf.js
index 8b956a15a..925404af5 100644
--- a/src/model/PoolResponseAllOf.js
+++ b/src/model/PoolResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolResponseAllOf model module.
* @module model/PoolResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class PoolResponseAllOf {
/**
diff --git a/src/model/PoolResponseCommon.js b/src/model/PoolResponseCommon.js
index bc8bfa792..21f765ec0 100644
--- a/src/model/PoolResponseCommon.js
+++ b/src/model/PoolResponseCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolResponseCommon model module.
* @module model/PoolResponseCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class PoolResponseCommon {
/**
diff --git a/src/model/PoolResponsePost.js b/src/model/PoolResponsePost.js
index 405259e49..56e689979 100644
--- a/src/model/PoolResponsePost.js
+++ b/src/model/PoolResponsePost.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import TlsCommonResponse from './TlsCommonResponse';
/**
* The PoolResponsePost model module.
* @module model/PoolResponsePost
- * @version 7.2.0
+ * @version 7.3.0
*/
class PoolResponsePost {
/**
diff --git a/src/model/PoolResponsePostAllOf.js b/src/model/PoolResponsePostAllOf.js
index f531af633..4abaff7f2 100644
--- a/src/model/PoolResponsePostAllOf.js
+++ b/src/model/PoolResponsePostAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PoolResponsePostAllOf model module.
* @module model/PoolResponsePostAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class PoolResponsePostAllOf {
/**
diff --git a/src/model/Pop.js b/src/model/Pop.js
index ec6665341..821e2ad16 100644
--- a/src/model/Pop.js
+++ b/src/model/Pop.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import PopCoordinates from './PopCoordinates';
/**
* The Pop model module.
* @module model/Pop
- * @version 7.2.0
+ * @version 7.3.0
*/
class Pop {
/**
diff --git a/src/model/PopCoordinates.js b/src/model/PopCoordinates.js
index 9a43b726b..0a959f1bf 100644
--- a/src/model/PopCoordinates.js
+++ b/src/model/PopCoordinates.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PopCoordinates model module.
* @module model/PopCoordinates
- * @version 7.2.0
+ * @version 7.3.0
*/
class PopCoordinates {
/**
diff --git a/src/model/PublicIpList.js b/src/model/PublicIpList.js
index f5fe0234a..e2c045e6e 100644
--- a/src/model/PublicIpList.js
+++ b/src/model/PublicIpList.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PublicIpList model module.
* @module model/PublicIpList
- * @version 7.2.0
+ * @version 7.3.0
*/
class PublicIpList {
/**
diff --git a/src/model/PublishItem.js b/src/model/PublishItem.js
index a79f58db1..262ae3dd1 100644
--- a/src/model/PublishItem.js
+++ b/src/model/PublishItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import PublishItemFormats from './PublishItemFormats';
/**
* The PublishItem model module.
* @module model/PublishItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class PublishItem {
/**
diff --git a/src/model/PublishItemFormats.js b/src/model/PublishItemFormats.js
index aeb0a73f4..c65108068 100644
--- a/src/model/PublishItemFormats.js
+++ b/src/model/PublishItemFormats.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import WsMessageFormat from './WsMessageFormat';
/**
* The PublishItemFormats model module.
* @module model/PublishItemFormats
- * @version 7.2.0
+ * @version 7.3.0
*/
class PublishItemFormats {
/**
diff --git a/src/model/PublishRequest.js b/src/model/PublishRequest.js
index 819d2f121..97ecf9591 100644
--- a/src/model/PublishRequest.js
+++ b/src/model/PublishRequest.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import PublishItem from './PublishItem';
/**
* The PublishRequest model module.
* @module model/PublishRequest
- * @version 7.2.0
+ * @version 7.3.0
*/
class PublishRequest {
/**
diff --git a/src/model/PurgeKeys.js b/src/model/PurgeKeys.js
index d94f410ac..17f4fd6c2 100644
--- a/src/model/PurgeKeys.js
+++ b/src/model/PurgeKeys.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PurgeKeys model module.
* @module model/PurgeKeys
- * @version 7.2.0
+ * @version 7.3.0
*/
class PurgeKeys {
/**
diff --git a/src/model/PurgeResponse.js b/src/model/PurgeResponse.js
index a5085ce13..ea61c6d07 100644
--- a/src/model/PurgeResponse.js
+++ b/src/model/PurgeResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The PurgeResponse model module.
* @module model/PurgeResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class PurgeResponse {
/**
diff --git a/src/model/RateLimiter.js b/src/model/RateLimiter.js
index e73101b2b..30eedce23 100644
--- a/src/model/RateLimiter.js
+++ b/src/model/RateLimiter.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RateLimiter model module.
* @module model/RateLimiter
- * @version 7.2.0
+ * @version 7.3.0
*/
class RateLimiter {
/**
diff --git a/src/model/RateLimiterResponse.js b/src/model/RateLimiterResponse.js
index 1261efcd0..5ac8655a2 100644
--- a/src/model/RateLimiterResponse.js
+++ b/src/model/RateLimiterResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The RateLimiterResponse model module.
* @module model/RateLimiterResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class RateLimiterResponse {
/**
diff --git a/src/model/RateLimiterResponseAllOf.js b/src/model/RateLimiterResponseAllOf.js
index 22c3713d3..0bdfcf517 100644
--- a/src/model/RateLimiterResponseAllOf.js
+++ b/src/model/RateLimiterResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RateLimiterResponseAllOf model module.
* @module model/RateLimiterResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class RateLimiterResponseAllOf {
/**
diff --git a/src/model/ReadOnlyCustomerId.js b/src/model/ReadOnlyCustomerId.js
index 5c1734da1..00c29815a 100644
--- a/src/model/ReadOnlyCustomerId.js
+++ b/src/model/ReadOnlyCustomerId.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyCustomerId model module.
* @module model/ReadOnlyCustomerId
- * @version 7.2.0
+ * @version 7.3.0
*/
class ReadOnlyCustomerId {
/**
diff --git a/src/model/ReadOnlyId.js b/src/model/ReadOnlyId.js
index 49612596c..e1b38d9fe 100644
--- a/src/model/ReadOnlyId.js
+++ b/src/model/ReadOnlyId.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyId model module.
* @module model/ReadOnlyId
- * @version 7.2.0
+ * @version 7.3.0
*/
class ReadOnlyId {
/**
diff --git a/src/model/ReadOnlyServiceId.js b/src/model/ReadOnlyServiceId.js
index 77043be0e..0d2a7bc92 100644
--- a/src/model/ReadOnlyServiceId.js
+++ b/src/model/ReadOnlyServiceId.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyServiceId model module.
* @module model/ReadOnlyServiceId
- * @version 7.2.0
+ * @version 7.3.0
*/
class ReadOnlyServiceId {
/**
diff --git a/src/model/ReadOnlyUserId.js b/src/model/ReadOnlyUserId.js
index 1777d25e5..be194dda6 100644
--- a/src/model/ReadOnlyUserId.js
+++ b/src/model/ReadOnlyUserId.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyUserId model module.
* @module model/ReadOnlyUserId
- * @version 7.2.0
+ * @version 7.3.0
*/
class ReadOnlyUserId {
/**
diff --git a/src/model/ReadOnlyVersion.js b/src/model/ReadOnlyVersion.js
index 5c04b462d..a314fb55e 100644
--- a/src/model/ReadOnlyVersion.js
+++ b/src/model/ReadOnlyVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ReadOnlyVersion model module.
* @module model/ReadOnlyVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class ReadOnlyVersion {
/**
diff --git a/src/model/Realtime.js b/src/model/Realtime.js
index 02bc4a2c6..0ac910a80 100644
--- a/src/model/Realtime.js
+++ b/src/model/Realtime.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RealtimeEntry from './RealtimeEntry';
/**
* The Realtime model module.
* @module model/Realtime
- * @version 7.2.0
+ * @version 7.3.0
*/
class Realtime {
/**
diff --git a/src/model/RealtimeEntry.js b/src/model/RealtimeEntry.js
index b01df161d..54fb9bb1e 100644
--- a/src/model/RealtimeEntry.js
+++ b/src/model/RealtimeEntry.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import RealtimeMeasurements from './RealtimeMeasurements';
/**
* The RealtimeEntry model module.
* @module model/RealtimeEntry
- * @version 7.2.0
+ * @version 7.3.0
*/
class RealtimeEntry {
/**
diff --git a/src/model/RealtimeEntryAggregated.js b/src/model/RealtimeEntryAggregated.js
index 02c2b485a..0b6fc34ab 100644
--- a/src/model/RealtimeEntryAggregated.js
+++ b/src/model/RealtimeEntryAggregated.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RealtimeMeasurements from './RealtimeMeasurements';
/**
* The RealtimeEntryAggregated model module.
* @module model/RealtimeEntryAggregated
- * @version 7.2.0
+ * @version 7.3.0
*/
class RealtimeEntryAggregated {
/**
diff --git a/src/model/RealtimeEntryRecorded.js b/src/model/RealtimeEntryRecorded.js
index d8224800a..32aaffa30 100644
--- a/src/model/RealtimeEntryRecorded.js
+++ b/src/model/RealtimeEntryRecorded.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RealtimeEntryRecorded model module.
* @module model/RealtimeEntryRecorded
- * @version 7.2.0
+ * @version 7.3.0
*/
class RealtimeEntryRecorded {
/**
diff --git a/src/model/RealtimeMeasurements.js b/src/model/RealtimeMeasurements.js
index 6ddbbd7b0..709c5313c 100644
--- a/src/model/RealtimeMeasurements.js
+++ b/src/model/RealtimeMeasurements.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RealtimeMeasurements model module.
* @module model/RealtimeMeasurements
- * @version 7.2.0
+ * @version 7.3.0
*/
class RealtimeMeasurements {
/**
diff --git a/src/model/RecordedTimestamp.js b/src/model/RecordedTimestamp.js
index d82b41aba..8d124cf71 100644
--- a/src/model/RecordedTimestamp.js
+++ b/src/model/RecordedTimestamp.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RecordedTimestamp model module.
* @module model/RecordedTimestamp
- * @version 7.2.0
+ * @version 7.3.0
*/
class RecordedTimestamp {
/**
diff --git a/src/model/RelationshipCommonName.js b/src/model/RelationshipCommonName.js
index 81a7e471e..2ed98a520 100644
--- a/src/model/RelationshipCommonName.js
+++ b/src/model/RelationshipCommonName.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDomain from './RelationshipMemberTlsDomain';
/**
* The RelationshipCommonName model module.
* @module model/RelationshipCommonName
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipCommonName {
/**
diff --git a/src/model/RelationshipCustomer.js b/src/model/RelationshipCustomer.js
index 8fd7e6e64..a712dc758 100644
--- a/src/model/RelationshipCustomer.js
+++ b/src/model/RelationshipCustomer.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipCustomerCustomer from './RelationshipCustomerCustomer';
/**
* The RelationshipCustomer model module.
* @module model/RelationshipCustomer
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipCustomer {
/**
diff --git a/src/model/RelationshipCustomerCustomer.js b/src/model/RelationshipCustomerCustomer.js
index 1f52dc439..c3f834165 100644
--- a/src/model/RelationshipCustomerCustomer.js
+++ b/src/model/RelationshipCustomerCustomer.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberCustomer from './RelationshipMemberCustomer';
/**
* The RelationshipCustomerCustomer model module.
* @module model/RelationshipCustomerCustomer
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipCustomerCustomer {
/**
diff --git a/src/model/RelationshipMemberCustomer.js b/src/model/RelationshipMemberCustomer.js
index 5cc4ce1f6..8f417b1a4 100644
--- a/src/model/RelationshipMemberCustomer.js
+++ b/src/model/RelationshipMemberCustomer.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeCustomer from './TypeCustomer';
/**
* The RelationshipMemberCustomer model module.
* @module model/RelationshipMemberCustomer
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberCustomer {
/**
diff --git a/src/model/RelationshipMemberMutualAuthentication.js b/src/model/RelationshipMemberMutualAuthentication.js
index df2c8e0a7..6f812e19c 100644
--- a/src/model/RelationshipMemberMutualAuthentication.js
+++ b/src/model/RelationshipMemberMutualAuthentication.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeMutualAuthentication from './TypeMutualAuthentication';
/**
* The RelationshipMemberMutualAuthentication model module.
* @module model/RelationshipMemberMutualAuthentication
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberMutualAuthentication {
/**
diff --git a/src/model/RelationshipMemberService.js b/src/model/RelationshipMemberService.js
index b762df6f3..0f155c8ff 100644
--- a/src/model/RelationshipMemberService.js
+++ b/src/model/RelationshipMemberService.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeService from './TypeService';
/**
* The RelationshipMemberService model module.
* @module model/RelationshipMemberService
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberService {
/**
diff --git a/src/model/RelationshipMemberServiceInvitation.js b/src/model/RelationshipMemberServiceInvitation.js
index ed26e13a4..5bcfb7e97 100644
--- a/src/model/RelationshipMemberServiceInvitation.js
+++ b/src/model/RelationshipMemberServiceInvitation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeServiceInvitation from './TypeServiceInvitation';
/**
* The RelationshipMemberServiceInvitation model module.
* @module model/RelationshipMemberServiceInvitation
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberServiceInvitation {
/**
diff --git a/src/model/RelationshipMemberTlsActivation.js b/src/model/RelationshipMemberTlsActivation.js
index 0c1f07e93..7bb0fdda1 100644
--- a/src/model/RelationshipMemberTlsActivation.js
+++ b/src/model/RelationshipMemberTlsActivation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsActivation from './TypeTlsActivation';
/**
* The RelationshipMemberTlsActivation model module.
* @module model/RelationshipMemberTlsActivation
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsActivation {
/**
diff --git a/src/model/RelationshipMemberTlsBulkCertificate.js b/src/model/RelationshipMemberTlsBulkCertificate.js
index de55b2c7b..c61d7d451 100644
--- a/src/model/RelationshipMemberTlsBulkCertificate.js
+++ b/src/model/RelationshipMemberTlsBulkCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsBulkCertificate from './TypeTlsBulkCertificate';
/**
* The RelationshipMemberTlsBulkCertificate model module.
* @module model/RelationshipMemberTlsBulkCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipMemberTlsCertificate.js b/src/model/RelationshipMemberTlsCertificate.js
index c33e3f3c0..e569e7cec 100644
--- a/src/model/RelationshipMemberTlsCertificate.js
+++ b/src/model/RelationshipMemberTlsCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsCertificate from './TypeTlsCertificate';
/**
* The RelationshipMemberTlsCertificate model module.
* @module model/RelationshipMemberTlsCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsCertificate {
/**
diff --git a/src/model/RelationshipMemberTlsConfiguration.js b/src/model/RelationshipMemberTlsConfiguration.js
index 0285ebc22..79f8e18e0 100644
--- a/src/model/RelationshipMemberTlsConfiguration.js
+++ b/src/model/RelationshipMemberTlsConfiguration.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsConfiguration from './TypeTlsConfiguration';
/**
* The RelationshipMemberTlsConfiguration model module.
* @module model/RelationshipMemberTlsConfiguration
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsConfiguration {
/**
diff --git a/src/model/RelationshipMemberTlsDnsRecord.js b/src/model/RelationshipMemberTlsDnsRecord.js
index a65dfd06c..44a3772c0 100644
--- a/src/model/RelationshipMemberTlsDnsRecord.js
+++ b/src/model/RelationshipMemberTlsDnsRecord.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsDnsRecord from './TypeTlsDnsRecord';
/**
* The RelationshipMemberTlsDnsRecord model module.
* @module model/RelationshipMemberTlsDnsRecord
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsDnsRecord {
/**
diff --git a/src/model/RelationshipMemberTlsDomain.js b/src/model/RelationshipMemberTlsDomain.js
index 288883a80..42a6e2fe5 100644
--- a/src/model/RelationshipMemberTlsDomain.js
+++ b/src/model/RelationshipMemberTlsDomain.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsDomain from './TypeTlsDomain';
/**
* The RelationshipMemberTlsDomain model module.
* @module model/RelationshipMemberTlsDomain
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsDomain {
/**
diff --git a/src/model/RelationshipMemberTlsPrivateKey.js b/src/model/RelationshipMemberTlsPrivateKey.js
index 6a026bd57..93bf98622 100644
--- a/src/model/RelationshipMemberTlsPrivateKey.js
+++ b/src/model/RelationshipMemberTlsPrivateKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsPrivateKey from './TypeTlsPrivateKey';
/**
* The RelationshipMemberTlsPrivateKey model module.
* @module model/RelationshipMemberTlsPrivateKey
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsPrivateKey {
/**
diff --git a/src/model/RelationshipMemberTlsSubscription.js b/src/model/RelationshipMemberTlsSubscription.js
index f62ef3847..b97dc522c 100644
--- a/src/model/RelationshipMemberTlsSubscription.js
+++ b/src/model/RelationshipMemberTlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeTlsSubscription from './TypeTlsSubscription';
/**
* The RelationshipMemberTlsSubscription model module.
* @module model/RelationshipMemberTlsSubscription
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberTlsSubscription {
/**
diff --git a/src/model/RelationshipMemberWafActiveRule.js b/src/model/RelationshipMemberWafActiveRule.js
index d8be0c0d5..5e567b653 100644
--- a/src/model/RelationshipMemberWafActiveRule.js
+++ b/src/model/RelationshipMemberWafActiveRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeWafActiveRule from './TypeWafActiveRule';
/**
* The RelationshipMemberWafActiveRule model module.
* @module model/RelationshipMemberWafActiveRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberWafActiveRule {
/**
diff --git a/src/model/RelationshipMemberWafFirewall.js b/src/model/RelationshipMemberWafFirewall.js
index b5bf605f6..a73aca70f 100644
--- a/src/model/RelationshipMemberWafFirewall.js
+++ b/src/model/RelationshipMemberWafFirewall.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeWafFirewall from './TypeWafFirewall';
/**
* The RelationshipMemberWafFirewall model module.
* @module model/RelationshipMemberWafFirewall
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberWafFirewall {
/**
diff --git a/src/model/RelationshipMemberWafFirewallVersion.js b/src/model/RelationshipMemberWafFirewallVersion.js
index e5985cff8..292318e52 100644
--- a/src/model/RelationshipMemberWafFirewallVersion.js
+++ b/src/model/RelationshipMemberWafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeWafFirewallVersion from './TypeWafFirewallVersion';
/**
* The RelationshipMemberWafFirewallVersion model module.
* @module model/RelationshipMemberWafFirewallVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberWafFirewallVersion {
/**
diff --git a/src/model/RelationshipMemberWafRule.js b/src/model/RelationshipMemberWafRule.js
index 6993a0b44..03a688e7f 100644
--- a/src/model/RelationshipMemberWafRule.js
+++ b/src/model/RelationshipMemberWafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeWafRule from './TypeWafRule';
/**
* The RelationshipMemberWafRule model module.
* @module model/RelationshipMemberWafRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberWafRule {
/**
diff --git a/src/model/RelationshipMemberWafRuleRevision.js b/src/model/RelationshipMemberWafRuleRevision.js
index 9d81be686..34471442f 100644
--- a/src/model/RelationshipMemberWafRuleRevision.js
+++ b/src/model/RelationshipMemberWafRuleRevision.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeWafRuleRevision from './TypeWafRuleRevision';
/**
* The RelationshipMemberWafRuleRevision model module.
* @module model/RelationshipMemberWafRuleRevision
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberWafRuleRevision {
/**
diff --git a/src/model/RelationshipMemberWafTag.js b/src/model/RelationshipMemberWafTag.js
index 676c44e10..1d2150ee5 100644
--- a/src/model/RelationshipMemberWafTag.js
+++ b/src/model/RelationshipMemberWafTag.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeWafTag from './TypeWafTag';
/**
* The RelationshipMemberWafTag model module.
* @module model/RelationshipMemberWafTag
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMemberWafTag {
/**
diff --git a/src/model/RelationshipMutualAuthentication.js b/src/model/RelationshipMutualAuthentication.js
index 5ee25986c..bcbd86686 100644
--- a/src/model/RelationshipMutualAuthentication.js
+++ b/src/model/RelationshipMutualAuthentication.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMutualAuthenticationMutualAuthentication from './Relationship
/**
* The RelationshipMutualAuthentication model module.
* @module model/RelationshipMutualAuthentication
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMutualAuthentication {
/**
diff --git a/src/model/RelationshipMutualAuthenticationMutualAuthentication.js b/src/model/RelationshipMutualAuthenticationMutualAuthentication.js
index a0824a245..2cf118ac2 100644
--- a/src/model/RelationshipMutualAuthenticationMutualAuthentication.js
+++ b/src/model/RelationshipMutualAuthenticationMutualAuthentication.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberMutualAuthentication from './RelationshipMemberMutualAu
/**
* The RelationshipMutualAuthenticationMutualAuthentication model module.
* @module model/RelationshipMutualAuthenticationMutualAuthentication
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMutualAuthenticationMutualAuthentication {
/**
diff --git a/src/model/RelationshipMutualAuthentications.js b/src/model/RelationshipMutualAuthentications.js
index c2fd86ecc..1be077197 100644
--- a/src/model/RelationshipMutualAuthentications.js
+++ b/src/model/RelationshipMutualAuthentications.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMutualAuthenticationsMutualAuthentications from './Relationsh
/**
* The RelationshipMutualAuthentications model module.
* @module model/RelationshipMutualAuthentications
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMutualAuthentications {
/**
diff --git a/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js b/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js
index bab983652..09065328e 100644
--- a/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js
+++ b/src/model/RelationshipMutualAuthenticationsMutualAuthentications.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberMutualAuthentication from './RelationshipMemberMutualAu
/**
* The RelationshipMutualAuthenticationsMutualAuthentications model module.
* @module model/RelationshipMutualAuthenticationsMutualAuthentications
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipMutualAuthenticationsMutualAuthentications {
/**
diff --git a/src/model/RelationshipService.js b/src/model/RelationshipService.js
index 0c6d83b01..50442a09e 100644
--- a/src/model/RelationshipService.js
+++ b/src/model/RelationshipService.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The RelationshipService model module.
* @module model/RelationshipService
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipService {
/**
diff --git a/src/model/RelationshipServiceInvitations.js b/src/model/RelationshipServiceInvitations.js
index d7db2d53f..eed3e7c09 100644
--- a/src/model/RelationshipServiceInvitations.js
+++ b/src/model/RelationshipServiceInvitations.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipServiceInvitationsServiceInvitations from './RelationshipServ
/**
* The RelationshipServiceInvitations model module.
* @module model/RelationshipServiceInvitations
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipServiceInvitations {
/**
diff --git a/src/model/RelationshipServiceInvitationsCreate.js b/src/model/RelationshipServiceInvitationsCreate.js
index 5f149f465..5e3748859 100644
--- a/src/model/RelationshipServiceInvitationsCreate.js
+++ b/src/model/RelationshipServiceInvitationsCreate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipServiceInvitationsCreateServiceInvitations from './Relationsh
/**
* The RelationshipServiceInvitationsCreate model module.
* @module model/RelationshipServiceInvitationsCreate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipServiceInvitationsCreate {
/**
diff --git a/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js b/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js
index a406920d3..3f4035231 100644
--- a/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js
+++ b/src/model/RelationshipServiceInvitationsCreateServiceInvitations.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceInvitation from './ServiceInvitation';
/**
* The RelationshipServiceInvitationsCreateServiceInvitations model module.
* @module model/RelationshipServiceInvitationsCreateServiceInvitations
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipServiceInvitationsCreateServiceInvitations {
/**
diff --git a/src/model/RelationshipServiceInvitationsServiceInvitations.js b/src/model/RelationshipServiceInvitationsServiceInvitations.js
index 8991df9da..3fa230051 100644
--- a/src/model/RelationshipServiceInvitationsServiceInvitations.js
+++ b/src/model/RelationshipServiceInvitationsServiceInvitations.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberServiceInvitation from './RelationshipMemberServiceInvi
/**
* The RelationshipServiceInvitationsServiceInvitations model module.
* @module model/RelationshipServiceInvitationsServiceInvitations
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipServiceInvitationsServiceInvitations {
/**
diff --git a/src/model/RelationshipServices.js b/src/model/RelationshipServices.js
index a8e294456..f2eb126a5 100644
--- a/src/model/RelationshipServices.js
+++ b/src/model/RelationshipServices.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipServicesServices from './RelationshipServicesServices';
/**
* The RelationshipServices model module.
* @module model/RelationshipServices
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipServices {
/**
diff --git a/src/model/RelationshipServicesServices.js b/src/model/RelationshipServicesServices.js
index 1a8e4b9cd..7b61ad48a 100644
--- a/src/model/RelationshipServicesServices.js
+++ b/src/model/RelationshipServicesServices.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The RelationshipServicesServices model module.
* @module model/RelationshipServicesServices
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipServicesServices {
/**
diff --git a/src/model/RelationshipTlsActivation.js b/src/model/RelationshipTlsActivation.js
index 39f2bbbd0..e5a839579 100644
--- a/src/model/RelationshipTlsActivation.js
+++ b/src/model/RelationshipTlsActivation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsActivationTlsActivation from './RelationshipTlsActivationT
/**
* The RelationshipTlsActivation model module.
* @module model/RelationshipTlsActivation
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsActivation {
/**
diff --git a/src/model/RelationshipTlsActivationTlsActivation.js b/src/model/RelationshipTlsActivationTlsActivation.js
index 1679c374a..46fa512a0 100644
--- a/src/model/RelationshipTlsActivationTlsActivation.js
+++ b/src/model/RelationshipTlsActivationTlsActivation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsActivation from './RelationshipMemberTlsActivation';
/**
* The RelationshipTlsActivationTlsActivation model module.
* @module model/RelationshipTlsActivationTlsActivation
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsActivationTlsActivation {
/**
diff --git a/src/model/RelationshipTlsActivations.js b/src/model/RelationshipTlsActivations.js
index ac7ba10d2..c02ee2e29 100644
--- a/src/model/RelationshipTlsActivations.js
+++ b/src/model/RelationshipTlsActivations.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsActivationTlsActivation from './RelationshipTlsActivationT
/**
* The RelationshipTlsActivations model module.
* @module model/RelationshipTlsActivations
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsActivations {
/**
diff --git a/src/model/RelationshipTlsBulkCertificate.js b/src/model/RelationshipTlsBulkCertificate.js
index 59f446845..ecd27b3db 100644
--- a/src/model/RelationshipTlsBulkCertificate.js
+++ b/src/model/RelationshipTlsBulkCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsBulkCertificateTlsBulkCertificate from './RelationshipTlsB
/**
* The RelationshipTlsBulkCertificate model module.
* @module model/RelationshipTlsBulkCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js b/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js
index 3807f4151..9ae6b213f 100644
--- a/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js
+++ b/src/model/RelationshipTlsBulkCertificateTlsBulkCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsBulkCertificate from './RelationshipMemberTlsBulkCer
/**
* The RelationshipTlsBulkCertificateTlsBulkCertificate model module.
* @module model/RelationshipTlsBulkCertificateTlsBulkCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsBulkCertificateTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipTlsBulkCertificates.js b/src/model/RelationshipTlsBulkCertificates.js
index 1ca623c55..bf9da7c94 100644
--- a/src/model/RelationshipTlsBulkCertificates.js
+++ b/src/model/RelationshipTlsBulkCertificates.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsBulkCertificateTlsBulkCertificate from './RelationshipTlsB
/**
* The RelationshipTlsBulkCertificates model module.
* @module model/RelationshipTlsBulkCertificates
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsBulkCertificates {
/**
diff --git a/src/model/RelationshipTlsCertificate.js b/src/model/RelationshipTlsCertificate.js
index 6d41c61f2..24343d765 100644
--- a/src/model/RelationshipTlsCertificate.js
+++ b/src/model/RelationshipTlsCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsCertificateTlsCertificate from './RelationshipTlsCertifica
/**
* The RelationshipTlsCertificate model module.
* @module model/RelationshipTlsCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsCertificate {
/**
diff --git a/src/model/RelationshipTlsCertificateTlsCertificate.js b/src/model/RelationshipTlsCertificateTlsCertificate.js
index 2d7d04420..3e379fcf5 100644
--- a/src/model/RelationshipTlsCertificateTlsCertificate.js
+++ b/src/model/RelationshipTlsCertificateTlsCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsCertificate from './RelationshipMemberTlsCertificate
/**
* The RelationshipTlsCertificateTlsCertificate model module.
* @module model/RelationshipTlsCertificateTlsCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsCertificateTlsCertificate {
/**
diff --git a/src/model/RelationshipTlsCertificates.js b/src/model/RelationshipTlsCertificates.js
index 09331ba90..7fd71b4f3 100644
--- a/src/model/RelationshipTlsCertificates.js
+++ b/src/model/RelationshipTlsCertificates.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsCertificatesTlsCertificates from './RelationshipTlsCertifi
/**
* The RelationshipTlsCertificates model module.
* @module model/RelationshipTlsCertificates
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsCertificates {
/**
diff --git a/src/model/RelationshipTlsCertificatesTlsCertificates.js b/src/model/RelationshipTlsCertificatesTlsCertificates.js
index 31c7dd669..110d0ee4c 100644
--- a/src/model/RelationshipTlsCertificatesTlsCertificates.js
+++ b/src/model/RelationshipTlsCertificatesTlsCertificates.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsCertificate from './RelationshipMemberTlsCertificate
/**
* The RelationshipTlsCertificatesTlsCertificates model module.
* @module model/RelationshipTlsCertificatesTlsCertificates
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsCertificatesTlsCertificates {
/**
diff --git a/src/model/RelationshipTlsConfiguration.js b/src/model/RelationshipTlsConfiguration.js
index 550983bfe..8950df08c 100644
--- a/src/model/RelationshipTlsConfiguration.js
+++ b/src/model/RelationshipTlsConfiguration.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsConfigurationTlsConfiguration from './RelationshipTlsConfi
/**
* The RelationshipTlsConfiguration model module.
* @module model/RelationshipTlsConfiguration
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsConfiguration {
/**
diff --git a/src/model/RelationshipTlsConfigurationForTlsSubscription.js b/src/model/RelationshipTlsConfigurationForTlsSubscription.js
index a7bd239ca..f86451175 100644
--- a/src/model/RelationshipTlsConfigurationForTlsSubscription.js
+++ b/src/model/RelationshipTlsConfigurationForTlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsConfigurationTlsConfiguration from './RelationshipTlsConfi
/**
* The RelationshipTlsConfigurationForTlsSubscription model module.
* @module model/RelationshipTlsConfigurationForTlsSubscription
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsConfigurationForTlsSubscription {
/**
diff --git a/src/model/RelationshipTlsConfigurationTlsConfiguration.js b/src/model/RelationshipTlsConfigurationTlsConfiguration.js
index 701d7093b..e675ec604 100644
--- a/src/model/RelationshipTlsConfigurationTlsConfiguration.js
+++ b/src/model/RelationshipTlsConfigurationTlsConfiguration.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsConfiguration from './RelationshipMemberTlsConfigura
/**
* The RelationshipTlsConfigurationTlsConfiguration model module.
* @module model/RelationshipTlsConfigurationTlsConfiguration
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsConfigurationTlsConfiguration {
/**
diff --git a/src/model/RelationshipTlsConfigurations.js b/src/model/RelationshipTlsConfigurations.js
index 1f7b9928e..c78132ea9 100644
--- a/src/model/RelationshipTlsConfigurations.js
+++ b/src/model/RelationshipTlsConfigurations.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsConfigurationsTlsConfigurations from './RelationshipTlsCon
/**
* The RelationshipTlsConfigurations model module.
* @module model/RelationshipTlsConfigurations
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsConfigurations {
/**
diff --git a/src/model/RelationshipTlsConfigurationsTlsConfigurations.js b/src/model/RelationshipTlsConfigurationsTlsConfigurations.js
index 2b6ab7fe9..a78dcca94 100644
--- a/src/model/RelationshipTlsConfigurationsTlsConfigurations.js
+++ b/src/model/RelationshipTlsConfigurationsTlsConfigurations.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsConfiguration from './RelationshipMemberTlsConfigura
/**
* The RelationshipTlsConfigurationsTlsConfigurations model module.
* @module model/RelationshipTlsConfigurationsTlsConfigurations
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsConfigurationsTlsConfigurations {
/**
diff --git a/src/model/RelationshipTlsDnsRecord.js b/src/model/RelationshipTlsDnsRecord.js
index 39ea0c9b8..d02ff67ea 100644
--- a/src/model/RelationshipTlsDnsRecord.js
+++ b/src/model/RelationshipTlsDnsRecord.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsDnsRecordDnsRecord from './RelationshipTlsDnsRecordDnsReco
/**
* The RelationshipTlsDnsRecord model module.
* @module model/RelationshipTlsDnsRecord
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDnsRecord {
/**
diff --git a/src/model/RelationshipTlsDnsRecordDnsRecord.js b/src/model/RelationshipTlsDnsRecordDnsRecord.js
index 4efcbdd97..2cefaee66 100644
--- a/src/model/RelationshipTlsDnsRecordDnsRecord.js
+++ b/src/model/RelationshipTlsDnsRecordDnsRecord.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDnsRecord from './RelationshipMemberTlsDnsRecord';
/**
* The RelationshipTlsDnsRecordDnsRecord model module.
* @module model/RelationshipTlsDnsRecordDnsRecord
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDnsRecordDnsRecord {
/**
diff --git a/src/model/RelationshipTlsDnsRecords.js b/src/model/RelationshipTlsDnsRecords.js
index 1c62d58b3..d69dfc122 100644
--- a/src/model/RelationshipTlsDnsRecords.js
+++ b/src/model/RelationshipTlsDnsRecords.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsDnsRecordDnsRecord from './RelationshipTlsDnsRecordDnsReco
/**
* The RelationshipTlsDnsRecords model module.
* @module model/RelationshipTlsDnsRecords
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDnsRecords {
/**
diff --git a/src/model/RelationshipTlsDomain.js b/src/model/RelationshipTlsDomain.js
index 56a0bca49..b2a65c5f8 100644
--- a/src/model/RelationshipTlsDomain.js
+++ b/src/model/RelationshipTlsDomain.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsDomainTlsDomain from './RelationshipTlsDomainTlsDomain';
/**
* The RelationshipTlsDomain model module.
* @module model/RelationshipTlsDomain
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDomain {
/**
diff --git a/src/model/RelationshipTlsDomainTlsDomain.js b/src/model/RelationshipTlsDomainTlsDomain.js
index 62b8d21f4..9533be89a 100644
--- a/src/model/RelationshipTlsDomainTlsDomain.js
+++ b/src/model/RelationshipTlsDomainTlsDomain.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDomain from './RelationshipMemberTlsDomain';
/**
* The RelationshipTlsDomainTlsDomain model module.
* @module model/RelationshipTlsDomainTlsDomain
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDomainTlsDomain {
/**
diff --git a/src/model/RelationshipTlsDomains.js b/src/model/RelationshipTlsDomains.js
index 3b956f21d..9cafc7665 100644
--- a/src/model/RelationshipTlsDomains.js
+++ b/src/model/RelationshipTlsDomains.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipTlsDomains model module.
* @module model/RelationshipTlsDomains
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDomains {
/**
diff --git a/src/model/RelationshipTlsDomainsTlsDomains.js b/src/model/RelationshipTlsDomainsTlsDomains.js
index aefef0366..9e92d1b89 100644
--- a/src/model/RelationshipTlsDomainsTlsDomains.js
+++ b/src/model/RelationshipTlsDomainsTlsDomains.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsDomain from './RelationshipMemberTlsDomain';
/**
* The RelationshipTlsDomainsTlsDomains model module.
* @module model/RelationshipTlsDomainsTlsDomains
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsDomainsTlsDomains {
/**
diff --git a/src/model/RelationshipTlsPrivateKey.js b/src/model/RelationshipTlsPrivateKey.js
index 4911d32fe..09208f89b 100644
--- a/src/model/RelationshipTlsPrivateKey.js
+++ b/src/model/RelationshipTlsPrivateKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsPrivateKeyTlsPrivateKey from './RelationshipTlsPrivateKeyT
/**
* The RelationshipTlsPrivateKey model module.
* @module model/RelationshipTlsPrivateKey
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsPrivateKey {
/**
diff --git a/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js b/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js
index 5a88cca64..f751c299a 100644
--- a/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js
+++ b/src/model/RelationshipTlsPrivateKeyTlsPrivateKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsPrivateKey from './RelationshipMemberTlsPrivateKey';
/**
* The RelationshipTlsPrivateKeyTlsPrivateKey model module.
* @module model/RelationshipTlsPrivateKeyTlsPrivateKey
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsPrivateKeyTlsPrivateKey {
/**
diff --git a/src/model/RelationshipTlsPrivateKeys.js b/src/model/RelationshipTlsPrivateKeys.js
index 9766c7591..64d7b977b 100644
--- a/src/model/RelationshipTlsPrivateKeys.js
+++ b/src/model/RelationshipTlsPrivateKeys.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsPrivateKeysTlsPrivateKeys from './RelationshipTlsPrivateKe
/**
* The RelationshipTlsPrivateKeys model module.
* @module model/RelationshipTlsPrivateKeys
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsPrivateKeys {
/**
diff --git a/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js b/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js
index 9e629d0d3..7031d3afd 100644
--- a/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js
+++ b/src/model/RelationshipTlsPrivateKeysTlsPrivateKeys.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsPrivateKey from './RelationshipMemberTlsPrivateKey';
/**
* The RelationshipTlsPrivateKeysTlsPrivateKeys model module.
* @module model/RelationshipTlsPrivateKeysTlsPrivateKeys
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsPrivateKeysTlsPrivateKeys {
/**
diff --git a/src/model/RelationshipTlsSubscription.js b/src/model/RelationshipTlsSubscription.js
index 495a1c29e..292c66770 100644
--- a/src/model/RelationshipTlsSubscription.js
+++ b/src/model/RelationshipTlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsSubscriptionTlsSubscription from './RelationshipTlsSubscri
/**
* The RelationshipTlsSubscription model module.
* @module model/RelationshipTlsSubscription
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsSubscription {
/**
diff --git a/src/model/RelationshipTlsSubscriptionTlsSubscription.js b/src/model/RelationshipTlsSubscriptionTlsSubscription.js
index 66646e9c3..aef0c044f 100644
--- a/src/model/RelationshipTlsSubscriptionTlsSubscription.js
+++ b/src/model/RelationshipTlsSubscriptionTlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberTlsSubscription from './RelationshipMemberTlsSubscripti
/**
* The RelationshipTlsSubscriptionTlsSubscription model module.
* @module model/RelationshipTlsSubscriptionTlsSubscription
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsSubscriptionTlsSubscription {
/**
diff --git a/src/model/RelationshipTlsSubscriptions.js b/src/model/RelationshipTlsSubscriptions.js
index cde641c6a..1eafbf969 100644
--- a/src/model/RelationshipTlsSubscriptions.js
+++ b/src/model/RelationshipTlsSubscriptions.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipTlsSubscriptionTlsSubscription from './RelationshipTlsSubscri
/**
* The RelationshipTlsSubscriptions model module.
* @module model/RelationshipTlsSubscriptions
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipTlsSubscriptions {
/**
diff --git a/src/model/RelationshipUser.js b/src/model/RelationshipUser.js
index 3fe8efdea..79c0e4b9b 100644
--- a/src/model/RelationshipUser.js
+++ b/src/model/RelationshipUser.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipUserUser from './RelationshipUserUser';
/**
* The RelationshipUser model module.
* @module model/RelationshipUser
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipUser {
/**
diff --git a/src/model/RelationshipUserUser.js b/src/model/RelationshipUserUser.js
index 6aaa215c3..d1bf0a156 100644
--- a/src/model/RelationshipUserUser.js
+++ b/src/model/RelationshipUserUser.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceAuthorizationDataRelationshipsUserData from './ServiceAuthorizatio
/**
* The RelationshipUserUser model module.
* @module model/RelationshipUserUser
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipUserUser {
/**
diff --git a/src/model/RelationshipWafActiveRules.js b/src/model/RelationshipWafActiveRules.js
index 6abcd7465..a348efc56 100644
--- a/src/model/RelationshipWafActiveRules.js
+++ b/src/model/RelationshipWafActiveRules.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafActiveRulesWafActiveRules from './RelationshipWafActiveRul
/**
* The RelationshipWafActiveRules model module.
* @module model/RelationshipWafActiveRules
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafActiveRules {
/**
diff --git a/src/model/RelationshipWafActiveRulesWafActiveRules.js b/src/model/RelationshipWafActiveRulesWafActiveRules.js
index 1c64f583c..c16e49cab 100644
--- a/src/model/RelationshipWafActiveRulesWafActiveRules.js
+++ b/src/model/RelationshipWafActiveRulesWafActiveRules.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberWafActiveRule from './RelationshipMemberWafActiveRule';
/**
* The RelationshipWafActiveRulesWafActiveRules model module.
* @module model/RelationshipWafActiveRulesWafActiveRules
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafActiveRulesWafActiveRules {
/**
diff --git a/src/model/RelationshipWafFirewall.js b/src/model/RelationshipWafFirewall.js
index eb2802002..4128a9b6c 100644
--- a/src/model/RelationshipWafFirewall.js
+++ b/src/model/RelationshipWafFirewall.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafFirewallWafFirewall from './RelationshipWafFirewallWafFire
/**
* The RelationshipWafFirewall model module.
* @module model/RelationshipWafFirewall
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafFirewall {
/**
diff --git a/src/model/RelationshipWafFirewallVersion.js b/src/model/RelationshipWafFirewallVersion.js
index 89d4146ec..1ad89fc2c 100644
--- a/src/model/RelationshipWafFirewallVersion.js
+++ b/src/model/RelationshipWafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafFirewallVersionWafFirewallVersion from './RelationshipWafF
/**
* The RelationshipWafFirewallVersion model module.
* @module model/RelationshipWafFirewallVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafFirewallVersion {
/**
diff --git a/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js b/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js
index ad2c7400a..53992ea0b 100644
--- a/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js
+++ b/src/model/RelationshipWafFirewallVersionWafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberWafFirewallVersion from './RelationshipMemberWafFirewal
/**
* The RelationshipWafFirewallVersionWafFirewallVersion model module.
* @module model/RelationshipWafFirewallVersionWafFirewallVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafFirewallVersionWafFirewallVersion {
/**
diff --git a/src/model/RelationshipWafFirewallVersions.js b/src/model/RelationshipWafFirewallVersions.js
index 1a10368c5..1603e3e90 100644
--- a/src/model/RelationshipWafFirewallVersions.js
+++ b/src/model/RelationshipWafFirewallVersions.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafFirewallVersionWafFirewallVersion from './RelationshipWafF
/**
* The RelationshipWafFirewallVersions model module.
* @module model/RelationshipWafFirewallVersions
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafFirewallVersions {
/**
diff --git a/src/model/RelationshipWafFirewallWafFirewall.js b/src/model/RelationshipWafFirewallWafFirewall.js
index f97ef4557..791541017 100644
--- a/src/model/RelationshipWafFirewallWafFirewall.js
+++ b/src/model/RelationshipWafFirewallWafFirewall.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberWafFirewall from './RelationshipMemberWafFirewall';
/**
* The RelationshipWafFirewallWafFirewall model module.
* @module model/RelationshipWafFirewallWafFirewall
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafFirewallWafFirewall {
/**
diff --git a/src/model/RelationshipWafRule.js b/src/model/RelationshipWafRule.js
index 49bcda93e..fd6cf4033 100644
--- a/src/model/RelationshipWafRule.js
+++ b/src/model/RelationshipWafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafRuleWafRule from './RelationshipWafRuleWafRule';
/**
* The RelationshipWafRule model module.
* @module model/RelationshipWafRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafRule {
/**
diff --git a/src/model/RelationshipWafRuleRevision.js b/src/model/RelationshipWafRuleRevision.js
index 1e313c55b..2cc22e7b2 100644
--- a/src/model/RelationshipWafRuleRevision.js
+++ b/src/model/RelationshipWafRuleRevision.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The RelationshipWafRuleRevision model module.
* @module model/RelationshipWafRuleRevision
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafRuleRevision {
/**
diff --git a/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js b/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js
index 0ab8e116d..14c76b228 100644
--- a/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js
+++ b/src/model/RelationshipWafRuleRevisionWafRuleRevisions.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberWafRuleRevision from './RelationshipMemberWafRuleRevisi
/**
* The RelationshipWafRuleRevisionWafRuleRevisions model module.
* @module model/RelationshipWafRuleRevisionWafRuleRevisions
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafRuleRevisionWafRuleRevisions {
/**
diff --git a/src/model/RelationshipWafRuleRevisions.js b/src/model/RelationshipWafRuleRevisions.js
index 056f5063f..1863010ae 100644
--- a/src/model/RelationshipWafRuleRevisions.js
+++ b/src/model/RelationshipWafRuleRevisions.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The RelationshipWafRuleRevisions model module.
* @module model/RelationshipWafRuleRevisions
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafRuleRevisions {
/**
diff --git a/src/model/RelationshipWafRuleWafRule.js b/src/model/RelationshipWafRuleWafRule.js
index c64e79145..d24487c06 100644
--- a/src/model/RelationshipWafRuleWafRule.js
+++ b/src/model/RelationshipWafRuleWafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberWafRule from './RelationshipMemberWafRule';
/**
* The RelationshipWafRuleWafRule model module.
* @module model/RelationshipWafRuleWafRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafRuleWafRule {
/**
diff --git a/src/model/RelationshipWafRules.js b/src/model/RelationshipWafRules.js
index c65241338..965c4da00 100644
--- a/src/model/RelationshipWafRules.js
+++ b/src/model/RelationshipWafRules.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafRuleWafRule from './RelationshipWafRuleWafRule';
/**
* The RelationshipWafRules model module.
* @module model/RelationshipWafRules
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafRules {
/**
diff --git a/src/model/RelationshipWafTags.js b/src/model/RelationshipWafTags.js
index e27eeee8e..689b044c0 100644
--- a/src/model/RelationshipWafTags.js
+++ b/src/model/RelationshipWafTags.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafTagsWafTags from './RelationshipWafTagsWafTags';
/**
* The RelationshipWafTags model module.
* @module model/RelationshipWafTags
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafTags {
/**
diff --git a/src/model/RelationshipWafTagsWafTags.js b/src/model/RelationshipWafTagsWafTags.js
index f2cc36685..27dd38b45 100644
--- a/src/model/RelationshipWafTagsWafTags.js
+++ b/src/model/RelationshipWafTagsWafTags.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberWafTag from './RelationshipMemberWafTag';
/**
* The RelationshipWafTagsWafTags model module.
* @module model/RelationshipWafTagsWafTags
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipWafTagsWafTags {
/**
diff --git a/src/model/RelationshipsForInvitation.js b/src/model/RelationshipsForInvitation.js
index e3a23a1ae..60c65a3c1 100644
--- a/src/model/RelationshipsForInvitation.js
+++ b/src/model/RelationshipsForInvitation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipServiceInvitationsServiceInvitations from './RelationshipServ
/**
* The RelationshipsForInvitation model module.
* @module model/RelationshipsForInvitation
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForInvitation {
/**
diff --git a/src/model/RelationshipsForMutualAuthentication.js b/src/model/RelationshipsForMutualAuthentication.js
index da8a231c0..1fbe55d86 100644
--- a/src/model/RelationshipsForMutualAuthentication.js
+++ b/src/model/RelationshipsForMutualAuthentication.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import RelationshipTlsActivations from './RelationshipTlsActivations';
/**
* The RelationshipsForMutualAuthentication model module.
* @module model/RelationshipsForMutualAuthentication
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForMutualAuthentication {
/**
diff --git a/src/model/RelationshipsForStar.js b/src/model/RelationshipsForStar.js
index 321d0e46c..1527efd84 100644
--- a/src/model/RelationshipsForStar.js
+++ b/src/model/RelationshipsForStar.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipUserUser from './RelationshipUserUser';
/**
* The RelationshipsForStar model module.
* @module model/RelationshipsForStar
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForStar {
/**
diff --git a/src/model/RelationshipsForTlsActivation.js b/src/model/RelationshipsForTlsActivation.js
index ee48497d3..bbf56f479 100644
--- a/src/model/RelationshipsForTlsActivation.js
+++ b/src/model/RelationshipsForTlsActivation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import RelationshipTlsDomainTlsDomain from './RelationshipTlsDomainTlsDomain';
/**
* The RelationshipsForTlsActivation model module.
* @module model/RelationshipsForTlsActivation
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForTlsActivation {
/**
diff --git a/src/model/RelationshipsForTlsBulkCertificate.js b/src/model/RelationshipsForTlsBulkCertificate.js
index a6e833618..f9913db21 100644
--- a/src/model/RelationshipsForTlsBulkCertificate.js
+++ b/src/model/RelationshipsForTlsBulkCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipsForTlsBulkCertificate model module.
* @module model/RelationshipsForTlsBulkCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForTlsBulkCertificate {
/**
diff --git a/src/model/RelationshipsForTlsConfiguration.js b/src/model/RelationshipsForTlsConfiguration.js
index 4b484afd6..37fac8405 100644
--- a/src/model/RelationshipsForTlsConfiguration.js
+++ b/src/model/RelationshipsForTlsConfiguration.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The RelationshipsForTlsConfiguration model module.
* @module model/RelationshipsForTlsConfiguration
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForTlsConfiguration {
/**
diff --git a/src/model/RelationshipsForTlsDomain.js b/src/model/RelationshipsForTlsDomain.js
index a40f7a038..f057be176 100644
--- a/src/model/RelationshipsForTlsDomain.js
+++ b/src/model/RelationshipsForTlsDomain.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import RelationshipTlsSubscriptions from './RelationshipTlsSubscriptions';
/**
* The RelationshipsForTlsDomain model module.
* @module model/RelationshipsForTlsDomain
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForTlsDomain {
/**
diff --git a/src/model/RelationshipsForTlsPrivateKey.js b/src/model/RelationshipsForTlsPrivateKey.js
index 46b100e2a..70ce5d4fd 100644
--- a/src/model/RelationshipsForTlsPrivateKey.js
+++ b/src/model/RelationshipsForTlsPrivateKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipsForTlsPrivateKey model module.
* @module model/RelationshipsForTlsPrivateKey
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForTlsPrivateKey {
/**
diff --git a/src/model/RelationshipsForTlsSubscription.js b/src/model/RelationshipsForTlsSubscription.js
index be36ad39b..d48d7e8bb 100644
--- a/src/model/RelationshipsForTlsSubscription.js
+++ b/src/model/RelationshipsForTlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -23,7 +23,7 @@ import RelationshipTlsDomainsTlsDomains from './RelationshipTlsDomainsTlsDomains
/**
* The RelationshipsForTlsSubscription model module.
* @module model/RelationshipsForTlsSubscription
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForTlsSubscription {
/**
diff --git a/src/model/RelationshipsForWafActiveRule.js b/src/model/RelationshipsForWafActiveRule.js
index 992fdd098..e060022bc 100644
--- a/src/model/RelationshipsForWafActiveRule.js
+++ b/src/model/RelationshipsForWafActiveRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The RelationshipsForWafActiveRule model module.
* @module model/RelationshipsForWafActiveRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForWafActiveRule {
/**
diff --git a/src/model/RelationshipsForWafExclusion.js b/src/model/RelationshipsForWafExclusion.js
index d5017bb57..d9b597b26 100644
--- a/src/model/RelationshipsForWafExclusion.js
+++ b/src/model/RelationshipsForWafExclusion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipWafRules from './RelationshipWafRules';
/**
* The RelationshipsForWafExclusion model module.
* @module model/RelationshipsForWafExclusion
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForWafExclusion {
/**
diff --git a/src/model/RelationshipsForWafFirewallVersion.js b/src/model/RelationshipsForWafFirewallVersion.js
index a47801a76..185cf77d8 100644
--- a/src/model/RelationshipsForWafFirewallVersion.js
+++ b/src/model/RelationshipsForWafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipWafFirewallVersions from './RelationshipWafFirewallVersions';
/**
* The RelationshipsForWafFirewallVersion model module.
* @module model/RelationshipsForWafFirewallVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForWafFirewallVersion {
/**
diff --git a/src/model/RelationshipsForWafRule.js b/src/model/RelationshipsForWafRule.js
index b6ea15d3b..6b6f7dd51 100644
--- a/src/model/RelationshipsForWafRule.js
+++ b/src/model/RelationshipsForWafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipWafTagsWafTags from './RelationshipWafTagsWafTags';
/**
* The RelationshipsForWafRule model module.
* @module model/RelationshipsForWafRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class RelationshipsForWafRule {
/**
diff --git a/src/model/RequestSettingsAdditional.js b/src/model/RequestSettingsAdditional.js
index 94c894c72..d02a95db3 100644
--- a/src/model/RequestSettingsAdditional.js
+++ b/src/model/RequestSettingsAdditional.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RequestSettingsAdditional model module.
* @module model/RequestSettingsAdditional
- * @version 7.2.0
+ * @version 7.3.0
*/
class RequestSettingsAdditional {
/**
diff --git a/src/model/RequestSettingsResponse.js b/src/model/RequestSettingsResponse.js
index 413288bc4..b8e92c150 100644
--- a/src/model/RequestSettingsResponse.js
+++ b/src/model/RequestSettingsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The RequestSettingsResponse model module.
* @module model/RequestSettingsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class RequestSettingsResponse {
/**
diff --git a/src/model/RequestSettingsResponseAllOf.js b/src/model/RequestSettingsResponseAllOf.js
index 898902415..cf18f750a 100644
--- a/src/model/RequestSettingsResponseAllOf.js
+++ b/src/model/RequestSettingsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The RequestSettingsResponseAllOf model module.
* @module model/RequestSettingsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class RequestSettingsResponseAllOf {
/**
diff --git a/src/model/Resource.js b/src/model/Resource.js
index f8f7d3d6a..104e7f200 100644
--- a/src/model/Resource.js
+++ b/src/model/Resource.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Resource model module.
* @module model/Resource
- * @version 7.2.0
+ * @version 7.3.0
*/
class Resource {
/**
diff --git a/src/model/ResourceResponse.js b/src/model/ResourceResponse.js
index d9a421a13..946fc3e6f 100644
--- a/src/model/ResourceResponse.js
+++ b/src/model/ResourceResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import TypeResource from './TypeResource';
/**
* The ResourceResponse model module.
* @module model/ResourceResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ResourceResponse {
/**
diff --git a/src/model/ResourceResponseAllOf.js b/src/model/ResourceResponseAllOf.js
index c6928d163..810f05762 100644
--- a/src/model/ResourceResponseAllOf.js
+++ b/src/model/ResourceResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeResource from './TypeResource';
/**
* The ResourceResponseAllOf model module.
* @module model/ResourceResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ResourceResponseAllOf {
/**
diff --git a/src/model/ResponseObject.js b/src/model/ResponseObject.js
index eae1d062d..74d35c47a 100644
--- a/src/model/ResponseObject.js
+++ b/src/model/ResponseObject.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ResponseObject model module.
* @module model/ResponseObject
- * @version 7.2.0
+ * @version 7.3.0
*/
class ResponseObject {
/**
diff --git a/src/model/ResponseObjectResponse.js b/src/model/ResponseObjectResponse.js
index 9a7d3f158..75cdc3d6a 100644
--- a/src/model/ResponseObjectResponse.js
+++ b/src/model/ResponseObjectResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The ResponseObjectResponse model module.
* @module model/ResponseObjectResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ResponseObjectResponse {
/**
diff --git a/src/model/Results.js b/src/model/Results.js
index 51a788e09..dca9aa152 100644
--- a/src/model/Results.js
+++ b/src/model/Results.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Results model module.
* @module model/Results
- * @version 7.2.0
+ * @version 7.3.0
*/
class Results {
/**
diff --git a/src/model/RoleUser.js b/src/model/RoleUser.js
index 017f94e19..259668d7a 100644
--- a/src/model/RoleUser.js
+++ b/src/model/RoleUser.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/SchemasContactResponse.js b/src/model/SchemasContactResponse.js
index eb28dd4c1..5d3a7798a 100644
--- a/src/model/SchemasContactResponse.js
+++ b/src/model/SchemasContactResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The SchemasContactResponse model module.
* @module model/SchemasContactResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasContactResponse {
/**
diff --git a/src/model/SchemasSnippetResponse.js b/src/model/SchemasSnippetResponse.js
index 1714e7306..4ff851b40 100644
--- a/src/model/SchemasSnippetResponse.js
+++ b/src/model/SchemasSnippetResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Snippet from './Snippet';
/**
* The SchemasSnippetResponse model module.
* @module model/SchemasSnippetResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasSnippetResponse {
/**
diff --git a/src/model/SchemasSnippetResponseCommon.js b/src/model/SchemasSnippetResponseCommon.js
index 44df2e30e..23b5b5a9c 100644
--- a/src/model/SchemasSnippetResponseCommon.js
+++ b/src/model/SchemasSnippetResponseCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The SchemasSnippetResponseCommon model module.
* @module model/SchemasSnippetResponseCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasSnippetResponseCommon {
/**
diff --git a/src/model/SchemasUserResponse.js b/src/model/SchemasUserResponse.js
index ba1e91b75..ca42bfbd9 100644
--- a/src/model/SchemasUserResponse.js
+++ b/src/model/SchemasUserResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import User from './User';
/**
* The SchemasUserResponse model module.
* @module model/SchemasUserResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasUserResponse {
/**
diff --git a/src/model/SchemasUserResponseReadOnly.js b/src/model/SchemasUserResponseReadOnly.js
index 935c3a4cd..4f115e80e 100644
--- a/src/model/SchemasUserResponseReadOnly.js
+++ b/src/model/SchemasUserResponseReadOnly.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SchemasUserResponseReadOnly model module.
* @module model/SchemasUserResponseReadOnly
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasUserResponseReadOnly {
/**
diff --git a/src/model/SchemasVclResponse.js b/src/model/SchemasVclResponse.js
index 7c2bca6e2..a9a57c542 100644
--- a/src/model/SchemasVclResponse.js
+++ b/src/model/SchemasVclResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Vcl from './Vcl';
/**
* The SchemasVclResponse model module.
* @module model/SchemasVclResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasVclResponse {
/**
diff --git a/src/model/SchemasVersion.js b/src/model/SchemasVersion.js
index 6c4fc1f99..8f35e3c03 100644
--- a/src/model/SchemasVersion.js
+++ b/src/model/SchemasVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SchemasVersion model module.
* @module model/SchemasVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasVersion {
/**
diff --git a/src/model/SchemasVersionResponse.js b/src/model/SchemasVersionResponse.js
index 557b83f6b..8b938ba1a 100644
--- a/src/model/SchemasVersionResponse.js
+++ b/src/model/SchemasVersionResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import VersionResponseAllOf from './VersionResponseAllOf';
/**
* The SchemasVersionResponse model module.
* @module model/SchemasVersionResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasVersionResponse {
/**
diff --git a/src/model/SchemasWafFirewallVersion.js b/src/model/SchemasWafFirewallVersion.js
index 5983caef1..4c1723988 100644
--- a/src/model/SchemasWafFirewallVersion.js
+++ b/src/model/SchemasWafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import SchemasWafFirewallVersionData from './SchemasWafFirewallVersionData';
/**
* The SchemasWafFirewallVersion model module.
* @module model/SchemasWafFirewallVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasWafFirewallVersion {
/**
diff --git a/src/model/SchemasWafFirewallVersionData.js b/src/model/SchemasWafFirewallVersionData.js
index 10119b603..0a2217aa8 100644
--- a/src/model/SchemasWafFirewallVersionData.js
+++ b/src/model/SchemasWafFirewallVersionData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallVersionDataAttributes from './WafFirewallVersionDataAttributes
/**
* The SchemasWafFirewallVersionData model module.
* @module model/SchemasWafFirewallVersionData
- * @version 7.2.0
+ * @version 7.3.0
*/
class SchemasWafFirewallVersionData {
/**
diff --git a/src/model/Secret.js b/src/model/Secret.js
index 8f342d247..4283ff847 100644
--- a/src/model/Secret.js
+++ b/src/model/Secret.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Secret model module.
* @module model/Secret
- * @version 7.2.0
+ * @version 7.3.0
*/
class Secret {
/**
diff --git a/src/model/SecretResponse.js b/src/model/SecretResponse.js
index 6adb63aa3..d02ef0ff9 100644
--- a/src/model/SecretResponse.js
+++ b/src/model/SecretResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SecretResponse model module.
* @module model/SecretResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SecretResponse {
/**
diff --git a/src/model/SecretStore.js b/src/model/SecretStore.js
index 0d0f1c3f1..002e6b6ec 100644
--- a/src/model/SecretStore.js
+++ b/src/model/SecretStore.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SecretStore model module.
* @module model/SecretStore
- * @version 7.2.0
+ * @version 7.3.0
*/
class SecretStore {
/**
diff --git a/src/model/SecretStoreResponse.js b/src/model/SecretStoreResponse.js
index ad9233570..531064e8e 100644
--- a/src/model/SecretStoreResponse.js
+++ b/src/model/SecretStoreResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SecretStoreResponse model module.
* @module model/SecretStoreResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SecretStoreResponse {
/**
diff --git a/src/model/Server.js b/src/model/Server.js
index 5d0db8e4f..705d831e2 100644
--- a/src/model/Server.js
+++ b/src/model/Server.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Server model module.
* @module model/Server
- * @version 7.2.0
+ * @version 7.3.0
*/
class Server {
/**
diff --git a/src/model/ServerResponse.js b/src/model/ServerResponse.js
index 02d12be91..d02bd8159 100644
--- a/src/model/ServerResponse.js
+++ b/src/model/ServerResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Timestamps from './Timestamps';
/**
* The ServerResponse model module.
* @module model/ServerResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServerResponse {
/**
diff --git a/src/model/ServerResponseAllOf.js b/src/model/ServerResponseAllOf.js
index d735ac515..f3c825e0b 100644
--- a/src/model/ServerResponseAllOf.js
+++ b/src/model/ServerResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServerResponseAllOf model module.
* @module model/ServerResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServerResponseAllOf {
/**
diff --git a/src/model/Service.js b/src/model/Service.js
index 867bf7d4c..c3a0fad62 100644
--- a/src/model/Service.js
+++ b/src/model/Service.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Service model module.
* @module model/Service
- * @version 7.2.0
+ * @version 7.3.0
*/
class Service {
/**
diff --git a/src/model/ServiceAuthorization.js b/src/model/ServiceAuthorization.js
index 6b29a4513..e70c56bf1 100644
--- a/src/model/ServiceAuthorization.js
+++ b/src/model/ServiceAuthorization.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceAuthorizationData from './ServiceAuthorizationData';
/**
* The ServiceAuthorization model module.
* @module model/ServiceAuthorization
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorization {
/**
diff --git a/src/model/ServiceAuthorizationData.js b/src/model/ServiceAuthorizationData.js
index 923dedb96..30d7e77eb 100644
--- a/src/model/ServiceAuthorizationData.js
+++ b/src/model/ServiceAuthorizationData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeServiceAuthorization from './TypeServiceAuthorization';
/**
* The ServiceAuthorizationData model module.
* @module model/ServiceAuthorizationData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationData {
/**
diff --git a/src/model/ServiceAuthorizationDataAttributes.js b/src/model/ServiceAuthorizationDataAttributes.js
index c6220b4d4..284372945 100644
--- a/src/model/ServiceAuthorizationDataAttributes.js
+++ b/src/model/ServiceAuthorizationDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Permission from './Permission';
/**
* The ServiceAuthorizationDataAttributes model module.
* @module model/ServiceAuthorizationDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationDataAttributes {
/**
diff --git a/src/model/ServiceAuthorizationDataRelationships.js b/src/model/ServiceAuthorizationDataRelationships.js
index 7c6ae1aa1..4fa12a27b 100644
--- a/src/model/ServiceAuthorizationDataRelationships.js
+++ b/src/model/ServiceAuthorizationDataRelationships.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import ServiceAuthorizationDataRelationshipsUser from './ServiceAuthorizationDat
/**
* The ServiceAuthorizationDataRelationships model module.
* @module model/ServiceAuthorizationDataRelationships
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationDataRelationships {
/**
diff --git a/src/model/ServiceAuthorizationDataRelationshipsUser.js b/src/model/ServiceAuthorizationDataRelationshipsUser.js
index 0caeed8a2..182eaa22d 100644
--- a/src/model/ServiceAuthorizationDataRelationshipsUser.js
+++ b/src/model/ServiceAuthorizationDataRelationshipsUser.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceAuthorizationDataRelationshipsUserData from './ServiceAuthorizatio
/**
* The ServiceAuthorizationDataRelationshipsUser model module.
* @module model/ServiceAuthorizationDataRelationshipsUser
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationDataRelationshipsUser {
/**
diff --git a/src/model/ServiceAuthorizationDataRelationshipsUserData.js b/src/model/ServiceAuthorizationDataRelationshipsUserData.js
index 72259a55b..3e38e7a2f 100644
--- a/src/model/ServiceAuthorizationDataRelationshipsUserData.js
+++ b/src/model/ServiceAuthorizationDataRelationshipsUserData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TypeUser from './TypeUser';
/**
* The ServiceAuthorizationDataRelationshipsUserData model module.
* @module model/ServiceAuthorizationDataRelationshipsUserData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationDataRelationshipsUserData {
/**
diff --git a/src/model/ServiceAuthorizationResponse.js b/src/model/ServiceAuthorizationResponse.js
index fe68f5ca0..10ee4b058 100644
--- a/src/model/ServiceAuthorizationResponse.js
+++ b/src/model/ServiceAuthorizationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceAuthorizationResponseData from './ServiceAuthorizationResponseData
/**
* The ServiceAuthorizationResponse model module.
* @module model/ServiceAuthorizationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationResponse {
/**
diff --git a/src/model/ServiceAuthorizationResponseData.js b/src/model/ServiceAuthorizationResponseData.js
index f8df94f44..a8646b31d 100644
--- a/src/model/ServiceAuthorizationResponseData.js
+++ b/src/model/ServiceAuthorizationResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeServiceAuthorization from './TypeServiceAuthorization';
/**
* The ServiceAuthorizationResponseData model module.
* @module model/ServiceAuthorizationResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationResponseData {
/**
diff --git a/src/model/ServiceAuthorizationResponseDataAllOf.js b/src/model/ServiceAuthorizationResponseDataAllOf.js
index 19fe44ace..2fb4e69f2 100644
--- a/src/model/ServiceAuthorizationResponseDataAllOf.js
+++ b/src/model/ServiceAuthorizationResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceAuthorizationResponseDataAllOf model module.
* @module model/ServiceAuthorizationResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationResponseDataAllOf {
/**
diff --git a/src/model/ServiceAuthorizationsResponse.js b/src/model/ServiceAuthorizationsResponse.js
index 8862bba3b..5c43bd1f5 100644
--- a/src/model/ServiceAuthorizationsResponse.js
+++ b/src/model/ServiceAuthorizationsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import ServiceAuthorizationsResponseAllOf from './ServiceAuthorizationsResponseA
/**
* The ServiceAuthorizationsResponse model module.
* @module model/ServiceAuthorizationsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationsResponse {
/**
diff --git a/src/model/ServiceAuthorizationsResponseAllOf.js b/src/model/ServiceAuthorizationsResponseAllOf.js
index 10a97977f..6834084b4 100644
--- a/src/model/ServiceAuthorizationsResponseAllOf.js
+++ b/src/model/ServiceAuthorizationsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceAuthorizationResponseData from './ServiceAuthorizationResponseData
/**
* The ServiceAuthorizationsResponseAllOf model module.
* @module model/ServiceAuthorizationsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceAuthorizationsResponseAllOf {
/**
diff --git a/src/model/ServiceCreate.js b/src/model/ServiceCreate.js
index 8db18b77a..3a1cbcd12 100644
--- a/src/model/ServiceCreate.js
+++ b/src/model/ServiceCreate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import ServiceCreateAllOf from './ServiceCreateAllOf';
/**
* The ServiceCreate model module.
* @module model/ServiceCreate
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceCreate {
/**
diff --git a/src/model/ServiceCreateAllOf.js b/src/model/ServiceCreateAllOf.js
index a16e52529..9854c5d19 100644
--- a/src/model/ServiceCreateAllOf.js
+++ b/src/model/ServiceCreateAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceCreateAllOf model module.
* @module model/ServiceCreateAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceCreateAllOf {
/**
diff --git a/src/model/ServiceDetail.js b/src/model/ServiceDetail.js
index a95afaea7..9ccba1082 100644
--- a/src/model/ServiceDetail.js
+++ b/src/model/ServiceDetail.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import ServiceVersionDetailOrNull from './ServiceVersionDetailOrNull';
/**
* The ServiceDetail model module.
* @module model/ServiceDetail
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceDetail {
/**
diff --git a/src/model/ServiceDetailAllOf.js b/src/model/ServiceDetailAllOf.js
index de7934ae1..bfbba1f3c 100644
--- a/src/model/ServiceDetailAllOf.js
+++ b/src/model/ServiceDetailAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import ServiceVersionDetailOrNull from './ServiceVersionDetailOrNull';
/**
* The ServiceDetailAllOf model module.
* @module model/ServiceDetailAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceDetailAllOf {
/**
diff --git a/src/model/ServiceIdAndVersion.js b/src/model/ServiceIdAndVersion.js
index b08d93c09..0ce593162 100644
--- a/src/model/ServiceIdAndVersion.js
+++ b/src/model/ServiceIdAndVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceIdAndVersion model module.
* @module model/ServiceIdAndVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceIdAndVersion {
/**
diff --git a/src/model/ServiceIdAndVersionString.js b/src/model/ServiceIdAndVersionString.js
index d2027eeff..679b7fcc7 100644
--- a/src/model/ServiceIdAndVersionString.js
+++ b/src/model/ServiceIdAndVersionString.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceIdAndVersionString model module.
* @module model/ServiceIdAndVersionString
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceIdAndVersionString {
/**
diff --git a/src/model/ServiceInvitation.js b/src/model/ServiceInvitation.js
index f81ace558..ed8412d0c 100644
--- a/src/model/ServiceInvitation.js
+++ b/src/model/ServiceInvitation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceInvitationData from './ServiceInvitationData';
/**
* The ServiceInvitation model module.
* @module model/ServiceInvitation
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitation {
/**
diff --git a/src/model/ServiceInvitationData.js b/src/model/ServiceInvitationData.js
index 40853dc59..5cf1d0e20 100644
--- a/src/model/ServiceInvitationData.js
+++ b/src/model/ServiceInvitationData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeServiceInvitation from './TypeServiceInvitation';
/**
* The ServiceInvitationData model module.
* @module model/ServiceInvitationData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitationData {
/**
diff --git a/src/model/ServiceInvitationDataAttributes.js b/src/model/ServiceInvitationDataAttributes.js
index b05c098a2..3a772b69d 100644
--- a/src/model/ServiceInvitationDataAttributes.js
+++ b/src/model/ServiceInvitationDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ServiceInvitationDataAttributes model module.
* @module model/ServiceInvitationDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitationDataAttributes {
/**
diff --git a/src/model/ServiceInvitationDataRelationships.js b/src/model/ServiceInvitationDataRelationships.js
index 582bb1bfe..67f9c3e41 100644
--- a/src/model/ServiceInvitationDataRelationships.js
+++ b/src/model/ServiceInvitationDataRelationships.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipMemberService from './RelationshipMemberService';
/**
* The ServiceInvitationDataRelationships model module.
* @module model/ServiceInvitationDataRelationships
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitationDataRelationships {
/**
diff --git a/src/model/ServiceInvitationResponse.js b/src/model/ServiceInvitationResponse.js
index f8426d7df..d3bb91b4f 100644
--- a/src/model/ServiceInvitationResponse.js
+++ b/src/model/ServiceInvitationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import ServiceInvitationResponseAllOfData from './ServiceInvitationResponseAllOf
/**
* The ServiceInvitationResponse model module.
* @module model/ServiceInvitationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitationResponse {
/**
diff --git a/src/model/ServiceInvitationResponseAllOf.js b/src/model/ServiceInvitationResponseAllOf.js
index 32579500a..a39dda9e5 100644
--- a/src/model/ServiceInvitationResponseAllOf.js
+++ b/src/model/ServiceInvitationResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ServiceInvitationResponseAllOfData from './ServiceInvitationResponseAllOf
/**
* The ServiceInvitationResponseAllOf model module.
* @module model/ServiceInvitationResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitationResponseAllOf {
/**
diff --git a/src/model/ServiceInvitationResponseAllOfData.js b/src/model/ServiceInvitationResponseAllOfData.js
index 28b057a62..f6fff6b7f 100644
--- a/src/model/ServiceInvitationResponseAllOfData.js
+++ b/src/model/ServiceInvitationResponseAllOfData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceInvitationResponseAllOfData model module.
* @module model/ServiceInvitationResponseAllOfData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceInvitationResponseAllOfData {
/**
diff --git a/src/model/ServiceListResponse.js b/src/model/ServiceListResponse.js
index 853f6f78c..64c3b5f17 100644
--- a/src/model/ServiceListResponse.js
+++ b/src/model/ServiceListResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceListResponse model module.
* @module model/ServiceListResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceListResponse {
/**
diff --git a/src/model/ServiceListResponseAllOf.js b/src/model/ServiceListResponseAllOf.js
index 00db2a63b..55fe6da07 100644
--- a/src/model/ServiceListResponseAllOf.js
+++ b/src/model/ServiceListResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import SchemasVersionResponse from './SchemasVersionResponse';
/**
* The ServiceListResponseAllOf model module.
* @module model/ServiceListResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceListResponseAllOf {
/**
diff --git a/src/model/ServiceResponse.js b/src/model/ServiceResponse.js
index e71d9e9b2..75ed15880 100644
--- a/src/model/ServiceResponse.js
+++ b/src/model/ServiceResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import Timestamps from './Timestamps';
/**
* The ServiceResponse model module.
* @module model/ServiceResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceResponse {
/**
diff --git a/src/model/ServiceResponseAllOf.js b/src/model/ServiceResponseAllOf.js
index da7cc295e..b250a51d4 100644
--- a/src/model/ServiceResponseAllOf.js
+++ b/src/model/ServiceResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import SchemasVersionResponse from './SchemasVersionResponse';
/**
* The ServiceResponseAllOf model module.
* @module model/ServiceResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceResponseAllOf {
/**
diff --git a/src/model/ServiceVersionDetail.js b/src/model/ServiceVersionDetail.js
index 56f690da6..775a2a1a7 100644
--- a/src/model/ServiceVersionDetail.js
+++ b/src/model/ServiceVersionDetail.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -30,7 +30,7 @@ import VersionDetailSettings from './VersionDetailSettings';
/**
* The ServiceVersionDetail model module.
* @module model/ServiceVersionDetail
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceVersionDetail {
/**
diff --git a/src/model/ServiceVersionDetailOrNull.js b/src/model/ServiceVersionDetailOrNull.js
index 2273090cb..5c04b5579 100644
--- a/src/model/ServiceVersionDetailOrNull.js
+++ b/src/model/ServiceVersionDetailOrNull.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -30,7 +30,7 @@ import VersionDetailSettings from './VersionDetailSettings';
/**
* The ServiceVersionDetailOrNull model module.
* @module model/ServiceVersionDetailOrNull
- * @version 7.2.0
+ * @version 7.3.0
*/
class ServiceVersionDetailOrNull {
/**
diff --git a/src/model/Settings.js b/src/model/Settings.js
index e9d785152..280517cbe 100644
--- a/src/model/Settings.js
+++ b/src/model/Settings.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Settings model module.
* @module model/Settings
- * @version 7.2.0
+ * @version 7.3.0
*/
class Settings {
/**
diff --git a/src/model/SettingsResponse.js b/src/model/SettingsResponse.js
index 45b52977e..b4d0e1660 100644
--- a/src/model/SettingsResponse.js
+++ b/src/model/SettingsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Settings from './Settings';
/**
* The SettingsResponse model module.
* @module model/SettingsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SettingsResponse {
/**
diff --git a/src/model/SigningKey.js b/src/model/SigningKey.js
index f3c55852d..11a35ba27 100644
--- a/src/model/SigningKey.js
+++ b/src/model/SigningKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SigningKey model module.
* @module model/SigningKey
- * @version 7.2.0
+ * @version 7.3.0
*/
class SigningKey {
/**
diff --git a/src/model/Snippet.js b/src/model/Snippet.js
index aaa2b38ca..8321ae747 100644
--- a/src/model/Snippet.js
+++ b/src/model/Snippet.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SnippetCommon from './SnippetCommon';
/**
* The Snippet model module.
* @module model/Snippet
- * @version 7.2.0
+ * @version 7.3.0
*/
class Snippet {
/**
diff --git a/src/model/SnippetAllOf.js b/src/model/SnippetAllOf.js
index a2915ffc4..59f36db1d 100644
--- a/src/model/SnippetAllOf.js
+++ b/src/model/SnippetAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetAllOf model module.
* @module model/SnippetAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetAllOf {
/**
diff --git a/src/model/SnippetCommon.js b/src/model/SnippetCommon.js
index 1717cf708..61a960439 100644
--- a/src/model/SnippetCommon.js
+++ b/src/model/SnippetCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetCommon model module.
* @module model/SnippetCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetCommon {
/**
diff --git a/src/model/SnippetResponse.js b/src/model/SnippetResponse.js
index 1237df470..e8c90c3c9 100644
--- a/src/model/SnippetResponse.js
+++ b/src/model/SnippetResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SnippetResponseCommon from './SnippetResponseCommon';
/**
* The SnippetResponse model module.
* @module model/SnippetResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetResponse {
/**
diff --git a/src/model/SnippetResponseCommon.js b/src/model/SnippetResponseCommon.js
index 1cde312e9..012b6deab 100644
--- a/src/model/SnippetResponseCommon.js
+++ b/src/model/SnippetResponseCommon.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import Timestamps from './Timestamps';
/**
* The SnippetResponseCommon model module.
* @module model/SnippetResponseCommon
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetResponseCommon {
/**
diff --git a/src/model/SnippetResponseCommonAllOf.js b/src/model/SnippetResponseCommonAllOf.js
index 49ab51890..c3aaf9c8c 100644
--- a/src/model/SnippetResponseCommonAllOf.js
+++ b/src/model/SnippetResponseCommonAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetResponseCommonAllOf model module.
* @module model/SnippetResponseCommonAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetResponseCommonAllOf {
/**
diff --git a/src/model/SnippetResponsePost.js b/src/model/SnippetResponsePost.js
index 962911794..1519c2095 100644
--- a/src/model/SnippetResponsePost.js
+++ b/src/model/SnippetResponsePost.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SnippetWithDynamicNumber from './SnippetWithDynamicNumber';
/**
* The SnippetResponsePost model module.
* @module model/SnippetResponsePost
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetResponsePost {
/**
diff --git a/src/model/SnippetWithDynamicNumber.js b/src/model/SnippetWithDynamicNumber.js
index 191454489..1a37131d0 100644
--- a/src/model/SnippetWithDynamicNumber.js
+++ b/src/model/SnippetWithDynamicNumber.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import SnippetWithDynamicNumberAllOf from './SnippetWithDynamicNumberAllOf';
/**
* The SnippetWithDynamicNumber model module.
* @module model/SnippetWithDynamicNumber
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetWithDynamicNumber {
/**
diff --git a/src/model/SnippetWithDynamicNumberAllOf.js b/src/model/SnippetWithDynamicNumberAllOf.js
index c38f6190a..12d8ecd49 100644
--- a/src/model/SnippetWithDynamicNumberAllOf.js
+++ b/src/model/SnippetWithDynamicNumberAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SnippetWithDynamicNumberAllOf model module.
* @module model/SnippetWithDynamicNumberAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class SnippetWithDynamicNumberAllOf {
/**
diff --git a/src/model/Star.js b/src/model/Star.js
index 9832e9d57..f492509ed 100644
--- a/src/model/Star.js
+++ b/src/model/Star.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import StarData from './StarData';
/**
* The Star model module.
* @module model/Star
- * @version 7.2.0
+ * @version 7.3.0
*/
class Star {
/**
diff --git a/src/model/StarData.js b/src/model/StarData.js
index 50c94c601..11605b736 100644
--- a/src/model/StarData.js
+++ b/src/model/StarData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TypeStar from './TypeStar';
/**
* The StarData model module.
* @module model/StarData
- * @version 7.2.0
+ * @version 7.3.0
*/
class StarData {
/**
diff --git a/src/model/StarResponse.js b/src/model/StarResponse.js
index 4eb1d34e5..09b471501 100644
--- a/src/model/StarResponse.js
+++ b/src/model/StarResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import StarResponseAllOf from './StarResponseAllOf';
/**
* The StarResponse model module.
* @module model/StarResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class StarResponse {
/**
diff --git a/src/model/StarResponseAllOf.js b/src/model/StarResponseAllOf.js
index 306f0d5ee..211d47b31 100644
--- a/src/model/StarResponseAllOf.js
+++ b/src/model/StarResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The StarResponseAllOf model module.
* @module model/StarResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class StarResponseAllOf {
/**
diff --git a/src/model/Stats.js b/src/model/Stats.js
index 620ba9d39..a6560d570 100644
--- a/src/model/Stats.js
+++ b/src/model/Stats.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Results from './Results';
/**
* The Stats model module.
* @module model/Stats
- * @version 7.2.0
+ * @version 7.3.0
*/
class Stats {
/**
diff --git a/src/model/Store.js b/src/model/Store.js
index 98329c919..599c9005b 100644
--- a/src/model/Store.js
+++ b/src/model/Store.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Store model module.
* @module model/Store
- * @version 7.2.0
+ * @version 7.3.0
*/
class Store {
/**
diff --git a/src/model/StoreResponse.js b/src/model/StoreResponse.js
index 5b67ebc17..bae41518c 100644
--- a/src/model/StoreResponse.js
+++ b/src/model/StoreResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The StoreResponse model module.
* @module model/StoreResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class StoreResponse {
/**
diff --git a/src/model/SubsequentRequestTimestamp.js b/src/model/SubsequentRequestTimestamp.js
index ca0b87855..a3a230ce5 100644
--- a/src/model/SubsequentRequestTimestamp.js
+++ b/src/model/SubsequentRequestTimestamp.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SubsequentRequestTimestamp model module.
* @module model/SubsequentRequestTimestamp
- * @version 7.2.0
+ * @version 7.3.0
*/
class SubsequentRequestTimestamp {
/**
diff --git a/src/model/SudoGenericTokenError.js b/src/model/SudoGenericTokenError.js
index e604c9f25..527b1b6b3 100644
--- a/src/model/SudoGenericTokenError.js
+++ b/src/model/SudoGenericTokenError.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SudoGenericTokenError model module.
* @module model/SudoGenericTokenError
- * @version 7.2.0
+ * @version 7.3.0
*/
class SudoGenericTokenError {
/**
diff --git a/src/model/SudoRequest.js b/src/model/SudoRequest.js
index 18d073292..e094b00f8 100644
--- a/src/model/SudoRequest.js
+++ b/src/model/SudoRequest.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SudoRequest model module.
* @module model/SudoRequest
- * @version 7.2.0
+ * @version 7.3.0
*/
class SudoRequest {
/**
diff --git a/src/model/SudoResponse.js b/src/model/SudoResponse.js
index e38bf8d9d..89d5d8df7 100644
--- a/src/model/SudoResponse.js
+++ b/src/model/SudoResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The SudoResponse model module.
* @module model/SudoResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class SudoResponse {
/**
diff --git a/src/model/Timestamps.js b/src/model/Timestamps.js
index 5836318bd..eb860104b 100644
--- a/src/model/Timestamps.js
+++ b/src/model/Timestamps.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Timestamps model module.
* @module model/Timestamps
- * @version 7.2.0
+ * @version 7.3.0
*/
class Timestamps {
/**
diff --git a/src/model/TimestampsNoDelete.js b/src/model/TimestampsNoDelete.js
index ddef37be8..56001ad30 100644
--- a/src/model/TimestampsNoDelete.js
+++ b/src/model/TimestampsNoDelete.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TimestampsNoDelete model module.
* @module model/TimestampsNoDelete
- * @version 7.2.0
+ * @version 7.3.0
*/
class TimestampsNoDelete {
/**
diff --git a/src/model/TlsActivation.js b/src/model/TlsActivation.js
index 429e32cd5..3803cf963 100644
--- a/src/model/TlsActivation.js
+++ b/src/model/TlsActivation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsActivationData from './TlsActivationData';
/**
* The TlsActivation model module.
* @module model/TlsActivation
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivation {
/**
diff --git a/src/model/TlsActivationData.js b/src/model/TlsActivationData.js
index ab0e28829..0c67c33cd 100644
--- a/src/model/TlsActivationData.js
+++ b/src/model/TlsActivationData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TypeTlsActivation from './TypeTlsActivation';
/**
* The TlsActivationData model module.
* @module model/TlsActivationData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivationData {
/**
diff --git a/src/model/TlsActivationResponse.js b/src/model/TlsActivationResponse.js
index 496731ec2..2b81ea222 100644
--- a/src/model/TlsActivationResponse.js
+++ b/src/model/TlsActivationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsActivationResponseData from './TlsActivationResponseData';
/**
* The TlsActivationResponse model module.
* @module model/TlsActivationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivationResponse {
/**
diff --git a/src/model/TlsActivationResponseData.js b/src/model/TlsActivationResponseData.js
index 9085dfebf..c932e82d9 100644
--- a/src/model/TlsActivationResponseData.js
+++ b/src/model/TlsActivationResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeTlsActivation from './TypeTlsActivation';
/**
* The TlsActivationResponseData model module.
* @module model/TlsActivationResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivationResponseData {
/**
diff --git a/src/model/TlsActivationResponseDataAllOf.js b/src/model/TlsActivationResponseDataAllOf.js
index 22a7da34d..639d10e73 100644
--- a/src/model/TlsActivationResponseDataAllOf.js
+++ b/src/model/TlsActivationResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import Timestamps from './Timestamps';
/**
* The TlsActivationResponseDataAllOf model module.
* @module model/TlsActivationResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivationResponseDataAllOf {
/**
diff --git a/src/model/TlsActivationsResponse.js b/src/model/TlsActivationsResponse.js
index 3465e075d..e7848e463 100644
--- a/src/model/TlsActivationsResponse.js
+++ b/src/model/TlsActivationsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsActivationsResponseAllOf from './TlsActivationsResponseAllOf';
/**
* The TlsActivationsResponse model module.
* @module model/TlsActivationsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivationsResponse {
/**
diff --git a/src/model/TlsActivationsResponseAllOf.js b/src/model/TlsActivationsResponseAllOf.js
index 250e59528..c18c4ff07 100644
--- a/src/model/TlsActivationsResponseAllOf.js
+++ b/src/model/TlsActivationsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsActivationResponseData from './TlsActivationResponseData';
/**
* The TlsActivationsResponseAllOf model module.
* @module model/TlsActivationsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsActivationsResponseAllOf {
/**
diff --git a/src/model/TlsBulkCertificate.js b/src/model/TlsBulkCertificate.js
index 8c24cbeb7..c851cda6b 100644
--- a/src/model/TlsBulkCertificate.js
+++ b/src/model/TlsBulkCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsBulkCertificateData from './TlsBulkCertificateData';
/**
* The TlsBulkCertificate model module.
* @module model/TlsBulkCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificate {
/**
diff --git a/src/model/TlsBulkCertificateData.js b/src/model/TlsBulkCertificateData.js
index ef62d8472..4c7eded5b 100644
--- a/src/model/TlsBulkCertificateData.js
+++ b/src/model/TlsBulkCertificateData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsBulkCertificate from './TypeTlsBulkCertificate';
/**
* The TlsBulkCertificateData model module.
* @module model/TlsBulkCertificateData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateData {
/**
diff --git a/src/model/TlsBulkCertificateDataAttributes.js b/src/model/TlsBulkCertificateDataAttributes.js
index 71ba7e566..7ea8ffa5d 100644
--- a/src/model/TlsBulkCertificateDataAttributes.js
+++ b/src/model/TlsBulkCertificateDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsBulkCertificateDataAttributes model module.
* @module model/TlsBulkCertificateDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateDataAttributes {
/**
diff --git a/src/model/TlsBulkCertificateResponse.js b/src/model/TlsBulkCertificateResponse.js
index 4cdb8fa7e..26aeadf7b 100644
--- a/src/model/TlsBulkCertificateResponse.js
+++ b/src/model/TlsBulkCertificateResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsBulkCertificateResponseData from './TlsBulkCertificateResponseData';
/**
* The TlsBulkCertificateResponse model module.
* @module model/TlsBulkCertificateResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateResponse {
/**
diff --git a/src/model/TlsBulkCertificateResponseAttributes.js b/src/model/TlsBulkCertificateResponseAttributes.js
index 2af663708..4e5922935 100644
--- a/src/model/TlsBulkCertificateResponseAttributes.js
+++ b/src/model/TlsBulkCertificateResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TlsBulkCertificateResponseAttributesAllOf from './TlsBulkCertificateRespo
/**
* The TlsBulkCertificateResponseAttributes model module.
* @module model/TlsBulkCertificateResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateResponseAttributes {
/**
diff --git a/src/model/TlsBulkCertificateResponseAttributesAllOf.js b/src/model/TlsBulkCertificateResponseAttributesAllOf.js
index dd392082e..89f08f650 100644
--- a/src/model/TlsBulkCertificateResponseAttributesAllOf.js
+++ b/src/model/TlsBulkCertificateResponseAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsBulkCertificateResponseAttributesAllOf model module.
* @module model/TlsBulkCertificateResponseAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateResponseAttributesAllOf {
/**
diff --git a/src/model/TlsBulkCertificateResponseData.js b/src/model/TlsBulkCertificateResponseData.js
index 44d0b61ae..bfb57f3e1 100644
--- a/src/model/TlsBulkCertificateResponseData.js
+++ b/src/model/TlsBulkCertificateResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeTlsBulkCertificate from './TypeTlsBulkCertificate';
/**
* The TlsBulkCertificateResponseData model module.
* @module model/TlsBulkCertificateResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateResponseData {
/**
diff --git a/src/model/TlsBulkCertificateResponseDataAllOf.js b/src/model/TlsBulkCertificateResponseDataAllOf.js
index db9d35bc1..a6d3221f0 100644
--- a/src/model/TlsBulkCertificateResponseDataAllOf.js
+++ b/src/model/TlsBulkCertificateResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsBulkCertificateResponseAttributes from './TlsBulkCertificateResponseAt
/**
* The TlsBulkCertificateResponseDataAllOf model module.
* @module model/TlsBulkCertificateResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificateResponseDataAllOf {
/**
diff --git a/src/model/TlsBulkCertificatesResponse.js b/src/model/TlsBulkCertificatesResponse.js
index e6e7ae1d6..7fb9aa9d3 100644
--- a/src/model/TlsBulkCertificatesResponse.js
+++ b/src/model/TlsBulkCertificatesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsBulkCertificatesResponseAllOf from './TlsBulkCertificatesResponseAllOf
/**
* The TlsBulkCertificatesResponse model module.
* @module model/TlsBulkCertificatesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificatesResponse {
/**
diff --git a/src/model/TlsBulkCertificatesResponseAllOf.js b/src/model/TlsBulkCertificatesResponseAllOf.js
index 1ec8d8708..58bc25ac0 100644
--- a/src/model/TlsBulkCertificatesResponseAllOf.js
+++ b/src/model/TlsBulkCertificatesResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsBulkCertificateResponseData from './TlsBulkCertificateResponseData';
/**
* The TlsBulkCertificatesResponseAllOf model module.
* @module model/TlsBulkCertificatesResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsBulkCertificatesResponseAllOf {
/**
diff --git a/src/model/TlsCertificate.js b/src/model/TlsCertificate.js
index 7eae3b5bd..a8b4bc14d 100644
--- a/src/model/TlsCertificate.js
+++ b/src/model/TlsCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsCertificateData from './TlsCertificateData';
/**
* The TlsCertificate model module.
* @module model/TlsCertificate
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificate {
/**
diff --git a/src/model/TlsCertificateData.js b/src/model/TlsCertificateData.js
index 69535b246..89d57982d 100644
--- a/src/model/TlsCertificateData.js
+++ b/src/model/TlsCertificateData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsCertificate from './TypeTlsCertificate';
/**
* The TlsCertificateData model module.
* @module model/TlsCertificateData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateData {
/**
diff --git a/src/model/TlsCertificateDataAttributes.js b/src/model/TlsCertificateDataAttributes.js
index b63c4a3c0..9757fa376 100644
--- a/src/model/TlsCertificateDataAttributes.js
+++ b/src/model/TlsCertificateDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCertificateDataAttributes model module.
* @module model/TlsCertificateDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateDataAttributes {
/**
diff --git a/src/model/TlsCertificateResponse.js b/src/model/TlsCertificateResponse.js
index 1c2ec76d2..84c5330a3 100644
--- a/src/model/TlsCertificateResponse.js
+++ b/src/model/TlsCertificateResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsCertificateResponseData from './TlsCertificateResponseData';
/**
* The TlsCertificateResponse model module.
* @module model/TlsCertificateResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateResponse {
/**
diff --git a/src/model/TlsCertificateResponseAttributes.js b/src/model/TlsCertificateResponseAttributes.js
index 9038d33dc..f0ed2380d 100644
--- a/src/model/TlsCertificateResponseAttributes.js
+++ b/src/model/TlsCertificateResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TlsCertificateResponseAttributesAllOf from './TlsCertificateResponseAttri
/**
* The TlsCertificateResponseAttributes model module.
* @module model/TlsCertificateResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateResponseAttributes {
/**
diff --git a/src/model/TlsCertificateResponseAttributesAllOf.js b/src/model/TlsCertificateResponseAttributesAllOf.js
index 710dcd7e9..d877ba8f7 100644
--- a/src/model/TlsCertificateResponseAttributesAllOf.js
+++ b/src/model/TlsCertificateResponseAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCertificateResponseAttributesAllOf model module.
* @module model/TlsCertificateResponseAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateResponseAttributesAllOf {
/**
diff --git a/src/model/TlsCertificateResponseData.js b/src/model/TlsCertificateResponseData.js
index 593856f06..2be003097 100644
--- a/src/model/TlsCertificateResponseData.js
+++ b/src/model/TlsCertificateResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeTlsCertificate from './TypeTlsCertificate';
/**
* The TlsCertificateResponseData model module.
* @module model/TlsCertificateResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateResponseData {
/**
diff --git a/src/model/TlsCertificateResponseDataAllOf.js b/src/model/TlsCertificateResponseDataAllOf.js
index ffa96f51e..b439bd56a 100644
--- a/src/model/TlsCertificateResponseDataAllOf.js
+++ b/src/model/TlsCertificateResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsCertificateResponseAttributes from './TlsCertificateResponseAttributes
/**
* The TlsCertificateResponseDataAllOf model module.
* @module model/TlsCertificateResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificateResponseDataAllOf {
/**
diff --git a/src/model/TlsCertificatesResponse.js b/src/model/TlsCertificatesResponse.js
index c7590a806..a72c3feb9 100644
--- a/src/model/TlsCertificatesResponse.js
+++ b/src/model/TlsCertificatesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsCertificatesResponseAllOf from './TlsCertificatesResponseAllOf';
/**
* The TlsCertificatesResponse model module.
* @module model/TlsCertificatesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificatesResponse {
/**
diff --git a/src/model/TlsCertificatesResponseAllOf.js b/src/model/TlsCertificatesResponseAllOf.js
index 776d25f50..bc222aed1 100644
--- a/src/model/TlsCertificatesResponseAllOf.js
+++ b/src/model/TlsCertificatesResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsCertificateResponseData from './TlsCertificateResponseData';
/**
* The TlsCertificatesResponseAllOf model module.
* @module model/TlsCertificatesResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCertificatesResponseAllOf {
/**
diff --git a/src/model/TlsCommonResponse.js b/src/model/TlsCommonResponse.js
index 181a723d2..c7f944d82 100644
--- a/src/model/TlsCommonResponse.js
+++ b/src/model/TlsCommonResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TlsCommonResponseAllOf1 from './TlsCommonResponseAllOf1';
/**
* The TlsCommonResponse model module.
* @module model/TlsCommonResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCommonResponse {
/**
diff --git a/src/model/TlsCommonResponseAllOf.js b/src/model/TlsCommonResponseAllOf.js
index affcf5671..9eef39091 100644
--- a/src/model/TlsCommonResponseAllOf.js
+++ b/src/model/TlsCommonResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCommonResponseAllOf model module.
* @module model/TlsCommonResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCommonResponseAllOf {
/**
diff --git a/src/model/TlsCommonResponseAllOf1.js b/src/model/TlsCommonResponseAllOf1.js
index b642b4350..ef5bb8cfc 100644
--- a/src/model/TlsCommonResponseAllOf1.js
+++ b/src/model/TlsCommonResponseAllOf1.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCommonResponseAllOf1 model module.
* @module model/TlsCommonResponseAllOf1
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCommonResponseAllOf1 {
/**
diff --git a/src/model/TlsConfiguration.js b/src/model/TlsConfiguration.js
index e9c09bea9..e040124ef 100644
--- a/src/model/TlsConfiguration.js
+++ b/src/model/TlsConfiguration.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsConfigurationData from './TlsConfigurationData';
/**
* The TlsConfiguration model module.
* @module model/TlsConfiguration
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfiguration {
/**
diff --git a/src/model/TlsConfigurationData.js b/src/model/TlsConfigurationData.js
index 8b7eb45ec..57a724975 100644
--- a/src/model/TlsConfigurationData.js
+++ b/src/model/TlsConfigurationData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsConfiguration from './TypeTlsConfiguration';
/**
* The TlsConfigurationData model module.
* @module model/TlsConfigurationData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationData {
/**
diff --git a/src/model/TlsConfigurationDataAttributes.js b/src/model/TlsConfigurationDataAttributes.js
index c3e374d65..c78eee1a3 100644
--- a/src/model/TlsConfigurationDataAttributes.js
+++ b/src/model/TlsConfigurationDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsConfigurationDataAttributes model module.
* @module model/TlsConfigurationDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationDataAttributes {
/**
diff --git a/src/model/TlsConfigurationResponse.js b/src/model/TlsConfigurationResponse.js
index d30dc8782..98695540b 100644
--- a/src/model/TlsConfigurationResponse.js
+++ b/src/model/TlsConfigurationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsConfigurationResponseData from './TlsConfigurationResponseData';
/**
* The TlsConfigurationResponse model module.
* @module model/TlsConfigurationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationResponse {
/**
diff --git a/src/model/TlsConfigurationResponseAttributes.js b/src/model/TlsConfigurationResponseAttributes.js
index 370c548b0..7356f8bde 100644
--- a/src/model/TlsConfigurationResponseAttributes.js
+++ b/src/model/TlsConfigurationResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TlsConfigurationResponseAttributesAllOf from './TlsConfigurationResponseA
/**
* The TlsConfigurationResponseAttributes model module.
* @module model/TlsConfigurationResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationResponseAttributes {
/**
diff --git a/src/model/TlsConfigurationResponseAttributesAllOf.js b/src/model/TlsConfigurationResponseAttributesAllOf.js
index 69ba357d2..158586230 100644
--- a/src/model/TlsConfigurationResponseAttributesAllOf.js
+++ b/src/model/TlsConfigurationResponseAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsConfigurationResponseAttributesAllOf model module.
* @module model/TlsConfigurationResponseAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationResponseAttributesAllOf {
/**
diff --git a/src/model/TlsConfigurationResponseData.js b/src/model/TlsConfigurationResponseData.js
index 72c37e803..c78295b1a 100644
--- a/src/model/TlsConfigurationResponseData.js
+++ b/src/model/TlsConfigurationResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TypeTlsConfiguration from './TypeTlsConfiguration';
/**
* The TlsConfigurationResponseData model module.
* @module model/TlsConfigurationResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationResponseData {
/**
diff --git a/src/model/TlsConfigurationResponseDataAllOf.js b/src/model/TlsConfigurationResponseDataAllOf.js
index b4ab6f778..cda607cd3 100644
--- a/src/model/TlsConfigurationResponseDataAllOf.js
+++ b/src/model/TlsConfigurationResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsConfigurationResponseAttributes from './TlsConfigurationResponseAttrib
/**
* The TlsConfigurationResponseDataAllOf model module.
* @module model/TlsConfigurationResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationResponseDataAllOf {
/**
diff --git a/src/model/TlsConfigurationsResponse.js b/src/model/TlsConfigurationsResponse.js
index 363089e4a..cb5254bdc 100644
--- a/src/model/TlsConfigurationsResponse.js
+++ b/src/model/TlsConfigurationsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsConfigurationsResponseAllOf from './TlsConfigurationsResponseAllOf';
/**
* The TlsConfigurationsResponse model module.
* @module model/TlsConfigurationsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationsResponse {
/**
diff --git a/src/model/TlsConfigurationsResponseAllOf.js b/src/model/TlsConfigurationsResponseAllOf.js
index b995e7a11..8108a9c48 100644
--- a/src/model/TlsConfigurationsResponseAllOf.js
+++ b/src/model/TlsConfigurationsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsConfigurationResponseData from './TlsConfigurationResponseData';
/**
* The TlsConfigurationsResponseAllOf model module.
* @module model/TlsConfigurationsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsConfigurationsResponseAllOf {
/**
diff --git a/src/model/TlsCsr.js b/src/model/TlsCsr.js
index 9bc5f3531..850849fe4 100644
--- a/src/model/TlsCsr.js
+++ b/src/model/TlsCsr.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsCsrData from './TlsCsrData';
/**
* The TlsCsr model module.
* @module model/TlsCsr
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsr {
/**
diff --git a/src/model/TlsCsrData.js b/src/model/TlsCsrData.js
index ccd236990..e66b50936 100644
--- a/src/model/TlsCsrData.js
+++ b/src/model/TlsCsrData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsCsr from './TypeTlsCsr';
/**
* The TlsCsrData model module.
* @module model/TlsCsrData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsrData {
/**
diff --git a/src/model/TlsCsrDataAttributes.js b/src/model/TlsCsrDataAttributes.js
index 97cdd58f5..8b456cb29 100644
--- a/src/model/TlsCsrDataAttributes.js
+++ b/src/model/TlsCsrDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCsrDataAttributes model module.
* @module model/TlsCsrDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsrDataAttributes {
/**
diff --git a/src/model/TlsCsrErrorResponse.js b/src/model/TlsCsrErrorResponse.js
index d5277b308..17d2d31cb 100644
--- a/src/model/TlsCsrErrorResponse.js
+++ b/src/model/TlsCsrErrorResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ErrorResponseData from './ErrorResponseData';
/**
* The TlsCsrErrorResponse model module.
* @module model/TlsCsrErrorResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsrErrorResponse {
/**
diff --git a/src/model/TlsCsrResponse.js b/src/model/TlsCsrResponse.js
index 9186b3c68..c2c570e14 100644
--- a/src/model/TlsCsrResponse.js
+++ b/src/model/TlsCsrResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsCsrResponseData from './TlsCsrResponseData';
/**
* The TlsCsrResponse model module.
* @module model/TlsCsrResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsrResponse {
/**
diff --git a/src/model/TlsCsrResponseAttributes.js b/src/model/TlsCsrResponseAttributes.js
index efc7c2ea1..0d66da417 100644
--- a/src/model/TlsCsrResponseAttributes.js
+++ b/src/model/TlsCsrResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsCsrResponseAttributes model module.
* @module model/TlsCsrResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsrResponseAttributes {
/**
diff --git a/src/model/TlsCsrResponseData.js b/src/model/TlsCsrResponseData.js
index 402f67031..b56493070 100644
--- a/src/model/TlsCsrResponseData.js
+++ b/src/model/TlsCsrResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsCsr from './TypeTlsCsr';
/**
* The TlsCsrResponseData model module.
* @module model/TlsCsrResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsCsrResponseData {
/**
diff --git a/src/model/TlsDnsRecord.js b/src/model/TlsDnsRecord.js
index 7988ecfda..d9afd12b2 100644
--- a/src/model/TlsDnsRecord.js
+++ b/src/model/TlsDnsRecord.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsDnsRecord model module.
* @module model/TlsDnsRecord
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsDnsRecord {
/**
diff --git a/src/model/TlsDomainData.js b/src/model/TlsDomainData.js
index 5f918b390..399970d54 100644
--- a/src/model/TlsDomainData.js
+++ b/src/model/TlsDomainData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TypeTlsDomain from './TypeTlsDomain';
/**
* The TlsDomainData model module.
* @module model/TlsDomainData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsDomainData {
/**
diff --git a/src/model/TlsDomainsResponse.js b/src/model/TlsDomainsResponse.js
index 5ee7860da..b866a3b6f 100644
--- a/src/model/TlsDomainsResponse.js
+++ b/src/model/TlsDomainsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsDomainsResponseAllOf from './TlsDomainsResponseAllOf';
/**
* The TlsDomainsResponse model module.
* @module model/TlsDomainsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsDomainsResponse {
/**
diff --git a/src/model/TlsDomainsResponseAllOf.js b/src/model/TlsDomainsResponseAllOf.js
index a1baea3ce..369164548 100644
--- a/src/model/TlsDomainsResponseAllOf.js
+++ b/src/model/TlsDomainsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsDomainData from './TlsDomainData';
/**
* The TlsDomainsResponseAllOf model module.
* @module model/TlsDomainsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsDomainsResponseAllOf {
/**
diff --git a/src/model/TlsPrivateKey.js b/src/model/TlsPrivateKey.js
index 0c2c0ca3b..cb580cf5c 100644
--- a/src/model/TlsPrivateKey.js
+++ b/src/model/TlsPrivateKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsPrivateKeyData from './TlsPrivateKeyData';
/**
* The TlsPrivateKey model module.
* @module model/TlsPrivateKey
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKey {
/**
diff --git a/src/model/TlsPrivateKeyData.js b/src/model/TlsPrivateKeyData.js
index dddd1931c..7d0343b87 100644
--- a/src/model/TlsPrivateKeyData.js
+++ b/src/model/TlsPrivateKeyData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsPrivateKey from './TypeTlsPrivateKey';
/**
* The TlsPrivateKeyData model module.
* @module model/TlsPrivateKeyData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeyData {
/**
diff --git a/src/model/TlsPrivateKeyDataAttributes.js b/src/model/TlsPrivateKeyDataAttributes.js
index 1469d0050..928bed768 100644
--- a/src/model/TlsPrivateKeyDataAttributes.js
+++ b/src/model/TlsPrivateKeyDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsPrivateKeyDataAttributes model module.
* @module model/TlsPrivateKeyDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeyDataAttributes {
/**
diff --git a/src/model/TlsPrivateKeyResponse.js b/src/model/TlsPrivateKeyResponse.js
index d302b34a1..9e2ce5f31 100644
--- a/src/model/TlsPrivateKeyResponse.js
+++ b/src/model/TlsPrivateKeyResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsPrivateKeyResponseData from './TlsPrivateKeyResponseData';
/**
* The TlsPrivateKeyResponse model module.
* @module model/TlsPrivateKeyResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeyResponse {
/**
diff --git a/src/model/TlsPrivateKeyResponseAttributes.js b/src/model/TlsPrivateKeyResponseAttributes.js
index a16076562..7618e29f8 100644
--- a/src/model/TlsPrivateKeyResponseAttributes.js
+++ b/src/model/TlsPrivateKeyResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TlsPrivateKeyResponseAttributesAllOf from './TlsPrivateKeyResponseAttribu
/**
* The TlsPrivateKeyResponseAttributes model module.
* @module model/TlsPrivateKeyResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeyResponseAttributes {
/**
diff --git a/src/model/TlsPrivateKeyResponseAttributesAllOf.js b/src/model/TlsPrivateKeyResponseAttributesAllOf.js
index daaff2a4e..5c48e16dd 100644
--- a/src/model/TlsPrivateKeyResponseAttributesAllOf.js
+++ b/src/model/TlsPrivateKeyResponseAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsPrivateKeyResponseAttributesAllOf model module.
* @module model/TlsPrivateKeyResponseAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeyResponseAttributesAllOf {
/**
diff --git a/src/model/TlsPrivateKeyResponseData.js b/src/model/TlsPrivateKeyResponseData.js
index 687011320..2e1cb032f 100644
--- a/src/model/TlsPrivateKeyResponseData.js
+++ b/src/model/TlsPrivateKeyResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TypeTlsPrivateKey from './TypeTlsPrivateKey';
/**
* The TlsPrivateKeyResponseData model module.
* @module model/TlsPrivateKeyResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeyResponseData {
/**
diff --git a/src/model/TlsPrivateKeysResponse.js b/src/model/TlsPrivateKeysResponse.js
index a7ae08986..e58c826c3 100644
--- a/src/model/TlsPrivateKeysResponse.js
+++ b/src/model/TlsPrivateKeysResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsPrivateKeysResponseAllOf from './TlsPrivateKeysResponseAllOf';
/**
* The TlsPrivateKeysResponse model module.
* @module model/TlsPrivateKeysResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeysResponse {
/**
diff --git a/src/model/TlsPrivateKeysResponseAllOf.js b/src/model/TlsPrivateKeysResponseAllOf.js
index 96b13fc4a..54a663f93 100644
--- a/src/model/TlsPrivateKeysResponseAllOf.js
+++ b/src/model/TlsPrivateKeysResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsPrivateKeyResponseData from './TlsPrivateKeyResponseData';
/**
* The TlsPrivateKeysResponseAllOf model module.
* @module model/TlsPrivateKeysResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsPrivateKeysResponseAllOf {
/**
diff --git a/src/model/TlsSubscription.js b/src/model/TlsSubscription.js
index d504eeeed..f2fdf7df0 100644
--- a/src/model/TlsSubscription.js
+++ b/src/model/TlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsSubscriptionData from './TlsSubscriptionData';
/**
* The TlsSubscription model module.
* @module model/TlsSubscription
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscription {
/**
diff --git a/src/model/TlsSubscriptionData.js b/src/model/TlsSubscriptionData.js
index d91f59b82..6842b5858 100644
--- a/src/model/TlsSubscriptionData.js
+++ b/src/model/TlsSubscriptionData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TypeTlsSubscription from './TypeTlsSubscription';
/**
* The TlsSubscriptionData model module.
* @module model/TlsSubscriptionData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionData {
/**
diff --git a/src/model/TlsSubscriptionDataAttributes.js b/src/model/TlsSubscriptionDataAttributes.js
index d55aee880..4e0fb4e99 100644
--- a/src/model/TlsSubscriptionDataAttributes.js
+++ b/src/model/TlsSubscriptionDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsSubscriptionDataAttributes model module.
* @module model/TlsSubscriptionDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionDataAttributes {
/**
@@ -57,7 +57,7 @@ class TlsSubscriptionDataAttributes {
}
/**
- * The entity that issues and certifies the TLS certificates for your subscription.
+ * The entity that issues and certifies the TLS certificates for your subscription, either `certainly`, `lets-encrypt`, or `globalsign`. To migrate the subscription from one certificate authority to another, such as to migrate from 'lets-encrypt' to 'certainly', pass `certificate_authority` to the PATCH endpoint. To migrate from 'globalsign' to 'certainly', contact Fastly Support.
* @member {module:model/TlsSubscriptionDataAttributes.CertificateAuthorityEnum} certificate_authority
*/
TlsSubscriptionDataAttributes.prototype['certificate_authority'] = undefined;
diff --git a/src/model/TlsSubscriptionResponse.js b/src/model/TlsSubscriptionResponse.js
index 4cb420fef..7e594349e 100644
--- a/src/model/TlsSubscriptionResponse.js
+++ b/src/model/TlsSubscriptionResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsSubscriptionResponseData from './TlsSubscriptionResponseData';
/**
* The TlsSubscriptionResponse model module.
* @module model/TlsSubscriptionResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionResponse {
/**
diff --git a/src/model/TlsSubscriptionResponseAttributes.js b/src/model/TlsSubscriptionResponseAttributes.js
index 003c05246..c67bd7cd8 100644
--- a/src/model/TlsSubscriptionResponseAttributes.js
+++ b/src/model/TlsSubscriptionResponseAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TlsSubscriptionResponseAttributesAllOf from './TlsSubscriptionResponseAtt
/**
* The TlsSubscriptionResponseAttributes model module.
* @module model/TlsSubscriptionResponseAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionResponseAttributes {
/**
diff --git a/src/model/TlsSubscriptionResponseAttributesAllOf.js b/src/model/TlsSubscriptionResponseAttributesAllOf.js
index 3ef1ff514..0eb532eb8 100644
--- a/src/model/TlsSubscriptionResponseAttributesAllOf.js
+++ b/src/model/TlsSubscriptionResponseAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TlsSubscriptionResponseAttributesAllOf model module.
* @module model/TlsSubscriptionResponseAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionResponseAttributesAllOf {
/**
diff --git a/src/model/TlsSubscriptionResponseData.js b/src/model/TlsSubscriptionResponseData.js
index 7282d6e40..ef6a3d95c 100644
--- a/src/model/TlsSubscriptionResponseData.js
+++ b/src/model/TlsSubscriptionResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsSubscriptionResponseAttributes from './TlsSubscriptionResponseAttribut
/**
* The TlsSubscriptionResponseData model module.
* @module model/TlsSubscriptionResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionResponseData {
/**
diff --git a/src/model/TlsSubscriptionsResponse.js b/src/model/TlsSubscriptionsResponse.js
index bb1ade76f..f2cd68d17 100644
--- a/src/model/TlsSubscriptionsResponse.js
+++ b/src/model/TlsSubscriptionsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import TlsSubscriptionsResponseAllOf from './TlsSubscriptionsResponseAllOf';
/**
* The TlsSubscriptionsResponse model module.
* @module model/TlsSubscriptionsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionsResponse {
/**
diff --git a/src/model/TlsSubscriptionsResponseAllOf.js b/src/model/TlsSubscriptionsResponseAllOf.js
index 39c549227..032bd5a7b 100644
--- a/src/model/TlsSubscriptionsResponseAllOf.js
+++ b/src/model/TlsSubscriptionsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TlsSubscriptionResponse from './TlsSubscriptionResponse';
/**
* The TlsSubscriptionsResponseAllOf model module.
* @module model/TlsSubscriptionsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TlsSubscriptionsResponseAllOf {
/**
diff --git a/src/model/Token.js b/src/model/Token.js
index 0a18a896b..e62471778 100644
--- a/src/model/Token.js
+++ b/src/model/Token.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Token model module.
* @module model/Token
- * @version 7.2.0
+ * @version 7.3.0
*/
class Token {
/**
diff --git a/src/model/TokenCreatedResponse.js b/src/model/TokenCreatedResponse.js
index b57fc1bce..678b20c64 100644
--- a/src/model/TokenCreatedResponse.js
+++ b/src/model/TokenCreatedResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TokenResponse from './TokenResponse';
/**
* The TokenCreatedResponse model module.
* @module model/TokenCreatedResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TokenCreatedResponse {
/**
diff --git a/src/model/TokenCreatedResponseAllOf.js b/src/model/TokenCreatedResponseAllOf.js
index 5c9d5034e..721d8d33a 100644
--- a/src/model/TokenCreatedResponseAllOf.js
+++ b/src/model/TokenCreatedResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TokenCreatedResponseAllOf model module.
* @module model/TokenCreatedResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TokenCreatedResponseAllOf {
/**
diff --git a/src/model/TokenResponse.js b/src/model/TokenResponse.js
index 7e26aca2f..9649e5e8b 100644
--- a/src/model/TokenResponse.js
+++ b/src/model/TokenResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import TokenResponseAllOf from './TokenResponseAllOf';
/**
* The TokenResponse model module.
* @module model/TokenResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class TokenResponse {
/**
diff --git a/src/model/TokenResponseAllOf.js b/src/model/TokenResponseAllOf.js
index f06198917..8e100d926 100644
--- a/src/model/TokenResponseAllOf.js
+++ b/src/model/TokenResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TokenResponseAllOf model module.
* @module model/TokenResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class TokenResponseAllOf {
/**
diff --git a/src/model/TokensAdditionalProps.js b/src/model/TokensAdditionalProps.js
index 4b55193fd..c6abbe84e 100644
--- a/src/model/TokensAdditionalProps.js
+++ b/src/model/TokensAdditionalProps.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The TokensAdditionalProps model module.
* @module model/TokensAdditionalProps
- * @version 7.2.0
+ * @version 7.3.0
*/
class TokensAdditionalProps {
/**
diff --git a/src/model/TypeBillingAddress.js b/src/model/TypeBillingAddress.js
index f02966a1f..367037fe0 100644
--- a/src/model/TypeBillingAddress.js
+++ b/src/model/TypeBillingAddress.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeContact.js b/src/model/TypeContact.js
index 6cf5aea7f..587fce56c 100644
--- a/src/model/TypeContact.js
+++ b/src/model/TypeContact.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeCustomer.js b/src/model/TypeCustomer.js
index d067eb8d6..ba4c16eef 100644
--- a/src/model/TypeCustomer.js
+++ b/src/model/TypeCustomer.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeEvent.js b/src/model/TypeEvent.js
index d3a1b581b..8def9cc0f 100644
--- a/src/model/TypeEvent.js
+++ b/src/model/TypeEvent.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeInvitation.js b/src/model/TypeInvitation.js
index 7d912b42d..6793c8f20 100644
--- a/src/model/TypeInvitation.js
+++ b/src/model/TypeInvitation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeMutualAuthentication.js b/src/model/TypeMutualAuthentication.js
index b74a1d5d9..2452ac801 100644
--- a/src/model/TypeMutualAuthentication.js
+++ b/src/model/TypeMutualAuthentication.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeResource.js b/src/model/TypeResource.js
index c7c31a20b..ea91d0f26 100644
--- a/src/model/TypeResource.js
+++ b/src/model/TypeResource.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,10 +19,10 @@ import ApiClient from '../ApiClient';
export default class TypeResource {
/**
- * value: "object-store"
+ * value: "kv-store"
* @const
*/
- "object-store" = "object-store";
+ "kv-store" = "kv-store";
/**
@@ -33,10 +33,10 @@ export default class TypeResource {
/**
- * value: "config-store"
+ * value: "config"
* @const
*/
- "config-store" = "config-store";
+ "config" = "config";
diff --git a/src/model/TypeService.js b/src/model/TypeService.js
index 36394f0cf..2e7493c16 100644
--- a/src/model/TypeService.js
+++ b/src/model/TypeService.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeServiceAuthorization.js b/src/model/TypeServiceAuthorization.js
index 0987999fa..bb05b9d93 100644
--- a/src/model/TypeServiceAuthorization.js
+++ b/src/model/TypeServiceAuthorization.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeServiceInvitation.js b/src/model/TypeServiceInvitation.js
index a584e2571..cc4e00435 100644
--- a/src/model/TypeServiceInvitation.js
+++ b/src/model/TypeServiceInvitation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeStar.js b/src/model/TypeStar.js
index ecca4d875..3a080bec8 100644
--- a/src/model/TypeStar.js
+++ b/src/model/TypeStar.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsActivation.js b/src/model/TypeTlsActivation.js
index 375ba54f3..7ab49860f 100644
--- a/src/model/TypeTlsActivation.js
+++ b/src/model/TypeTlsActivation.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsBulkCertificate.js b/src/model/TypeTlsBulkCertificate.js
index 9906a9241..73e7d4ca5 100644
--- a/src/model/TypeTlsBulkCertificate.js
+++ b/src/model/TypeTlsBulkCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsCertificate.js b/src/model/TypeTlsCertificate.js
index 519068608..4219666b2 100644
--- a/src/model/TypeTlsCertificate.js
+++ b/src/model/TypeTlsCertificate.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsConfiguration.js b/src/model/TypeTlsConfiguration.js
index 0b2241406..b0c78fd2a 100644
--- a/src/model/TypeTlsConfiguration.js
+++ b/src/model/TypeTlsConfiguration.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsCsr.js b/src/model/TypeTlsCsr.js
index 28d8fec7a..f1da3c578 100644
--- a/src/model/TypeTlsCsr.js
+++ b/src/model/TypeTlsCsr.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsDnsRecord.js b/src/model/TypeTlsDnsRecord.js
index 108b8aa39..8574f8cc1 100644
--- a/src/model/TypeTlsDnsRecord.js
+++ b/src/model/TypeTlsDnsRecord.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsDomain.js b/src/model/TypeTlsDomain.js
index b9caf7ae5..ee1a0116b 100644
--- a/src/model/TypeTlsDomain.js
+++ b/src/model/TypeTlsDomain.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsPrivateKey.js b/src/model/TypeTlsPrivateKey.js
index 952a69bf8..886c214bc 100644
--- a/src/model/TypeTlsPrivateKey.js
+++ b/src/model/TypeTlsPrivateKey.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeTlsSubscription.js b/src/model/TypeTlsSubscription.js
index 772c6cfb1..07f8da6cb 100644
--- a/src/model/TypeTlsSubscription.js
+++ b/src/model/TypeTlsSubscription.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeUser.js b/src/model/TypeUser.js
index f3b9fcbee..1068d608f 100644
--- a/src/model/TypeUser.js
+++ b/src/model/TypeUser.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafActiveRule.js b/src/model/TypeWafActiveRule.js
index 50afae861..dd7d9bdb5 100644
--- a/src/model/TypeWafActiveRule.js
+++ b/src/model/TypeWafActiveRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafExclusion.js b/src/model/TypeWafExclusion.js
index e785ed4af..60284a858 100644
--- a/src/model/TypeWafExclusion.js
+++ b/src/model/TypeWafExclusion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafFirewall.js b/src/model/TypeWafFirewall.js
index e85c8576e..0bb1da20d 100644
--- a/src/model/TypeWafFirewall.js
+++ b/src/model/TypeWafFirewall.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafFirewallVersion.js b/src/model/TypeWafFirewallVersion.js
index 7904c0d7b..f3e62208d 100644
--- a/src/model/TypeWafFirewallVersion.js
+++ b/src/model/TypeWafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafRule.js b/src/model/TypeWafRule.js
index 4cc317fd3..948ca692d 100644
--- a/src/model/TypeWafRule.js
+++ b/src/model/TypeWafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafRuleRevision.js b/src/model/TypeWafRuleRevision.js
index c5596296f..ea64b0fac 100644
--- a/src/model/TypeWafRuleRevision.js
+++ b/src/model/TypeWafRuleRevision.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/TypeWafTag.js b/src/model/TypeWafTag.js
index d9ea7d94b..cb54aa893 100644
--- a/src/model/TypeWafTag.js
+++ b/src/model/TypeWafTag.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
diff --git a/src/model/UpdateBillingAddressRequest.js b/src/model/UpdateBillingAddressRequest.js
index 3f0577f13..50fe7ca13 100644
--- a/src/model/UpdateBillingAddressRequest.js
+++ b/src/model/UpdateBillingAddressRequest.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import UpdateBillingAddressRequestData from './UpdateBillingAddressRequestData';
/**
* The UpdateBillingAddressRequest model module.
* @module model/UpdateBillingAddressRequest
- * @version 7.2.0
+ * @version 7.3.0
*/
class UpdateBillingAddressRequest {
/**
diff --git a/src/model/UpdateBillingAddressRequestData.js b/src/model/UpdateBillingAddressRequestData.js
index e21e60306..627e38bcf 100644
--- a/src/model/UpdateBillingAddressRequestData.js
+++ b/src/model/UpdateBillingAddressRequestData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import TypeBillingAddress from './TypeBillingAddress';
/**
* The UpdateBillingAddressRequestData model module.
* @module model/UpdateBillingAddressRequestData
- * @version 7.2.0
+ * @version 7.3.0
*/
class UpdateBillingAddressRequestData {
/**
diff --git a/src/model/User.js b/src/model/User.js
index b19e74cb0..2904437ab 100644
--- a/src/model/User.js
+++ b/src/model/User.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RoleUser from './RoleUser';
/**
* The User model module.
* @module model/User
- * @version 7.2.0
+ * @version 7.3.0
*/
class User {
/**
diff --git a/src/model/UserResponse.js b/src/model/UserResponse.js
index acbdff1e7..945936da9 100644
--- a/src/model/UserResponse.js
+++ b/src/model/UserResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import UserResponseReadOnly from './UserResponseReadOnly';
/**
* The UserResponse model module.
* @module model/UserResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class UserResponse {
/**
diff --git a/src/model/UserResponseReadOnly.js b/src/model/UserResponseReadOnly.js
index 426b24baf..7ae28c316 100644
--- a/src/model/UserResponseReadOnly.js
+++ b/src/model/UserResponseReadOnly.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The UserResponseReadOnly model module.
* @module model/UserResponseReadOnly
- * @version 7.2.0
+ * @version 7.3.0
*/
class UserResponseReadOnly {
/**
diff --git a/src/model/ValidatorResult.js b/src/model/ValidatorResult.js
index 4677b22d7..f2b60b010 100644
--- a/src/model/ValidatorResult.js
+++ b/src/model/ValidatorResult.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ValidatorResultData from './ValidatorResultData';
/**
* The ValidatorResult model module.
* @module model/ValidatorResult
- * @version 7.2.0
+ * @version 7.3.0
*/
class ValidatorResult {
/**
diff --git a/src/model/ValidatorResultData.js b/src/model/ValidatorResultData.js
index abea3fe52..55b3963b6 100644
--- a/src/model/ValidatorResultData.js
+++ b/src/model/ValidatorResultData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ValidatorResultDataAttributes from './ValidatorResultDataAttributes';
/**
* The ValidatorResultData model module.
* @module model/ValidatorResultData
- * @version 7.2.0
+ * @version 7.3.0
*/
class ValidatorResultData {
/**
diff --git a/src/model/ValidatorResultDataAttributes.js b/src/model/ValidatorResultDataAttributes.js
index 4806fee54..7b8a302be 100644
--- a/src/model/ValidatorResultDataAttributes.js
+++ b/src/model/ValidatorResultDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import ValidatorResultDataAttributesMessages from './ValidatorResultDataAttribut
/**
* The ValidatorResultDataAttributes model module.
* @module model/ValidatorResultDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class ValidatorResultDataAttributes {
/**
diff --git a/src/model/ValidatorResultDataAttributesMessages.js b/src/model/ValidatorResultDataAttributesMessages.js
index 2f5012f2b..d389ddba3 100644
--- a/src/model/ValidatorResultDataAttributesMessages.js
+++ b/src/model/ValidatorResultDataAttributesMessages.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import TokensAdditionalProps from './TokensAdditionalProps';
/**
* The ValidatorResultDataAttributesMessages model module.
* @module model/ValidatorResultDataAttributesMessages
- * @version 7.2.0
+ * @version 7.3.0
*/
class ValidatorResultDataAttributesMessages {
/**
diff --git a/src/model/Values.js b/src/model/Values.js
index 7f385235f..6f5d103e1 100644
--- a/src/model/Values.js
+++ b/src/model/Values.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Values model module.
* @module model/Values
- * @version 7.2.0
+ * @version 7.3.0
*/
class Values {
/**
diff --git a/src/model/ValuesDdos.js b/src/model/ValuesDdos.js
index e8a3ac7a7..241243fd3 100644
--- a/src/model/ValuesDdos.js
+++ b/src/model/ValuesDdos.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The ValuesDdos model module.
* @module model/ValuesDdos
- * @version 7.2.0
+ * @version 7.3.0
*/
class ValuesDdos {
/**
diff --git a/src/model/Vcl.js b/src/model/Vcl.js
index d6bee1cfe..5e842d9ff 100644
--- a/src/model/Vcl.js
+++ b/src/model/Vcl.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Vcl model module.
* @module model/Vcl
- * @version 7.2.0
+ * @version 7.3.0
*/
class Vcl {
/**
diff --git a/src/model/VclDiff.js b/src/model/VclDiff.js
index cbe98884a..b484fcc18 100644
--- a/src/model/VclDiff.js
+++ b/src/model/VclDiff.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VclDiff model module.
* @module model/VclDiff
- * @version 7.2.0
+ * @version 7.3.0
*/
class VclDiff {
/**
diff --git a/src/model/VclResponse.js b/src/model/VclResponse.js
index 2b35a4ac4..ad6b3fc85 100644
--- a/src/model/VclResponse.js
+++ b/src/model/VclResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import Vcl from './Vcl';
/**
* The VclResponse model module.
* @module model/VclResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class VclResponse {
/**
diff --git a/src/model/VclSyntaxHighlightingResponse.js b/src/model/VclSyntaxHighlightingResponse.js
index d731e757b..acc4f79c9 100644
--- a/src/model/VclSyntaxHighlightingResponse.js
+++ b/src/model/VclSyntaxHighlightingResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VclSyntaxHighlightingResponse model module.
* @module model/VclSyntaxHighlightingResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class VclSyntaxHighlightingResponse {
/**
diff --git a/src/model/Version.js b/src/model/Version.js
index d8c3d59c6..696547549 100644
--- a/src/model/Version.js
+++ b/src/model/Version.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The Version model module.
* @module model/Version
- * @version 7.2.0
+ * @version 7.3.0
*/
class Version {
/**
diff --git a/src/model/VersionCreateResponse.js b/src/model/VersionCreateResponse.js
index fcd4af482..91a7275c2 100644
--- a/src/model/VersionCreateResponse.js
+++ b/src/model/VersionCreateResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VersionCreateResponse model module.
* @module model/VersionCreateResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class VersionCreateResponse {
/**
diff --git a/src/model/VersionDetail.js b/src/model/VersionDetail.js
index c4d14e4cf..1a35baa2e 100644
--- a/src/model/VersionDetail.js
+++ b/src/model/VersionDetail.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -28,7 +28,7 @@ import VersionDetailSettings from './VersionDetailSettings';
/**
* The VersionDetail model module.
* @module model/VersionDetail
- * @version 7.2.0
+ * @version 7.3.0
*/
class VersionDetail {
/**
diff --git a/src/model/VersionDetailSettings.js b/src/model/VersionDetailSettings.js
index 61f53030f..6db30659d 100644
--- a/src/model/VersionDetailSettings.js
+++ b/src/model/VersionDetailSettings.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VersionDetailSettings model module.
* @module model/VersionDetailSettings
- * @version 7.2.0
+ * @version 7.3.0
*/
class VersionDetailSettings {
/**
diff --git a/src/model/VersionResponse.js b/src/model/VersionResponse.js
index 0925c7fc7..6313bebd4 100644
--- a/src/model/VersionResponse.js
+++ b/src/model/VersionResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import VersionResponseAllOf from './VersionResponseAllOf';
/**
* The VersionResponse model module.
* @module model/VersionResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class VersionResponse {
/**
diff --git a/src/model/VersionResponseAllOf.js b/src/model/VersionResponseAllOf.js
index 369944c69..ef1676f40 100644
--- a/src/model/VersionResponseAllOf.js
+++ b/src/model/VersionResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The VersionResponseAllOf model module.
* @module model/VersionResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class VersionResponseAllOf {
/**
diff --git a/src/model/WafActiveRule.js b/src/model/WafActiveRule.js
index b19b448b7..8c9051304 100644
--- a/src/model/WafActiveRule.js
+++ b/src/model/WafActiveRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafActiveRuleData from './WafActiveRuleData';
/**
* The WafActiveRule model module.
* @module model/WafActiveRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRule {
/**
diff --git a/src/model/WafActiveRuleCreationResponse.js b/src/model/WafActiveRuleCreationResponse.js
index 2a5fe80ae..b899f4e72 100644
--- a/src/model/WafActiveRuleCreationResponse.js
+++ b/src/model/WafActiveRuleCreationResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafActiveRulesResponse from './WafActiveRulesResponse';
/**
* The WafActiveRuleCreationResponse model module.
* @module model/WafActiveRuleCreationResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleCreationResponse {
/**
diff --git a/src/model/WafActiveRuleData.js b/src/model/WafActiveRuleData.js
index c41abe16b..82538b1ee 100644
--- a/src/model/WafActiveRuleData.js
+++ b/src/model/WafActiveRuleData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import WafActiveRuleDataAttributes from './WafActiveRuleDataAttributes';
/**
* The WafActiveRuleData model module.
* @module model/WafActiveRuleData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleData {
/**
diff --git a/src/model/WafActiveRuleDataAttributes.js b/src/model/WafActiveRuleDataAttributes.js
index 238588fbe..eb4a8721b 100644
--- a/src/model/WafActiveRuleDataAttributes.js
+++ b/src/model/WafActiveRuleDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafRuleRevisionOrLatest from './WafRuleRevisionOrLatest';
/**
* The WafActiveRuleDataAttributes model module.
* @module model/WafActiveRuleDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleDataAttributes {
/**
diff --git a/src/model/WafActiveRuleResponse.js b/src/model/WafActiveRuleResponse.js
index 2a2c55885..969ea063f 100644
--- a/src/model/WafActiveRuleResponse.js
+++ b/src/model/WafActiveRuleResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafActiveRuleResponseData from './WafActiveRuleResponseData';
/**
* The WafActiveRuleResponse model module.
* @module model/WafActiveRuleResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleResponse {
/**
diff --git a/src/model/WafActiveRuleResponseData.js b/src/model/WafActiveRuleResponseData.js
index c0b199ca0..fdc7ee4e7 100644
--- a/src/model/WafActiveRuleResponseData.js
+++ b/src/model/WafActiveRuleResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafActiveRuleResponseDataRelationships from './WafActiveRuleResponseDataR
/**
* The WafActiveRuleResponseData model module.
* @module model/WafActiveRuleResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleResponseData {
/**
diff --git a/src/model/WafActiveRuleResponseDataAllOf.js b/src/model/WafActiveRuleResponseDataAllOf.js
index b6016a59d..e133a66be 100644
--- a/src/model/WafActiveRuleResponseDataAllOf.js
+++ b/src/model/WafActiveRuleResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafActiveRuleResponseDataRelationships from './WafActiveRuleResponseDataR
/**
* The WafActiveRuleResponseDataAllOf model module.
* @module model/WafActiveRuleResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleResponseDataAllOf {
/**
diff --git a/src/model/WafActiveRuleResponseDataAttributes.js b/src/model/WafActiveRuleResponseDataAttributes.js
index 942103bc3..098ea3664 100644
--- a/src/model/WafActiveRuleResponseDataAttributes.js
+++ b/src/model/WafActiveRuleResponseDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafActiveRuleResponseDataAttributesAllOf from './WafActiveRuleResponseDat
/**
* The WafActiveRuleResponseDataAttributes model module.
* @module model/WafActiveRuleResponseDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleResponseDataAttributes {
/**
diff --git a/src/model/WafActiveRuleResponseDataAttributesAllOf.js b/src/model/WafActiveRuleResponseDataAttributesAllOf.js
index 2652371fb..106262061 100644
--- a/src/model/WafActiveRuleResponseDataAttributesAllOf.js
+++ b/src/model/WafActiveRuleResponseDataAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafActiveRuleResponseDataAttributesAllOf model module.
* @module model/WafActiveRuleResponseDataAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafActiveRuleResponseDataRelationships.js b/src/model/WafActiveRuleResponseDataRelationships.js
index e683774ed..f46983019 100644
--- a/src/model/WafActiveRuleResponseDataRelationships.js
+++ b/src/model/WafActiveRuleResponseDataRelationships.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipWafRuleRevisionWafRuleRevisions from './RelationshipWafRuleRe
/**
* The WafActiveRuleResponseDataRelationships model module.
* @module model/WafActiveRuleResponseDataRelationships
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRuleResponseDataRelationships {
/**
diff --git a/src/model/WafActiveRulesResponse.js b/src/model/WafActiveRulesResponse.js
index 99f2b82e0..715c40c79 100644
--- a/src/model/WafActiveRulesResponse.js
+++ b/src/model/WafActiveRulesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafActiveRulesResponseAllOf from './WafActiveRulesResponseAllOf';
/**
* The WafActiveRulesResponse model module.
* @module model/WafActiveRulesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRulesResponse {
/**
diff --git a/src/model/WafActiveRulesResponseAllOf.js b/src/model/WafActiveRulesResponseAllOf.js
index 1d941c7ae..2cdb52263 100644
--- a/src/model/WafActiveRulesResponseAllOf.js
+++ b/src/model/WafActiveRulesResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafActiveRuleResponseData from './WafActiveRuleResponseData';
/**
* The WafActiveRulesResponseAllOf model module.
* @module model/WafActiveRulesResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafActiveRulesResponseAllOf {
/**
diff --git a/src/model/WafExclusion.js b/src/model/WafExclusion.js
index f9ab328a6..33069082e 100644
--- a/src/model/WafExclusion.js
+++ b/src/model/WafExclusion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafExclusionData from './WafExclusionData';
/**
* The WafExclusion model module.
* @module model/WafExclusion
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusion {
/**
diff --git a/src/model/WafExclusionData.js b/src/model/WafExclusionData.js
index a7ccba44a..8cc9bd77a 100644
--- a/src/model/WafExclusionData.js
+++ b/src/model/WafExclusionData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -18,7 +18,7 @@ import WafExclusionDataAttributes from './WafExclusionDataAttributes';
/**
* The WafExclusionData model module.
* @module model/WafExclusionData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionData {
/**
diff --git a/src/model/WafExclusionDataAttributes.js b/src/model/WafExclusionDataAttributes.js
index ca9cd501d..37e19ca41 100644
--- a/src/model/WafExclusionDataAttributes.js
+++ b/src/model/WafExclusionDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafExclusionDataAttributes model module.
* @module model/WafExclusionDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionDataAttributes {
/**
diff --git a/src/model/WafExclusionResponse.js b/src/model/WafExclusionResponse.js
index 505cd6c55..c02786161 100644
--- a/src/model/WafExclusionResponse.js
+++ b/src/model/WafExclusionResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafExclusionResponseData from './WafExclusionResponseData';
/**
* The WafExclusionResponse model module.
* @module model/WafExclusionResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionResponse {
/**
diff --git a/src/model/WafExclusionResponseData.js b/src/model/WafExclusionResponseData.js
index ba983a0aa..110acdb1a 100644
--- a/src/model/WafExclusionResponseData.js
+++ b/src/model/WafExclusionResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafExclusionResponseDataRelationships from './WafExclusionResponseDataRel
/**
* The WafExclusionResponseData model module.
* @module model/WafExclusionResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionResponseData {
/**
diff --git a/src/model/WafExclusionResponseDataAllOf.js b/src/model/WafExclusionResponseDataAllOf.js
index ce4d0a80a..040a64cf7 100644
--- a/src/model/WafExclusionResponseDataAllOf.js
+++ b/src/model/WafExclusionResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafExclusionResponseDataRelationships from './WafExclusionResponseDataRel
/**
* The WafExclusionResponseDataAllOf model module.
* @module model/WafExclusionResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionResponseDataAllOf {
/**
diff --git a/src/model/WafExclusionResponseDataAttributes.js b/src/model/WafExclusionResponseDataAttributes.js
index c6cd7f28b..2a55c45a2 100644
--- a/src/model/WafExclusionResponseDataAttributes.js
+++ b/src/model/WafExclusionResponseDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafExclusionResponseDataAttributesAllOf from './WafExclusionResponseDataA
/**
* The WafExclusionResponseDataAttributes model module.
* @module model/WafExclusionResponseDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionResponseDataAttributes {
/**
diff --git a/src/model/WafExclusionResponseDataAttributesAllOf.js b/src/model/WafExclusionResponseDataAttributesAllOf.js
index 5ed6865d6..6b0aa54f5 100644
--- a/src/model/WafExclusionResponseDataAttributesAllOf.js
+++ b/src/model/WafExclusionResponseDataAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafExclusionResponseDataAttributesAllOf model module.
* @module model/WafExclusionResponseDataAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafExclusionResponseDataRelationships.js b/src/model/WafExclusionResponseDataRelationships.js
index 5af42d5ba..4878609db 100644
--- a/src/model/WafExclusionResponseDataRelationships.js
+++ b/src/model/WafExclusionResponseDataRelationships.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -19,7 +19,7 @@ import RelationshipWafRules from './RelationshipWafRules';
/**
* The WafExclusionResponseDataRelationships model module.
* @module model/WafExclusionResponseDataRelationships
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionResponseDataRelationships {
/**
diff --git a/src/model/WafExclusionsResponse.js b/src/model/WafExclusionsResponse.js
index 7c1b9c6db..88fa31820 100644
--- a/src/model/WafExclusionsResponse.js
+++ b/src/model/WafExclusionsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafExclusionsResponseAllOf from './WafExclusionsResponseAllOf';
/**
* The WafExclusionsResponse model module.
* @module model/WafExclusionsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionsResponse {
/**
diff --git a/src/model/WafExclusionsResponseAllOf.js b/src/model/WafExclusionsResponseAllOf.js
index 4070d7665..20a2f07a4 100644
--- a/src/model/WafExclusionsResponseAllOf.js
+++ b/src/model/WafExclusionsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafExclusionResponseData from './WafExclusionResponseData';
/**
* The WafExclusionsResponseAllOf model module.
* @module model/WafExclusionsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafExclusionsResponseAllOf {
/**
diff --git a/src/model/WafFirewall.js b/src/model/WafFirewall.js
index fbac8ce2f..56c02f09d 100644
--- a/src/model/WafFirewall.js
+++ b/src/model/WafFirewall.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafFirewallData from './WafFirewallData';
/**
* The WafFirewall model module.
* @module model/WafFirewall
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewall {
/**
diff --git a/src/model/WafFirewallData.js b/src/model/WafFirewallData.js
index 216d26774..cb8b4245d 100644
--- a/src/model/WafFirewallData.js
+++ b/src/model/WafFirewallData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallDataAttributes from './WafFirewallDataAttributes';
/**
* The WafFirewallData model module.
* @module model/WafFirewallData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallData {
/**
diff --git a/src/model/WafFirewallDataAttributes.js b/src/model/WafFirewallDataAttributes.js
index eb598b731..3fe9bc25c 100644
--- a/src/model/WafFirewallDataAttributes.js
+++ b/src/model/WafFirewallDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallDataAttributes model module.
* @module model/WafFirewallDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallDataAttributes {
/**
diff --git a/src/model/WafFirewallResponse.js b/src/model/WafFirewallResponse.js
index 7cc9165ce..8a8f05689 100644
--- a/src/model/WafFirewallResponse.js
+++ b/src/model/WafFirewallResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallResponseData from './WafFirewallResponseData';
/**
* The WafFirewallResponse model module.
* @module model/WafFirewallResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallResponse {
/**
diff --git a/src/model/WafFirewallResponseData.js b/src/model/WafFirewallResponseData.js
index d37858267..777d2fa18 100644
--- a/src/model/WafFirewallResponseData.js
+++ b/src/model/WafFirewallResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafFirewallResponseDataAttributes from './WafFirewallResponseDataAttribut
/**
* The WafFirewallResponseData model module.
* @module model/WafFirewallResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallResponseData {
/**
diff --git a/src/model/WafFirewallResponseDataAllOf.js b/src/model/WafFirewallResponseDataAllOf.js
index 68b7e8112..94a28bf04 100644
--- a/src/model/WafFirewallResponseDataAllOf.js
+++ b/src/model/WafFirewallResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallResponseDataAttributes from './WafFirewallResponseDataAttribut
/**
* The WafFirewallResponseDataAllOf model module.
* @module model/WafFirewallResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallResponseDataAllOf {
/**
diff --git a/src/model/WafFirewallResponseDataAttributes.js b/src/model/WafFirewallResponseDataAttributes.js
index f372593ef..a0e11bf83 100644
--- a/src/model/WafFirewallResponseDataAttributes.js
+++ b/src/model/WafFirewallResponseDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallResponseDataAttributesAllOf from './WafFirewallResponseDataAtt
/**
* The WafFirewallResponseDataAttributes model module.
* @module model/WafFirewallResponseDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallResponseDataAttributes {
/**
diff --git a/src/model/WafFirewallResponseDataAttributesAllOf.js b/src/model/WafFirewallResponseDataAttributesAllOf.js
index 9a392e9c0..b74fac1ee 100644
--- a/src/model/WafFirewallResponseDataAttributesAllOf.js
+++ b/src/model/WafFirewallResponseDataAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallResponseDataAttributesAllOf model module.
* @module model/WafFirewallResponseDataAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafFirewallVersion.js b/src/model/WafFirewallVersion.js
index 6f986ed61..9cfe47f95 100644
--- a/src/model/WafFirewallVersion.js
+++ b/src/model/WafFirewallVersion.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import WafFirewallVersionData from './WafFirewallVersionData';
/**
* The WafFirewallVersion model module.
* @module model/WafFirewallVersion
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersion {
/**
diff --git a/src/model/WafFirewallVersionData.js b/src/model/WafFirewallVersionData.js
index db30b2c1f..5dded237d 100644
--- a/src/model/WafFirewallVersionData.js
+++ b/src/model/WafFirewallVersionData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallVersionDataAttributes from './WafFirewallVersionDataAttributes
/**
* The WafFirewallVersionData model module.
* @module model/WafFirewallVersionData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionData {
/**
diff --git a/src/model/WafFirewallVersionDataAttributes.js b/src/model/WafFirewallVersionDataAttributes.js
index 5a49e4ab5..c7d7eeae7 100644
--- a/src/model/WafFirewallVersionDataAttributes.js
+++ b/src/model/WafFirewallVersionDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallVersionDataAttributes model module.
* @module model/WafFirewallVersionDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionDataAttributes {
/**
diff --git a/src/model/WafFirewallVersionResponse.js b/src/model/WafFirewallVersionResponse.js
index 360d4cca2..f1aa16cc9 100644
--- a/src/model/WafFirewallVersionResponse.js
+++ b/src/model/WafFirewallVersionResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseData from './WafFirewallVersionResponseData';
/**
* The WafFirewallVersionResponse model module.
* @module model/WafFirewallVersionResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionResponse {
/**
diff --git a/src/model/WafFirewallVersionResponseData.js b/src/model/WafFirewallVersionResponseData.js
index 0e6ff2a19..b964b432d 100644
--- a/src/model/WafFirewallVersionResponseData.js
+++ b/src/model/WafFirewallVersionResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafFirewallVersionResponseDataAttributes from './WafFirewallVersionRespon
/**
* The WafFirewallVersionResponseData model module.
* @module model/WafFirewallVersionResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionResponseData {
/**
diff --git a/src/model/WafFirewallVersionResponseDataAllOf.js b/src/model/WafFirewallVersionResponseDataAllOf.js
index 48e2c12c5..83846bd88 100644
--- a/src/model/WafFirewallVersionResponseDataAllOf.js
+++ b/src/model/WafFirewallVersionResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseDataAttributes from './WafFirewallVersionRespon
/**
* The WafFirewallVersionResponseDataAllOf model module.
* @module model/WafFirewallVersionResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionResponseDataAllOf {
/**
diff --git a/src/model/WafFirewallVersionResponseDataAttributes.js b/src/model/WafFirewallVersionResponseDataAttributes.js
index f840d9377..6c1f75cbd 100644
--- a/src/model/WafFirewallVersionResponseDataAttributes.js
+++ b/src/model/WafFirewallVersionResponseDataAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseDataAttributesAllOf from './WafFirewallVersionR
/**
* The WafFirewallVersionResponseDataAttributes model module.
* @module model/WafFirewallVersionResponseDataAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionResponseDataAttributes {
/**
diff --git a/src/model/WafFirewallVersionResponseDataAttributesAllOf.js b/src/model/WafFirewallVersionResponseDataAttributesAllOf.js
index c62fe7f04..46faac932 100644
--- a/src/model/WafFirewallVersionResponseDataAttributesAllOf.js
+++ b/src/model/WafFirewallVersionResponseDataAttributesAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafFirewallVersionResponseDataAttributesAllOf model module.
* @module model/WafFirewallVersionResponseDataAttributesAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionResponseDataAttributesAllOf {
/**
diff --git a/src/model/WafFirewallVersionsResponse.js b/src/model/WafFirewallVersionsResponse.js
index 9733a3f4c..24f23aa23 100644
--- a/src/model/WafFirewallVersionsResponse.js
+++ b/src/model/WafFirewallVersionsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafFirewallVersionsResponseAllOf from './WafFirewallVersionsResponseAllOf
/**
* The WafFirewallVersionsResponse model module.
* @module model/WafFirewallVersionsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionsResponse {
/**
diff --git a/src/model/WafFirewallVersionsResponseAllOf.js b/src/model/WafFirewallVersionsResponseAllOf.js
index e042c75ce..4c1677585 100644
--- a/src/model/WafFirewallVersionsResponseAllOf.js
+++ b/src/model/WafFirewallVersionsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallVersionResponseData from './WafFirewallVersionResponseData';
/**
* The WafFirewallVersionsResponseAllOf model module.
* @module model/WafFirewallVersionsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallVersionsResponseAllOf {
/**
diff --git a/src/model/WafFirewallsResponse.js b/src/model/WafFirewallsResponse.js
index 7fe86a89b..e1f1a1609 100644
--- a/src/model/WafFirewallsResponse.js
+++ b/src/model/WafFirewallsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafFirewallsResponseAllOf from './WafFirewallsResponseAllOf';
/**
* The WafFirewallsResponse model module.
* @module model/WafFirewallsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallsResponse {
/**
diff --git a/src/model/WafFirewallsResponseAllOf.js b/src/model/WafFirewallsResponseAllOf.js
index 6a3974562..d25ded0ef 100644
--- a/src/model/WafFirewallsResponseAllOf.js
+++ b/src/model/WafFirewallsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafFirewallResponseData from './WafFirewallResponseData';
/**
* The WafFirewallsResponseAllOf model module.
* @module model/WafFirewallsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafFirewallsResponseAllOf {
/**
diff --git a/src/model/WafRule.js b/src/model/WafRule.js
index ea5b15a28..290a9155e 100644
--- a/src/model/WafRule.js
+++ b/src/model/WafRule.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafRuleAttributes from './WafRuleAttributes';
/**
* The WafRule model module.
* @module model/WafRule
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRule {
/**
diff --git a/src/model/WafRuleAttributes.js b/src/model/WafRuleAttributes.js
index c6f222f3e..edb2adfc7 100644
--- a/src/model/WafRuleAttributes.js
+++ b/src/model/WafRuleAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafRuleAttributes model module.
* @module model/WafRuleAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleAttributes {
/**
diff --git a/src/model/WafRuleResponse.js b/src/model/WafRuleResponse.js
index a60d194e5..5c8d8266c 100644
--- a/src/model/WafRuleResponse.js
+++ b/src/model/WafRuleResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafRuleResponseData from './WafRuleResponseData';
/**
* The WafRuleResponse model module.
* @module model/WafRuleResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleResponse {
/**
diff --git a/src/model/WafRuleResponseData.js b/src/model/WafRuleResponseData.js
index 38636c784..4685f9ab9 100644
--- a/src/model/WafRuleResponseData.js
+++ b/src/model/WafRuleResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafRuleResponseDataAllOf from './WafRuleResponseDataAllOf';
/**
* The WafRuleResponseData model module.
* @module model/WafRuleResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleResponseData {
/**
diff --git a/src/model/WafRuleResponseDataAllOf.js b/src/model/WafRuleResponseDataAllOf.js
index b308c6a7b..400861cad 100644
--- a/src/model/WafRuleResponseDataAllOf.js
+++ b/src/model/WafRuleResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipsForWafRule from './RelationshipsForWafRule';
/**
* The WafRuleResponseDataAllOf model module.
* @module model/WafRuleResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleResponseDataAllOf {
/**
diff --git a/src/model/WafRuleRevision.js b/src/model/WafRuleRevision.js
index 5109cac30..bfa357cbd 100644
--- a/src/model/WafRuleRevision.js
+++ b/src/model/WafRuleRevision.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafRuleRevisionAttributes from './WafRuleRevisionAttributes';
/**
* The WafRuleRevision model module.
* @module model/WafRuleRevision
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevision {
/**
diff --git a/src/model/WafRuleRevisionAttributes.js b/src/model/WafRuleRevisionAttributes.js
index 38ae1eafd..5391c6cec 100644
--- a/src/model/WafRuleRevisionAttributes.js
+++ b/src/model/WafRuleRevisionAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafRuleRevisionAttributes model module.
* @module model/WafRuleRevisionAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionAttributes {
/**
diff --git a/src/model/WafRuleRevisionOrLatest.js b/src/model/WafRuleRevisionOrLatest.js
index 8a597a69e..0b8f8301b 100644
--- a/src/model/WafRuleRevisionOrLatest.js
+++ b/src/model/WafRuleRevisionOrLatest.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafRuleRevisionOrLatest model module.
* @module model/WafRuleRevisionOrLatest
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionOrLatest {
/**
diff --git a/src/model/WafRuleRevisionResponse.js b/src/model/WafRuleRevisionResponse.js
index 011f75faa..5d2822b32 100644
--- a/src/model/WafRuleRevisionResponse.js
+++ b/src/model/WafRuleRevisionResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafRuleRevisionResponseData from './WafRuleRevisionResponseData';
/**
* The WafRuleRevisionResponse model module.
* @module model/WafRuleRevisionResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionResponse {
/**
diff --git a/src/model/WafRuleRevisionResponseData.js b/src/model/WafRuleRevisionResponseData.js
index 0646eb007..3e4a57699 100644
--- a/src/model/WafRuleRevisionResponseData.js
+++ b/src/model/WafRuleRevisionResponseData.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafRuleRevisionResponseDataAllOf from './WafRuleRevisionResponseDataAllOf
/**
* The WafRuleRevisionResponseData model module.
* @module model/WafRuleRevisionResponseData
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionResponseData {
/**
diff --git a/src/model/WafRuleRevisionResponseDataAllOf.js b/src/model/WafRuleRevisionResponseDataAllOf.js
index fe179e1b4..d29bd3d0e 100644
--- a/src/model/WafRuleRevisionResponseDataAllOf.js
+++ b/src/model/WafRuleRevisionResponseDataAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -16,7 +16,7 @@ import RelationshipWafRule from './RelationshipWafRule';
/**
* The WafRuleRevisionResponseDataAllOf model module.
* @module model/WafRuleRevisionResponseDataAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionResponseDataAllOf {
/**
diff --git a/src/model/WafRuleRevisionsResponse.js b/src/model/WafRuleRevisionsResponse.js
index b77c8fb7c..4344bd55c 100644
--- a/src/model/WafRuleRevisionsResponse.js
+++ b/src/model/WafRuleRevisionsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafRuleRevisionsResponseAllOf from './WafRuleRevisionsResponseAllOf';
/**
* The WafRuleRevisionsResponse model module.
* @module model/WafRuleRevisionsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionsResponse {
/**
diff --git a/src/model/WafRuleRevisionsResponseAllOf.js b/src/model/WafRuleRevisionsResponseAllOf.js
index bd2c6e31e..e9ee2ec3b 100644
--- a/src/model/WafRuleRevisionsResponseAllOf.js
+++ b/src/model/WafRuleRevisionsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafRuleRevisionResponseData from './WafRuleRevisionResponseData';
/**
* The WafRuleRevisionsResponseAllOf model module.
* @module model/WafRuleRevisionsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRuleRevisionsResponseAllOf {
/**
diff --git a/src/model/WafRulesResponse.js b/src/model/WafRulesResponse.js
index 124dc92f8..a61a07423 100644
--- a/src/model/WafRulesResponse.js
+++ b/src/model/WafRulesResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafRulesResponseAllOf from './WafRulesResponseAllOf';
/**
* The WafRulesResponse model module.
* @module model/WafRulesResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRulesResponse {
/**
diff --git a/src/model/WafRulesResponseAllOf.js b/src/model/WafRulesResponseAllOf.js
index 687f586ed..0fa43c6b5 100644
--- a/src/model/WafRulesResponseAllOf.js
+++ b/src/model/WafRulesResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafRuleResponseData from './WafRuleResponseData';
/**
* The WafRulesResponseAllOf model module.
* @module model/WafRulesResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafRulesResponseAllOf {
/**
diff --git a/src/model/WafTag.js b/src/model/WafTag.js
index 7c596dd48..3944a5141 100644
--- a/src/model/WafTag.js
+++ b/src/model/WafTag.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafTagAttributes from './WafTagAttributes';
/**
* The WafTag model module.
* @module model/WafTag
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafTag {
/**
diff --git a/src/model/WafTagAttributes.js b/src/model/WafTagAttributes.js
index 9b5dd5941..2bdc69877 100644
--- a/src/model/WafTagAttributes.js
+++ b/src/model/WafTagAttributes.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WafTagAttributes model module.
* @module model/WafTagAttributes
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafTagAttributes {
/**
diff --git a/src/model/WafTagsResponse.js b/src/model/WafTagsResponse.js
index 58351e4da..ee58024ff 100644
--- a/src/model/WafTagsResponse.js
+++ b/src/model/WafTagsResponse.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -21,7 +21,7 @@ import WafTagsResponseDataItem from './WafTagsResponseDataItem';
/**
* The WafTagsResponse model module.
* @module model/WafTagsResponse
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafTagsResponse {
/**
diff --git a/src/model/WafTagsResponseAllOf.js b/src/model/WafTagsResponseAllOf.js
index 141d21797..d5558c3d6 100644
--- a/src/model/WafTagsResponseAllOf.js
+++ b/src/model/WafTagsResponseAllOf.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -17,7 +17,7 @@ import WafTagsResponseDataItem from './WafTagsResponseDataItem';
/**
* The WafTagsResponseAllOf model module.
* @module model/WafTagsResponseAllOf
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafTagsResponseAllOf {
/**
diff --git a/src/model/WafTagsResponseDataItem.js b/src/model/WafTagsResponseDataItem.js
index d440dd9aa..36342f195 100644
--- a/src/model/WafTagsResponseDataItem.js
+++ b/src/model/WafTagsResponseDataItem.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -20,7 +20,7 @@ import WafTagAttributes from './WafTagAttributes';
/**
* The WafTagsResponseDataItem model module.
* @module model/WafTagsResponseDataItem
- * @version 7.2.0
+ * @version 7.3.0
*/
class WafTagsResponseDataItem {
/**
diff --git a/src/model/WsMessageFormat.js b/src/model/WsMessageFormat.js
index 48b78f8dc..63596eea8 100644
--- a/src/model/WsMessageFormat.js
+++ b/src/model/WsMessageFormat.js
@@ -1,6 +1,6 @@
/**
* Fastly API
- * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
+ * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
*
* The version of the OpenAPI document: 1.0.0
* Contact: oss@fastly.com
@@ -15,7 +15,7 @@ import ApiClient from '../ApiClient';
/**
* The WsMessageFormat model module.
* @module model/WsMessageFormat
- * @version 7.2.0
+ * @version 7.3.0
*/
class WsMessageFormat {
/**