Skip to content

Commit b92d2fc

Browse files
author
github-actions
committedJun 28, 2024·
Generated v6.05
1 parent 68b7135 commit b92d2fc

14 files changed

+95
-16
lines changed
 

‎Changes

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
Revision history for https://metacpan.org/dist/WebService-Fastly
22

3+
6.05 2024-06-27
4+
5+
[Bug fixes]
6+
- bugfix(alerts-definitions): For Origin derived metrics, correct `all_bandwidth` type to `integer`
7+
8+
[Enhancements]
9+
- feat(logging-s3): Add `file_max_bytes` configuration field
10+
- feat(alerts-definitions): Add `integration_id` parameter to the List Alert Definitions endpoint
11+
- feat(alerts-definitions): For Origin derived metrics, add `all_status_4xx_excl_404_rate` and `all_status_404_rate` properties
12+
- feat(alerts-definitions): For Domain derived metrics, add `status_4xx_excl_404_rate` and `status_404_rate` properties
13+
- feat(alerts-definitions): For Stats derived metrics, add `status_4xx_excl_404_rate`, `status_404_rate`, `all_status_5xx_rate`,
14+
`all_status_4xx_rate`, `all_status_gte_400_rate`, and `all_status_lt_500_rate` properties
15+
- feat(billing-invoices): For invoice line items, added `ProductLine` property
16+
17+
[Documentation]
18+
- doc(billing-invoices): "Billing Invoices API" relabeled to "Invoices API"
19+
- doc(billing-invoices): Updated documentation of `billing_start_date` and `billing_end_date` query parameters of
20+
List of invoices endpoint
21+
- doc(alerts-definitions): Updated documentation of several fields
22+
- doc(notification-service): Updated documentation examples for several fields
23+
324
6.04 2024-05-24
425

526
[Bug fixes]

‎README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WebService::Fastly - an interface to most facets of the Fastly API (https://www.
44

55
# VERSION
66

7-
6.04
7+
6.05
88

99

1010
# SYNOPSIS
@@ -611,6 +611,8 @@ The fastly-perl API client currently does not support the following endpoints:
611611
- [`/resources/stores/kv/{store_id}/batch`](https://www.fastly.com/documentation/reference/api/services/resources/kv-store-item) (PUT)
612612
- [`/tls/activations/{tls_activation_id}`](https://www.fastly.com/documentation/reference/api/tls/mutual-tls/activations) (GET, PATCH)
613613
- [`/tls/activations`](https://www.fastly.com/documentation/reference/api/tls/mutual-tls/activations) (GET)
614+
- [`/tls/preview/domains/{tls_preview_domain_id}`](https://www.fastly.com/documentation/reference/api/) (GET, PATCH)
615+
- [`/tls/preview/domains`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
614616
- [`/v1/channel/{service_id}/ts/h/limit/{max_entries}`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)
615617
- [`/v1/channel/{service_id}/ts/h`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)
616618
- [`/v1/channel/{service_id}/ts/{start_timestamp}`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)

‎docs/BillingInvoicesApi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ my $api_instance = WebService::Fastly::BillingInvoicesApi->new(
8484
#api_key_prefix => {'Fastly-Key' => 'Bearer'},
8585
);
8686

87-
my $billing_start_date = 2023-01-01T00:00:00Z; # string |
88-
my $billing_end_date = 2023-01-31T00:00:00Z; # string |
87+
my $billing_start_date = 2023-01-01; # string |
88+
my $billing_end_date = 2023-01-31; # string |
8989
my $limit = '100'; # string | Number of results per page. The maximum is 200.
9090
my $cursor = "cursor_example"; # string | Cursor value from the `next_cursor` field of a previous response, used to retrieve the next page. To request the first page, this should be empty.
9191

‎docs/Invoicelineitems.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
1515
**units** | **double** | Total number of units of usage. | [optional]
1616
**product_name** | **string** | The name of the product. | [optional]
1717
**product_group** | **string** | The broader classification of the product (e.g., `Compute` or `Full-Site Delivery`). | [optional]
18+
**product_line** | **string** | The broader classification of the product (e.g., `Network Services` or `Security`). | [optional]
1819
**region** | **string** | The geographical area applicable for regionally based products. | [optional]
1920
**usage_type** | **string** | The unit of measure (e.g., `requests` or `bandwidth`). | [optional]
2021

‎docs/LoggingS3Additional.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
1919
**secret_key** | **string** | The secret key for your S3 account. Not required if `iam_role` is provided. | [optional]
2020
**server_side_encryption_kms_key_id** | **string** | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | [optional] [default to 'null']
2121
**server_side_encryption** | **string** | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | [optional] [default to 'null']
22+
**file_max_bytes** | **int** | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) | [optional]
2223

2324
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2425

‎docs/LoggingS3Api.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Method | HTTP request | Description
1818

1919

2020
# **create_log_aws_s3**
21-
> LoggingS3Response create_log_aws_s3(service_id => $service_id, version_id => $version_id, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption)
21+
> LoggingS3Response create_log_aws_s3(service_id => $service_id, version_id => $version_id, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption, file_max_bytes => $file_max_bytes)
2222
2323
Create an AWS S3 log endpoint
2424

@@ -59,9 +59,10 @@ my $redundancy = 'null'; # string | The S3 redundancy level.
5959
my $secret_key = "secret_key_example"; # string | The secret key for your S3 account. Not required if `iam_role` is provided.
6060
my $server_side_encryption_kms_key_id = 'null'; # string | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`.
6161
my $server_side_encryption = 'null'; # string | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.
62+
my $file_max_bytes = 56; # int | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
6263

6364
eval {
64-
my $result = $api_instance->create_log_aws_s3(service_id => $service_id, version_id => $version_id, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption);
65+
my $result = $api_instance->create_log_aws_s3(service_id => $service_id, version_id => $version_id, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption, file_max_bytes => $file_max_bytes);
6566
print Dumper($result);
6667
};
6768
if ($@) {
@@ -96,6 +97,7 @@ Name | Type | Description | Notes
9697
**secret_key** | **string**| The secret key for your S3 account. Not required if `iam_role` is provided. | [optional]
9798
**server_side_encryption_kms_key_id** | **string**| Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | [optional] [default to 'null']
9899
**server_side_encryption** | **string**| Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | [optional] [default to 'null']
100+
**file_max_bytes** | **int**| The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) | [optional]
99101

100102
### Return type
101103

@@ -276,7 +278,7 @@ Name | Type | Description | Notes
276278
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
277279

278280
# **update_log_aws_s3**
279-
> LoggingS3Response update_log_aws_s3(service_id => $service_id, version_id => $version_id, logging_s3_name => $logging_s3_name, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption)
281+
> LoggingS3Response update_log_aws_s3(service_id => $service_id, version_id => $version_id, logging_s3_name => $logging_s3_name, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption, file_max_bytes => $file_max_bytes)
280282
281283
Update an AWS S3 log endpoint
282284

@@ -318,9 +320,10 @@ my $redundancy = 'null'; # string | The S3 redundancy level.
318320
my $secret_key = "secret_key_example"; # string | The secret key for your S3 account. Not required if `iam_role` is provided.
319321
my $server_side_encryption_kms_key_id = 'null'; # string | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`.
320322
my $server_side_encryption = 'null'; # string | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.
323+
my $file_max_bytes = 56; # int | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
321324

322325
eval {
323-
my $result = $api_instance->update_log_aws_s3(service_id => $service_id, version_id => $version_id, logging_s3_name => $logging_s3_name, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption);
326+
my $result = $api_instance->update_log_aws_s3(service_id => $service_id, version_id => $version_id, logging_s3_name => $logging_s3_name, name => $name, placement => $placement, response_condition => $response_condition, format => $format, format_version => $format_version, message_type => $message_type, timestamp_format => $timestamp_format, compression_codec => $compression_codec, period => $period, gzip_level => $gzip_level, access_key => $access_key, acl => $acl, bucket_name => $bucket_name, domain => $domain, iam_role => $iam_role, path => $path, public_key => $public_key, redundancy => $redundancy, secret_key => $secret_key, server_side_encryption_kms_key_id => $server_side_encryption_kms_key_id, server_side_encryption => $server_side_encryption, file_max_bytes => $file_max_bytes);
324327
print Dumper($result);
325328
};
326329
if ($@) {
@@ -356,6 +359,7 @@ Name | Type | Description | Notes
356359
**secret_key** | **string**| The secret key for your S3 account. Not required if `iam_role` is provided. | [optional]
357360
**server_side_encryption_kms_key_id** | **string**| Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | [optional] [default to 'null']
358361
**server_side_encryption** | **string**| Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | [optional] [default to 'null']
362+
**file_max_bytes** | **int**| The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) | [optional]
359363

360364
### Return type
361365

‎docs/LoggingS3Response.md

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Name | Type | Description | Notes
3434
**secret_key** | **string** | The secret key for your S3 account. Not required if `iam_role` is provided. | [optional]
3535
**server_side_encryption_kms_key_id** | **string** | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | [optional] [default to 'null']
3636
**server_side_encryption** | **string** | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | [optional] [default to 'null']
37+
**file_max_bytes** | **int** | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) | [optional]
3738

3839
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3940

‎lib/WebService/Fastly.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package WebService::Fastly;
22

33
use strict;
44
use 5.008_005;
5-
our $VERSION = '6.04';
5+
our $VERSION = '6.05';
66

77
1;
88
__END__

‎lib/WebService/Fastly/Configuration.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use utf8;
2424
use Log::Any qw($log);
2525
use Carp;
2626

27-
use constant VERSION => '6.04';
27+
use constant VERSION => '6.05';
2828

2929
=head1 Name
3030
@@ -44,7 +44,7 @@ default: 180
4444
4545
String. custom UserAgent header
4646
47-
default: fastly-perl/6.04
47+
default: fastly-perl/6.05
4848
4949
=item api_key: (optional)
5050
@@ -93,7 +93,7 @@ sub new {
9393

9494
# class/static variables
9595
$p{http_timeout} //= 180;
96-
$p{http_user_agent} //= 'fastly-perl/6.04';
96+
$p{http_user_agent} //= 'fastly-perl/6.05';
9797

9898
# authentication setting
9999
$p{api_key} //= {};

‎lib/WebService/Fastly/LoggingS3Api.pm

+22
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ sub new {
7474
# @param string $secret_key The secret key for your S3 account. Not required if `iam_role` is provided. (optional)
7575
# @param string $server_side_encryption_kms_key_id Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. (optional, default to 'null')
7676
# @param string $server_side_encryption Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. (optional, default to 'null')
77+
# @param int $file_max_bytes The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) (optional)
7778
{
7879
my $params = {
7980
'service_id' => {
@@ -191,6 +192,11 @@ sub new {
191192
description => 'Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.',
192193
required => '0',
193194
},
195+
'file_max_bytes' => {
196+
data_type => 'int',
197+
description => 'The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)',
198+
required => '0',
199+
},
194200
};
195201
__PACKAGE__->method_documentation->{ 'create_log_aws_s3' } = {
196202
summary => 'Create an AWS S3 log endpoint',
@@ -347,6 +353,11 @@ sub create_log_aws_s3 {
347353
$form_params->{'server_side_encryption'} = $self->{api_client}->to_form_value($args{'server_side_encryption'});
348354
}
349355

356+
# form params
357+
if ( exists $args{'file_max_bytes'} ) {
358+
$form_params->{'file_max_bytes'} = $self->{api_client}->to_form_value($args{'file_max_bytes'});
359+
}
360+
350361
my $_body_data;
351362
# authentication setting, if any
352363
my $auth_settings = [qw(token )];
@@ -682,6 +693,7 @@ sub list_log_aws_s3 {
682693
# @param string $secret_key The secret key for your S3 account. Not required if `iam_role` is provided. (optional)
683694
# @param string $server_side_encryption_kms_key_id Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. (optional, default to 'null')
684695
# @param string $server_side_encryption Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. (optional, default to 'null')
696+
# @param int $file_max_bytes The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) (optional)
685697
{
686698
my $params = {
687699
'service_id' => {
@@ -804,6 +816,11 @@ sub list_log_aws_s3 {
804816
description => 'Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.',
805817
required => '0',
806818
},
819+
'file_max_bytes' => {
820+
data_type => 'int',
821+
description => 'The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)',
822+
required => '0',
823+
},
807824
};
808825
__PACKAGE__->method_documentation->{ 'update_log_aws_s3' } = {
809826
summary => 'Update an AWS S3 log endpoint',
@@ -972,6 +989,11 @@ sub update_log_aws_s3 {
972989
$form_params->{'server_side_encryption'} = $self->{api_client}->to_form_value($args{'server_side_encryption'});
973990
}
974991

992+
# form params
993+
if ( exists $args{'file_max_bytes'} ) {
994+
$form_params->{'file_max_bytes'} = $self->{api_client}->to_form_value($args{'file_max_bytes'});
995+
}
996+
975997
my $_body_data;
976998
# authentication setting, if any
977999
my $auth_settings = [qw(token )];

‎lib/WebService/Fastly/Object/Invoicelineitems.pm

+9
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,13 @@ __PACKAGE__->method_documentation({
207207
format => '',
208208
read_only => 'false',
209209
},
210+
'product_line' => {
211+
datatype => 'string',
212+
base_name => 'ProductLine',
213+
description => 'The broader classification of the product (e.g., `Network Services` or `Security`).',
214+
format => '',
215+
read_only => 'false',
216+
},
210217
'region' => {
211218
datatype => 'string',
212219
base_name => 'Region',
@@ -231,6 +238,7 @@ __PACKAGE__->openapi_types( {
231238
'units' => 'double',
232239
'product_name' => 'string',
233240
'product_group' => 'string',
241+
'product_line' => 'string',
234242
'region' => 'string',
235243
'usage_type' => 'string'
236244
} );
@@ -243,6 +251,7 @@ __PACKAGE__->attribute_map( {
243251
'units' => 'units',
244252
'product_name' => 'ProductName',
245253
'product_group' => 'ProductGroup',
254+
'product_line' => 'ProductLine',
246255
'region' => 'Region',
247256
'usage_type' => 'UsageType'
248257
} );

‎lib/WebService/Fastly/Object/LoggingS3Additional.pm

+11-2
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,13 @@ __PACKAGE__->method_documentation({
235235
format => '',
236236
read_only => 'false',
237237
},
238+
'file_max_bytes' => {
239+
datatype => 'int',
240+
base_name => 'file_max_bytes',
241+
description => 'The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)',
242+
format => '',
243+
read_only => 'false',
244+
},
238245
});
239246

240247
__PACKAGE__->openapi_types( {
@@ -248,7 +255,8 @@ __PACKAGE__->openapi_types( {
248255
'redundancy' => 'string',
249256
'secret_key' => 'string',
250257
'server_side_encryption_kms_key_id' => 'string',
251-
'server_side_encryption' => 'string'
258+
'server_side_encryption' => 'string',
259+
'file_max_bytes' => 'int'
252260
} );
253261

254262
__PACKAGE__->attribute_map( {
@@ -262,7 +270,8 @@ __PACKAGE__->attribute_map( {
262270
'redundancy' => 'redundancy',
263271
'secret_key' => 'secret_key',
264272
'server_side_encryption_kms_key_id' => 'server_side_encryption_kms_key_id',
265-
'server_side_encryption' => 'server_side_encryption'
273+
'server_side_encryption' => 'server_side_encryption',
274+
'file_max_bytes' => 'file_max_bytes'
266275
} );
267276

268277
__PACKAGE__->mk_accessors(keys %{__PACKAGE__->attribute_map});

‎lib/WebService/Fastly/Object/LoggingS3Response.pm

+11-2
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,13 @@ __PACKAGE__->method_documentation({
345345
format => '',
346346
read_only => 'false',
347347
},
348+
'file_max_bytes' => {
349+
datatype => 'int',
350+
base_name => 'file_max_bytes',
351+
description => 'The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)',
352+
format => '',
353+
read_only => 'false',
354+
},
348355
});
349356

350357
__PACKAGE__->openapi_types( {
@@ -373,7 +380,8 @@ __PACKAGE__->openapi_types( {
373380
'redundancy' => 'string',
374381
'secret_key' => 'string',
375382
'server_side_encryption_kms_key_id' => 'string',
376-
'server_side_encryption' => 'string'
383+
'server_side_encryption' => 'string',
384+
'file_max_bytes' => 'int'
377385
} );
378386

379387
__PACKAGE__->attribute_map( {
@@ -402,7 +410,8 @@ __PACKAGE__->attribute_map( {
402410
'redundancy' => 'redundancy',
403411
'secret_key' => 'secret_key',
404412
'server_side_encryption_kms_key_id' => 'server_side_encryption_kms_key_id',
405-
'server_side_encryption' => 'server_side_encryption'
413+
'server_side_encryption' => 'server_side_encryption',
414+
'file_max_bytes' => 'file_max_bytes'
406415
} );
407416

408417
__PACKAGE__->mk_accessors(keys %{__PACKAGE__->attribute_map});

‎sig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"G": "12e42c04", "D": "dd010b17"}
1+
{"G": "5a2ccc65", "D": "ec7f026b"}

0 commit comments

Comments
 (0)
Please sign in to comment.