google-apis-contactcenterinsights_v1 0.1.0 → 0.2.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: 3934a371b79ee4d9001126148d1550fb84b29224e0542e100f0799491250a7a1
|
4
|
+
data.tar.gz: afecf06c2c84d0fd56016c32cedd2268df970d26cc18dc9a063dcbc8e54b8c64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbdda3c6e4e356341afae7df899bee61e308a6e014acf54f4343e6bf26d0e142ca0638112e536b92f66c5e6f72e4a67cb376f2a445c3f4e03bef8a4b6fbc8c4e
|
7
|
+
data.tar.gz: 9aea97c62501f7b8a9978d113b7c685a4fcd38cdafd38d4fc9b076988434da6165ed9481a67d7b8b34b0edbae7e637442c5410802ca87b9d095d5e91db47225e
|
data/CHANGELOG.md
CHANGED
@@ -679,6 +679,11 @@ module Google
|
|
679
679
|
# @return [String]
|
680
680
|
attr_accessor :dialogflow_participant_name
|
681
681
|
|
682
|
+
# Obfuscated user ID from Dialogflow.
|
683
|
+
# Corresponds to the JSON property `obfuscatedExternalUserId`
|
684
|
+
# @return [String]
|
685
|
+
attr_accessor :obfuscated_external_user_id
|
686
|
+
|
682
687
|
# The role of the participant.
|
683
688
|
# Corresponds to the JSON property `role`
|
684
689
|
# @return [String]
|
@@ -697,6 +702,7 @@ module Google
|
|
697
702
|
def update!(**args)
|
698
703
|
@dialogflow_participant = args[:dialogflow_participant] if args.key?(:dialogflow_participant)
|
699
704
|
@dialogflow_participant_name = args[:dialogflow_participant_name] if args.key?(:dialogflow_participant_name)
|
705
|
+
@obfuscated_external_user_id = args[:obfuscated_external_user_id] if args.key?(:obfuscated_external_user_id)
|
700
706
|
@role = args[:role] if args.key?(:role)
|
701
707
|
@user_id = args[:user_id] if args.key?(:user_id)
|
702
708
|
end
|
@@ -1604,7 +1610,15 @@ module Google
|
|
1604
1610
|
class GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
|
1605
1611
|
include Google::Apis::Core::Hashable
|
1606
1612
|
|
1607
|
-
#
|
1613
|
+
# A filter to reduce the conversations used for training the model to a specific
|
1614
|
+
# subset.
|
1615
|
+
# Corresponds to the JSON property `filter`
|
1616
|
+
# @return [String]
|
1617
|
+
attr_accessor :filter
|
1618
|
+
|
1619
|
+
# Medium of conversations used in training data. This field is being deprecated.
|
1620
|
+
# To specify the medium to be used in training a new issue model, set the `
|
1621
|
+
# medium` field on `filter`.
|
1608
1622
|
# Corresponds to the JSON property `medium`
|
1609
1623
|
# @return [String]
|
1610
1624
|
attr_accessor :medium
|
@@ -1620,6 +1634,7 @@ module Google
|
|
1620
1634
|
|
1621
1635
|
# Update properties of this object
|
1622
1636
|
def update!(**args)
|
1637
|
+
@filter = args[:filter] if args.key?(:filter)
|
1623
1638
|
@medium = args[:medium] if args.key?(:medium)
|
1624
1639
|
@training_conversations_count = args[:training_conversations_count] if args.key?(:training_conversations_count)
|
1625
1640
|
end
|
@@ -1985,6 +2000,11 @@ module Google
|
|
1985
2000
|
# @return [String]
|
1986
2001
|
attr_accessor :type
|
1987
2002
|
|
2003
|
+
# Output only. The most recent time at which the phrase matcher was updated.
|
2004
|
+
# Corresponds to the JSON property `updateTime`
|
2005
|
+
# @return [String]
|
2006
|
+
attr_accessor :update_time
|
2007
|
+
|
1988
2008
|
# The customized version tag to use for the phrase matcher. If not specified, it
|
1989
2009
|
# will default to `revision_id`.
|
1990
2010
|
# Corresponds to the JSON property `versionTag`
|
@@ -2006,6 +2026,7 @@ module Google
|
|
2006
2026
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
2007
2027
|
@role_match = args[:role_match] if args.key?(:role_match)
|
2008
2028
|
@type = args[:type] if args.key?(:type)
|
2029
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2009
2030
|
@version_tag = args[:version_tag] if args.key?(:version_tag)
|
2010
2031
|
end
|
2011
2032
|
end
|
@@ -2745,7 +2766,15 @@ module Google
|
|
2745
2766
|
class GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig
|
2746
2767
|
include Google::Apis::Core::Hashable
|
2747
2768
|
|
2748
|
-
#
|
2769
|
+
# A filter to reduce the conversations used for training the model to a specific
|
2770
|
+
# subset.
|
2771
|
+
# Corresponds to the JSON property `filter`
|
2772
|
+
# @return [String]
|
2773
|
+
attr_accessor :filter
|
2774
|
+
|
2775
|
+
# Medium of conversations used in training data. This field is being deprecated.
|
2776
|
+
# To specify the medium to be used in training a new issue model, set the `
|
2777
|
+
# medium` field on `filter`.
|
2749
2778
|
# Corresponds to the JSON property `medium`
|
2750
2779
|
# @return [String]
|
2751
2780
|
attr_accessor :medium
|
@@ -2761,6 +2790,7 @@ module Google
|
|
2761
2790
|
|
2762
2791
|
# Update properties of this object
|
2763
2792
|
def update!(**args)
|
2793
|
+
@filter = args[:filter] if args.key?(:filter)
|
2764
2794
|
@medium = args[:medium] if args.key?(:medium)
|
2765
2795
|
@training_conversations_count = args[:training_conversations_count] if args.key?(:training_conversations_count)
|
2766
2796
|
end
|
@@ -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.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -773,6 +773,7 @@ module Google
|
|
773
773
|
class Representation < Google::Apis::Core::JsonRepresentation
|
774
774
|
property :dialogflow_participant, as: 'dialogflowParticipant'
|
775
775
|
property :dialogflow_participant_name, as: 'dialogflowParticipantName'
|
776
|
+
property :obfuscated_external_user_id, as: 'obfuscatedExternalUserId'
|
776
777
|
property :role, as: 'role'
|
777
778
|
property :user_id, as: 'userId'
|
778
779
|
end
|
@@ -1052,6 +1053,7 @@ module Google
|
|
1052
1053
|
class GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig
|
1053
1054
|
# @private
|
1054
1055
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1056
|
+
property :filter, as: 'filter'
|
1055
1057
|
property :medium, as: 'medium'
|
1056
1058
|
property :training_conversations_count, :numeric_string => true, as: 'trainingConversationsCount'
|
1057
1059
|
end
|
@@ -1175,6 +1177,7 @@ module Google
|
|
1175
1177
|
property :revision_id, as: 'revisionId'
|
1176
1178
|
property :role_match, as: 'roleMatch'
|
1177
1179
|
property :type, as: 'type'
|
1180
|
+
property :update_time, as: 'updateTime'
|
1178
1181
|
property :version_tag, as: 'versionTag'
|
1179
1182
|
end
|
1180
1183
|
end
|
@@ -1405,6 +1408,7 @@ module Google
|
|
1405
1408
|
class GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig
|
1406
1409
|
# @private
|
1407
1410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1411
|
+
property :filter, as: 'filter'
|
1408
1412
|
property :medium, as: 'medium'
|
1409
1413
|
property :training_conversations_count, :numeric_string => true, as: 'trainingConversationsCount'
|
1410
1414
|
end
|
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.2.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: 2021-09-
|
11
|
+
date: 2021-09-22 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/master/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.2.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-contactcenterinsights_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|