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_configuration_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a TLS configuration.'
,
required
=>
'1'
,
},
'include'
=> {
data_type
=>
'string'
,
description
=>
'Include related objects. Optional, comma-separated values. Permitted values: `dns_records`. '
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'get_tls_config'
} = {
summary
=>
'Get a TLS configuration'
,
params
=>
$params
,
returns
=>
'TlsConfigurationResponse'
,
};
}
sub
get_tls_config {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'tls_configuration_id'
}) {
croak(
"Missing the required parameter 'tls_configuration_id' when calling get_tls_config"
);
}
my
$_resource_path
=
'/tls/configurations/{tls_configuration_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_configuration_id'
}) {
my
$_base_variable
=
"{"
.
"tls_configuration_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'tls_configuration_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(
'TlsConfigurationResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'filter[bulk]'
=> {
data_type
=>
'string'
,
description
=>
'Optionally filters by the bulk attribute.'
,
required
=>
'0'
,
},
'include'
=> {
data_type
=>
'string'
,
description
=>
'Include related objects. Optional, comma-separated values. Permitted values: `dns_records`. '
,
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_configs'
} = {
summary
=>
'List TLS configurations'
,
params
=>
$params
,
returns
=>
'TlsConfigurationsResponse'
,
};
}
sub
list_tls_configs {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/tls/configurations'
;
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[bulk]'
}) {
$query_params
->{
'filter[bulk]'
} =
$self
->{api_client}->to_query_value(
$args
{
'filter[bulk]'
});
}
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(
'TlsConfigurationsResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'tls_configuration_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a TLS configuration.'
,
required
=>
'1'
,
},
'tls_configuration'
=> {
data_type
=>
'TlsConfiguration'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'update_tls_config'
} = {
summary
=>
'Update a TLS configuration'
,
params
=>
$params
,
returns
=>
'TlsConfigurationResponse'
,
};
}
sub
update_tls_config {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'tls_configuration_id'
}) {
croak(
"Missing the required parameter 'tls_configuration_id' when calling update_tls_config"
);
}
my
$_resource_path
=
'/tls/configurations/{tls_configuration_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_configuration_id'
}) {
my
$_base_variable
=
"{"
.
"tls_configuration_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'tls_configuration_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
if
(
exists
$args
{
'tls_configuration'
}) {
$_body_data
=
$args
{
'tls_configuration'
};
}
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(
'TlsConfigurationResponse'
,
$response
);
return
$_response_object
;
}
1;