Hide Show 12 lines of Pod
require
5.6.0;
__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
;
}
{
my
$params
= {
'tls_activation'
=> {
data_type
=>
'TlsActivation'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'create_tls_activation'
} = {
summary
=>
'Enable TLS for a domain using a custom certificate'
,
params
=>
$params
,
returns
=>
'TlsActivationResponse'
,
};
}
sub
create_tls_activation {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/tls/activations'
;
my
$_method
=
'POST'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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
;
if
(
exists
$args
{
'tls_activation'
}) {
$_body_data
=
$args
{
'tls_activation'
};
}
my
$auth_settings
= [
qw(token )
];
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(
'TlsActivationResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'tls_activation_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a TLS activation.'
,
required
=>
'1'
,
},
};
__PACKAGE__->method_documentation->{
'delete_tls_activation'
} = {
summary
=>
'Disable TLS on a domain'
,
params
=>
$params
,
returns
=>
undef
,
};
}
sub
delete_tls_activation {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'tls_activation_id'
}) {
croak(
"Missing the required parameter 'tls_activation_id' when calling delete_tls_activation"
);
}
my
$_resource_path
=
'/tls/activations/{tls_activation_id}'
;
my
$_method
=
'DELETE'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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();
if
(
exists
$args
{
'tls_activation_id'
}) {
my
$_base_variable
=
"{"
.
"tls_activation_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'tls_activation_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
my
$auth_settings
= [
qw(token )
];
$self
->{api_client}->call_api(
$_resource_path
,
$_method
,
$query_params
,
$form_params
,
$header_params
,
$_body_data
,
$auth_settings
);
return
;
}
{
my
$params
= {
'tls_activation_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a TLS activation.'
,
required
=>
'1'
,
},
'include'
=> {
data_type
=>
'string'
,
description
=>
'Include related objects. Optional, comma-separated values. Permitted values: `tls_certificate`, `tls_configuration`, and `tls_domain`. '
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'get_tls_activation'
} = {
summary
=>
'Get a TLS activation'
,
params
=>
$params
,
returns
=>
'TlsActivationResponse'
,
};
}
sub
get_tls_activation {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'tls_activation_id'
}) {
croak(
"Missing the required parameter 'tls_activation_id' when calling get_tls_activation"
);
}
my
$_resource_path
=
'/tls/activations/{tls_activation_id}'
;
my
$_method
=
'GET'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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();
if
(
exists
$args
{
'include'
}) {
$query_params
->{
'include'
} =
$self
->{api_client}->to_query_value(
$args
{
'include'
});
}
if
(
exists
$args
{
'tls_activation_id'
}) {
my
$_base_variable
=
"{"
.
"tls_activation_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'tls_activation_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
my
$auth_settings
= [
qw(token )
];
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(
'TlsActivationResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'filter[tls_certificate/id]'
=> {
data_type
=>
'string'
,
description
=>
'Limit the returned activations to a specific certificate.'
,
required
=>
'0'
,
},
'filter[tls_configuration/id]'
=> {
data_type
=>
'string'
,
description
=>
'Limit the returned activations to a specific TLS configuration.'
,
required
=>
'0'
,
},
'filter[tls_domain/id]'
=> {
data_type
=>
'string'
,
description
=>
'Limit the returned rules to a specific domain name.'
,
required
=>
'0'
,
},
'include'
=> {
data_type
=>
'string'
,
description
=>
'Include related objects. Optional, comma-separated values. Permitted values: `tls_certificate`, `tls_configuration`, and `tls_domain`. '
,
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'
,
},
};
__PACKAGE__->method_documentation->{
'list_tls_activations'
} = {
summary
=>
'List TLS activations'
,
params
=>
$params
,
returns
=>
'TlsActivationsResponse'
,
};
}
sub
list_tls_activations {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/tls/activations'
;
my
$_method
=
'GET'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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();
if
(
exists
$args
{
'filter[tls_certificate/id]'
}) {
$query_params
->{
'filter[tls_certificate.id]'
} =
$self
->{api_client}->to_query_value(
$args
{
'filter[tls_certificate/id]'
});
}
if
(
exists
$args
{
'filter[tls_configuration/id]'
}) {
$query_params
->{
'filter[tls_configuration.id]'
} =
$self
->{api_client}->to_query_value(
$args
{
'filter[tls_configuration/id]'
});
}
if
(
exists
$args
{
'filter[tls_domain/id]'
}) {
$query_params
->{
'filter[tls_domain.id]'
} =
$self
->{api_client}->to_query_value(
$args
{
'filter[tls_domain/id]'
});
}
if
(
exists
$args
{
'include'
}) {
$query_params
->{
'include'
} =
$self
->{api_client}->to_query_value(
$args
{
'include'
});
}
if
(
exists
$args
{
'page[number]'
}) {
$query_params
->{
'page[number]'
} =
$self
->{api_client}->to_query_value(
$args
{
'page[number]'
});
}
if
(
exists
$args
{
'page[size]'
}) {
$query_params
->{
'page[size]'
} =
$self
->{api_client}->to_query_value(
$args
{
'page[size]'
});
}
my
$_body_data
;
my
$auth_settings
= [
qw(token )
];
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(
'TlsActivationsResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'tls_activation_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a TLS activation.'
,
required
=>
'1'
,
},
'tls_activation'
=> {
data_type
=>
'TlsActivation'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'update_tls_activation'
} = {
summary
=>
'Update a certificate'
,
params
=>
$params
,
returns
=>
'TlsActivationResponse'
,
};
}
sub
update_tls_activation {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'tls_activation_id'
}) {
croak(
"Missing the required parameter 'tls_activation_id' when calling update_tls_activation"
);
}
my
$_resource_path
=
'/tls/activations/{tls_activation_id}'
;
my
$_method
=
'PATCH'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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'
);
if
(
exists
$args
{
'tls_activation_id'
}) {
my
$_base_variable
=
"{"
.
"tls_activation_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'tls_activation_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
if
(
exists
$args
{
'tls_activation'
}) {
$_body_data
=
$args
{
'tls_activation'
};
}
my
$auth_settings
= [
qw(token )
];
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(
'TlsActivationResponse'
,
$response
);
return
$_response_object
;
}
1;