2020-04-10 21:54:53 +00:00
|
|
|
angular.module('portainer.azure').factory('Subscription', [
|
|
|
|
'$resource',
|
|
|
|
'API_ENDPOINT_ENDPOINTS',
|
|
|
|
'EndpointProvider',
|
|
|
|
function SubscriptionFactory($resource, API_ENDPOINT_ENDPOINTS, EndpointProvider) {
|
|
|
|
'use strict';
|
|
|
|
return $resource(
|
|
|
|
API_ENDPOINT_ENDPOINTS + '/:endpointId/azure/subscriptions',
|
|
|
|
{
|
|
|
|
endpointId: EndpointProvider.endpointID,
|
|
|
|
'api-version': '2016-06-01',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
query: { method: 'GET' },
|
|
|
|
}
|
|
|
|
);
|
2018-05-28 14:40:33 +00:00
|
|
|
},
|
2020-04-10 21:54:53 +00:00
|
|
|
]);
|