Skip to content

Commit b9c8f1b

Browse files
authored
fix(edge_services): review billing wording (scaleway#696)
1 parent 1441a16 commit b9c8f1b

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

scaleway-async/scaleway_async/edge_services/v1alpha1/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1719,7 +1719,7 @@ async def get_billing(
17191719
project_id: Optional[str] = None,
17201720
) -> GetBillingResponse:
17211721
"""
1722-
Gives information on current edge-services subscription plan and used resources with associated price.
1722+
Gives information on the currently selected Edge Services subscription plan, resource usage and associated billing information for this calendar month (including whether consumption falls within or exceeds the currently selected subscription plan.).
17231723
:param project_id:
17241724
:return: :class:`GetBillingResponse <GetBillingResponse>`
17251725

scaleway-async/scaleway_async/edge_services/v1alpha1/types.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ class PlanDetails:
484484

485485
pipeline_limit: int
486486
"""
487-
Number of pipeline included in subscription plan.
487+
Number of pipelines included in subscription plan.
488488
"""
489489

490490

@@ -732,22 +732,22 @@ class GetBillingRequest:
732732
class GetBillingResponse:
733733
pipeline_number: int
734734
"""
735-
Total number of pipeline currently configured.
735+
Total number of pipelines currently configured.
736736
"""
737737

738738
current_plan_cache_usage: int
739739
"""
740-
Total amount of data egressed from cache in current subscription plan.
740+
Total amount of data egressed from the cache (this month), included in the active subscription plan.
741741
"""
742742

743743
extra_cache_usage: int
744744
"""
745-
Total amount of data egressed from cache not included in the plans.
745+
Total amount of data egressed from cache (this month), not included in the active subscription plan.
746746
"""
747747

748748
current_plan: Optional[PlanDetails]
749749
"""
750-
Information on the current edge-service subscription plan.
750+
Information on the currently-selected, active Edge Services subscription plan.
751751
"""
752752

753753
plan_cost: Optional[Money]
@@ -757,17 +757,17 @@ class GetBillingResponse:
757757

758758
extra_pipelines_cost: Optional[Money]
759759
"""
760-
Cost to date of the pipelines not included in the plans.
760+
Cost to date (this month) of pipelines not included in the subscription plan.
761761
"""
762762

763763
extra_cache_cost: Optional[Money]
764764
"""
765-
Cost to date of the data egressed from cache not included in the plans.
765+
Cost to date (this month) of the data egressed from the cache that is not included in the active subscription plan.
766766
"""
767767

768768
total_cost: Optional[Money]
769769
"""
770-
Total cost to date of edge-service product for the month including current plan, previous plans, extra pipelines and extra egress cache data.
770+
Total cost to date (this month) of all Edge Services resources including active subscription plan, previously active plans, extra pipelines and extra egress cache data.
771771
"""
772772

773773

scaleway/scaleway/edge_services/v1alpha1/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ def get_billing(
17151715
project_id: Optional[str] = None,
17161716
) -> GetBillingResponse:
17171717
"""
1718-
Gives information on current edge-services subscription plan and used resources with associated price.
1718+
Gives information on the currently selected Edge Services subscription plan, resource usage and associated billing information for this calendar month (including whether consumption falls within or exceeds the currently selected subscription plan.).
17191719
:param project_id:
17201720
:return: :class:`GetBillingResponse <GetBillingResponse>`
17211721

scaleway/scaleway/edge_services/v1alpha1/types.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ class PlanDetails:
484484

485485
pipeline_limit: int
486486
"""
487-
Number of pipeline included in subscription plan.
487+
Number of pipelines included in subscription plan.
488488
"""
489489

490490

@@ -732,22 +732,22 @@ class GetBillingRequest:
732732
class GetBillingResponse:
733733
pipeline_number: int
734734
"""
735-
Total number of pipeline currently configured.
735+
Total number of pipelines currently configured.
736736
"""
737737

738738
current_plan_cache_usage: int
739739
"""
740-
Total amount of data egressed from cache in current subscription plan.
740+
Total amount of data egressed from the cache (this month), included in the active subscription plan.
741741
"""
742742

743743
extra_cache_usage: int
744744
"""
745-
Total amount of data egressed from cache not included in the plans.
745+
Total amount of data egressed from cache (this month), not included in the active subscription plan.
746746
"""
747747

748748
current_plan: Optional[PlanDetails]
749749
"""
750-
Information on the current edge-service subscription plan.
750+
Information on the currently-selected, active Edge Services subscription plan.
751751
"""
752752

753753
plan_cost: Optional[Money]
@@ -757,17 +757,17 @@ class GetBillingResponse:
757757

758758
extra_pipelines_cost: Optional[Money]
759759
"""
760-
Cost to date of the pipelines not included in the plans.
760+
Cost to date (this month) of pipelines not included in the subscription plan.
761761
"""
762762

763763
extra_cache_cost: Optional[Money]
764764
"""
765-
Cost to date of the data egressed from cache not included in the plans.
765+
Cost to date (this month) of the data egressed from the cache that is not included in the active subscription plan.
766766
"""
767767

768768
total_cost: Optional[Money]
769769
"""
770-
Total cost to date of edge-service product for the month including current plan, previous plans, extra pipelines and extra egress cache data.
770+
Total cost to date (this month) of all Edge Services resources including active subscription plan, previously active plans, extra pipelines and extra egress cache data.
771771
"""
772772

773773

0 commit comments

Comments
 (0)