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://www.fastly.com/documentation/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;
}
#
# delete_bulk_tls_cert
#
# Delete a certificate
#
# @param string $certificate_id Alphanumeric string identifying a TLS bulk certificate. (required)
{
my $params = {
'certificate_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying a TLS bulk certificate.',
required => '1',
},
};
__PACKAGE__->method_documentation->{ 'delete_bulk_tls_cert' } = {
summary => 'Delete a certificate',
params => $params,
returns => undef,
};
}
# @return void
#
sub delete_bulk_tls_cert {
my ($self, %args) = @_;
# verify the required parameter 'certificate_id' is set
unless (exists $args{'certificate_id'}) {
croak("Missing the required parameter 'certificate_id' when calling delete_bulk_tls_cert");
}
# parse inputs
my $_resource_path = '/tls/bulk/certificates/{certificate_id}';
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();
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type();
# path params
if ( exists $args{'certificate_id'}) {
my $_base_variable = "{" . "certificate_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'certificate_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
$self->{api_client}->call_api($_resource_path, $_method,
$query_params, $form_params,
$header_params, $_body_data, $auth_settings);
return;
}
#
# get_tls_bulk_cert
#
# Get a certificate
#
# @param string $certificate_id Alphanumeric string identifying a TLS bulk certificate. (required)
{
my $params = {
'certificate_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying a TLS bulk certificate.',
required => '1',
},
};
__PACKAGE__->method_documentation->{ 'get_tls_bulk_cert' } = {
summary => 'Get a certificate',
params => $params,
returns => 'TlsBulkCertificateResponse',
};
}
# @return TlsBulkCertificateResponse
#
sub get_tls_bulk_cert {
my ($self, %args) = @_;
# verify the required parameter 'certificate_id' is set
unless (exists $args{'certificate_id'}) {
croak("Missing the required parameter 'certificate_id' when calling get_tls_bulk_cert");
}
# parse inputs
my $_resource_path = '/tls/bulk/certificates/{certificate_id}';
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/vnd.api+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{'certificate_id'}) {
my $_base_variable = "{" . "certificate_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'certificate_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('TlsBulkCertificateResponse', $response);
return $_response_object;
}
#
# list_tls_bulk_certs
#
# List certificates
#
# @param string $filter[tls_domain/id] Filter certificates by their matching, fully-qualified domain name. (optional)
# @param string $filter[not_before] Filter the returned certificates by not_before date in UTC. Accepts parameters: lt, lte, gt, gte (e.g., filter[not_before][gte]=2020-05-05). (optional)
# @param string $filter[not_after] Filter the returned certificates by expiry date in UTC. Accepts parameters: lt, lte, gt, gte (e.g., filter[not_after][lte]=2020-05-05). (optional)
# @param int $page[number] Current page. (optional)
# @param int $page[size] Number of records per page. (optional, default to 20)
# @param string $sort The order in which to list the results by creation date. (optional, default to 'created_at')
{
my $params = {
'filter[tls_domain/id]' => {
data_type => 'string',
description => 'Filter certificates by their matching, fully-qualified domain name.',
required => '0',
},
'filter[not_before]' => {
data_type => 'string',
description => 'Filter the returned certificates by not_before date in UTC. Accepts parameters: lt, lte, gt, gte (e.g., filter[not_before][gte]=2020-05-05). ',
required => '0',
},
'filter[not_after]' => {
data_type => 'string',
description => 'Filter the returned certificates by expiry date in UTC. Accepts parameters: lt, lte, gt, gte (e.g., filter[not_after][lte]=2020-05-05). ',
required => '0',
},
'page[number]' => {
data_type => 'int',
description => 'Current page.',
required => '0',
},
'page[size]' => {
data_type => 'int',
description => 'Number of records per page.',
required => '0',
},
'sort' => {
data_type => 'string',
description => 'The order in which to list the results by creation date.',
required => '0',
},
};
__PACKAGE__->method_documentation->{ 'list_tls_bulk_certs' } = {
summary => 'List certificates',
params => $params,
returns => 'TlsBulkCertificatesResponse',
};
}
# @return TlsBulkCertificatesResponse
#
sub list_tls_bulk_certs {
my ($self, %args) = @_;
# parse inputs
my $_resource_path = '/tls/bulk/certificates';
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/vnd.api+json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type();
# query params
if ( exists $args{'filter[tls_domain/id]'}) {
$query_params->{'filter[tls_domain.id]'} = $self->{api_client}->to_query_value($args{'filter[tls_domain/id]'});
}
# query params
if ( exists $args{'filter[not_before]'}) {
$query_params->{'filter[not_before]'} = $self->{api_client}->to_query_value($args{'filter[not_before]'});
}
# query params
if ( exists $args{'filter[not_after]'}) {
$query_params->{'filter[not_after]'} = $self->{api_client}->to_query_value($args{'filter[not_after]'});
}
# query params
if ( exists $args{'page[number]'}) {
$query_params->{'page[number]'} = $self->{api_client}->to_query_value($args{'page[number]'});
}
# query params
if ( exists $args{'page[size]'}) {
$query_params->{'page[size]'} = $self->{api_client}->to_query_value($args{'page[size]'});
}
# query params
if ( exists $args{'sort'}) {
$query_params->{'sort'} = $self->{api_client}->to_query_value($args{'sort'});
}
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('TlsBulkCertificatesResponse', $response);
return $_response_object;
}
#
# update_bulk_tls_cert
#
# Update a certificate
#
# @param string $certificate_id Alphanumeric string identifying a TLS bulk certificate. (required)
# @param TlsBulkCertificate $tls_bulk_certificate (optional)
{
my $params = {
'certificate_id' => {
data_type => 'string',
description => 'Alphanumeric string identifying a TLS bulk certificate.',
required => '1',
},
'tls_bulk_certificate' => {
data_type => 'TlsBulkCertificate',
description => '',
required => '0',
},
};
__PACKAGE__->method_documentation->{ 'update_bulk_tls_cert' } = {
summary => 'Update a certificate',
params => $params,
returns => 'TlsBulkCertificateResponse',
};
}
# @return TlsBulkCertificateResponse
#
sub update_bulk_tls_cert {
my ($self, %args) = @_;
# verify the required parameter 'certificate_id' is set
unless (exists $args{'certificate_id'}) {
croak("Missing the required parameter 'certificate_id' when calling update_bulk_tls_cert");
}
# parse inputs
my $_resource_path = '/tls/bulk/certificates/{certificate_id}';
my $_method = 'PATCH';
my $query_params = {};
my $header_params = {};
my $form_params = {};
# 'Accept' and 'Content-Type' header
my $_header_accept = $self->{api_client}->select_header_accept('application/vnd.api+json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type('application/vnd.api+json');
# path params
if ( exists $args{'certificate_id'}) {
my $_base_variable = "{" . "certificate_id" . "}";
my $_base_value = $self->{api_client}->to_path_value($args{'certificate_id'});
$_resource_path =~ s/$_base_variable/$_base_value/g;
}
my $_body_data;
# body params
if ( exists $args{'tls_bulk_certificate'}) {
$_body_data = $args{'tls_bulk_certificate'};
}
# 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('TlsBulkCertificateResponse', $response);
return $_response_object;
}
#
# upload_tls_bulk_cert
#
# Upload a certificate
#
# @param TlsBulkCertificate $tls_bulk_certificate (optional)
{
my $params = {
'tls_bulk_certificate' => {
data_type => 'TlsBulkCertificate',
description => '',
required => '0',
},
};
__PACKAGE__->method_documentation->{ 'upload_tls_bulk_cert' } = {
summary => 'Upload a certificate',
params => $params,
returns => 'TlsBulkCertificateResponse',
};
}
# @return TlsBulkCertificateResponse
#
sub upload_tls_bulk_cert {
my ($self, %args) = @_;
# parse inputs
my $_resource_path = '/tls/bulk/certificates';
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/vnd.api+json');
if ($_header_accept) {
$header_params->{'Accept'} = $_header_accept;
}
$header_params->{'Content-Type'} = $self->{api_client}->select_header_content_type('application/vnd.api+json');
my $_body_data;
# body params
if ( exists $args{'tls_bulk_certificate'}) {
$_body_data = $args{'tls_bulk_certificate'};
}
# 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('TlsBulkCertificateResponse', $response);
return $_response_object;
}
1;