Paginators#
Index > StorageGateway > Paginators
Auto-generated documentation for StorageGateway type annotations stubs module mypy-boto3-storagegateway.
DescribeTapeArchivesPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("describe_tape_archives").
 boto3 documentation
# DescribeTapeArchivesPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeTapeArchivesPaginator
def get_describe_tape_archives_paginator() -> DescribeTapeArchivesPaginator:
    return Session().client("storagegateway").get_paginator("describe_tape_archives")# DescribeTapeArchivesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeTapeArchivesPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: DescribeTapeArchivesPaginator = client.get_paginator("describe_tape_archives")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: DescribeTapeArchivesPaginator
- item: PageIterator[DescribeTapeArchivesOutputTypeDef]
paginate#
Type annotations and code completion for DescribeTapeArchivesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    TapeARNs: Sequence[str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[DescribeTapeArchivesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[DescribeTapeArchivesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: DescribeTapeArchivesInputPaginateTypeDef = {  # (1)
    "TapeARNs": ...,
}
parent.paginate(**kwargs)DescribeTapeRecoveryPointsPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("describe_tape_recovery_points").
 boto3 documentation
# DescribeTapeRecoveryPointsPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeTapeRecoveryPointsPaginator
def get_describe_tape_recovery_points_paginator() -> DescribeTapeRecoveryPointsPaginator:
    return Session().client("storagegateway").get_paginator("describe_tape_recovery_points")# DescribeTapeRecoveryPointsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeTapeRecoveryPointsPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: DescribeTapeRecoveryPointsPaginator = client.get_paginator("describe_tape_recovery_points")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: DescribeTapeRecoveryPointsPaginator
- item: PageIterator[DescribeTapeRecoveryPointsOutputTypeDef]
paginate#
Type annotations and code completion for DescribeTapeRecoveryPointsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    GatewayARN: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[DescribeTapeRecoveryPointsOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[DescribeTapeRecoveryPointsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: DescribeTapeRecoveryPointsInputPaginateTypeDef = {  # (1)
    "GatewayARN": ...,
}
parent.paginate(**kwargs)DescribeTapesPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("describe_tapes").
 boto3 documentation
# DescribeTapesPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeTapesPaginator
def get_describe_tapes_paginator() -> DescribeTapesPaginator:
    return Session().client("storagegateway").get_paginator("describe_tapes")# DescribeTapesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeTapesPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: DescribeTapesPaginator = client.get_paginator("describe_tapes")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: DescribeTapesPaginator
- item: PageIterator[DescribeTapesOutputTypeDef]
paginate#
Type annotations and code completion for DescribeTapesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    GatewayARN: str,
    TapeARNs: Sequence[str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[DescribeTapesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[DescribeTapesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: DescribeTapesInputPaginateTypeDef = {  # (1)
    "GatewayARN": ...,
}
parent.paginate(**kwargs)DescribeVTLDevicesPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("describe_vtl_devices").
 boto3 documentation
# DescribeVTLDevicesPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeVTLDevicesPaginator
def get_describe_vtl_devices_paginator() -> DescribeVTLDevicesPaginator:
    return Session().client("storagegateway").get_paginator("describe_vtl_devices")# DescribeVTLDevicesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import DescribeVTLDevicesPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: DescribeVTLDevicesPaginator = client.get_paginator("describe_vtl_devices")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: DescribeVTLDevicesPaginator
- item: PageIterator[DescribeVTLDevicesOutputTypeDef]
paginate#
Type annotations and code completion for DescribeVTLDevicesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    GatewayARN: str,
    VTLDeviceARNs: Sequence[str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[DescribeVTLDevicesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[DescribeVTLDevicesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: DescribeVTLDevicesInputPaginateTypeDef = {  # (1)
    "GatewayARN": ...,
}
parent.paginate(**kwargs)ListCacheReportsPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_cache_reports").
 boto3 documentation
# ListCacheReportsPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListCacheReportsPaginator
def get_list_cache_reports_paginator() -> ListCacheReportsPaginator:
    return Session().client("storagegateway").get_paginator("list_cache_reports")# ListCacheReportsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListCacheReportsPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListCacheReportsPaginator = client.get_paginator("list_cache_reports")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListCacheReportsPaginator
- item: PageIterator[ListCacheReportsOutputTypeDef]
paginate#
Type annotations and code completion for ListCacheReportsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListCacheReportsOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListCacheReportsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCacheReportsInputPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)ListFileSharesPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_file_shares").
 boto3 documentation
# ListFileSharesPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListFileSharesPaginator
def get_list_file_shares_paginator() -> ListFileSharesPaginator:
    return Session().client("storagegateway").get_paginator("list_file_shares")# ListFileSharesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListFileSharesPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListFileSharesPaginator = client.get_paginator("list_file_shares")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListFileSharesPaginator
- item: PageIterator[ListFileSharesOutputTypeDef]
paginate#
Type annotations and code completion for ListFileSharesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    GatewayARN: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListFileSharesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListFileSharesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListFileSharesInputPaginateTypeDef = {  # (1)
    "GatewayARN": ...,
}
parent.paginate(**kwargs)ListFileSystemAssociationsPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_file_system_associations").
 boto3 documentation
# ListFileSystemAssociationsPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListFileSystemAssociationsPaginator
def get_list_file_system_associations_paginator() -> ListFileSystemAssociationsPaginator:
    return Session().client("storagegateway").get_paginator("list_file_system_associations")# ListFileSystemAssociationsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListFileSystemAssociationsPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListFileSystemAssociationsPaginator = client.get_paginator("list_file_system_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListFileSystemAssociationsPaginator
- item: PageIterator[ListFileSystemAssociationsOutputTypeDef]
paginate#
Type annotations and code completion for ListFileSystemAssociationsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    GatewayARN: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListFileSystemAssociationsOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListFileSystemAssociationsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListFileSystemAssociationsInputPaginateTypeDef = {  # (1)
    "GatewayARN": ...,
}
parent.paginate(**kwargs)ListGatewaysPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_gateways").
 boto3 documentation
# ListGatewaysPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListGatewaysPaginator
def get_list_gateways_paginator() -> ListGatewaysPaginator:
    return Session().client("storagegateway").get_paginator("list_gateways")# ListGatewaysPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListGatewaysPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListGatewaysPaginator = client.get_paginator("list_gateways")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListGatewaysPaginator
- item: PageIterator[ListGatewaysOutputTypeDef]
paginate#
Type annotations and code completion for ListGatewaysPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListGatewaysOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListGatewaysOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListGatewaysInputPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)ListTagsForResourcePaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_tags_for_resource").
 boto3 documentation
# ListTagsForResourcePaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListTagsForResourcePaginator
def get_list_tags_for_resource_paginator() -> ListTagsForResourcePaginator:
    return Session().client("storagegateway").get_paginator("list_tags_for_resource")# ListTagsForResourcePaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListTagsForResourcePaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListTagsForResourcePaginator
- item: PageIterator[ListTagsForResourceOutputTypeDef]
paginate#
Type annotations and code completion for ListTagsForResourcePaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    ResourceARN: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListTagsForResourceOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListTagsForResourceOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListTagsForResourceInputPaginateTypeDef = {  # (1)
    "ResourceARN": ...,
}
parent.paginate(**kwargs)ListTapePoolsPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_tape_pools").
 boto3 documentation
# ListTapePoolsPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListTapePoolsPaginator
def get_list_tape_pools_paginator() -> ListTapePoolsPaginator:
    return Session().client("storagegateway").get_paginator("list_tape_pools")# ListTapePoolsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListTapePoolsPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListTapePoolsPaginator = client.get_paginator("list_tape_pools")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListTapePoolsPaginator
- item: PageIterator[ListTapePoolsOutputTypeDef]
paginate#
Type annotations and code completion for ListTapePoolsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PoolARNs: Sequence[str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListTapePoolsOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListTapePoolsOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListTapePoolsInputPaginateTypeDef = {  # (1)
    "PoolARNs": ...,
}
parent.paginate(**kwargs)ListTapesPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_tapes").
 boto3 documentation
# ListTapesPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListTapesPaginator
def get_list_tapes_paginator() -> ListTapesPaginator:
    return Session().client("storagegateway").get_paginator("list_tapes")# ListTapesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListTapesPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListTapesPaginator = client.get_paginator("list_tapes")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListTapesPaginator
- item: PageIterator[ListTapesOutputTypeDef]
paginate#
Type annotations and code completion for ListTapesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    TapeARNs: Sequence[str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListTapesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListTapesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListTapesInputPaginateTypeDef = {  # (1)
    "TapeARNs": ...,
}
parent.paginate(**kwargs)ListVolumesPaginator#
Type annotations and code completion for boto3.client("storagegateway").get_paginator("list_volumes").
 boto3 documentation
# ListVolumesPaginator usage example
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListVolumesPaginator
def get_list_volumes_paginator() -> ListVolumesPaginator:
    return Session().client("storagegateway").get_paginator("list_volumes")# ListVolumesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_storagegateway.paginator import ListVolumesPaginator
session = Session()
client = Session().client("storagegateway")  # (1)
paginator: ListVolumesPaginator = client.get_paginator("list_volumes")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: StorageGatewayClient
- paginator: ListVolumesPaginator
- item: PageIterator[ListVolumesOutputTypeDef]
paginate#
Type annotations and code completion for ListVolumesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    GatewayARN: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListVolumesOutputTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListVolumesOutputTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListVolumesInputPaginateTypeDef = {  # (1)
    "GatewayARN": ...,
}
parent.paginate(**kwargs)