google-apis-contactcenterinsights_v1 0.68.0 → 0.69.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +42 -16
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +2 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +6 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebc2154f5e3e47b9c06c96b0fd41d30408a20fadd583e1484d0dfe75ebcce08a
|
4
|
+
data.tar.gz: 37236f993e97e56162b3d8e881d611ad734f3dd8761c4668d09195a3b97dfce2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa4752731ffccb06e061f605efe038352732ee0fba04a32a331a25a8e3e6f0cde37b1c1b028a68006a4f8b81f6d75b5a349680a4021825661e097612e7b291d9
|
7
|
+
data.tar.gz: 2c844be716ef38ac45f0447ae66b5392457571376ff6f201765d942eb3b2b59089e457583223fd9ab4e08691b849ba0bf38999098f589b5d7d40010403575200
|
data/CHANGELOG.md
CHANGED
@@ -3657,22 +3657,24 @@ module Google
|
|
3657
3657
|
class GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource
|
3658
3658
|
include Google::Apis::Core::Hashable
|
3659
3659
|
|
3660
|
-
# Optional. The Cloud Storage path to the conversation audio file
|
3661
|
-
#
|
3662
|
-
#
|
3663
|
-
#
|
3664
|
-
#
|
3665
|
-
#
|
3660
|
+
# Optional. The Cloud Storage path to the conversation audio file. Note that: [1]
|
3661
|
+
# Audio files will be transcribed if not already. [2] Audio files and
|
3662
|
+
# transcript files must be in separate buckets / folders. [3] A source file and
|
3663
|
+
# its corresponding audio file must share the same name to be properly ingested,
|
3664
|
+
# E.g. `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/
|
3665
|
+
# conversation1.mp3`.
|
3666
3666
|
# Corresponds to the JSON property `audioBucketUri`
|
3667
3667
|
# @return [String]
|
3668
3668
|
attr_accessor :audio_bucket_uri
|
3669
3669
|
|
3670
|
-
# Optional. Specifies the type of the objects in `bucket_uri`.
|
3670
|
+
# Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing
|
3671
|
+
# this. This is inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
|
3671
3672
|
# Corresponds to the JSON property `bucketObjectType`
|
3672
3673
|
# @return [String]
|
3673
3674
|
attr_accessor :bucket_object_type
|
3674
3675
|
|
3675
|
-
#
|
3676
|
+
# Optional. The Cloud Storage bucket containing source objects. Avoid passing
|
3677
|
+
# this. Pass this through one of `transcript_bucket_uri` or `audio_bucket_uri`.
|
3676
3678
|
# Corresponds to the JSON property `bucketUri`
|
3677
3679
|
# @return [String]
|
3678
3680
|
attr_accessor :bucket_uri
|
@@ -3694,6 +3696,16 @@ module Google
|
|
3694
3696
|
# @return [String]
|
3695
3697
|
attr_accessor :metadata_bucket_uri
|
3696
3698
|
|
3699
|
+
# Optional. The Cloud Storage path to the conversation transcripts. Note that: [
|
3700
|
+
# 1] Transcript files are expected to be in JSON format. [2] Transcript, audio,
|
3701
|
+
# metadata files must be in separate buckets / folders. [3] A source file and
|
3702
|
+
# its corresponding metadata file must share the same name to be properly
|
3703
|
+
# ingested, E.g. `gs://bucket/audio/conversation1.mp3` and `gs://bucket/metadata/
|
3704
|
+
# conversation1.json`.
|
3705
|
+
# Corresponds to the JSON property `transcriptBucketUri`
|
3706
|
+
# @return [String]
|
3707
|
+
attr_accessor :transcript_bucket_uri
|
3708
|
+
|
3697
3709
|
def initialize(**args)
|
3698
3710
|
update!(**args)
|
3699
3711
|
end
|
@@ -3705,6 +3717,7 @@ module Google
|
|
3705
3717
|
@bucket_uri = args[:bucket_uri] if args.key?(:bucket_uri)
|
3706
3718
|
@custom_metadata_keys = args[:custom_metadata_keys] if args.key?(:custom_metadata_keys)
|
3707
3719
|
@metadata_bucket_uri = args[:metadata_bucket_uri] if args.key?(:metadata_bucket_uri)
|
3720
|
+
@transcript_bucket_uri = args[:transcript_bucket_uri] if args.key?(:transcript_bucket_uri)
|
3708
3721
|
end
|
3709
3722
|
end
|
3710
3723
|
|
@@ -9871,22 +9884,24 @@ module Google
|
|
9871
9884
|
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource
|
9872
9885
|
include Google::Apis::Core::Hashable
|
9873
9886
|
|
9874
|
-
# Optional. The Cloud Storage path to the conversation audio file
|
9875
|
-
#
|
9876
|
-
#
|
9877
|
-
#
|
9878
|
-
#
|
9879
|
-
#
|
9887
|
+
# Optional. The Cloud Storage path to the conversation audio file. Note that: [1]
|
9888
|
+
# Audio files will be transcribed if not already. [2] Audio files and
|
9889
|
+
# transcript files must be in separate buckets / folders. [3] A source file and
|
9890
|
+
# its corresponding audio file must share the same name to be properly ingested,
|
9891
|
+
# E.g. `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/
|
9892
|
+
# conversation1.mp3`.
|
9880
9893
|
# Corresponds to the JSON property `audioBucketUri`
|
9881
9894
|
# @return [String]
|
9882
9895
|
attr_accessor :audio_bucket_uri
|
9883
9896
|
|
9884
|
-
# Optional. Specifies the type of the objects in `bucket_uri`.
|
9897
|
+
# Optional. Specifies the type of the objects in `bucket_uri`. Avoid passing
|
9898
|
+
# this. This is inferred from the `transcript_bucket_uri`, `audio_bucket_uri`.
|
9885
9899
|
# Corresponds to the JSON property `bucketObjectType`
|
9886
9900
|
# @return [String]
|
9887
9901
|
attr_accessor :bucket_object_type
|
9888
9902
|
|
9889
|
-
#
|
9903
|
+
# Optional. The Cloud Storage bucket containing source objects. Avoid passing
|
9904
|
+
# this. Pass this through one of `transcript_bucket_uri` or `audio_bucket_uri`.
|
9890
9905
|
# Corresponds to the JSON property `bucketUri`
|
9891
9906
|
# @return [String]
|
9892
9907
|
attr_accessor :bucket_uri
|
@@ -9908,6 +9923,16 @@ module Google
|
|
9908
9923
|
# @return [String]
|
9909
9924
|
attr_accessor :metadata_bucket_uri
|
9910
9925
|
|
9926
|
+
# Optional. The Cloud Storage path to the conversation transcripts. Note that: [
|
9927
|
+
# 1] Transcript files are expected to be in JSON format. [2] Transcript, audio,
|
9928
|
+
# metadata files must be in separate buckets / folders. [3] A source file and
|
9929
|
+
# its corresponding metadata file must share the same name to be properly
|
9930
|
+
# ingested, E.g. `gs://bucket/audio/conversation1.mp3` and `gs://bucket/metadata/
|
9931
|
+
# conversation1.json`.
|
9932
|
+
# Corresponds to the JSON property `transcriptBucketUri`
|
9933
|
+
# @return [String]
|
9934
|
+
attr_accessor :transcript_bucket_uri
|
9935
|
+
|
9911
9936
|
def initialize(**args)
|
9912
9937
|
update!(**args)
|
9913
9938
|
end
|
@@ -9919,6 +9944,7 @@ module Google
|
|
9919
9944
|
@bucket_uri = args[:bucket_uri] if args.key?(:bucket_uri)
|
9920
9945
|
@custom_metadata_keys = args[:custom_metadata_keys] if args.key?(:custom_metadata_keys)
|
9921
9946
|
@metadata_bucket_uri = args[:metadata_bucket_uri] if args.key?(:metadata_bucket_uri)
|
9947
|
+
@transcript_bucket_uri = args[:transcript_bucket_uri] if args.key?(:transcript_bucket_uri)
|
9922
9948
|
end
|
9923
9949
|
end
|
9924
9950
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenterinsightsV1
|
18
18
|
# Version of the google-apis-contactcenterinsights_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.69.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250721"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3103,6 +3103,7 @@ module Google
|
|
3103
3103
|
property :bucket_uri, as: 'bucketUri'
|
3104
3104
|
collection :custom_metadata_keys, as: 'customMetadataKeys'
|
3105
3105
|
property :metadata_bucket_uri, as: 'metadataBucketUri'
|
3106
|
+
property :transcript_bucket_uri, as: 'transcriptBucketUri'
|
3106
3107
|
end
|
3107
3108
|
end
|
3108
3109
|
|
@@ -4914,6 +4915,7 @@ module Google
|
|
4914
4915
|
property :bucket_uri, as: 'bucketUri'
|
4915
4916
|
collection :custom_metadata_keys, as: 'customMetadataKeys'
|
4916
4917
|
property :metadata_bucket_uri, as: 'metadataBucketUri'
|
4918
|
+
property :transcript_bucket_uri, as: 'transcriptBucketUri'
|
4917
4919
|
end
|
4918
4920
|
end
|
4919
4921
|
|
@@ -2536,6 +2536,10 @@ module Google
|
|
2536
2536
|
# Immutable. The resource name of the conversation. Format: projects/`project`/
|
2537
2537
|
# locations/`location`/conversations/`conversation`
|
2538
2538
|
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation] google_cloud_contactcenterinsights_v1_conversation_object
|
2539
|
+
# @param [Boolean] allow_missing
|
2540
|
+
# Optional. Defaults to false. If set to true, and the conversation is not found,
|
2541
|
+
# a new conversation will be created. In this situation, `update_mask` is
|
2542
|
+
# ignored.
|
2539
2543
|
# @param [String] update_mask
|
2540
2544
|
# The list of fields to be updated. All possible fields can be updated by
|
2541
2545
|
# passing `*`, or a subset of the following updateable fields can be provided: *
|
@@ -2559,13 +2563,14 @@ module Google
|
|
2559
2563
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2560
2564
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2561
2565
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2562
|
-
def patch_project_location_conversation(name, google_cloud_contactcenterinsights_v1_conversation_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2566
|
+
def patch_project_location_conversation(name, google_cloud_contactcenterinsights_v1_conversation_object = nil, allow_missing: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2563
2567
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
2564
2568
|
command.request_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation::Representation
|
2565
2569
|
command.request_object = google_cloud_contactcenterinsights_v1_conversation_object
|
2566
2570
|
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation::Representation
|
2567
2571
|
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation
|
2568
2572
|
command.params['name'] = name unless name.nil?
|
2573
|
+
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
|
2569
2574
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
2570
2575
|
command.query['fields'] = fields unless fields.nil?
|
2571
2576
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenterinsights_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.69.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|