Skip to content

Commit

Permalink
Generated v2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jun 23, 2023
1 parent f09b6cb commit 782533c
Show file tree
Hide file tree
Showing 15 changed files with 360 additions and 30 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v2.2.2](https://github.com/fastly/fastly-php/releases/tag/release/v2.2.2) (2023-06-23)

**Bug fixes:**

- fix(historical_stats): generate missing models.

## [v2.2.1](https://github.com/fastly/fastly-php/releases/tag/release/v2.2.1) (2023-06-21)

**Bug fixes:**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# # HistoricalFieldResponseAllOf
# # HistoricalFieldResponseDataField

## Properties

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# # HistoricalResponseAllOf
# # HistoricalResponseDataField

## Properties

Expand Down
10 changes: 10 additions & 0 deletions docs/Model/HistoricalService.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# # HistoricalService

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **string** | The name of the service. | [optional]


[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
2 changes: 1 addition & 1 deletion docs/Model/HistoricalUsageMonthResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**status** | **string** | Whether or not we were able to successfully execute the query. | [optional]
**meta** | [**\Fastly\Model\HistoricalMeta**](HistoricalMeta.md) | | [optional]
**msg** | **string** | If the query was not successful, this will provide a string that explains why. | [optional]
**data** | [**\Fastly\Model\HistoricalUsageMonthResponseAllOfData**](HistoricalUsageMonthResponseAllOfData.md) | | [optional]
**data** | [**\Fastly\Model\HistoricalUsageMonthResponseData**](HistoricalUsageMonthResponseData.md) | | [optional]


[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
2 changes: 1 addition & 1 deletion docs/Model/HistoricalUsageMonthResponseAllOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**data** | [**\Fastly\Model\HistoricalUsageMonthResponseAllOfData**](HistoricalUsageMonthResponseAllOfData.md) | | [optional]
**data** | [**\Fastly\Model\HistoricalUsageMonthResponseData**](HistoricalUsageMonthResponseData.md) | | [optional]


[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# # HistoricalUsageMonthResponseAllOfData
# # HistoricalUsageMonthResponseData

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**customer_id** | **string** | | [optional] [readonly]
**services** | **array<string,array<string,\Fastly\Model\HistoricalUsageResults>>** | | [optional]
**services** | [**array<string,\Fastly\Model\HistoricalService>**](HistoricalService.md) | | [optional]
**total** | [**\Fastly\Model\HistoricalUsageResults**](HistoricalUsageResults.md) | | [optional]


Expand Down
4 changes: 2 additions & 2 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'fastly-php/2.2.1';
protected $userAgent = 'fastly-php/2.2.2';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -453,7 +453,7 @@ public static function toDebugReport()
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' The version of the schema document: 1.0.0' . PHP_EOL;
$report .= ' SDK Package Version: 2.2.1' . PHP_EOL;
$report .= ' SDK Package Version: 2.2.2' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* HistoricalFieldResponseAllOf
* HistoricalFieldResponseDataField
*
* PHP version 7.3
*
Expand All @@ -27,7 +27,7 @@
use \Fastly\ObjectSerializer;

/**
* HistoricalFieldResponseAllOf Class Doc Comment
* HistoricalFieldResponseDataField Class Doc Comment
*
* @category Class
* @package Fastly
Expand All @@ -36,7 +36,7 @@
* @template TKey int|null
* @template TValue mixed|null
*/
class HistoricalFieldResponseAllOf implements ModelInterface, ArrayAccess, \JsonSerializable
class HistoricalFieldResponseDataField implements ModelInterface, ArrayAccess, \JsonSerializable
{
public const DISCRIMINATOR = null;

Expand All @@ -45,7 +45,7 @@ class HistoricalFieldResponseAllOf implements ModelInterface, ArrayAccess, \Json
*
* @var string
*/
protected static $fastlyModelName = 'historical_field_response_allOf';
protected static $fastlyModelName = 'historical_field_response_data_field';

/**
* Array of property to type mappings. Used for (de)serialization
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* HistoricalResponseAllOf
* HistoricalResponseDataField
*
* PHP version 7.3
*
Expand All @@ -27,7 +27,7 @@
use \Fastly\ObjectSerializer;

/**
* HistoricalResponseAllOf Class Doc Comment
* HistoricalResponseDataField Class Doc Comment
*
* @category Class
* @package Fastly
Expand All @@ -36,7 +36,7 @@
* @template TKey int|null
* @template TValue mixed|null
*/
class HistoricalResponseAllOf implements ModelInterface, ArrayAccess, \JsonSerializable
class HistoricalResponseDataField implements ModelInterface, ArrayAccess, \JsonSerializable
{
public const DISCRIMINATOR = null;

Expand All @@ -45,7 +45,7 @@ class HistoricalResponseAllOf implements ModelInterface, ArrayAccess, \JsonSeria
*
* @var string
*/
protected static $fastlyModelName = 'historical_response_allOf';
protected static $fastlyModelName = 'historical_response_data_field';

/**
* Array of property to type mappings. Used for (de)serialization
Expand Down
Loading

0 comments on commit 782533c

Please sign in to comment.