google-apis-contactcenterinsights_v1 0.29.0 → 0.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1207ff7df35d5e8bf931fd0e3dd7497580a6700b9c54662481658a423048353b
4
- data.tar.gz: b970955cb830f11ca45e25f94eaf4ab0682d960bb358da7976acbdfeb7030906
3
+ metadata.gz: e00a27b039a5b2e91d45d691f67d3dd040a2f6f0e95dcdea8d77d92343dc0ff9
4
+ data.tar.gz: 9df3b52e2a5bdbb61ba75215902809b57683c8f866c170db13e16a817571d522
5
5
  SHA512:
6
- metadata.gz: 10ad33e33d9724aa6ad593a1d760c8de81c0edec35c92661a300ca3a7513dd6157cf9367da315a4e572ef19d701496cedbb0730337ac5bc35241ddbc32912233
7
- data.tar.gz: e7a5dd1d9307e5c0bb32af5cfb67c682f308dc038eeb8f1efd666b38bd3a0e532bae50343fa17ff01ac8b4670fe6c8dbfad7837f023b5d261c25d57761d20e81
6
+ metadata.gz: 35e6f8acf4f40703ac7cd9684aca924012738699d4582ac96e3c7b92daff4e4db7e50df1e445f5dafb2c8bd6de08754e7dbf103e9a779b0c80447d26993e496f
7
+ data.tar.gz: c113ff5d4bb22de5dda9d2e4ae9ef999d65b61571137abc33242472498e9500d19c533689f11ee8053a99228208368006be084f8a6d96da2a4fea17f3b265cba
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-contactcenterinsights_v1
2
2
 
3
+ ### v0.31.0 (2023-10-01)
4
+
5
+ * Regenerated from discovery document revision 20230923
6
+
7
+ ### v0.30.0 (2023-08-27)
8
+
9
+ * Regenerated from discovery document revision 20230813
10
+
3
11
  ### v0.29.0 (2023-08-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20230803
@@ -2858,6 +2858,11 @@ module Google
2858
2858
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
2859
2859
  attr_accessor :redaction_config
2860
2860
 
2861
+ # Speech-to-Text configuration.
2862
+ # Corresponds to the JSON property `speechConfig`
2863
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
2864
+ attr_accessor :speech_config
2865
+
2861
2866
  # Output only. The time at which the settings were last updated.
2862
2867
  # Corresponds to the JSON property `updateTime`
2863
2868
  # @return [String]
@@ -2876,6 +2881,7 @@ module Google
2876
2881
  @name = args[:name] if args.key?(:name)
2877
2882
  @pubsub_notification_settings = args[:pubsub_notification_settings] if args.key?(:pubsub_notification_settings)
2878
2883
  @redaction_config = args[:redaction_config] if args.key?(:redaction_config)
2884
+ @speech_config = args[:speech_config] if args.key?(:speech_config)
2879
2885
  @update_time = args[:update_time] if args.key?(:update_time)
2880
2886
  end
2881
2887
  end
@@ -3008,6 +3014,26 @@ module Google
3008
3014
  end
3009
3015
  end
3010
3016
 
3017
+ # Speech-to-Text configuration.
3018
+ class GoogleCloudContactcenterinsightsV1SpeechConfig
3019
+ include Google::Apis::Core::Hashable
3020
+
3021
+ # The fully-qualified Speech Recognizer resource name. Format: `projects/`
3022
+ # project_id`/locations/`location`/recognizer/`recognizer``
3023
+ # Corresponds to the JSON property `speechRecognizer`
3024
+ # @return [String]
3025
+ attr_accessor :speech_recognizer
3026
+
3027
+ def initialize(**args)
3028
+ update!(**args)
3029
+ end
3030
+
3031
+ # Update properties of this object
3032
+ def update!(**args)
3033
+ @speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer)
3034
+ end
3035
+ end
3036
+
3011
3037
  # Metadata for undeploying an issue model.
3012
3038
  class GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata
3013
3039
  include Google::Apis::Core::Hashable
@@ -3142,6 +3168,11 @@ module Google
3142
3168
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
3143
3169
  attr_accessor :redaction_config
3144
3170
 
3171
+ # Speech-to-Text configuration.
3172
+ # Corresponds to the JSON property `speechConfig`
3173
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
3174
+ attr_accessor :speech_config
3175
+
3145
3176
  def initialize(**args)
3146
3177
  update!(**args)
3147
3178
  end
@@ -3152,6 +3183,7 @@ module Google
3152
3183
  @conversation_id = args[:conversation_id] if args.key?(:conversation_id)
3153
3184
  @parent = args[:parent] if args.key?(:parent)
3154
3185
  @redaction_config = args[:redaction_config] if args.key?(:redaction_config)
3186
+ @speech_config = args[:speech_config] if args.key?(:speech_config)
3155
3187
  end
3156
3188
  end
3157
3189
 
@@ -5566,6 +5598,26 @@ module Google
5566
5598
  end
5567
5599
  end
5568
5600
 
5601
+ # Speech-to-Text configuration.
5602
+ class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
5603
+ include Google::Apis::Core::Hashable
5604
+
5605
+ # The fully-qualified Speech Recognizer resource name. Format: `projects/`
5606
+ # project_id`/locations/`location`/recognizer/`recognizer``
5607
+ # Corresponds to the JSON property `speechRecognizer`
5608
+ # @return [String]
5609
+ attr_accessor :speech_recognizer
5610
+
5611
+ def initialize(**args)
5612
+ update!(**args)
5613
+ end
5614
+
5615
+ # Update properties of this object
5616
+ def update!(**args)
5617
+ @speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer)
5618
+ end
5619
+ end
5620
+
5569
5621
  # Metadata for undeploying an issue model.
5570
5622
  class GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelMetadata
5571
5623
  include Google::Apis::Core::Hashable
@@ -5700,6 +5752,11 @@ module Google
5700
5752
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
5701
5753
  attr_accessor :redaction_config
5702
5754
 
5755
+ # Speech-to-Text configuration.
5756
+ # Corresponds to the JSON property `speechConfig`
5757
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig]
5758
+ attr_accessor :speech_config
5759
+
5703
5760
  def initialize(**args)
5704
5761
  update!(**args)
5705
5762
  end
@@ -5710,6 +5767,7 @@ module Google
5710
5767
  @conversation_id = args[:conversation_id] if args.key?(:conversation_id)
5711
5768
  @parent = args[:parent] if args.key?(:parent)
5712
5769
  @redaction_config = args[:redaction_config] if args.key?(:redaction_config)
5770
+ @speech_config = args[:speech_config] if args.key?(:speech_config)
5713
5771
  end
5714
5772
  end
5715
5773
 
@@ -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.29.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230803"
25
+ REVISION = "20230923"
26
26
  end
27
27
  end
28
28
  end
@@ -526,6 +526,12 @@ module Google
526
526
  include Google::Apis::Core::JsonObjectSupport
527
527
  end
528
528
 
529
+ class GoogleCloudContactcenterinsightsV1SpeechConfig
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
529
535
  class GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata
530
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
537
 
@@ -958,6 +964,12 @@ module Google
958
964
  include Google::Apis::Core::JsonObjectSupport
959
965
  end
960
966
 
967
+ class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
968
+ class Representation < Google::Apis::Core::JsonRepresentation; end
969
+
970
+ include Google::Apis::Core::JsonObjectSupport
971
+ end
972
+
961
973
  class GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelMetadata
962
974
  class Representation < Google::Apis::Core::JsonRepresentation; end
963
975
 
@@ -1848,6 +1860,8 @@ module Google
1848
1860
  hash :pubsub_notification_settings, as: 'pubsubNotificationSettings'
1849
1861
  property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig::Representation
1850
1862
 
1863
+ property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig::Representation
1864
+
1851
1865
  property :update_time, as: 'updateTime'
1852
1866
  end
1853
1867
  end
@@ -1888,6 +1902,13 @@ module Google
1888
1902
  end
1889
1903
  end
1890
1904
 
1905
+ class GoogleCloudContactcenterinsightsV1SpeechConfig
1906
+ # @private
1907
+ class Representation < Google::Apis::Core::JsonRepresentation
1908
+ property :speech_recognizer, as: 'speechRecognizer'
1909
+ end
1910
+ end
1911
+
1891
1912
  class GoogleCloudContactcenterinsightsV1UndeployIssueModelMetadata
1892
1913
  # @private
1893
1914
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1933,6 +1954,8 @@ module Google
1933
1954
  property :parent, as: 'parent'
1934
1955
  property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig::Representation
1935
1956
 
1957
+ property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig::Representation
1958
+
1936
1959
  end
1937
1960
  end
1938
1961
 
@@ -2641,6 +2664,13 @@ module Google
2641
2664
  end
2642
2665
  end
2643
2666
 
2667
+ class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
2668
+ # @private
2669
+ class Representation < Google::Apis::Core::JsonRepresentation
2670
+ property :speech_recognizer, as: 'speechRecognizer'
2671
+ end
2672
+ end
2673
+
2644
2674
  class GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelMetadata
2645
2675
  # @private
2646
2676
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2686,6 +2716,8 @@ module Google
2686
2716
  property :parent, as: 'parent'
2687
2717
  property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig::Representation
2688
2718
 
2719
+ property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig::Representation
2720
+
2689
2721
  end
2690
2722
  end
2691
2723
 
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.29.0
4
+ version: 0.31.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: 2023-08-06 00:00:00.000000000 Z
11
+ date: 2023-10-01 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.31.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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Contact Center AI Insights API V1