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

Commit e55463c

Browse files
feat: new API for the View resource (#114)
- [x] Regenerate this pull request now. PiperOrigin-RevId: 420129820 Source-Link: googleapis/googleapis@c203eea Source-Link: https://github.com/googleapis/googleapis-gen/commit/ddaafab91678bc0ff2aec1be577a6000d4393ac7 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZGRhYWZhYjkxNjc4YmMwZmYyYWVjMWJlNTc3YTYwMDBkNDM5M2FjNyJ9
1 parent 4b20a2b commit e55463c

File tree

14 files changed

+2735
-13
lines changed

14 files changed

+2735
-13
lines changed

google/cloud/contact_center_insights/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
5252
CreatePhraseMatcherRequest,
5353
)
54+
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
55+
CreateViewRequest,
56+
)
5457
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
5558
DeleteAnalysisRequest,
5659
)
@@ -66,6 +69,9 @@
6669
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
6770
DeletePhraseMatcherRequest,
6871
)
72+
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
73+
DeleteViewRequest,
74+
)
6975
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
7076
DeployIssueModelMetadata,
7177
)
@@ -102,6 +108,9 @@
102108
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
103109
GetSettingsRequest,
104110
)
111+
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
112+
GetViewRequest,
113+
)
105114
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
106115
ListAnalysesRequest,
107116
)
@@ -132,6 +141,12 @@
132141
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
133142
ListPhraseMatchersResponse,
134143
)
144+
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
145+
ListViewsRequest,
146+
)
147+
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
148+
ListViewsResponse,
149+
)
135150
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
136151
UndeployIssueModelMetadata,
137152
)
@@ -156,6 +171,9 @@
156171
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
157172
UpdateSettingsRequest,
158173
)
174+
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
175+
UpdateViewRequest,
176+
)
159177
from google.cloud.contact_center_insights_v1.types.contact_center_insights import (
160178
ConversationView,
161179
)
@@ -211,6 +229,7 @@
211229
SmartComposeSuggestionData,
212230
)
213231
from google.cloud.contact_center_insights_v1.types.resources import SmartReplyData
232+
from google.cloud.contact_center_insights_v1.types.resources import View
214233

215234
__all__ = (
216235
"ContactCenterInsightsClient",
@@ -225,11 +244,13 @@
225244
"CreateIssueModelMetadata",
226245
"CreateIssueModelRequest",
227246
"CreatePhraseMatcherRequest",
247+
"CreateViewRequest",
228248
"DeleteAnalysisRequest",
229249
"DeleteConversationRequest",
230250
"DeleteIssueModelMetadata",
231251
"DeleteIssueModelRequest",
232252
"DeletePhraseMatcherRequest",
253+
"DeleteViewRequest",
233254
"DeployIssueModelMetadata",
234255
"DeployIssueModelRequest",
235256
"DeployIssueModelResponse",
@@ -242,6 +263,7 @@
242263
"GetIssueRequest",
243264
"GetPhraseMatcherRequest",
244265
"GetSettingsRequest",
266+
"GetViewRequest",
245267
"ListAnalysesRequest",
246268
"ListAnalysesResponse",
247269
"ListConversationsRequest",
@@ -252,6 +274,8 @@
252274
"ListIssuesResponse",
253275
"ListPhraseMatchersRequest",
254276
"ListPhraseMatchersResponse",
277+
"ListViewsRequest",
278+
"ListViewsResponse",
255279
"UndeployIssueModelMetadata",
256280
"UndeployIssueModelRequest",
257281
"UndeployIssueModelResponse",
@@ -260,6 +284,7 @@
260284
"UpdateIssueRequest",
261285
"UpdatePhraseMatcherRequest",
262286
"UpdateSettingsRequest",
287+
"UpdateViewRequest",
263288
"ConversationView",
264289
"Analysis",
265290
"AnalysisResult",
@@ -299,4 +324,5 @@
299324
"SilenceData",
300325
"SmartComposeSuggestionData",
301326
"SmartReplyData",
327+
"View",
302328
)

google/cloud/contact_center_insights_v1/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,13 @@
2727
from .types.contact_center_insights import CreateIssueModelMetadata
2828
from .types.contact_center_insights import CreateIssueModelRequest
2929
from .types.contact_center_insights import CreatePhraseMatcherRequest
30+
from .types.contact_center_insights import CreateViewRequest
3031
from .types.contact_center_insights import DeleteAnalysisRequest
3132
from .types.contact_center_insights import DeleteConversationRequest
3233
from .types.contact_center_insights import DeleteIssueModelMetadata
3334
from .types.contact_center_insights import DeleteIssueModelRequest
3435
from .types.contact_center_insights import DeletePhraseMatcherRequest
36+
from .types.contact_center_insights import DeleteViewRequest
3537
from .types.contact_center_insights import DeployIssueModelMetadata
3638
from .types.contact_center_insights import DeployIssueModelRequest
3739
from .types.contact_center_insights import DeployIssueModelResponse
@@ -44,6 +46,7 @@
4446
from .types.contact_center_insights import GetIssueRequest
4547
from .types.contact_center_insights import GetPhraseMatcherRequest
4648
from .types.contact_center_insights import GetSettingsRequest
49+
from .types.contact_center_insights import GetViewRequest
4750
from .types.contact_center_insights import ListAnalysesRequest
4851
from .types.contact_center_insights import ListAnalysesResponse
4952
from .types.contact_center_insights import ListConversationsRequest
@@ -54,6 +57,8 @@
5457
from .types.contact_center_insights import ListIssuesResponse
5558
from .types.contact_center_insights import ListPhraseMatchersRequest
5659
from .types.contact_center_insights import ListPhraseMatchersResponse
60+
from .types.contact_center_insights import ListViewsRequest
61+
from .types.contact_center_insights import ListViewsResponse
5762
from .types.contact_center_insights import UndeployIssueModelMetadata
5863
from .types.contact_center_insights import UndeployIssueModelRequest
5964
from .types.contact_center_insights import UndeployIssueModelResponse
@@ -62,6 +67,7 @@
6267
from .types.contact_center_insights import UpdateIssueRequest
6368
from .types.contact_center_insights import UpdatePhraseMatcherRequest
6469
from .types.contact_center_insights import UpdateSettingsRequest
70+
from .types.contact_center_insights import UpdateViewRequest
6571
from .types.contact_center_insights import ConversationView
6672
from .types.resources import Analysis
6773
from .types.resources import AnalysisResult
@@ -101,6 +107,7 @@
101107
from .types.resources import SilenceData
102108
from .types.resources import SmartComposeSuggestionData
103109
from .types.resources import SmartReplyData
110+
from .types.resources import View
104111

105112
__all__ = (
106113
"ContactCenterInsightsAsyncClient",
@@ -126,11 +133,13 @@
126133
"CreateIssueModelMetadata",
127134
"CreateIssueModelRequest",
128135
"CreatePhraseMatcherRequest",
136+
"CreateViewRequest",
129137
"DeleteAnalysisRequest",
130138
"DeleteConversationRequest",
131139
"DeleteIssueModelMetadata",
132140
"DeleteIssueModelRequest",
133141
"DeletePhraseMatcherRequest",
142+
"DeleteViewRequest",
134143
"DeployIssueModelMetadata",
135144
"DeployIssueModelRequest",
136145
"DeployIssueModelResponse",
@@ -151,6 +160,7 @@
151160
"GetIssueRequest",
152161
"GetPhraseMatcherRequest",
153162
"GetSettingsRequest",
163+
"GetViewRequest",
154164
"HoldData",
155165
"Intent",
156166
"IntentMatchData",
@@ -170,6 +180,8 @@
170180
"ListIssuesResponse",
171181
"ListPhraseMatchersRequest",
172182
"ListPhraseMatchersResponse",
183+
"ListViewsRequest",
184+
"ListViewsResponse",
173185
"PhraseMatchData",
174186
"PhraseMatchRule",
175187
"PhraseMatchRuleConfig",
@@ -189,4 +201,6 @@
189201
"UpdateIssueRequest",
190202
"UpdatePhraseMatcherRequest",
191203
"UpdateSettingsRequest",
204+
"UpdateViewRequest",
205+
"View",
192206
)

google/cloud/contact_center_insights_v1/gapic_metadata.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
"create_phrase_matcher"
4141
]
4242
},
43+
"CreateView": {
44+
"methods": [
45+
"create_view"
46+
]
47+
},
4348
"DeleteAnalysis": {
4449
"methods": [
4550
"delete_analysis"
@@ -60,6 +65,11 @@
6065
"delete_phrase_matcher"
6166
]
6267
},
68+
"DeleteView": {
69+
"methods": [
70+
"delete_view"
71+
]
72+
},
6373
"DeployIssueModel": {
6474
"methods": [
6575
"deploy_issue_model"
@@ -100,6 +110,11 @@
100110
"get_settings"
101111
]
102112
},
113+
"GetView": {
114+
"methods": [
115+
"get_view"
116+
]
117+
},
103118
"ListAnalyses": {
104119
"methods": [
105120
"list_analyses"
@@ -125,6 +140,11 @@
125140
"list_phrase_matchers"
126141
]
127142
},
143+
"ListViews": {
144+
"methods": [
145+
"list_views"
146+
]
147+
},
128148
"UndeployIssueModel": {
129149
"methods": [
130150
"undeploy_issue_model"
@@ -154,6 +174,11 @@
154174
"methods": [
155175
"update_settings"
156176
]
177+
},
178+
"UpdateView": {
179+
"methods": [
180+
"update_view"
181+
]
157182
}
158183
}
159184
},
@@ -190,6 +215,11 @@
190215
"create_phrase_matcher"
191216
]
192217
},
218+
"CreateView": {
219+
"methods": [
220+
"create_view"
221+
]
222+
},
193223
"DeleteAnalysis": {
194224
"methods": [
195225
"delete_analysis"
@@ -210,6 +240,11 @@
210240
"delete_phrase_matcher"
211241
]
212242
},
243+
"DeleteView": {
244+
"methods": [
245+
"delete_view"
246+
]
247+
},
213248
"DeployIssueModel": {
214249
"methods": [
215250
"deploy_issue_model"
@@ -250,6 +285,11 @@
250285
"get_settings"
251286
]
252287
},
288+
"GetView": {
289+
"methods": [
290+
"get_view"
291+
]
292+
},
253293
"ListAnalyses": {
254294
"methods": [
255295
"list_analyses"
@@ -275,6 +315,11 @@
275315
"list_phrase_matchers"
276316
]
277317
},
318+
"ListViews": {
319+
"methods": [
320+
"list_views"
321+
]
322+
},
278323
"UndeployIssueModel": {
279324
"methods": [
280325
"undeploy_issue_model"
@@ -304,6 +349,11 @@
304349
"methods": [
305350
"update_settings"
306351
]
352+
},
353+
"UpdateView": {
354+
"methods": [
355+
"update_view"
356+
]
307357
}
308358
}
309359
}

0 commit comments

Comments
 (0)