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
= {
'role_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying the role.'
,
required
=>
'1'
,
},
'request_body'
=> {
data_type
=>
'HASH[string,object]'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'add_role_permissions'
} = {
summary
=>
'Add permissions to a role'
,
params
=>
$params
,
returns
=>
'object'
,
};
}
sub
add_role_permissions {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'role_id'
}) {
croak(
"Missing the required parameter 'role_id' when calling add_role_permissions"
);
}
my
$_resource_path
=
'/roles/{role_id}/permissions'
;
my
$_method
=
'POST'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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/json'
);
if
(
exists
$args
{
'role_id'
}) {
my
$_base_variable
=
"{"
.
"role_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'role_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
if
(
exists
$args
{
'request_body'
}) {
$_body_data
=
$args
{
'request_body'
};
}
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(
'object'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'request_body'
=> {
data_type
=>
'HASH[string,object]'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'create_a_role'
} = {
summary
=>
'Create a role'
,
params
=>
$params
,
returns
=>
'object'
,
};
}
sub
create_a_role {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/roles'
;
my
$_method
=
'POST'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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/json'
);
my
$_body_data
;
if
(
exists
$args
{
'request_body'
}) {
$_body_data
=
$args
{
'request_body'
};
}
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(
'object'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'role_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying the role.'
,
required
=>
'1'
,
},
};
__PACKAGE__->method_documentation->{
'delete_a_role'
} = {
summary
=>
'Delete a role'
,
params
=>
$params
,
returns
=>
undef
,
};
}
sub
delete_a_role {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'role_id'
}) {
croak(
"Missing the required parameter 'role_id' when calling delete_a_role"
);
}
my
$_resource_path
=
'/roles/{role_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
{
'role_id'
}) {
my
$_base_variable
=
"{"
.
"role_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'role_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
= {
'role_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying the role.'
,
required
=>
'1'
,
},
};
__PACKAGE__->method_documentation->{
'get_a_role'
} = {
summary
=>
'Get a role'
,
params
=>
$params
,
returns
=>
'object'
,
};
}
sub
get_a_role {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'role_id'
}) {
croak(
"Missing the required parameter 'role_id' when calling get_a_role"
);
}
my
$_resource_path
=
'/roles/{role_id}'
;
my
$_method
=
'GET'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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();
if
(
exists
$args
{
'role_id'
}) {
my
$_base_variable
=
"{"
.
"role_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'role_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(
'object'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'role_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying the role.'
,
required
=>
'1'
,
},
};
__PACKAGE__->method_documentation->{
'list_role_permissions'
} = {
summary
=>
'List permissions in a role'
,
params
=>
$params
,
returns
=>
'object'
,
};
}
sub
list_role_permissions {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'role_id'
}) {
croak(
"Missing the required parameter 'role_id' when calling list_role_permissions"
);
}
my
$_resource_path
=
'/roles/{role_id}/permissions'
;
my
$_method
=
'GET'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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();
if
(
exists
$args
{
'role_id'
}) {
my
$_base_variable
=
"{"
.
"role_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'role_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(
'object'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'per_page'
=> {
data_type
=>
'int'
,
description
=>
'Number of records per page.'
,
required
=>
'0'
,
},
'page'
=> {
data_type
=>
'int'
,
description
=>
'Current page.'
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'list_roles'
} = {
summary
=>
'List roles'
,
params
=>
$params
,
returns
=>
'object'
,
};
}
sub
list_roles {
my
(
$self
,
%args
) =
@_
;
my
$_resource_path
=
'/roles'
;
my
$_method
=
'GET'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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();
if
(
exists
$args
{
'per_page'
}) {
$query_params
->{
'per_page'
} =
$self
->{api_client}->to_query_value(
$args
{
'per_page'
});
}
if
(
exists
$args
{
'page'
}) {
$query_params
->{
'page'
} =
$self
->{api_client}->to_query_value(
$args
{
'page'
});
}
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(
'object'
,
$response
);
return
$_response_object
;
}
{
my
$params
= {
'role_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying the role.'
,
required
=>
'1'
,
},
'request_body'
=> {
data_type
=>
'HASH[string,object]'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'remove_role_permissions'
} = {
summary
=>
'Remove permissions from a role'
,
params
=>
$params
,
returns
=>
undef
,
};
}
sub
remove_role_permissions {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'role_id'
}) {
croak(
"Missing the required parameter 'role_id' when calling remove_role_permissions"
);
}
my
$_resource_path
=
'/roles/{role_id}/permissions'
;
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(
'application/json'
);
if
(
exists
$args
{
'role_id'
}) {
my
$_base_variable
=
"{"
.
"role_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'role_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
if
(
exists
$args
{
'request_body'
}) {
$_body_data
=
$args
{
'request_body'
};
}
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
= {
'role_id'
=> {
data_type
=>
'string'
,
description
=>
'Alphanumeric string identifying the role.'
,
required
=>
'1'
,
},
'request_body'
=> {
data_type
=>
'HASH[string,object]'
,
description
=>
''
,
required
=>
'0'
,
},
};
__PACKAGE__->method_documentation->{
'update_a_role'
} = {
summary
=>
'Update a role'
,
params
=>
$params
,
returns
=>
'object'
,
};
}
sub
update_a_role {
my
(
$self
,
%args
) =
@_
;
unless
(
exists
$args
{
'role_id'
}) {
croak(
"Missing the required parameter 'role_id' when calling update_a_role"
);
}
my
$_resource_path
=
'/roles/{role_id}'
;
my
$_method
=
'PATCH'
;
my
$query_params
= {};
my
$header_params
= {};
my
$form_params
= {};
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/json'
);
if
(
exists
$args
{
'role_id'
}) {
my
$_base_variable
=
"{"
.
"role_id"
.
"}"
;
my
$_base_value
=
$self
->{api_client}->to_path_value(
$args
{
'role_id'
});
$_resource_path
=~ s/
$_base_variable
/
$_base_value
/g;
}
my
$_body_data
;
if
(
exists
$args
{
'request_body'
}) {
$_body_data
=
$args
{
'request_body'
};
}
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(
'object'
,
$response
);
return
$_response_object
;
}
1;