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
= {
'mutual_authentication'
=> {
data_type
=>
'MutualAuthentication'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'create_mutual_tls_authentication'
} = {
summary
=>
'Create a Mutual Authentication'
,
params
=>
$params
,
returns
=>
'MutualAuthenticationResponse'
,
};
}
sub
create_mutual_tls_authentication {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/tls/mutual_authentications'
;
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
{
'mutual_authentication'
}) {
$_body_data
=
$args
{
'mutual_authentication'
};
}
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(
'MutualAuthenticationResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'mutual_authentication_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a mutual authentication.'
,
required
=>
'1'
,
},
};
__PACKAGE__->method_documentation->{
'delete_mutual_tls'
} = {
summary
=>
'Delete a Mutual TLS'
,
params
=>
$params
,
returns
=>
undef
,
};
}
sub
delete_mutual_tls {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'mutual_authentication_id'
}) {
croak(
"Missing the required parameter 'mutual_authentication_id' when calling delete_mutual_tls"
);
}
my
$_resource_path
=
'/tls/mutual_authentications/{mutual_authentication_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
{
'mutual_authentication_id'
}) {
my
$_base_variable
=
"{"
.
"mutual_authentication_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'mutual_authentication_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
= {
'mutual_authentication_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a mutual authentication.'
,
required
=>
'1'
,
},
};
__PACKAGE__->method_documentation->{
'get_mutual_authentication'
} = {
summary
=>
'Get a Mutual Authentication'
,
params
=>
$params
,
returns
=>
'MutualAuthenticationResponse'
,
};
}
sub
get_mutual_authentication {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'mutual_authentication_id'
}) {
croak(
"Missing the required parameter 'mutual_authentication_id' when calling get_mutual_authentication"
);
}
my
$_resource_path
=
'/tls/mutual_authentications/{mutual_authentication_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
{
'mutual_authentication_id'
}) {
my
$_base_variable
=
"{"
.
"mutual_authentication_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'mutual_authentication_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(
'MutualAuthenticationResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'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_mutual_authentications'
} = {
summary
=>
'List Mutual Authentications'
,
params
=>
$params
,
returns
=>
'MutualAuthenticationsResponse'
,
};
}
sub
list_mutual_authentications {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/tls/mutual_authentications'
;
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
{
'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(
'MutualAuthenticationsResponse'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'mutual_authentication_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying a mutual authentication.'
,
required
=>
'1'
,
},
'mutual_authentication'
=> {
data_type
=>
'MutualAuthentication'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'patch_mutual_authentication'
} = {
summary
=>
'Update a Mutual Authentication'
,
params
=>
$params
,
returns
=>
'MutualAuthenticationResponse'
,
};
}
sub
patch_mutual_authentication {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'mutual_authentication_id'
}) {
croak(
"Missing the required parameter 'mutual_authentication_id' when calling patch_mutual_authentication"
);
}
my
$_resource_path
=
'/tls/mutual_authentications/{mutual_authentication_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
{
'mutual_authentication_id'
}) {
my
$_base_variable
=
"{"
.
"mutual_authentication_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'mutual_authentication_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
if
(
exists
$args
{
'mutual_authentication'
}) {
$_body_data
=
$args
{
'mutual_authentication'
};
}
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(
'MutualAuthenticationResponse'
,
$response
);
return
$_response_object
;
}
1;