Module pagers (2.27.0)

API documentation for dialogflow_v2.services.agents.pagers module.

Classes

SearchAgentsAsyncPager

SearchAgentsAsyncPager(
    method: typing.Callable[
        [...],
        typing.Awaitable[google.cloud.dialogflow_v2.types.agent.SearchAgentsResponse],
    ],
    request: google.cloud.dialogflow_v2.types.agent.SearchAgentsRequest,
    response: google.cloud.dialogflow_v2.types.agent.SearchAgentsResponse,
    *,
    metadata: typing.Sequence[typing.Tuple[str, str]] = ()
)

A pager for iterating through search_agents requests.

This class thinly wraps an initial SearchAgentsResponse object, and provides an __aiter__ method to iterate through its agents field.

If there are more pages, the __aiter__ method will make additional SearchAgents requests and continue to iterate through the agents field on the corresponding responses.

All the usual SearchAgentsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

SearchAgentsPager

SearchAgentsPager(
    method: typing.Callable[
        [...], google.cloud.dialogflow_v2.types.agent.SearchAgentsResponse
    ],
    request: google.cloud.dialogflow_v2.types.agent.SearchAgentsRequest,
    response: google.cloud.dialogflow_v2.types.agent.SearchAgentsResponse,
    *,
    metadata: typing.Sequence[typing.Tuple[str, str]] = ()
)

A pager for iterating through search_agents requests.

This class thinly wraps an initial SearchAgentsResponse object, and provides an __iter__ method to iterate through its agents field.

If there are more pages, the __iter__ method will make additional SearchAgents requests and continue to iterate through the agents field on the corresponding responses.

All the usual SearchAgentsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.