The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

=begin comment
Fastly API
Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
The version of the API Spec document: 1.0.0
Contact: oss@fastly.com
=end comment
=cut
#
# NOTE: This class is auto generated.
# Do not edit the class manually.
#
require 5.6.0;
use strict;
use utf8;
use Carp qw( croak );
use Log::Any qw($log);
__PACKAGE__->mk_classdata('method_documentation' => {});
sub new {
my $class = shift;
my $api_client;
if ($_[0] && ref $_[0] && ref $_[0] eq 'WebService::Fastly::ApiClient' ) {
$api_client = $_[0];
} else {
$api_client = WebService::Fastly::ApiClient->new(@_);
}
bless { api_client => $api_client }, $class;
}
#
# create_log_aws_s3
#
# Create an AWS S3 log endpoint
#
# @param string $service_id Alphanumeric string identifying the service. (required)
# @param int $version_id Integer identifying a service version. (required)
# @param string $name The name for the real-time logging configuration. (optional)
# @param string $placement Where in the generated VCL the logging call should be placed. If not set, endpoints with `format_version` of 2 are placed in `vcl_log` and those with `format_version` of 1 are placed in `vcl_deliver`. (optional)
# @param int $format_version The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. (optional, default to 2)
# @param string $response_condition The name of an existing condition in the configured endpoint, or leave blank to always execute. (optional)
# @param string $format A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). (optional, default to '%h %l %u %t "%r" %>s %b')
# @param string $message_type How the message should be formatted. (optional, default to 'classic')
# @param string $timestamp_format A timestamp format (optional)
# @param int $period How frequently log files are finalized so they can be available for reading (in seconds). (optional, default to 3600)
# @param int $gzip_level The level of gzip encoding when sending logs (default `0`, no compression). Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error. (optional, default to 0)
# @param string $compression_codec The codec used for compressing your logs. Valid values are `zstd`, `snappy`, and `gzip`. Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error. (optional)
# @param string $access_key The access key for your S3 account. Not required if `iam_role` is provided. (optional)
# @param string $acl The access control list (ACL) specific request header. See the AWS documentation for [Access Control List (ACL) Specific Request Headers](https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadInitiate.html#initiate-mpu-acl-specific-request-headers) for more information. (optional)
# @param string $bucket_name The bucket name for S3 account. (optional)
# @param string $domain The domain of the Amazon S3 endpoint. (optional)
# @param string $iam_role The Amazon Resource Name (ARN) for the IAM role granting Fastly access to S3. Not required if `access_key` and `secret_key` are provided. (optional)
# @param string $path The path to upload logs to. (optional, default to 'null')
# @param string $public_key A PGP public key that Fastly will use to encrypt your log files before writing them to disk. (optional, default to 'null')
# @param string $redundancy The S3 redundancy level. (optional, default to 'null')
# @param string $secret_key The secret key for your S3 account. Not required if `iam_role` is provided. (optional)
# @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')
# @param string $server_side_encryption Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. (optional, default to 'null')
{
my $params = {
'service_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying the service.',
required => '1',
},
'version_id' => {
data_type => 'int',
description => 'Integer identifying a service version.',
required => '1',
},
'name' => {
data_type => 'string',
description => 'The name for the real-time logging configuration.',
required => '0',
},
'placement' => {
data_type => 'string',
description => 'Where in the generated VCL the logging call should be placed. If not set, endpoints with `format_version` of 2 are placed in `vcl_log` and those with `format_version` of 1 are placed in `vcl_deliver`. ',
required => '0',
},
'format_version' => {
data_type => 'int',
description => 'The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. ',
required => '0',
},
'response_condition' => {
data_type => 'string',
description => 'The name of an existing condition in the configured endpoint, or leave blank to always execute.',
required => '0',
},
'format' => {
data_type => 'string',
description => 'A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats).',
required => '0',
},
'message_type' => {
data_type => 'string',
description => 'How the message should be formatted.',
required => '0',
},
'timestamp_format' => {
data_type => 'string',
description => 'A timestamp format',
required => '0',
},
'period' => {
data_type => 'int',
description => 'How frequently log files are finalized so they can be available for reading (in seconds).',
required => '0',
},
'gzip_level' => {
data_type => 'int',
description => 'The level of gzip encoding when sending logs (default `0`, no compression). Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error.',
required => '0',
},
'compression_codec' => {
data_type => 'string',
description => 'The codec used for compressing your logs. Valid values are `zstd`, `snappy`, and `gzip`. Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error.',
required => '0',
},
'access_key' => {
data_type => 'string',
description => 'The access key for your S3 account. Not required if `iam_role` is provided.',
required => '0',
},
'acl' => {
data_type => 'string',
description => 'The access control list (ACL) specific request header. See the AWS documentation for [Access Control List (ACL) Specific Request Headers](https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadInitiate.html#initiate-mpu-acl-specific-request-headers) for more information.',
required => '0',
},
'bucket_name' => {
data_type => 'string',
description => 'The bucket name for S3 account.',
required => '0',
},
'domain' => {
data_type => 'string',
description => 'The domain of the Amazon S3 endpoint.',
required => '0',
},
'iam_role' => {
data_type => 'string',
description => 'The Amazon Resource Name (ARN) for the IAM role granting Fastly access to S3. Not required if `access_key` and `secret_key` are provided.',
required => '0',
},
'path' => {
data_type => 'string',
description => 'The path to upload logs to.',
required => '0',
},
'public_key' => {
data_type => 'string',
description => 'A PGP public key that Fastly will use to encrypt your log files before writing them to disk.',
required => '0',
},
'redundancy' => {
data_type => 'string',
description => 'The S3 redundancy level.',
required => '0',
},
'secret_key' => {
data_type => 'string',
description => 'The secret key for your S3 account. Not required if `iam_role` is provided.',
required => '0',
},
'server_side_encryption_kms_key_id' => {
data_type => 'string',
description => 'Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`.',
required => '0',
},
'server_side_encryption' => {
data_type => 'string',
description => 'Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.',
required => '0',
},
};
__PACKAGE__->method_documentation->{ 'create_log_aws_s3' } = {
summary => 'Create an AWS S3 log endpoint',
params => $params,
returns => 'LoggingS3Response',
};
}
# @return LoggingS3Response
#
sub create_log_aws_s3 {
my ($self, %args) = @_;
# verify the required parameter 'service_id' is set
unless (exists $args{'service_id'}) {
croak("Missing the required parameter 'service_id' when calling create_log_aws_s3");
}
# verify the required parameter 'version_id' is set
unless (exists $args{'version_id'}) {
croak("Missing the required parameter 'version_id' when calling create_log_aws_s3");
}
# parse inputs
my $_resource_path = '/service/{service_id}/version/{version_id}/logging/s3';
my $_method = 'POST';
my $query_params = {};
my $header_params = {};
my $form_params = {};
# 'Accept' and 'Content-Type' header
my $_header_accept = $self->{api_client}->select_header_accept('application/json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type('application/x-www-form-urlencoded');
# path params
if ( exists $args{'service_id'}) {
my $_base_variable = "{" . "service_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'service_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'version_id'}) {
my $_base_variable = "{" . "version_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'version_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# form params
if ( exists $args{'name'} ) {
$form_params->{'name'} = $self->{api_client}->to_form_value($args{'name'});
}
# form params
if ( exists $args{'placement'} ) {
$form_params->{'placement'} = $self->{api_client}->to_form_value($args{'placement'});
}
# form params
if ( exists $args{'format_version'} ) {
$form_params->{'format_version'} = $self->{api_client}->to_form_value($args{'format_version'});
}
# form params
if ( exists $args{'response_condition'} ) {
$form_params->{'response_condition'} = $self->{api_client}->to_form_value($args{'response_condition'});
}
# form params
if ( exists $args{'format'} ) {
$form_params->{'format'} = $self->{api_client}->to_form_value($args{'format'});
}
# form params
if ( exists $args{'message_type'} ) {
$form_params->{'message_type'} = $self->{api_client}->to_form_value($args{'message_type'});
}
# form params
if ( exists $args{'timestamp_format'} ) {
$form_params->{'timestamp_format'} = $self->{api_client}->to_form_value($args{'timestamp_format'});
}
# form params
if ( exists $args{'period'} ) {
$form_params->{'period'} = $self->{api_client}->to_form_value($args{'period'});
}
# form params
if ( exists $args{'gzip_level'} ) {
$form_params->{'gzip_level'} = $self->{api_client}->to_form_value($args{'gzip_level'});
}
# form params
if ( exists $args{'compression_codec'} ) {
$form_params->{'compression_codec'} = $self->{api_client}->to_form_value($args{'compression_codec'});
}
# form params
if ( exists $args{'access_key'} ) {
$form_params->{'access_key'} = $self->{api_client}->to_form_value($args{'access_key'});
}
# form params
if ( exists $args{'acl'} ) {
$form_params->{'acl'} = $self->{api_client}->to_form_value($args{'acl'});
}
# form params
if ( exists $args{'bucket_name'} ) {
$form_params->{'bucket_name'} = $self->{api_client}->to_form_value($args{'bucket_name'});
}
# form params
if ( exists $args{'domain'} ) {
$form_params->{'domain'} = $self->{api_client}->to_form_value($args{'domain'});
}
# form params
if ( exists $args{'iam_role'} ) {
$form_params->{'iam_role'} = $self->{api_client}->to_form_value($args{'iam_role'});
}
# form params
if ( exists $args{'path'} ) {
$form_params->{'path'} = $self->{api_client}->to_form_value($args{'path'});
}
# form params
if ( exists $args{'public_key'} ) {
$form_params->{'public_key'} = $self->{api_client}->to_form_value($args{'public_key'});
}
# form params
if ( exists $args{'redundancy'} ) {
$form_params->{'redundancy'} = $self->{api_client}->to_form_value($args{'redundancy'});
}
# form params
if ( exists $args{'secret_key'} ) {
$form_params->{'secret_key'} = $self->{api_client}->to_form_value($args{'secret_key'});
}
# form params
if ( exists $args{'server_side_encryption_kms_key_id'} ) {
$form_params->{'server_side_encryption_kms_key_id'} = $self->{api_client}->to_form_value($args{'server_side_encryption_kms_key_id'});
}
# form params
if ( exists $args{'server_side_encryption'} ) {
$form_params->{'server_side_encryption'} = $self->{api_client}->to_form_value($args{'server_side_encryption'});
}
my $_body_data;
# authentication setting, if any
my $auth_settings = [qw(token )];
# make the API Call
my $response = $self->{api_client}->call_api($_resource_path, $_method,
$query_params, $form_params,
$header_params, $_body_data, $auth_settings);
if (!$response) {
return;
}
my $_response_object = $self->{api_client}->deserialize('LoggingS3Response', $response);
return $_response_object;
}
#
# delete_log_aws_s3
#
# Delete an AWS S3 log endpoint
#
# @param string $service_id Alphanumeric string identifying the service. (required)
# @param int $version_id Integer identifying a service version. (required)
# @param string $logging_s3_name The name for the real-time logging configuration. (required)
{
my $params = {
'service_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying the service.',
required => '1',
},
'version_id' => {
data_type => 'int',
description => 'Integer identifying a service version.',
required => '1',
},
'logging_s3_name' => {
data_type => 'string',
description => 'The name for the real-time logging configuration.',
required => '1',
},
};
__PACKAGE__->method_documentation->{ 'delete_log_aws_s3' } = {
summary => 'Delete an AWS S3 log endpoint',
params => $params,
returns => 'InlineResponse200',
};
}
# @return InlineResponse200
#
sub delete_log_aws_s3 {
my ($self, %args) = @_;
# verify the required parameter 'service_id' is set
unless (exists $args{'service_id'}) {
croak("Missing the required parameter 'service_id' when calling delete_log_aws_s3");
}
# verify the required parameter 'version_id' is set
unless (exists $args{'version_id'}) {
croak("Missing the required parameter 'version_id' when calling delete_log_aws_s3");
}
# verify the required parameter 'logging_s3_name' is set
unless (exists $args{'logging_s3_name'}) {
croak("Missing the required parameter 'logging_s3_name' when calling delete_log_aws_s3");
}
# parse inputs
my $_resource_path = '/service/{service_id}/version/{version_id}/logging/s3/{logging_s3_name}';
my $_method = 'DELETE';
my $query_params = {};
my $header_params = {};
my $form_params = {};
# 'Accept' and 'Content-Type' header
my $_header_accept = $self->{api_client}->select_header_accept('application/json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type();
# path params
if ( exists $args{'service_id'}) {
my $_base_variable = "{" . "service_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'service_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'version_id'}) {
my $_base_variable = "{" . "version_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'version_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'logging_s3_name'}) {
my $_base_variable = "{" . "logging_s3_name" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'logging_s3_name'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
my $_body_data;
# authentication setting, if any
my $auth_settings = [qw(token )];
# make the API Call
my $response = $self->{api_client}->call_api($_resource_path, $_method,
$query_params, $form_params,
$header_params, $_body_data, $auth_settings);
if (!$response) {
return;
}
my $_response_object = $self->{api_client}->deserialize('InlineResponse200', $response);
return $_response_object;
}
#
# get_log_aws_s3
#
# Get an AWS S3 log endpoint
#
# @param string $service_id Alphanumeric string identifying the service. (required)
# @param int $version_id Integer identifying a service version. (required)
# @param string $logging_s3_name The name for the real-time logging configuration. (required)
{
my $params = {
'service_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying the service.',
required => '1',
},
'version_id' => {
data_type => 'int',
description => 'Integer identifying a service version.',
required => '1',
},
'logging_s3_name' => {
data_type => 'string',
description => 'The name for the real-time logging configuration.',
required => '1',
},
};
__PACKAGE__->method_documentation->{ 'get_log_aws_s3' } = {
summary => 'Get an AWS S3 log endpoint',
params => $params,
returns => 'LoggingS3Response',
};
}
# @return LoggingS3Response
#
sub get_log_aws_s3 {
my ($self, %args) = @_;
# verify the required parameter 'service_id' is set
unless (exists $args{'service_id'}) {
croak("Missing the required parameter 'service_id' when calling get_log_aws_s3");
}
# verify the required parameter 'version_id' is set
unless (exists $args{'version_id'}) {
croak("Missing the required parameter 'version_id' when calling get_log_aws_s3");
}
# verify the required parameter 'logging_s3_name' is set
unless (exists $args{'logging_s3_name'}) {
croak("Missing the required parameter 'logging_s3_name' when calling get_log_aws_s3");
}
# parse inputs
my $_resource_path = '/service/{service_id}/version/{version_id}/logging/s3/{logging_s3_name}';
my $_method = 'GET';
my $query_params = {};
my $header_params = {};
my $form_params = {};
# 'Accept' and 'Content-Type' header
my $_header_accept = $self->{api_client}->select_header_accept('application/json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type();
# path params
if ( exists $args{'service_id'}) {
my $_base_variable = "{" . "service_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'service_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'version_id'}) {
my $_base_variable = "{" . "version_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'version_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'logging_s3_name'}) {
my $_base_variable = "{" . "logging_s3_name" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'logging_s3_name'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
my $_body_data;
# authentication setting, if any
my $auth_settings = [qw(token )];
# make the API Call
my $response = $self->{api_client}->call_api($_resource_path, $_method,
$query_params, $form_params,
$header_params, $_body_data, $auth_settings);
if (!$response) {
return;
}
my $_response_object = $self->{api_client}->deserialize('LoggingS3Response', $response);
return $_response_object;
}
#
# list_log_aws_s3
#
# List AWS S3 log endpoints
#
# @param string $service_id Alphanumeric string identifying the service. (required)
# @param int $version_id Integer identifying a service version. (required)
{
my $params = {
'service_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying the service.',
required => '1',
},
'version_id' => {
data_type => 'int',
description => 'Integer identifying a service version.',
required => '1',
},
};
__PACKAGE__->method_documentation->{ 'list_log_aws_s3' } = {
summary => 'List AWS S3 log endpoints',
params => $params,
returns => 'ARRAY[LoggingS3Response]',
};
}
# @return ARRAY[LoggingS3Response]
#
sub list_log_aws_s3 {
my ($self, %args) = @_;
# verify the required parameter 'service_id' is set
unless (exists $args{'service_id'}) {
croak("Missing the required parameter 'service_id' when calling list_log_aws_s3");
}
# verify the required parameter 'version_id' is set
unless (exists $args{'version_id'}) {
croak("Missing the required parameter 'version_id' when calling list_log_aws_s3");
}
# parse inputs
my $_resource_path = '/service/{service_id}/version/{version_id}/logging/s3';
my $_method = 'GET';
my $query_params = {};
my $header_params = {};
my $form_params = {};
# 'Accept' and 'Content-Type' header
my $_header_accept = $self->{api_client}->select_header_accept('application/json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type();
# path params
if ( exists $args{'service_id'}) {
my $_base_variable = "{" . "service_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'service_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'version_id'}) {
my $_base_variable = "{" . "version_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'version_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
my $_body_data;
# authentication setting, if any
my $auth_settings = [qw(token )];
# make the API Call
my $response = $self->{api_client}->call_api($_resource_path, $_method,
$query_params, $form_params,
$header_params, $_body_data, $auth_settings);
if (!$response) {
return;
}
my $_response_object = $self->{api_client}->deserialize('ARRAY[LoggingS3Response]', $response);
return $_response_object;
}
#
# update_log_aws_s3
#
# Update an AWS S3 log endpoint
#
# @param string $service_id Alphanumeric string identifying the service. (required)
# @param int $version_id Integer identifying a service version. (required)
# @param string $logging_s3_name The name for the real-time logging configuration. (required)
# @param string $name The name for the real-time logging configuration. (optional)
# @param string $placement Where in the generated VCL the logging call should be placed. If not set, endpoints with `format_version` of 2 are placed in `vcl_log` and those with `format_version` of 1 are placed in `vcl_deliver`. (optional)
# @param int $format_version The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. (optional, default to 2)
# @param string $response_condition The name of an existing condition in the configured endpoint, or leave blank to always execute. (optional)
# @param string $format A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). (optional, default to '%h %l %u %t "%r" %>s %b')
# @param string $message_type How the message should be formatted. (optional, default to 'classic')
# @param string $timestamp_format A timestamp format (optional)
# @param int $period How frequently log files are finalized so they can be available for reading (in seconds). (optional, default to 3600)
# @param int $gzip_level The level of gzip encoding when sending logs (default `0`, no compression). Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error. (optional, default to 0)
# @param string $compression_codec The codec used for compressing your logs. Valid values are `zstd`, `snappy`, and `gzip`. Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error. (optional)
# @param string $access_key The access key for your S3 account. Not required if `iam_role` is provided. (optional)
# @param string $acl The access control list (ACL) specific request header. See the AWS documentation for [Access Control List (ACL) Specific Request Headers](https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadInitiate.html#initiate-mpu-acl-specific-request-headers) for more information. (optional)
# @param string $bucket_name The bucket name for S3 account. (optional)
# @param string $domain The domain of the Amazon S3 endpoint. (optional)
# @param string $iam_role The Amazon Resource Name (ARN) for the IAM role granting Fastly access to S3. Not required if `access_key` and `secret_key` are provided. (optional)
# @param string $path The path to upload logs to. (optional, default to 'null')
# @param string $public_key A PGP public key that Fastly will use to encrypt your log files before writing them to disk. (optional, default to 'null')
# @param string $redundancy The S3 redundancy level. (optional, default to 'null')
# @param string $secret_key The secret key for your S3 account. Not required if `iam_role` is provided. (optional)
# @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')
# @param string $server_side_encryption Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. (optional, default to 'null')
{
my $params = {
'service_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying the service.',
required => '1',
},
'version_id' => {
data_type => 'int',
description => 'Integer identifying a service version.',
required => '1',
},
'logging_s3_name' => {
data_type => 'string',
description => 'The name for the real-time logging configuration.',
required => '1',
},
'name' => {
data_type => 'string',
description => 'The name for the real-time logging configuration.',
required => '0',
},
'placement' => {
data_type => 'string',
description => 'Where in the generated VCL the logging call should be placed. If not set, endpoints with `format_version` of 2 are placed in `vcl_log` and those with `format_version` of 1 are placed in `vcl_deliver`. ',
required => '0',
},
'format_version' => {
data_type => 'int',
description => 'The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. ',
required => '0',
},
'response_condition' => {
data_type => 'string',
description => 'The name of an existing condition in the configured endpoint, or leave blank to always execute.',
required => '0',
},
'format' => {
data_type => 'string',
description => 'A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats).',
required => '0',
},
'message_type' => {
data_type => 'string',
description => 'How the message should be formatted.',
required => '0',
},
'timestamp_format' => {
data_type => 'string',
description => 'A timestamp format',
required => '0',
},
'period' => {
data_type => 'int',
description => 'How frequently log files are finalized so they can be available for reading (in seconds).',
required => '0',
},
'gzip_level' => {
data_type => 'int',
description => 'The level of gzip encoding when sending logs (default `0`, no compression). Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error.',
required => '0',
},
'compression_codec' => {
data_type => 'string',
description => 'The codec used for compressing your logs. Valid values are `zstd`, `snappy`, and `gzip`. Specifying both `compression_codec` and `gzip_level` in the same API request will result in an error.',
required => '0',
},
'access_key' => {
data_type => 'string',
description => 'The access key for your S3 account. Not required if `iam_role` is provided.',
required => '0',
},
'acl' => {
data_type => 'string',
description => 'The access control list (ACL) specific request header. See the AWS documentation for [Access Control List (ACL) Specific Request Headers](https://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadInitiate.html#initiate-mpu-acl-specific-request-headers) for more information.',
required => '0',
},
'bucket_name' => {
data_type => 'string',
description => 'The bucket name for S3 account.',
required => '0',
},
'domain' => {
data_type => 'string',
description => 'The domain of the Amazon S3 endpoint.',
required => '0',
},
'iam_role' => {
data_type => 'string',
description => 'The Amazon Resource Name (ARN) for the IAM role granting Fastly access to S3. Not required if `access_key` and `secret_key` are provided.',
required => '0',
},
'path' => {
data_type => 'string',
description => 'The path to upload logs to.',
required => '0',
},
'public_key' => {
data_type => 'string',
description => 'A PGP public key that Fastly will use to encrypt your log files before writing them to disk.',
required => '0',
},
'redundancy' => {
data_type => 'string',
description => 'The S3 redundancy level.',
required => '0',
},
'secret_key' => {
data_type => 'string',
description => 'The secret key for your S3 account. Not required if `iam_role` is provided.',
required => '0',
},
'server_side_encryption_kms_key_id' => {
data_type => 'string',
description => 'Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`.',
required => '0',
},
'server_side_encryption' => {
data_type => 'string',
description => 'Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.',
required => '0',
},
};
__PACKAGE__->method_documentation->{ 'update_log_aws_s3' } = {
summary => 'Update an AWS S3 log endpoint',
params => $params,
returns => 'LoggingS3Response',
};
}
# @return LoggingS3Response
#
sub update_log_aws_s3 {
my ($self, %args) = @_;
# verify the required parameter 'service_id' is set
unless (exists $args{'service_id'}) {
croak("Missing the required parameter 'service_id' when calling update_log_aws_s3");
}
# verify the required parameter 'version_id' is set
unless (exists $args{'version_id'}) {
croak("Missing the required parameter 'version_id' when calling update_log_aws_s3");
}
# verify the required parameter 'logging_s3_name' is set
unless (exists $args{'logging_s3_name'}) {
croak("Missing the required parameter 'logging_s3_name' when calling update_log_aws_s3");
}
# parse inputs
my $_resource_path = '/service/{service_id}/version/{version_id}/logging/s3/{logging_s3_name}';
my $_method = 'PUT';
my $query_params = {};
my $header_params = {};
my $form_params = {};
# 'Accept' and 'Content-Type' header
my $_header_accept = $self->{api_client}->select_header_accept('application/json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type('application/x-www-form-urlencoded');
# path params
if ( exists $args{'service_id'}) {
my $_base_variable = "{" . "service_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'service_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'version_id'}) {
my $_base_variable = "{" . "version_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'version_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# path params
if ( exists $args{'logging_s3_name'}) {
my $_base_variable = "{" . "logging_s3_name" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'logging_s3_name'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
# form params
if ( exists $args{'name'} ) {
$form_params->{'name'} = $self->{api_client}->to_form_value($args{'name'});
}
# form params
if ( exists $args{'placement'} ) {
$form_params->{'placement'} = $self->{api_client}->to_form_value($args{'placement'});
}
# form params
if ( exists $args{'format_version'} ) {
$form_params->{'format_version'} = $self->{api_client}->to_form_value($args{'format_version'});
}
# form params
if ( exists $args{'response_condition'} ) {
$form_params->{'response_condition'} = $self->{api_client}->to_form_value($args{'response_condition'});
}
# form params
if ( exists $args{'format'} ) {
$form_params->{'format'} = $self->{api_client}->to_form_value($args{'format'});
}
# form params
if ( exists $args{'message_type'} ) {
$form_params->{'message_type'} = $self->{api_client}->to_form_value($args{'message_type'});
}
# form params
if ( exists $args{'timestamp_format'} ) {
$form_params->{'timestamp_format'} = $self->{api_client}->to_form_value($args{'timestamp_format'});
}
# form params
if ( exists $args{'period'} ) {
$form_params->{'period'} = $self->{api_client}->to_form_value($args{'period'});
}
# form params
if ( exists $args{'gzip_level'} ) {
$form_params->{'gzip_level'} = $self->{api_client}->to_form_value($args{'gzip_level'});
}
# form params
if ( exists $args{'compression_codec'} ) {
$form_params->{'compression_codec'} = $self->{api_client}->to_form_value($args{'compression_codec'});
}
# form params
if ( exists $args{'access_key'} ) {
$form_params->{'access_key'} = $self->{api_client}->to_form_value($args{'access_key'});
}
# form params
if ( exists $args{'acl'} ) {
$form_params->{'acl'} = $self->{api_client}->to_form_value($args{'acl'});
}
# form params
if ( exists $args{'bucket_name'} ) {
$form_params->{'bucket_name'} = $self->{api_client}->to_form_value($args{'bucket_name'});
}
# form params
if ( exists $args{'domain'} ) {
$form_params->{'domain'} = $self->{api_client}->to_form_value($args{'domain'});
}
# form params
if ( exists $args{'iam_role'} ) {
$form_params->{'iam_role'} = $self->{api_client}->to_form_value($args{'iam_role'});
}
# form params
if ( exists $args{'path'} ) {
$form_params->{'path'} = $self->{api_client}->to_form_value($args{'path'});
}
# form params
if ( exists $args{'public_key'} ) {
$form_params->{'public_key'} = $self->{api_client}->to_form_value($args{'public_key'});
}
# form params
if ( exists $args{'redundancy'} ) {
$form_params->{'redundancy'} = $self->{api_client}->to_form_value($args{'redundancy'});
}
# form params
if ( exists $args{'secret_key'} ) {
$form_params->{'secret_key'} = $self->{api_client}->to_form_value($args{'secret_key'});
}
# form params
if ( exists $args{'server_side_encryption_kms_key_id'} ) {
$form_params->{'server_side_encryption_kms_key_id'} = $self->{api_client}->to_form_value($args{'server_side_encryption_kms_key_id'});
}
# form params
if ( exists $args{'server_side_encryption'} ) {
$form_params->{'server_side_encryption'} = $self->{api_client}->to_form_value($args{'server_side_encryption'});
}
my $_body_data;
# authentication setting, if any
my $auth_settings = [qw(token )];
# make the API Call
my $response = $self->{api_client}->call_api($_resource_path, $_method,
$query_params, $form_params,
$header_params, $_body_data, $auth_settings);
if (!$response) {
return;
}
my $_response_object = $self->{api_client}->deserialize('LoggingS3Response', $response);
return $_response_object;
}
1;