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

Commit b84ae88

Browse files
feat: display_name is the display name for the assigned issue (#60)
1 parent 760f757 commit b84ae88

File tree

51 files changed

+18025
-425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+18025
-425
lines changed

google-cloud-contact-center-insights/src/main/java/com/google/cloud/contactcenterinsights/v1/ContactCenterInsightsClient.java

Lines changed: 671 additions & 1 deletion
Large diffs are not rendered by default.

google-cloud-contact-center-insights/src/main/java/com/google/cloud/contactcenterinsights/v1/ContactCenterInsightsSettings.java

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,23 @@ public UnaryCallSettings<ExportInsightsDataRequest, Operation> exportInsightsDat
144144
.exportInsightsDataOperationSettings();
145145
}
146146

147+
/** Returns the object with the settings used for calls to createIssueModel. */
148+
public UnaryCallSettings<CreateIssueModelRequest, Operation> createIssueModelSettings() {
149+
return ((ContactCenterInsightsStubSettings) getStubSettings()).createIssueModelSettings();
150+
}
151+
152+
/** Returns the object with the settings used for calls to createIssueModel. */
153+
public OperationCallSettings<CreateIssueModelRequest, IssueModel, CreateIssueModelMetadata>
154+
createIssueModelOperationSettings() {
155+
return ((ContactCenterInsightsStubSettings) getStubSettings())
156+
.createIssueModelOperationSettings();
157+
}
158+
159+
/** Returns the object with the settings used for calls to updateIssueModel. */
160+
public UnaryCallSettings<UpdateIssueModelRequest, IssueModel> updateIssueModelSettings() {
161+
return ((ContactCenterInsightsStubSettings) getStubSettings()).updateIssueModelSettings();
162+
}
163+
147164
/** Returns the object with the settings used for calls to getIssueModel. */
148165
public UnaryCallSettings<GetIssueModelRequest, IssueModel> getIssueModelSettings() {
149166
return ((ContactCenterInsightsStubSettings) getStubSettings()).getIssueModelSettings();
@@ -155,6 +172,44 @@ public UnaryCallSettings<GetIssueModelRequest, IssueModel> getIssueModelSettings
155172
return ((ContactCenterInsightsStubSettings) getStubSettings()).listIssueModelsSettings();
156173
}
157174

175+
/** Returns the object with the settings used for calls to deleteIssueModel. */
176+
public UnaryCallSettings<DeleteIssueModelRequest, Operation> deleteIssueModelSettings() {
177+
return ((ContactCenterInsightsStubSettings) getStubSettings()).deleteIssueModelSettings();
178+
}
179+
180+
/** Returns the object with the settings used for calls to deleteIssueModel. */
181+
public OperationCallSettings<DeleteIssueModelRequest, Empty, DeleteIssueModelMetadata>
182+
deleteIssueModelOperationSettings() {
183+
return ((ContactCenterInsightsStubSettings) getStubSettings())
184+
.deleteIssueModelOperationSettings();
185+
}
186+
187+
/** Returns the object with the settings used for calls to deployIssueModel. */
188+
public UnaryCallSettings<DeployIssueModelRequest, Operation> deployIssueModelSettings() {
189+
return ((ContactCenterInsightsStubSettings) getStubSettings()).deployIssueModelSettings();
190+
}
191+
192+
/** Returns the object with the settings used for calls to deployIssueModel. */
193+
public OperationCallSettings<
194+
DeployIssueModelRequest, DeployIssueModelResponse, DeployIssueModelMetadata>
195+
deployIssueModelOperationSettings() {
196+
return ((ContactCenterInsightsStubSettings) getStubSettings())
197+
.deployIssueModelOperationSettings();
198+
}
199+
200+
/** Returns the object with the settings used for calls to undeployIssueModel. */
201+
public UnaryCallSettings<UndeployIssueModelRequest, Operation> undeployIssueModelSettings() {
202+
return ((ContactCenterInsightsStubSettings) getStubSettings()).undeployIssueModelSettings();
203+
}
204+
205+
/** Returns the object with the settings used for calls to undeployIssueModel. */
206+
public OperationCallSettings<
207+
UndeployIssueModelRequest, UndeployIssueModelResponse, UndeployIssueModelMetadata>
208+
undeployIssueModelOperationSettings() {
209+
return ((ContactCenterInsightsStubSettings) getStubSettings())
210+
.undeployIssueModelOperationSettings();
211+
}
212+
158213
/** Returns the object with the settings used for calls to getIssue. */
159214
public UnaryCallSettings<GetIssueRequest, Issue> getIssueSettings() {
160215
return ((ContactCenterInsightsStubSettings) getStubSettings()).getIssueSettings();
@@ -165,6 +220,11 @@ public UnaryCallSettings<ListIssuesRequest, ListIssuesResponse> listIssuesSettin
165220
return ((ContactCenterInsightsStubSettings) getStubSettings()).listIssuesSettings();
166221
}
167222

223+
/** Returns the object with the settings used for calls to updateIssue. */
224+
public UnaryCallSettings<UpdateIssueRequest, Issue> updateIssueSettings() {
225+
return ((ContactCenterInsightsStubSettings) getStubSettings()).updateIssueSettings();
226+
}
227+
168228
/** Returns the object with the settings used for calls to calculateIssueModelStats. */
169229
public UnaryCallSettings<CalculateIssueModelStatsRequest, CalculateIssueModelStatsResponse>
170230
calculateIssueModelStatsSettings() {
@@ -381,6 +441,25 @@ public UnaryCallSettings.Builder<DeleteAnalysisRequest, Empty> deleteAnalysisSet
381441
return getStubSettingsBuilder().exportInsightsDataOperationSettings();
382442
}
383443

444+
/** Returns the builder for the settings used for calls to createIssueModel. */
445+
public UnaryCallSettings.Builder<CreateIssueModelRequest, Operation>
446+
createIssueModelSettings() {
447+
return getStubSettingsBuilder().createIssueModelSettings();
448+
}
449+
450+
/** Returns the builder for the settings used for calls to createIssueModel. */
451+
public OperationCallSettings.Builder<
452+
CreateIssueModelRequest, IssueModel, CreateIssueModelMetadata>
453+
createIssueModelOperationSettings() {
454+
return getStubSettingsBuilder().createIssueModelOperationSettings();
455+
}
456+
457+
/** Returns the builder for the settings used for calls to updateIssueModel. */
458+
public UnaryCallSettings.Builder<UpdateIssueModelRequest, IssueModel>
459+
updateIssueModelSettings() {
460+
return getStubSettingsBuilder().updateIssueModelSettings();
461+
}
462+
384463
/** Returns the builder for the settings used for calls to getIssueModel. */
385464
public UnaryCallSettings.Builder<GetIssueModelRequest, IssueModel> getIssueModelSettings() {
386465
return getStubSettingsBuilder().getIssueModelSettings();
@@ -392,6 +471,44 @@ public UnaryCallSettings.Builder<GetIssueModelRequest, IssueModel> getIssueModel
392471
return getStubSettingsBuilder().listIssueModelsSettings();
393472
}
394473

474+
/** Returns the builder for the settings used for calls to deleteIssueModel. */
475+
public UnaryCallSettings.Builder<DeleteIssueModelRequest, Operation>
476+
deleteIssueModelSettings() {
477+
return getStubSettingsBuilder().deleteIssueModelSettings();
478+
}
479+
480+
/** Returns the builder for the settings used for calls to deleteIssueModel. */
481+
public OperationCallSettings.Builder<DeleteIssueModelRequest, Empty, DeleteIssueModelMetadata>
482+
deleteIssueModelOperationSettings() {
483+
return getStubSettingsBuilder().deleteIssueModelOperationSettings();
484+
}
485+
486+
/** Returns the builder for the settings used for calls to deployIssueModel. */
487+
public UnaryCallSettings.Builder<DeployIssueModelRequest, Operation>
488+
deployIssueModelSettings() {
489+
return getStubSettingsBuilder().deployIssueModelSettings();
490+
}
491+
492+
/** Returns the builder for the settings used for calls to deployIssueModel. */
493+
public OperationCallSettings.Builder<
494+
DeployIssueModelRequest, DeployIssueModelResponse, DeployIssueModelMetadata>
495+
deployIssueModelOperationSettings() {
496+
return getStubSettingsBuilder().deployIssueModelOperationSettings();
497+
}
498+
499+
/** Returns the builder for the settings used for calls to undeployIssueModel. */
500+
public UnaryCallSettings.Builder<UndeployIssueModelRequest, Operation>
501+
undeployIssueModelSettings() {
502+
return getStubSettingsBuilder().undeployIssueModelSettings();
503+
}
504+
505+
/** Returns the builder for the settings used for calls to undeployIssueModel. */
506+
public OperationCallSettings.Builder<
507+
UndeployIssueModelRequest, UndeployIssueModelResponse, UndeployIssueModelMetadata>
508+
undeployIssueModelOperationSettings() {
509+
return getStubSettingsBuilder().undeployIssueModelOperationSettings();
510+
}
511+
395512
/** Returns the builder for the settings used for calls to getIssue. */
396513
public UnaryCallSettings.Builder<GetIssueRequest, Issue> getIssueSettings() {
397514
return getStubSettingsBuilder().getIssueSettings();
@@ -402,6 +519,11 @@ public UnaryCallSettings.Builder<ListIssuesRequest, ListIssuesResponse> listIssu
402519
return getStubSettingsBuilder().listIssuesSettings();
403520
}
404521

522+
/** Returns the builder for the settings used for calls to updateIssue. */
523+
public UnaryCallSettings.Builder<UpdateIssueRequest, Issue> updateIssueSettings() {
524+
return getStubSettingsBuilder().updateIssueSettings();
525+
}
526+
405527
/** Returns the builder for the settings used for calls to calculateIssueModelStats. */
406528
public UnaryCallSettings.Builder<
407529
CalculateIssueModelStatsRequest, CalculateIssueModelStatsResponse>

google-cloud-contact-center-insights/src/main/java/com/google/cloud/contactcenterinsights/v1/gapic_metadata.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"CreateConversation": {
2323
"methods": ["createConversation", "createConversation", "createConversation", "createConversationCallable"]
2424
},
25+
"CreateIssueModel": {
26+
"methods": ["createIssueModelAsync", "createIssueModelAsync", "createIssueModelAsync", "createIssueModelOperationCallable", "createIssueModelCallable"]
27+
},
2528
"CreatePhraseMatcher": {
2629
"methods": ["createPhraseMatcher", "createPhraseMatcher", "createPhraseMatcher", "createPhraseMatcherCallable"]
2730
},
@@ -31,9 +34,15 @@
3134
"DeleteConversation": {
3235
"methods": ["deleteConversation", "deleteConversation", "deleteConversation", "deleteConversationCallable"]
3336
},
37+
"DeleteIssueModel": {
38+
"methods": ["deleteIssueModelAsync", "deleteIssueModelAsync", "deleteIssueModelAsync", "deleteIssueModelOperationCallable", "deleteIssueModelCallable"]
39+
},
3440
"DeletePhraseMatcher": {
3541
"methods": ["deletePhraseMatcher", "deletePhraseMatcher", "deletePhraseMatcher", "deletePhraseMatcherCallable"]
3642
},
43+
"DeployIssueModel": {
44+
"methods": ["deployIssueModelAsync", "deployIssueModelAsync", "deployIssueModelAsync", "deployIssueModelOperationCallable", "deployIssueModelCallable"]
45+
},
3746
"ExportInsightsData": {
3847
"methods": ["exportInsightsDataAsync", "exportInsightsDataAsync", "exportInsightsDataAsync", "exportInsightsDataOperationCallable", "exportInsightsDataCallable"]
3948
},
@@ -70,9 +79,18 @@
7079
"ListPhraseMatchers": {
7180
"methods": ["listPhraseMatchers", "listPhraseMatchers", "listPhraseMatchers", "listPhraseMatchersPagedCallable", "listPhraseMatchersCallable"]
7281
},
82+
"UndeployIssueModel": {
83+
"methods": ["undeployIssueModelAsync", "undeployIssueModelAsync", "undeployIssueModelAsync", "undeployIssueModelOperationCallable", "undeployIssueModelCallable"]
84+
},
7385
"UpdateConversation": {
7486
"methods": ["updateConversation", "updateConversation", "updateConversationCallable"]
7587
},
88+
"UpdateIssue": {
89+
"methods": ["updateIssue", "updateIssue", "updateIssueCallable"]
90+
},
91+
"UpdateIssueModel": {
92+
"methods": ["updateIssueModel", "updateIssueModel", "updateIssueModelCallable"]
93+
},
7694
"UpdateSettings": {
7795
"methods": ["updateSettings", "updateSettings", "updateSettingsCallable"]
7896
}

google-cloud-contact-center-insights/src/main/java/com/google/cloud/contactcenterinsights/v1/stub/ContactCenterInsightsStub.java

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,17 @@
3232
import com.google.cloud.contactcenterinsights.v1.CreateAnalysisOperationMetadata;
3333
import com.google.cloud.contactcenterinsights.v1.CreateAnalysisRequest;
3434
import com.google.cloud.contactcenterinsights.v1.CreateConversationRequest;
35+
import com.google.cloud.contactcenterinsights.v1.CreateIssueModelMetadata;
36+
import com.google.cloud.contactcenterinsights.v1.CreateIssueModelRequest;
3537
import com.google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest;
3638
import com.google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest;
3739
import com.google.cloud.contactcenterinsights.v1.DeleteConversationRequest;
40+
import com.google.cloud.contactcenterinsights.v1.DeleteIssueModelMetadata;
41+
import com.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest;
3842
import com.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest;
43+
import com.google.cloud.contactcenterinsights.v1.DeployIssueModelMetadata;
44+
import com.google.cloud.contactcenterinsights.v1.DeployIssueModelRequest;
45+
import com.google.cloud.contactcenterinsights.v1.DeployIssueModelResponse;
3946
import com.google.cloud.contactcenterinsights.v1.ExportInsightsDataMetadata;
4047
import com.google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest;
4148
import com.google.cloud.contactcenterinsights.v1.ExportInsightsDataResponse;
@@ -59,7 +66,12 @@
5966
import com.google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse;
6067
import com.google.cloud.contactcenterinsights.v1.PhraseMatcher;
6168
import com.google.cloud.contactcenterinsights.v1.Settings;
69+
import com.google.cloud.contactcenterinsights.v1.UndeployIssueModelMetadata;
70+
import com.google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest;
71+
import com.google.cloud.contactcenterinsights.v1.UndeployIssueModelResponse;
6272
import com.google.cloud.contactcenterinsights.v1.UpdateConversationRequest;
73+
import com.google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest;
74+
import com.google.cloud.contactcenterinsights.v1.UpdateIssueRequest;
6375
import com.google.cloud.contactcenterinsights.v1.UpdateSettingsRequest;
6476
import com.google.longrunning.Operation;
6577
import com.google.longrunning.stub.OperationsStub;
@@ -141,6 +153,19 @@ public UnaryCallable<ExportInsightsDataRequest, Operation> exportInsightsDataCal
141153
throw new UnsupportedOperationException("Not implemented: exportInsightsDataCallable()");
142154
}
143155

156+
public OperationCallable<CreateIssueModelRequest, IssueModel, CreateIssueModelMetadata>
157+
createIssueModelOperationCallable() {
158+
throw new UnsupportedOperationException("Not implemented: createIssueModelOperationCallable()");
159+
}
160+
161+
public UnaryCallable<CreateIssueModelRequest, Operation> createIssueModelCallable() {
162+
throw new UnsupportedOperationException("Not implemented: createIssueModelCallable()");
163+
}
164+
165+
public UnaryCallable<UpdateIssueModelRequest, IssueModel> updateIssueModelCallable() {
166+
throw new UnsupportedOperationException("Not implemented: updateIssueModelCallable()");
167+
}
168+
144169
public UnaryCallable<GetIssueModelRequest, IssueModel> getIssueModelCallable() {
145170
throw new UnsupportedOperationException("Not implemented: getIssueModelCallable()");
146171
}
@@ -149,6 +174,36 @@ public UnaryCallable<ListIssueModelsRequest, ListIssueModelsResponse> listIssueM
149174
throw new UnsupportedOperationException("Not implemented: listIssueModelsCallable()");
150175
}
151176

177+
public OperationCallable<DeleteIssueModelRequest, Empty, DeleteIssueModelMetadata>
178+
deleteIssueModelOperationCallable() {
179+
throw new UnsupportedOperationException("Not implemented: deleteIssueModelOperationCallable()");
180+
}
181+
182+
public UnaryCallable<DeleteIssueModelRequest, Operation> deleteIssueModelCallable() {
183+
throw new UnsupportedOperationException("Not implemented: deleteIssueModelCallable()");
184+
}
185+
186+
public OperationCallable<
187+
DeployIssueModelRequest, DeployIssueModelResponse, DeployIssueModelMetadata>
188+
deployIssueModelOperationCallable() {
189+
throw new UnsupportedOperationException("Not implemented: deployIssueModelOperationCallable()");
190+
}
191+
192+
public UnaryCallable<DeployIssueModelRequest, Operation> deployIssueModelCallable() {
193+
throw new UnsupportedOperationException("Not implemented: deployIssueModelCallable()");
194+
}
195+
196+
public OperationCallable<
197+
UndeployIssueModelRequest, UndeployIssueModelResponse, UndeployIssueModelMetadata>
198+
undeployIssueModelOperationCallable() {
199+
throw new UnsupportedOperationException(
200+
"Not implemented: undeployIssueModelOperationCallable()");
201+
}
202+
203+
public UnaryCallable<UndeployIssueModelRequest, Operation> undeployIssueModelCallable() {
204+
throw new UnsupportedOperationException("Not implemented: undeployIssueModelCallable()");
205+
}
206+
152207
public UnaryCallable<GetIssueRequest, Issue> getIssueCallable() {
153208
throw new UnsupportedOperationException("Not implemented: getIssueCallable()");
154209
}
@@ -157,6 +212,10 @@ public UnaryCallable<ListIssuesRequest, ListIssuesResponse> listIssuesCallable()
157212
throw new UnsupportedOperationException("Not implemented: listIssuesCallable()");
158213
}
159214

215+
public UnaryCallable<UpdateIssueRequest, Issue> updateIssueCallable() {
216+
throw new UnsupportedOperationException("Not implemented: updateIssueCallable()");
217+
}
218+
160219
public UnaryCallable<CalculateIssueModelStatsRequest, CalculateIssueModelStatsResponse>
161220
calculateIssueModelStatsCallable() {
162221
throw new UnsupportedOperationException("Not implemented: calculateIssueModelStatsCallable()");

0 commit comments

Comments
 (0)