Paginators#
Auto-generated documentation for Private5G type annotations stubs module mypy-boto3-privatenetworks.
ListDeviceIdentifiersPaginator#
Type annotations and code completion for boto3.client("privatenetworks").get_paginator("list_device_identifiers")
.
boto3 documentation
# ListDeviceIdentifiersPaginator usage example
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListDeviceIdentifiersPaginator
def get_list_device_identifiers_paginator() -> ListDeviceIdentifiersPaginator:
return Session().client("privatenetworks").get_paginator("list_device_identifiers")
# ListDeviceIdentifiersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListDeviceIdentifiersPaginator
session = Session()
client = Session().client("privatenetworks") # (1)
paginator: ListDeviceIdentifiersPaginator = client.get_paginator("list_device_identifiers") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Private5GClient
- paginator: ListDeviceIdentifiersPaginator
- item: ListDeviceIdentifiersResponseTypeDef
paginate#
Type annotations and code completion for ListDeviceIdentifiersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
networkArn: str,
filters: Mapping[DeviceIdentifierFilterKeysType, Sequence[str]] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListDeviceIdentifiersResponseTypeDef]: # (3)
...
- See DeviceIdentifierFilterKeysType
- See PaginatorConfigTypeDef
- See ListDeviceIdentifiersResponseTypeDef
# paginate method usage example with argument unpacking
kwargs: ListDeviceIdentifiersRequestListDeviceIdentifiersPaginateTypeDef = { # (1)
"networkArn": ...,
}
parent.paginate(**kwargs)
ListNetworkResourcesPaginator#
Type annotations and code completion for boto3.client("privatenetworks").get_paginator("list_network_resources")
.
boto3 documentation
# ListNetworkResourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListNetworkResourcesPaginator
def get_list_network_resources_paginator() -> ListNetworkResourcesPaginator:
return Session().client("privatenetworks").get_paginator("list_network_resources")
# ListNetworkResourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListNetworkResourcesPaginator
session = Session()
client = Session().client("privatenetworks") # (1)
paginator: ListNetworkResourcesPaginator = client.get_paginator("list_network_resources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Private5GClient
- paginator: ListNetworkResourcesPaginator
- item: ListNetworkResourcesResponseTypeDef
paginate#
Type annotations and code completion for ListNetworkResourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
networkArn: str,
filters: Mapping[NetworkResourceFilterKeysType, Sequence[str]] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListNetworkResourcesResponseTypeDef]: # (3)
...
- See NetworkResourceFilterKeysType
- See PaginatorConfigTypeDef
- See ListNetworkResourcesResponseTypeDef
# paginate method usage example with argument unpacking
kwargs: ListNetworkResourcesRequestListNetworkResourcesPaginateTypeDef = { # (1)
"networkArn": ...,
}
parent.paginate(**kwargs)
ListNetworkSitesPaginator#
Type annotations and code completion for boto3.client("privatenetworks").get_paginator("list_network_sites")
.
boto3 documentation
# ListNetworkSitesPaginator usage example
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListNetworkSitesPaginator
def get_list_network_sites_paginator() -> ListNetworkSitesPaginator:
return Session().client("privatenetworks").get_paginator("list_network_sites")
# ListNetworkSitesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListNetworkSitesPaginator
session = Session()
client = Session().client("privatenetworks") # (1)
paginator: ListNetworkSitesPaginator = client.get_paginator("list_network_sites") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Private5GClient
- paginator: ListNetworkSitesPaginator
- item: ListNetworkSitesResponseTypeDef
paginate#
Type annotations and code completion for ListNetworkSitesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
networkArn: str,
filters: Mapping[NetworkSiteFilterKeysType, Sequence[str]] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListNetworkSitesResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListNetworkSitesRequestListNetworkSitesPaginateTypeDef = { # (1)
"networkArn": ...,
}
parent.paginate(**kwargs)
ListNetworksPaginator#
Type annotations and code completion for boto3.client("privatenetworks").get_paginator("list_networks")
.
boto3 documentation
# ListNetworksPaginator usage example
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListNetworksPaginator
def get_list_networks_paginator() -> ListNetworksPaginator:
return Session().client("privatenetworks").get_paginator("list_networks")
# ListNetworksPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListNetworksPaginator
session = Session()
client = Session().client("privatenetworks") # (1)
paginator: ListNetworksPaginator = client.get_paginator("list_networks") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Private5GClient
- paginator: ListNetworksPaginator
- item: ListNetworksResponseTypeDef
paginate#
Type annotations and code completion for ListNetworksPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
filters: Mapping[NetworkFilterKeysType, Sequence[str]] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListNetworksResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListNetworksRequestListNetworksPaginateTypeDef = { # (1)
"filters": ...,
}
parent.paginate(**kwargs)
ListOrdersPaginator#
Type annotations and code completion for boto3.client("privatenetworks").get_paginator("list_orders")
.
boto3 documentation
# ListOrdersPaginator usage example
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListOrdersPaginator
def get_list_orders_paginator() -> ListOrdersPaginator:
return Session().client("privatenetworks").get_paginator("list_orders")
# ListOrdersPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_privatenetworks.paginator import ListOrdersPaginator
session = Session()
client = Session().client("privatenetworks") # (1)
paginator: ListOrdersPaginator = client.get_paginator("list_orders") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Private5GClient
- paginator: ListOrdersPaginator
- item: ListOrdersResponseTypeDef
paginate#
Type annotations and code completion for ListOrdersPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
networkArn: str,
filters: Mapping[OrderFilterKeysType, Sequence[str]] = ..., # (1)
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListOrdersResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListOrdersRequestListOrdersPaginateTypeDef = { # (1)
"networkArn": ...,
}
parent.paginate(**kwargs)