Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async def list_public_catalog_products(
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param datacenter: Filter products by datacenter.
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_new_features, end_of_growth, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:return: :class:`ListPublicCatalogProductsResponse <ListPublicCatalogProductsResponse>`

Usage:
Expand Down Expand Up @@ -114,7 +114,7 @@ async def list_public_catalog_products_all(
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param datacenter: Filter products by datacenter.
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_new_features, end_of_growth, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:return: :class:`list[PublicCatalogProduct] <list[PublicCatalogProduct]>`

Usage:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class ListPublicCatalogProductsRequestStatus(str, Enum, metaclass=StrEnumMeta):
PUBLIC_BETA = "public_beta"
PREVIEW = "preview"
GENERAL_AVAILABILITY = "general_availability"
END_OF_NEW_FEATURES = "end_of_new_features"
END_OF_GROWTH = "end_of_growth"
END_OF_DEPLOYMENT = "end_of_deployment"
END_OF_SUPPORT = "end_of_support"
END_OF_SALE = "end_of_sale"
Expand Down Expand Up @@ -85,6 +87,8 @@ class PublicCatalogProductStatus(str, Enum, metaclass=StrEnumMeta):
PUBLIC_BETA = "public_beta"
PREVIEW = "preview"
GENERAL_AVAILABILITY = "general_availability"
END_OF_NEW_FEATURES = "end_of_new_features"
END_OF_GROWTH = "end_of_growth"
END_OF_DEPLOYMENT = "end_of_deployment"
END_OF_SUPPORT = "end_of_support"
END_OF_SALE = "end_of_sale"
Expand Down Expand Up @@ -550,7 +554,7 @@ class PublicCatalogApiListPublicCatalogProductsRequest:
default_factory=list
)
"""
The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_new_features, end_of_growth, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
"""

global_: Optional[bool] = False
Expand Down
4 changes: 2 additions & 2 deletions scaleway/scaleway/product_catalog/v2alpha1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def list_public_catalog_products(
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param datacenter: Filter products by datacenter.
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_new_features, end_of_growth, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:return: :class:`ListPublicCatalogProductsResponse <ListPublicCatalogProductsResponse>`

Usage:
Expand Down Expand Up @@ -114,7 +114,7 @@ def list_public_catalog_products_all(
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param datacenter: Filter products by datacenter.
One-Of ('locality'): at most one of 'global_', 'region', 'zone', 'datacenter' could be set.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:param status: The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_new_features, end_of_growth, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
:return: :class:`list[PublicCatalogProduct] <list[PublicCatalogProduct]>`

Usage:
Expand Down
6 changes: 5 additions & 1 deletion scaleway/scaleway/product_catalog/v2alpha1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class ListPublicCatalogProductsRequestStatus(str, Enum, metaclass=StrEnumMeta):
PUBLIC_BETA = "public_beta"
PREVIEW = "preview"
GENERAL_AVAILABILITY = "general_availability"
END_OF_NEW_FEATURES = "end_of_new_features"
END_OF_GROWTH = "end_of_growth"
END_OF_DEPLOYMENT = "end_of_deployment"
END_OF_SUPPORT = "end_of_support"
END_OF_SALE = "end_of_sale"
Expand Down Expand Up @@ -85,6 +87,8 @@ class PublicCatalogProductStatus(str, Enum, metaclass=StrEnumMeta):
PUBLIC_BETA = "public_beta"
PREVIEW = "preview"
GENERAL_AVAILABILITY = "general_availability"
END_OF_NEW_FEATURES = "end_of_new_features"
END_OF_GROWTH = "end_of_growth"
END_OF_DEPLOYMENT = "end_of_deployment"
END_OF_SUPPORT = "end_of_support"
END_OF_SALE = "end_of_sale"
Expand Down Expand Up @@ -550,7 +554,7 @@ class PublicCatalogApiListPublicCatalogProductsRequest:
default_factory=list
)
"""
The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_new_features, end_of_growth, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
"""

global_: Optional[bool] = False
Expand Down