google-apis-contactcenterinsights_v1 0.18.0 → 0.20.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d9fe2a65f37dc393989a4b227d4e936e8f3b5b8c6ee0be356bf8833828bbc2b
|
4
|
+
data.tar.gz: b9f13d4076df88c89c221376e81697214de9d2b87aace360e3cf9c9b582d8cbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98f11325c6143c6d1c33e7cb022d26bac6f1a1afb6e6a4ee1f84e5a0f01c6e3947eb5b11881545e5196e9a26868c9e814483d0ab1d0aa1f8d43e0e8b89c79135
|
7
|
+
data.tar.gz: 46713d4c4bd2075ed4985c65b5f8d98d967bdc002c3a5c6d8772e5be0b5f4c6aea50300ab7a38a6e794ea0298f0cc7e1cc4b1ae550bfce6c56e1f2046ab42815
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.20.0 (2023-02-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230129
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
8
|
+
### v0.19.0 (2023-01-04)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20221219
|
11
|
+
|
3
12
|
### v0.18.0 (2022-12-07)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221204
|
@@ -1704,6 +1704,11 @@ module Google
|
|
1704
1704
|
# @return [String]
|
1705
1705
|
attr_accessor :end_time
|
1706
1706
|
|
1707
|
+
# Statistics for IngestConversations operation.
|
1708
|
+
# Corresponds to the JSON property `ingestConversationsStats`
|
1709
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats]
|
1710
|
+
attr_accessor :ingest_conversations_stats
|
1711
|
+
|
1707
1712
|
# Output only. Partial errors during ingest operation that might cause the
|
1708
1713
|
# operation output to be incomplete.
|
1709
1714
|
# Corresponds to the JSON property `partialErrors`
|
@@ -1723,11 +1728,52 @@ module Google
|
|
1723
1728
|
def update!(**args)
|
1724
1729
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1725
1730
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1731
|
+
@ingest_conversations_stats = args[:ingest_conversations_stats] if args.key?(:ingest_conversations_stats)
|
1726
1732
|
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
1727
1733
|
@request = args[:request] if args.key?(:request)
|
1728
1734
|
end
|
1729
1735
|
end
|
1730
1736
|
|
1737
|
+
# Statistics for IngestConversations operation.
|
1738
|
+
class GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats
|
1739
|
+
include Google::Apis::Core::Hashable
|
1740
|
+
|
1741
|
+
# Output only. The number of objects skipped because another conversation with
|
1742
|
+
# the same transcript uri had already been ingested.
|
1743
|
+
# Corresponds to the JSON property `duplicatesSkippedCount`
|
1744
|
+
# @return [Fixnum]
|
1745
|
+
attr_accessor :duplicates_skipped_count
|
1746
|
+
|
1747
|
+
# Output only. The number of objects which were unable to be ingested due to
|
1748
|
+
# errors. The errors are populated in the partial_errors field.
|
1749
|
+
# Corresponds to the JSON property `failedIngestCount`
|
1750
|
+
# @return [Fixnum]
|
1751
|
+
attr_accessor :failed_ingest_count
|
1752
|
+
|
1753
|
+
# Output only. The number of objects processed during the ingest operation.
|
1754
|
+
# Corresponds to the JSON property `processedObjectCount`
|
1755
|
+
# @return [Fixnum]
|
1756
|
+
attr_accessor :processed_object_count
|
1757
|
+
|
1758
|
+
# Output only. The number of new conversations added during this ingest
|
1759
|
+
# operation.
|
1760
|
+
# Corresponds to the JSON property `successfulIngestCount`
|
1761
|
+
# @return [Fixnum]
|
1762
|
+
attr_accessor :successful_ingest_count
|
1763
|
+
|
1764
|
+
def initialize(**args)
|
1765
|
+
update!(**args)
|
1766
|
+
end
|
1767
|
+
|
1768
|
+
# Update properties of this object
|
1769
|
+
def update!(**args)
|
1770
|
+
@duplicates_skipped_count = args[:duplicates_skipped_count] if args.key?(:duplicates_skipped_count)
|
1771
|
+
@failed_ingest_count = args[:failed_ingest_count] if args.key?(:failed_ingest_count)
|
1772
|
+
@processed_object_count = args[:processed_object_count] if args.key?(:processed_object_count)
|
1773
|
+
@successful_ingest_count = args[:successful_ingest_count] if args.key?(:successful_ingest_count)
|
1774
|
+
end
|
1775
|
+
end
|
1776
|
+
|
1731
1777
|
# The request to ingest conversations.
|
1732
1778
|
class GoogleCloudContactcenterinsightsV1IngestConversationsRequest
|
1733
1779
|
include Google::Apis::Core::Hashable
|
@@ -2893,7 +2939,7 @@ module Google
|
|
2893
2939
|
# @return [String]
|
2894
2940
|
attr_accessor :update_time
|
2895
2941
|
|
2896
|
-
# String with specific view properties.
|
2942
|
+
# String with specific view properties, must be non-empty.
|
2897
2943
|
# Corresponds to the JSON property `value`
|
2898
2944
|
# @return [String]
|
2899
2945
|
attr_accessor :value
|
@@ -3460,6 +3506,11 @@ module Google
|
|
3460
3506
|
# @return [String]
|
3461
3507
|
attr_accessor :end_time
|
3462
3508
|
|
3509
|
+
# Statistics for IngestConversations operation.
|
3510
|
+
# Corresponds to the JSON property `ingestConversationsStats`
|
3511
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats]
|
3512
|
+
attr_accessor :ingest_conversations_stats
|
3513
|
+
|
3463
3514
|
# Output only. Partial errors during ingest operation that might cause the
|
3464
3515
|
# operation output to be incomplete.
|
3465
3516
|
# Corresponds to the JSON property `partialErrors`
|
@@ -3479,11 +3530,52 @@ module Google
|
|
3479
3530
|
def update!(**args)
|
3480
3531
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3481
3532
|
@end_time = args[:end_time] if args.key?(:end_time)
|
3533
|
+
@ingest_conversations_stats = args[:ingest_conversations_stats] if args.key?(:ingest_conversations_stats)
|
3482
3534
|
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
3483
3535
|
@request = args[:request] if args.key?(:request)
|
3484
3536
|
end
|
3485
3537
|
end
|
3486
3538
|
|
3539
|
+
# Statistics for IngestConversations operation.
|
3540
|
+
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats
|
3541
|
+
include Google::Apis::Core::Hashable
|
3542
|
+
|
3543
|
+
# Output only. The number of objects skipped because another conversation with
|
3544
|
+
# the same transcript uri had already been ingested.
|
3545
|
+
# Corresponds to the JSON property `duplicatesSkippedCount`
|
3546
|
+
# @return [Fixnum]
|
3547
|
+
attr_accessor :duplicates_skipped_count
|
3548
|
+
|
3549
|
+
# Output only. The number of objects which were unable to be ingested due to
|
3550
|
+
# errors. The errors are populated in the partial_errors field.
|
3551
|
+
# Corresponds to the JSON property `failedIngestCount`
|
3552
|
+
# @return [Fixnum]
|
3553
|
+
attr_accessor :failed_ingest_count
|
3554
|
+
|
3555
|
+
# Output only. The number of objects processed during the ingest operation.
|
3556
|
+
# Corresponds to the JSON property `processedObjectCount`
|
3557
|
+
# @return [Fixnum]
|
3558
|
+
attr_accessor :processed_object_count
|
3559
|
+
|
3560
|
+
# Output only. The number of new conversations added during this ingest
|
3561
|
+
# operation.
|
3562
|
+
# Corresponds to the JSON property `successfulIngestCount`
|
3563
|
+
# @return [Fixnum]
|
3564
|
+
attr_accessor :successful_ingest_count
|
3565
|
+
|
3566
|
+
def initialize(**args)
|
3567
|
+
update!(**args)
|
3568
|
+
end
|
3569
|
+
|
3570
|
+
# Update properties of this object
|
3571
|
+
def update!(**args)
|
3572
|
+
@duplicates_skipped_count = args[:duplicates_skipped_count] if args.key?(:duplicates_skipped_count)
|
3573
|
+
@failed_ingest_count = args[:failed_ingest_count] if args.key?(:failed_ingest_count)
|
3574
|
+
@processed_object_count = args[:processed_object_count] if args.key?(:processed_object_count)
|
3575
|
+
@successful_ingest_count = args[:successful_ingest_count] if args.key?(:successful_ingest_count)
|
3576
|
+
end
|
3577
|
+
end
|
3578
|
+
|
3487
3579
|
# The request to ingest conversations.
|
3488
3580
|
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest
|
3489
3581
|
include Google::Apis::Core::Hashable
|
@@ -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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -298,6 +298,12 @@ module Google
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
+
class GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
301
307
|
class GoogleCloudContactcenterinsightsV1IngestConversationsRequest
|
302
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
309
|
|
@@ -628,6 +634,12 @@ module Google
|
|
628
634
|
include Google::Apis::Core::JsonObjectSupport
|
629
635
|
end
|
630
636
|
|
637
|
+
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
639
|
+
|
640
|
+
include Google::Apis::Core::JsonObjectSupport
|
641
|
+
end
|
642
|
+
|
631
643
|
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest
|
632
644
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
645
|
|
@@ -1213,6 +1225,8 @@ module Google
|
|
1213
1225
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1214
1226
|
property :create_time, as: 'createTime'
|
1215
1227
|
property :end_time, as: 'endTime'
|
1228
|
+
property :ingest_conversations_stats, as: 'ingestConversationsStats', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats::Representation
|
1229
|
+
|
1216
1230
|
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
1217
1231
|
|
1218
1232
|
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequest::Representation
|
@@ -1220,6 +1234,16 @@ module Google
|
|
1220
1234
|
end
|
1221
1235
|
end
|
1222
1236
|
|
1237
|
+
class GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats
|
1238
|
+
# @private
|
1239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1240
|
+
property :duplicates_skipped_count, as: 'duplicatesSkippedCount'
|
1241
|
+
property :failed_ingest_count, as: 'failedIngestCount'
|
1242
|
+
property :processed_object_count, as: 'processedObjectCount'
|
1243
|
+
property :successful_ingest_count, as: 'successfulIngestCount'
|
1244
|
+
end
|
1245
|
+
end
|
1246
|
+
|
1223
1247
|
class GoogleCloudContactcenterinsightsV1IngestConversationsRequest
|
1224
1248
|
# @private
|
1225
1249
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1743,6 +1767,8 @@ module Google
|
|
1743
1767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1744
1768
|
property :create_time, as: 'createTime'
|
1745
1769
|
property :end_time, as: 'endTime'
|
1770
|
+
property :ingest_conversations_stats, as: 'ingestConversationsStats', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats::Representation
|
1771
|
+
|
1746
1772
|
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
1747
1773
|
|
1748
1774
|
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest::Representation
|
@@ -1750,6 +1776,16 @@ module Google
|
|
1750
1776
|
end
|
1751
1777
|
end
|
1752
1778
|
|
1779
|
+
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats
|
1780
|
+
# @private
|
1781
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1782
|
+
property :duplicates_skipped_count, as: 'duplicatesSkippedCount'
|
1783
|
+
property :failed_ingest_count, as: 'failedIngestCount'
|
1784
|
+
property :processed_object_count, as: 'processedObjectCount'
|
1785
|
+
property :successful_ingest_count, as: 'successfulIngestCount'
|
1786
|
+
end
|
1787
|
+
end
|
1788
|
+
|
1753
1789
|
class GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest
|
1754
1790
|
# @private
|
1755
1791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Contact Center AI Insights API V1
|