def get_agent(self, parent, retry=google.api_core.gapic_v1.method.DEFAULT, timeout=google.api_core.gapic_v1.method.DEFAULT, metadata=None): """ Retrieves the specified agent. Example: >>> import dialogflow_v2 >>> >>> client = dialogflow_v2.AgentsClient() >>> >>> parent = client.project_path('[PROJECT]') >>> >>> response = client.get_agent(parent) Args: parent (str): Required. The project that the agent to fetch is associated with. Format: ``projects/<Project ID>``. retry (Optional[google.api_core.retry.Retry]): A retry object used to retry requests. If ``None`` is specified, requests will not be retried. timeout (Optional[float]): The amount of time, in seconds, to wait for the request to complete. Note that if ``retry`` is specified, the timeout applies to each individual attempt. metadata (Optional[Sequence[Tuple[str, str]]]): Additional metadata that is provided to the method. Returns: A :class:`~google.cloud.dialogflow_v2.types.Agent` instance. Raises: google.api_core.exceptions.GoogleAPICallError: If the request failed for any reason. google.api_core.exceptions.RetryError: If the request failed due to a retryable error and retry attempts failed. ValueError: If the parameters are invalid. """ # Wrap the transport method to add retry and timeout logic. if 'get_agent' not in self._inner_api_calls: self._inner_api_calls[ 'get_agent'] = google.api_core.gapic_v1.method.wrap_method( self.transport.get_agent, default_retry=self._method_configs['GetAgent'].retry, default_timeout=self._method_configs['GetAgent'].timeout, client_info=self._client_info, ) request = agent_pb2.GetAgentRequest(parent=parent, ) return self._inner_api_calls['get_agent'](request, retry=retry, timeout=timeout, metadata=metadata)
def test_get_agent(self): # Setup Expected Response parent_2 = 'parent21175163357' display_name = 'displayName1615086568' default_language_code = 'defaultLanguageCode856575222' time_zone = 'timeZone36848094' description = 'description-1724546052' avatar_uri = 'avatarUri-402824826' enable_logging = False classification_threshold = 1.11581064E8 expected_response = { 'parent': parent_2, 'display_name': display_name, 'default_language_code': default_language_code, 'time_zone': time_zone, 'description': description, 'avatar_uri': avatar_uri, 'enable_logging': enable_logging, 'classification_threshold': classification_threshold } expected_response = agent_pb2.Agent(**expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) patch = mock.patch('google.api_core.grpc_helpers.create_channel') with patch as create_channel: create_channel.return_value = channel client = dialogflow_v2.AgentsClient() # Setup Request parent = client.project_path('[PROJECT]') response = client.get_agent(parent) assert expected_response == response assert len(channel.requests) == 1 expected_request = agent_pb2.GetAgentRequest(parent=parent) actual_request = channel.requests[0][1] assert expected_request == actual_request
def test_get_agent(self): # Setup Expected Response parent_2 = "parent21175163357" display_name = "displayName1615086568" default_language_code = "defaultLanguageCode856575222" time_zone = "timeZone36848094" description = "description-1724546052" avatar_uri = "avatarUri-402824826" enable_logging = False classification_threshold = 1.11581064e8 expected_response = { "parent": parent_2, "display_name": display_name, "default_language_code": default_language_code, "time_zone": time_zone, "description": description, "avatar_uri": avatar_uri, "enable_logging": enable_logging, "classification_threshold": classification_threshold, } expected_response = agent_pb2.Agent(**expected_response) # Mock the API response channel = ChannelStub(responses=[expected_response]) patch = mock.patch("google.api_core.grpc_helpers.create_channel") with patch as create_channel: create_channel.return_value = channel client = dialogflow_v2.AgentsClient() # Setup Request parent = client.project_path("[PROJECT]") response = client.get_agent(parent) assert expected_response == response assert len(channel.requests) == 1 expected_request = agent_pb2.GetAgentRequest(parent=parent) actual_request = channel.requests[0][1] assert expected_request == actual_request