Skip to content

Commit

Permalink
Filter instance pricings by product version (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
malteo authored Feb 16, 2021
1 parent 5b4aeb9 commit ff9972b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ public interface InstancePricingApi
Call<InstancePricingDTO> get( @Path( "id" ) int id );

@GET( "instancePricing" )
Call<List<InstancePricingDTO>> getAll( @Query( "cloudProvider" ) Integer cloudProvider );
Call<List<InstancePricingDTO>> getAll( @Query( "cloudProvider" ) int cloudProvider );

@GET( "instancePricing" )
Call<List<InstancePricingDTO>> getAll(
@Query( "cloudProvider" ) int cloudProvider, @Query( "productVersion" ) Integer productVersionId
);

@GET( "instancePricing" )
Call<List<InstancePricingDTO>> getAll(
Expand Down

0 comments on commit ff9972b

Please sign in to comment.