Skip to content

Commit

Permalink
feat: [contactcenterinsights] add Configurable Analysis, Bulk Upload,…
Browse files Browse the repository at this point in the history
… Bulk Analyze, Delete Issue Apis (#8910)

- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 495057883

Source-Link: https://togithub.com/googleapis/googleapis/commit/59a66eb3180ea8474c0a22da3fe964dbe7428c77

Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/9e7f289c6c6e4fd5f63b6dcfee0d272ab1dca1de
Copy-Tag: eyJwIjoiamF2YS1jb250YWN0LWNlbnRlci1pbnNpZ2h0cy8uT3dsQm90LnlhbWwiLCJoIjoiOWU3ZjI4OWM2YzZlNGZkNWY2M2I2ZGNmZWUwZDI3MmFiMWRjYTFkZSJ9
  • Loading branch information
gcf-owl-bot[bot] authored Dec 20, 2022
1 parent 77e6526 commit 765a8bf
Show file tree
Hide file tree
Showing 60 changed files with 19,530 additions and 740 deletions.
6 changes: 3 additions & 3 deletions java-contact-center-insights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-contact-center-insights</artifactId>
<version>2.6.0</version>
<version>2.7.0</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-contact-center-insights:2.6.0'
implementation 'com.google.cloud:google-cloud-contact-center-insights:2.7.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-contact-center-insights" % "2.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-contact-center-insights" % "2.7.0"
```

## Authentication
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,36 @@ public UnaryCallSettings<DeleteAnalysisRequest, Empty> deleteAnalysisSettings()
return ((ContactCenterInsightsStubSettings) getStubSettings()).deleteAnalysisSettings();
}

/** Returns the object with the settings used for calls to bulkAnalyzeConversations. */
public UnaryCallSettings<BulkAnalyzeConversationsRequest, Operation>
bulkAnalyzeConversationsSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings())
.bulkAnalyzeConversationsSettings();
}

/** Returns the object with the settings used for calls to bulkAnalyzeConversations. */
public OperationCallSettings<
BulkAnalyzeConversationsRequest,
BulkAnalyzeConversationsResponse,
BulkAnalyzeConversationsMetadata>
bulkAnalyzeConversationsOperationSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings())
.bulkAnalyzeConversationsOperationSettings();
}

/** Returns the object with the settings used for calls to ingestConversations. */
public UnaryCallSettings<IngestConversationsRequest, Operation> ingestConversationsSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings()).ingestConversationsSettings();
}

/** Returns the object with the settings used for calls to ingestConversations. */
public OperationCallSettings<
IngestConversationsRequest, IngestConversationsResponse, IngestConversationsMetadata>
ingestConversationsOperationSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings())
.ingestConversationsOperationSettings();
}

/** Returns the object with the settings used for calls to exportInsightsData. */
public UnaryCallSettings<ExportInsightsDataRequest, Operation> exportInsightsDataSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings()).exportInsightsDataSettings();
Expand Down Expand Up @@ -232,6 +262,11 @@ public UnaryCallSettings<UpdateIssueRequest, Issue> updateIssueSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings()).updateIssueSettings();
}

/** Returns the object with the settings used for calls to deleteIssue. */
public UnaryCallSettings<DeleteIssueRequest, Empty> deleteIssueSettings() {
return ((ContactCenterInsightsStubSettings) getStubSettings()).deleteIssueSettings();
}

/** Returns the object with the settings used for calls to calculateIssueModelStats. */
public UnaryCallSettings<CalculateIssueModelStatsRequest, CalculateIssueModelStatsResponse>
calculateIssueModelStatsSettings() {
Expand Down Expand Up @@ -485,6 +520,34 @@ public UnaryCallSettings.Builder<DeleteAnalysisRequest, Empty> deleteAnalysisSet
return getStubSettingsBuilder().deleteAnalysisSettings();
}

/** Returns the builder for the settings used for calls to bulkAnalyzeConversations. */
public UnaryCallSettings.Builder<BulkAnalyzeConversationsRequest, Operation>
bulkAnalyzeConversationsSettings() {
return getStubSettingsBuilder().bulkAnalyzeConversationsSettings();
}

/** Returns the builder for the settings used for calls to bulkAnalyzeConversations. */
public OperationCallSettings.Builder<
BulkAnalyzeConversationsRequest,
BulkAnalyzeConversationsResponse,
BulkAnalyzeConversationsMetadata>
bulkAnalyzeConversationsOperationSettings() {
return getStubSettingsBuilder().bulkAnalyzeConversationsOperationSettings();
}

/** Returns the builder for the settings used for calls to ingestConversations. */
public UnaryCallSettings.Builder<IngestConversationsRequest, Operation>
ingestConversationsSettings() {
return getStubSettingsBuilder().ingestConversationsSettings();
}

/** Returns the builder for the settings used for calls to ingestConversations. */
public OperationCallSettings.Builder<
IngestConversationsRequest, IngestConversationsResponse, IngestConversationsMetadata>
ingestConversationsOperationSettings() {
return getStubSettingsBuilder().ingestConversationsOperationSettings();
}

/** Returns the builder for the settings used for calls to exportInsightsData. */
public UnaryCallSettings.Builder<ExportInsightsDataRequest, Operation>
exportInsightsDataSettings() {
Expand Down Expand Up @@ -581,6 +644,11 @@ public UnaryCallSettings.Builder<UpdateIssueRequest, Issue> updateIssueSettings(
return getStubSettingsBuilder().updateIssueSettings();
}

/** Returns the builder for the settings used for calls to deleteIssue. */
public UnaryCallSettings.Builder<DeleteIssueRequest, Empty> deleteIssueSettings() {
return getStubSettingsBuilder().deleteIssueSettings();
}

/** Returns the builder for the settings used for calls to calculateIssueModelStats. */
public UnaryCallSettings.Builder<
CalculateIssueModelStatsRequest, CalculateIssueModelStatsResponse>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"grpc": {
"libraryClient": "ContactCenterInsightsClient",
"rpcs": {
"BulkAnalyzeConversations": {
"methods": ["bulkAnalyzeConversationsAsync", "bulkAnalyzeConversationsAsync", "bulkAnalyzeConversationsAsync", "bulkAnalyzeConversationsOperationCallable", "bulkAnalyzeConversationsCallable"]
},
"CalculateIssueModelStats": {
"methods": ["calculateIssueModelStats", "calculateIssueModelStats", "calculateIssueModelStats", "calculateIssueModelStatsCallable"]
},
Expand Down Expand Up @@ -37,6 +40,9 @@
"DeleteConversation": {
"methods": ["deleteConversation", "deleteConversation", "deleteConversation", "deleteConversationCallable"]
},
"DeleteIssue": {
"methods": ["deleteIssue", "deleteIssue", "deleteIssue", "deleteIssueCallable"]
},
"DeleteIssueModel": {
"methods": ["deleteIssueModelAsync", "deleteIssueModelAsync", "deleteIssueModelAsync", "deleteIssueModelOperationCallable", "deleteIssueModelCallable"]
},
Expand Down Expand Up @@ -73,6 +79,9 @@
"GetView": {
"methods": ["getView", "getView", "getView", "getViewCallable"]
},
"IngestConversations": {
"methods": ["ingestConversationsAsync", "ingestConversationsAsync", "ingestConversationsAsync", "ingestConversationsOperationCallable", "ingestConversationsCallable"]
},
"ListAnalyses": {
"methods": ["listAnalyses", "listAnalyses", "listAnalyses", "listAnalysesPagedCallable", "listAnalysesCallable"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.contactcenterinsights.v1.Analysis;
import com.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsMetadata;
import com.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsRequest;
import com.google.cloud.contactcenterinsights.v1.BulkAnalyzeConversationsResponse;
import com.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest;
import com.google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse;
import com.google.cloud.contactcenterinsights.v1.CalculateStatsRequest;
Expand All @@ -41,6 +44,7 @@
import com.google.cloud.contactcenterinsights.v1.DeleteConversationRequest;
import com.google.cloud.contactcenterinsights.v1.DeleteIssueModelMetadata;
import com.google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest;
import com.google.cloud.contactcenterinsights.v1.DeleteIssueRequest;
import com.google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest;
import com.google.cloud.contactcenterinsights.v1.DeleteViewRequest;
import com.google.cloud.contactcenterinsights.v1.DeployIssueModelMetadata;
Expand All @@ -56,6 +60,9 @@
import com.google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest;
import com.google.cloud.contactcenterinsights.v1.GetSettingsRequest;
import com.google.cloud.contactcenterinsights.v1.GetViewRequest;
import com.google.cloud.contactcenterinsights.v1.IngestConversationsMetadata;
import com.google.cloud.contactcenterinsights.v1.IngestConversationsRequest;
import com.google.cloud.contactcenterinsights.v1.IngestConversationsResponse;
import com.google.cloud.contactcenterinsights.v1.Issue;
import com.google.cloud.contactcenterinsights.v1.IssueModel;
import com.google.cloud.contactcenterinsights.v1.ListAnalysesRequest;
Expand Down Expand Up @@ -155,6 +162,31 @@ public UnaryCallable<DeleteAnalysisRequest, Empty> deleteAnalysisCallable() {
throw new UnsupportedOperationException("Not implemented: deleteAnalysisCallable()");
}

public OperationCallable<
BulkAnalyzeConversationsRequest,
BulkAnalyzeConversationsResponse,
BulkAnalyzeConversationsMetadata>
bulkAnalyzeConversationsOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: bulkAnalyzeConversationsOperationCallable()");
}

public UnaryCallable<BulkAnalyzeConversationsRequest, Operation>
bulkAnalyzeConversationsCallable() {
throw new UnsupportedOperationException("Not implemented: bulkAnalyzeConversationsCallable()");
}

public OperationCallable<
IngestConversationsRequest, IngestConversationsResponse, IngestConversationsMetadata>
ingestConversationsOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: ingestConversationsOperationCallable()");
}

public UnaryCallable<IngestConversationsRequest, Operation> ingestConversationsCallable() {
throw new UnsupportedOperationException("Not implemented: ingestConversationsCallable()");
}

public OperationCallable<
ExportInsightsDataRequest, ExportInsightsDataResponse, ExportInsightsDataMetadata>
exportInsightsDataOperationCallable() {
Expand Down Expand Up @@ -229,6 +261,10 @@ public UnaryCallable<UpdateIssueRequest, Issue> updateIssueCallable() {
throw new UnsupportedOperationException("Not implemented: updateIssueCallable()");
}

public UnaryCallable<DeleteIssueRequest, Empty> deleteIssueCallable() {
throw new UnsupportedOperationException("Not implemented: deleteIssueCallable()");
}

public UnaryCallable<CalculateIssueModelStatsRequest, CalculateIssueModelStatsResponse>
calculateIssueModelStatsCallable() {
throw new UnsupportedOperationException("Not implemented: calculateIssueModelStatsCallable()");
Expand Down
Loading

0 comments on commit 765a8bf

Please sign in to comment.