Skip to content

Paginators#

Index > DevOpsAgentService > Paginators

Auto-generated documentation for DevOpsAgentService type annotations stubs module mypy-boto3-devops-agent.

ListAgentSpacesPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_agent_spaces"). boto3 documentation

# ListAgentSpacesPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAgentSpacesPaginator

def get_list_agent_spaces_paginator() -> ListAgentSpacesPaginator:
    return Session().client("devops-agent").get_paginator("list_agent_spaces")
# ListAgentSpacesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAgentSpacesPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListAgentSpacesPaginator = client.get_paginator("list_agent_spaces")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListAgentSpacesPaginator
  3. item: PageIterator[ListAgentSpacesOutputTypeDef]

paginate#

Type annotations and code completion for ListAgentSpacesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAgentSpacesOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAgentSpacesOutputTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAgentSpacesInputPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListAgentSpacesInputPaginateTypeDef

ListAssetFilesPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_asset_files"). boto3 documentation

# ListAssetFilesPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetFilesPaginator

def get_list_asset_files_paginator() -> ListAssetFilesPaginator:
    return Session().client("devops-agent").get_paginator("list_asset_files")
# ListAssetFilesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetFilesPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListAssetFilesPaginator = client.get_paginator("list_asset_files")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListAssetFilesPaginator
  3. item: PageIterator[ListAssetFilesResponseTypeDef]

paginate#

Type annotations and code completion for ListAssetFilesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    assetId: str,
    assetVersion: int = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAssetFilesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAssetFilesResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAssetFilesRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
    "assetId": ...,
}

parent.paginate(**kwargs)
  1. See ListAssetFilesRequestPaginateTypeDef

ListAssetTypesPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_asset_types"). boto3 documentation

# ListAssetTypesPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetTypesPaginator

def get_list_asset_types_paginator() -> ListAssetTypesPaginator:
    return Session().client("devops-agent").get_paginator("list_asset_types")
# ListAssetTypesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetTypesPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListAssetTypesPaginator = client.get_paginator("list_asset_types")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListAssetTypesPaginator
  3. item: PageIterator[ListAssetTypesResponseTypeDef]

paginate#

Type annotations and code completion for ListAssetTypesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAssetTypesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAssetTypesResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAssetTypesRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

parent.paginate(**kwargs)
  1. See ListAssetTypesRequestPaginateTypeDef

ListAssetVersionsPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_asset_versions"). boto3 documentation

# ListAssetVersionsPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetVersionsPaginator

def get_list_asset_versions_paginator() -> ListAssetVersionsPaginator:
    return Session().client("devops-agent").get_paginator("list_asset_versions")
# ListAssetVersionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetVersionsPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListAssetVersionsPaginator = client.get_paginator("list_asset_versions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListAssetVersionsPaginator
  3. item: PageIterator[ListAssetVersionsResponseTypeDef]

paginate#

Type annotations and code completion for ListAssetVersionsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    assetId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAssetVersionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAssetVersionsResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAssetVersionsRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
    "assetId": ...,
}

parent.paginate(**kwargs)
  1. See ListAssetVersionsRequestPaginateTypeDef

ListAssetsPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_assets"). boto3 documentation

# ListAssetsPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetsPaginator

def get_list_assets_paginator() -> ListAssetsPaginator:
    return Session().client("devops-agent").get_paginator("list_assets")
# ListAssetsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssetsPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListAssetsPaginator = client.get_paginator("list_assets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListAssetsPaginator
  3. item: PageIterator[ListAssetsResponseTypeDef]

paginate#

Type annotations and code completion for ListAssetsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    assetType: str = ...,
    updatedAfter: TimestampTypeDef = ...,
    updatedBefore: TimestampTypeDef = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAssetsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAssetsResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAssetsRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
}

parent.paginate(**kwargs)
  1. See ListAssetsRequestPaginateTypeDef

ListAssociationsPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_associations"). boto3 documentation

# ListAssociationsPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssociationsPaginator

def get_list_associations_paginator() -> ListAssociationsPaginator:
    return Session().client("devops-agent").get_paginator("list_associations")
# ListAssociationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListAssociationsPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListAssociationsPaginator = client.get_paginator("list_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListAssociationsPaginator
  3. item: PageIterator[ListAssociationsOutputTypeDef]

paginate#

Type annotations and code completion for ListAssociationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    filterServiceTypes: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAssociationsOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListAssociationsOutputTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAssociationsInputPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
}

parent.paginate(**kwargs)
  1. See ListAssociationsInputPaginateTypeDef

ListBacklogTasksPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_backlog_tasks"). boto3 documentation

# ListBacklogTasksPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListBacklogTasksPaginator

def get_list_backlog_tasks_paginator() -> ListBacklogTasksPaginator:
    return Session().client("devops-agent").get_paginator("list_backlog_tasks")
# ListBacklogTasksPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListBacklogTasksPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListBacklogTasksPaginator = client.get_paginator("list_backlog_tasks")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListBacklogTasksPaginator
  3. item: PageIterator[ListBacklogTasksResponseTypeDef]

paginate#

Type annotations and code completion for ListBacklogTasksPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    filter: TaskFilterTypeDef = ...,  # (1)
    sortField: TaskSortFieldType = ...,  # (2)
    order: TaskSortOrderType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListBacklogTasksResponseTypeDef]:  # (5)
    ...
  1. See TaskFilterTypeDef
  2. See TaskSortFieldType
  3. See TaskSortOrderType
  4. See PaginatorConfigTypeDef
  5. See PageIterator[ListBacklogTasksResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListBacklogTasksRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
}

parent.paginate(**kwargs)
  1. See ListBacklogTasksRequestPaginateTypeDef

ListExecutionsPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_executions"). boto3 documentation

# ListExecutionsPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListExecutionsPaginator

def get_list_executions_paginator() -> ListExecutionsPaginator:
    return Session().client("devops-agent").get_paginator("list_executions")
# ListExecutionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListExecutionsPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListExecutionsPaginator = client.get_paginator("list_executions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListExecutionsPaginator
  3. item: PageIterator[ListExecutionsResponseTypeDef]

paginate#

Type annotations and code completion for ListExecutionsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    taskId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListExecutionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListExecutionsResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListExecutionsRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
    "taskId": ...,
}

parent.paginate(**kwargs)
  1. See ListExecutionsRequestPaginateTypeDef

ListGoalsPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_goals"). boto3 documentation

# ListGoalsPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListGoalsPaginator

def get_list_goals_paginator() -> ListGoalsPaginator:
    return Session().client("devops-agent").get_paginator("list_goals")
# ListGoalsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListGoalsPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListGoalsPaginator = client.get_paginator("list_goals")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListGoalsPaginator
  3. item: PageIterator[ListGoalsResponseTypeDef]

paginate#

Type annotations and code completion for ListGoalsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    status: GoalStatusType = ...,  # (1)
    goalType: GoalTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> botocore.paginate.PageIterator[ListGoalsResponseTypeDef]:  # (4)
    ...
  1. See GoalStatusType
  2. See GoalTypeType
  3. See PaginatorConfigTypeDef
  4. See PageIterator[ListGoalsResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListGoalsRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
}

parent.paginate(**kwargs)
  1. See ListGoalsRequestPaginateTypeDef

ListJournalRecordsPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_journal_records"). boto3 documentation

# ListJournalRecordsPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListJournalRecordsPaginator

def get_list_journal_records_paginator() -> ListJournalRecordsPaginator:
    return Session().client("devops-agent").get_paginator("list_journal_records")
# ListJournalRecordsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListJournalRecordsPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListJournalRecordsPaginator = client.get_paginator("list_journal_records")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListJournalRecordsPaginator
  3. item: PageIterator[ListJournalRecordsResponseTypeDef]

paginate#

Type annotations and code completion for ListJournalRecordsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    executionId: str,
    recordType: str = ...,
    order: OrderTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListJournalRecordsResponseTypeDef]:  # (3)
    ...
  1. See OrderTypeType
  2. See PaginatorConfigTypeDef
  3. See PageIterator[ListJournalRecordsResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListJournalRecordsRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
    "executionId": ...,
}

parent.paginate(**kwargs)
  1. See ListJournalRecordsRequestPaginateTypeDef

ListServicesPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_services"). boto3 documentation

# ListServicesPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListServicesPaginator

def get_list_services_paginator() -> ListServicesPaginator:
    return Session().client("devops-agent").get_paginator("list_services")
# ListServicesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListServicesPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListServicesPaginator = client.get_paginator("list_services")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListServicesPaginator
  3. item: PageIterator[ListServicesOutputTypeDef]

paginate#

Type annotations and code completion for ListServicesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    filterServiceType: ServiceType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListServicesOutputTypeDef]:  # (3)
    ...
  1. See ServiceType
  2. See PaginatorConfigTypeDef
  3. See PageIterator[ListServicesOutputTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListServicesInputPaginateTypeDef = {  # (1)
    "filterServiceType": ...,
}

parent.paginate(**kwargs)
  1. See ListServicesInputPaginateTypeDef

ListTriggersPaginator#

Type annotations and code completion for boto3.client("devops-agent").get_paginator("list_triggers"). boto3 documentation

# ListTriggersPaginator usage example

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListTriggersPaginator

def get_list_triggers_paginator() -> ListTriggersPaginator:
    return Session().client("devops-agent").get_paginator("list_triggers")
# ListTriggersPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_devops_agent.paginator import ListTriggersPaginator

session = Session()

client = Session().client("devops-agent")  # (1)
paginator: ListTriggersPaginator = client.get_paginator("list_triggers")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DevOpsAgentServiceClient
  2. paginator: ListTriggersPaginator
  3. item: PageIterator[ListTriggersResponseTypeDef]

paginate#

Type annotations and code completion for ListTriggersPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    agentSpaceId: str,
    status: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListTriggersResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListTriggersResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListTriggersRequestPaginateTypeDef = {  # (1)
    "agentSpaceId": ...,
}

parent.paginate(**kwargs)
  1. See ListTriggersRequestPaginateTypeDef