Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
feat: add new issue model API methods (#25)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 389978361

Source-Link: googleapis/googleapis@e932524

Source-Link: googleapis/googleapis-gen@2a2909b

feat: support Dialogflow and user-specified participant IDs 
docs: update pubsub_notification_settings docs
  • Loading branch information
gcf-owl-bot[bot] committed Aug 12, 2021
1 parent d356a54 commit 16a9bdd
Show file tree
Hide file tree
Showing 13 changed files with 3,360 additions and 134 deletions.
48 changes: 48 additions & 0 deletions google/cloud/contact_center_insights/__init__.py
Expand Up @@ -42,6 +42,12 @@
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
CreateConversationRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
CreateIssueModelMetadata,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
CreateIssueModelRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
CreatePhraseMatcherRequest,
)
Expand All @@ -51,9 +57,24 @@
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeleteConversationRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeleteIssueModelMetadata,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeleteIssueModelRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeletePhraseMatcherRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeployIssueModelMetadata,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeployIssueModelRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
DeployIssueModelResponse,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
ExportInsightsDataMetadata,
)
Expand Down Expand Up @@ -111,9 +132,24 @@
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
ListPhraseMatchersResponse,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UndeployIssueModelMetadata,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UndeployIssueModelRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UndeployIssueModelResponse,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UpdateConversationRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UpdateIssueModelRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UpdateIssueRequest,
)
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
UpdateSettingsRequest,
)
Expand Down Expand Up @@ -183,10 +219,17 @@
"CreateAnalysisOperationMetadata",
"CreateAnalysisRequest",
"CreateConversationRequest",
"CreateIssueModelMetadata",
"CreateIssueModelRequest",
"CreatePhraseMatcherRequest",
"DeleteAnalysisRequest",
"DeleteConversationRequest",
"DeleteIssueModelMetadata",
"DeleteIssueModelRequest",
"DeletePhraseMatcherRequest",
"DeployIssueModelMetadata",
"DeployIssueModelRequest",
"DeployIssueModelResponse",
"ExportInsightsDataMetadata",
"ExportInsightsDataRequest",
"ExportInsightsDataResponse",
Expand All @@ -206,7 +249,12 @@
"ListIssuesResponse",
"ListPhraseMatchersRequest",
"ListPhraseMatchersResponse",
"UndeployIssueModelMetadata",
"UndeployIssueModelRequest",
"UndeployIssueModelResponse",
"UpdateConversationRequest",
"UpdateIssueModelRequest",
"UpdateIssueRequest",
"UpdateSettingsRequest",
"ConversationView",
"Analysis",
Expand Down
24 changes: 24 additions & 0 deletions google/cloud/contact_center_insights_v1/__init__.py
Expand Up @@ -24,10 +24,17 @@
from .types.contact_center_insights import CreateAnalysisOperationMetadata
from .types.contact_center_insights import CreateAnalysisRequest
from .types.contact_center_insights import CreateConversationRequest
from .types.contact_center_insights import CreateIssueModelMetadata
from .types.contact_center_insights import CreateIssueModelRequest
from .types.contact_center_insights import CreatePhraseMatcherRequest
from .types.contact_center_insights import DeleteAnalysisRequest
from .types.contact_center_insights import DeleteConversationRequest
from .types.contact_center_insights import DeleteIssueModelMetadata
from .types.contact_center_insights import DeleteIssueModelRequest
from .types.contact_center_insights import DeletePhraseMatcherRequest
from .types.contact_center_insights import DeployIssueModelMetadata
from .types.contact_center_insights import DeployIssueModelRequest
from .types.contact_center_insights import DeployIssueModelResponse
from .types.contact_center_insights import ExportInsightsDataMetadata
from .types.contact_center_insights import ExportInsightsDataRequest
from .types.contact_center_insights import ExportInsightsDataResponse
Expand All @@ -47,7 +54,12 @@
from .types.contact_center_insights import ListIssuesResponse
from .types.contact_center_insights import ListPhraseMatchersRequest
from .types.contact_center_insights import ListPhraseMatchersResponse
from .types.contact_center_insights import UndeployIssueModelMetadata
from .types.contact_center_insights import UndeployIssueModelRequest
from .types.contact_center_insights import UndeployIssueModelResponse
from .types.contact_center_insights import UpdateConversationRequest
from .types.contact_center_insights import UpdateIssueModelRequest
from .types.contact_center_insights import UpdateIssueRequest
from .types.contact_center_insights import UpdateSettingsRequest
from .types.contact_center_insights import ConversationView
from .types.resources import Analysis
Expand Down Expand Up @@ -110,10 +122,17 @@
"CreateAnalysisOperationMetadata",
"CreateAnalysisRequest",
"CreateConversationRequest",
"CreateIssueModelMetadata",
"CreateIssueModelRequest",
"CreatePhraseMatcherRequest",
"DeleteAnalysisRequest",
"DeleteConversationRequest",
"DeleteIssueModelMetadata",
"DeleteIssueModelRequest",
"DeletePhraseMatcherRequest",
"DeployIssueModelMetadata",
"DeployIssueModelRequest",
"DeployIssueModelResponse",
"DialogflowIntent",
"DialogflowInteractionData",
"DialogflowSource",
Expand Down Expand Up @@ -161,6 +180,11 @@
"SilenceData",
"SmartComposeSuggestionData",
"SmartReplyData",
"UndeployIssueModelMetadata",
"UndeployIssueModelRequest",
"UndeployIssueModelResponse",
"UpdateConversationRequest",
"UpdateIssueModelRequest",
"UpdateIssueRequest",
"UpdateSettingsRequest",
)
60 changes: 60 additions & 0 deletions google/cloud/contact_center_insights_v1/gapic_metadata.json
Expand Up @@ -30,6 +30,11 @@
"create_conversation"
]
},
"CreateIssueModel": {
"methods": [
"create_issue_model"
]
},
"CreatePhraseMatcher": {
"methods": [
"create_phrase_matcher"
Expand All @@ -45,11 +50,21 @@
"delete_conversation"
]
},
"DeleteIssueModel": {
"methods": [
"delete_issue_model"
]
},
"DeletePhraseMatcher": {
"methods": [
"delete_phrase_matcher"
]
},
"DeployIssueModel": {
"methods": [
"deploy_issue_model"
]
},
"ExportInsightsData": {
"methods": [
"export_insights_data"
Expand Down Expand Up @@ -110,11 +125,26 @@
"list_phrase_matchers"
]
},
"UndeployIssueModel": {
"methods": [
"undeploy_issue_model"
]
},
"UpdateConversation": {
"methods": [
"update_conversation"
]
},
"UpdateIssue": {
"methods": [
"update_issue"
]
},
"UpdateIssueModel": {
"methods": [
"update_issue_model"
]
},
"UpdateSettings": {
"methods": [
"update_settings"
Expand Down Expand Up @@ -145,6 +175,11 @@
"create_conversation"
]
},
"CreateIssueModel": {
"methods": [
"create_issue_model"
]
},
"CreatePhraseMatcher": {
"methods": [
"create_phrase_matcher"
Expand All @@ -160,11 +195,21 @@
"delete_conversation"
]
},
"DeleteIssueModel": {
"methods": [
"delete_issue_model"
]
},
"DeletePhraseMatcher": {
"methods": [
"delete_phrase_matcher"
]
},
"DeployIssueModel": {
"methods": [
"deploy_issue_model"
]
},
"ExportInsightsData": {
"methods": [
"export_insights_data"
Expand Down Expand Up @@ -225,11 +270,26 @@
"list_phrase_matchers"
]
},
"UndeployIssueModel": {
"methods": [
"undeploy_issue_model"
]
},
"UpdateConversation": {
"methods": [
"update_conversation"
]
},
"UpdateIssue": {
"methods": [
"update_issue"
]
},
"UpdateIssueModel": {
"methods": [
"update_issue_model"
]
},
"UpdateSettings": {
"methods": [
"update_settings"
Expand Down

0 comments on commit 16a9bdd

Please sign in to comment.