google-apis-dialogflow_v3 0.91.0 → 0.92.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: 59b5af1c41f35b247259ae63435f0d9054c72900386b522223978c8bbd2f7cce
4
- data.tar.gz: 3859607becac2a8a5087b1535991cdf3cc5d605d157b6ebdb6ff011e69237017
3
+ metadata.gz: b1b0ff79082a94cccc373a97405ca931cf1282101090ddb3998c19824b7c20e4
4
+ data.tar.gz: 657083b2c1df42046080fba4acb1b997250719a91e2339071ded75e45ccfa3e9
5
5
  SHA512:
6
- metadata.gz: 5878209d699b7eeb0a889d76389d1e86d288550440853666670e60f289a11028ed57204605cd507ca63168500bc3d82ec3f24f3ba8fa75bc8b65e11f751e11d1
7
- data.tar.gz: c6196402b77a8506eaada32b98b3d5c459b7c3c7bb95556281b473d54b4c3fd6efec0191cc1a9d08d32ade318030b135dbd912c24a7668ba8fd7d42a7f50829c
6
+ metadata.gz: 9ce55d1e87144c13f7c181515568f53944d4608336538ae4289a7bceeef264e5c8c16153b9150bbf960ed118fc6c1e25e7f31cc4c4aebeff7a32f35004f9e286
7
+ data.tar.gz: fc8e0510e12c03827875e7496038020d83ab84bbaf68124ee6408ee57c9953ddd29845625a8f149022be045a80d5d1f420fabc3873659990eb77bbf7a16f7413
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.92.0 (2024-08-18)
4
+
5
+ * Regenerated from discovery document revision 20240812
6
+
3
7
  ### v0.91.0 (2024-08-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20240724
@@ -772,6 +772,13 @@ module Google
772
772
  # @return [Float]
773
773
  attr_accessor :boost
774
774
 
775
+ # Specification for custom ranking based on customer specified attribute value.
776
+ # It provides more controls for customized ranking than the simple (condition,
777
+ # boost) combination above.
778
+ # Corresponds to the JSON property `boostControlSpec`
779
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpec]
780
+ attr_accessor :boost_control_spec
781
+
775
782
  # Optional. An expression which specifies a boost condition. The syntax and
776
783
  # supported fields are the same as a filter expression. Examples: * To boost
777
784
  # documents with document ID "doc_1" or "doc_2", and color "Red" or "Blue": * (
@@ -787,10 +794,89 @@ module Google
787
794
  # Update properties of this object
788
795
  def update!(**args)
789
796
  @boost = args[:boost] if args.key?(:boost)
797
+ @boost_control_spec = args[:boost_control_spec] if args.key?(:boost_control_spec)
790
798
  @condition = args[:condition] if args.key?(:condition)
791
799
  end
792
800
  end
793
801
 
802
+ # Specification for custom ranking based on customer specified attribute value.
803
+ # It provides more controls for customized ranking than the simple (condition,
804
+ # boost) combination above.
805
+ class GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpec
806
+ include Google::Apis::Core::Hashable
807
+
808
+ # Optional. The attribute type to be used to determine the boost amount. The
809
+ # attribute value can be derived from the field value of the specified
810
+ # field_name. In the case of numerical it is straightforward i.e.
811
+ # attribute_value = numerical_field_value. In the case of freshness however,
812
+ # attribute_value = (time.now() - datetime_field_value).
813
+ # Corresponds to the JSON property `attributeType`
814
+ # @return [String]
815
+ attr_accessor :attribute_type
816
+
817
+ # Optional. The control points used to define the curve. The monotonic function (
818
+ # defined through the interpolation_type above) passes through the control
819
+ # points listed here.
820
+ # Corresponds to the JSON property `controlPoints`
821
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpecControlPoint>]
822
+ attr_accessor :control_points
823
+
824
+ # Optional. The name of the field whose value will be used to determine the
825
+ # boost amount.
826
+ # Corresponds to the JSON property `fieldName`
827
+ # @return [String]
828
+ attr_accessor :field_name
829
+
830
+ # Optional. The interpolation type to be applied to connect the control points
831
+ # listed below.
832
+ # Corresponds to the JSON property `interpolationType`
833
+ # @return [String]
834
+ attr_accessor :interpolation_type
835
+
836
+ def initialize(**args)
837
+ update!(**args)
838
+ end
839
+
840
+ # Update properties of this object
841
+ def update!(**args)
842
+ @attribute_type = args[:attribute_type] if args.key?(:attribute_type)
843
+ @control_points = args[:control_points] if args.key?(:control_points)
844
+ @field_name = args[:field_name] if args.key?(:field_name)
845
+ @interpolation_type = args[:interpolation_type] if args.key?(:interpolation_type)
846
+ end
847
+ end
848
+
849
+ # The control points used to define the curve. The curve defined through these
850
+ # control points can only be monotonically increasing or decreasing(constant
851
+ # values are acceptable).
852
+ class GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpecControlPoint
853
+ include Google::Apis::Core::Hashable
854
+
855
+ # Optional. Can be one of: 1. The numerical field value. 2. The duration spec
856
+ # for freshness: The value must be formatted as an XSD `dayTimeDuration` value (
857
+ # a restricted subset of an ISO 8601 duration value). The pattern for this is: `
858
+ # nDnM]`.
859
+ # Corresponds to the JSON property `attributeValue`
860
+ # @return [String]
861
+ attr_accessor :attribute_value
862
+
863
+ # Optional. The value between -1 to 1 by which to boost the score if the
864
+ # attribute_value evaluates to the value specified above.
865
+ # Corresponds to the JSON property `boostAmount`
866
+ # @return [Float]
867
+ attr_accessor :boost_amount
868
+
869
+ def initialize(**args)
870
+ update!(**args)
871
+ end
872
+
873
+ # Update properties of this object
874
+ def update!(**args)
875
+ @attribute_value = args[:attribute_value] if args.key?(:attribute_value)
876
+ @boost_amount = args[:boost_amount] if args.key?(:boost_amount)
877
+ end
878
+ end
879
+
794
880
  # Boost specifications for data stores.
795
881
  class GoogleCloudDialogflowCxV3BoostSpecs
796
882
  include Google::Apis::Core::Hashable
@@ -1191,25 +1277,6 @@ module Google
1191
1277
  end
1192
1278
  end
1193
1279
 
1194
- # Metadata for CreateDocument operation.
1195
- class GoogleCloudDialogflowCxV3CreateDocumentOperationMetadata
1196
- include Google::Apis::Core::Hashable
1197
-
1198
- # Metadata in google::longrunning::Operation for Knowledge operations.
1199
- # Corresponds to the JSON property `genericMetadata`
1200
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata]
1201
- attr_accessor :generic_metadata
1202
-
1203
- def initialize(**args)
1204
- update!(**args)
1205
- end
1206
-
1207
- # Update properties of this object
1208
- def update!(**args)
1209
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
1210
- end
1211
- end
1212
-
1213
1280
  # Metadata associated with the long running operation for Versions.CreateVersion.
1214
1281
  class GoogleCloudDialogflowCxV3CreateVersionOperationMetadata
1215
1282
  include Google::Apis::Core::Hashable
@@ -1531,25 +1598,6 @@ module Google
1531
1598
  end
1532
1599
  end
1533
1600
 
1534
- # Metadata for DeleteDocument operation.
1535
- class GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata
1536
- include Google::Apis::Core::Hashable
1537
-
1538
- # Metadata in google::longrunning::Operation for Knowledge operations.
1539
- # Corresponds to the JSON property `genericMetadata`
1540
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata]
1541
- attr_accessor :generic_metadata
1542
-
1543
- def initialize(**args)
1544
- update!(**args)
1545
- end
1546
-
1547
- # Update properties of this object
1548
- def update!(**args)
1549
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
1550
- end
1551
- end
1552
-
1553
1601
  # Metadata returned for the Environments.DeployFlow long running operation.
1554
1602
  class GoogleCloudDialogflowCxV3DeployFlowMetadata
1555
1603
  include Google::Apis::Core::Hashable
@@ -3822,63 +3870,6 @@ module Google
3822
3870
  end
3823
3871
  end
3824
3872
 
3825
- # Metadata in google::longrunning::Operation for Knowledge operations.
3826
- class GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata
3827
- include Google::Apis::Core::Hashable
3828
-
3829
- # Required. Output only. The current state of this operation.
3830
- # Corresponds to the JSON property `state`
3831
- # @return [String]
3832
- attr_accessor :state
3833
-
3834
- def initialize(**args)
3835
- update!(**args)
3836
- end
3837
-
3838
- # Update properties of this object
3839
- def update!(**args)
3840
- @state = args[:state] if args.key?(:state)
3841
- end
3842
- end
3843
-
3844
- # Metadata for ImportDocuments operation.
3845
- class GoogleCloudDialogflowCxV3ImportDocumentsOperationMetadata
3846
- include Google::Apis::Core::Hashable
3847
-
3848
- # Metadata in google::longrunning::Operation for Knowledge operations.
3849
- # Corresponds to the JSON property `genericMetadata`
3850
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata]
3851
- attr_accessor :generic_metadata
3852
-
3853
- def initialize(**args)
3854
- update!(**args)
3855
- end
3856
-
3857
- # Update properties of this object
3858
- def update!(**args)
3859
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
3860
- end
3861
- end
3862
-
3863
- # Response message for Documents.ImportDocuments.
3864
- class GoogleCloudDialogflowCxV3ImportDocumentsResponse
3865
- include Google::Apis::Core::Hashable
3866
-
3867
- # Includes details about skipped documents or any other warnings.
3868
- # Corresponds to the JSON property `warnings`
3869
- # @return [Array<Google::Apis::DialogflowV3::GoogleRpcStatus>]
3870
- attr_accessor :warnings
3871
-
3872
- def initialize(**args)
3873
- update!(**args)
3874
- end
3875
-
3876
- # Update properties of this object
3877
- def update!(**args)
3878
- @warnings = args[:warnings] if args.key?(:warnings)
3879
- end
3880
- end
3881
-
3882
3873
  # Metadata returned for the EntityTypes.ImportEntityTypes long running operation.
3883
3874
  class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
3884
3875
  include Google::Apis::Core::Hashable
@@ -6169,25 +6160,6 @@ module Google
6169
6160
  end
6170
6161
  end
6171
6162
 
6172
- # Metadata for ReloadDocument operation.
6173
- class GoogleCloudDialogflowCxV3ReloadDocumentOperationMetadata
6174
- include Google::Apis::Core::Hashable
6175
-
6176
- # Metadata in google::longrunning::Operation for Knowledge operations.
6177
- # Corresponds to the JSON property `genericMetadata`
6178
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata]
6179
- attr_accessor :generic_metadata
6180
-
6181
- def initialize(**args)
6182
- update!(**args)
6183
- end
6184
-
6185
- # Update properties of this object
6186
- def update!(**args)
6187
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
6188
- end
6189
- end
6190
-
6191
6163
  # Resource name and display name.
6192
6164
  class GoogleCloudDialogflowCxV3ResourceName
6193
6165
  include Google::Apis::Core::Hashable
@@ -6568,7 +6540,8 @@ module Google
6568
6540
  attr_accessor :allow_playback_interruption
6569
6541
  alias_method :allow_playback_interruption?, :allow_playback_interruption
6570
6542
 
6571
- # Required. A collection of text responses.
6543
+ # Required. A collection of text response variants. If multiple variants are
6544
+ # defined, only one text response variant is returned at runtime.
6572
6545
  # Corresponds to the JSON property `text`
6573
6546
  # @return [Array<String>]
6574
6547
  attr_accessor :text
@@ -8066,25 +8039,6 @@ module Google
8066
8039
  end
8067
8040
  end
8068
8041
 
8069
- # Metadata for UpdateDocument operation.
8070
- class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
8071
- include Google::Apis::Core::Hashable
8072
-
8073
- # Metadata in google::longrunning::Operation for Knowledge operations.
8074
- # Corresponds to the JSON property `genericMetadata`
8075
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata]
8076
- attr_accessor :generic_metadata
8077
-
8078
- def initialize(**args)
8079
- update!(**args)
8080
- end
8081
-
8082
- # Update properties of this object
8083
- def update!(**args)
8084
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
8085
- end
8086
- end
8087
-
8088
8042
  # The request message for Agents.ValidateAgent.
8089
8043
  class GoogleCloudDialogflowCxV3ValidateAgentRequest
8090
8044
  include Google::Apis::Core::Hashable
@@ -9340,25 +9294,6 @@ module Google
9340
9294
  end
9341
9295
  end
9342
9296
 
9343
- # Metadata for CreateDocument operation.
9344
- class GoogleCloudDialogflowCxV3beta1CreateDocumentOperationMetadata
9345
- include Google::Apis::Core::Hashable
9346
-
9347
- # Metadata in google::longrunning::Operation for Knowledge operations.
9348
- # Corresponds to the JSON property `genericMetadata`
9349
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata]
9350
- attr_accessor :generic_metadata
9351
-
9352
- def initialize(**args)
9353
- update!(**args)
9354
- end
9355
-
9356
- # Update properties of this object
9357
- def update!(**args)
9358
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
9359
- end
9360
- end
9361
-
9362
9297
  # Metadata associated with the long running operation for Versions.CreateVersion.
9363
9298
  class GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata
9364
9299
  include Google::Apis::Core::Hashable
@@ -9407,25 +9342,6 @@ module Google
9407
9342
  end
9408
9343
  end
9409
9344
 
9410
- # Metadata for DeleteDocument operation.
9411
- class GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata
9412
- include Google::Apis::Core::Hashable
9413
-
9414
- # Metadata in google::longrunning::Operation for Knowledge operations.
9415
- # Corresponds to the JSON property `genericMetadata`
9416
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata]
9417
- attr_accessor :generic_metadata
9418
-
9419
- def initialize(**args)
9420
- update!(**args)
9421
- end
9422
-
9423
- # Update properties of this object
9424
- def update!(**args)
9425
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
9426
- end
9427
- end
9428
-
9429
9345
  # Metadata returned for the Environments.DeployFlow long running operation.
9430
9346
  class GoogleCloudDialogflowCxV3beta1DeployFlowMetadata
9431
9347
  include Google::Apis::Core::Hashable
@@ -10284,63 +10200,6 @@ module Google
10284
10200
  end
10285
10201
  end
10286
10202
 
10287
- # Metadata in google::longrunning::Operation for Knowledge operations.
10288
- class GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata
10289
- include Google::Apis::Core::Hashable
10290
-
10291
- # Required. Output only. The current state of this operation.
10292
- # Corresponds to the JSON property `state`
10293
- # @return [String]
10294
- attr_accessor :state
10295
-
10296
- def initialize(**args)
10297
- update!(**args)
10298
- end
10299
-
10300
- # Update properties of this object
10301
- def update!(**args)
10302
- @state = args[:state] if args.key?(:state)
10303
- end
10304
- end
10305
-
10306
- # Metadata for ImportDocuments operation.
10307
- class GoogleCloudDialogflowCxV3beta1ImportDocumentsOperationMetadata
10308
- include Google::Apis::Core::Hashable
10309
-
10310
- # Metadata in google::longrunning::Operation for Knowledge operations.
10311
- # Corresponds to the JSON property `genericMetadata`
10312
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata]
10313
- attr_accessor :generic_metadata
10314
-
10315
- def initialize(**args)
10316
- update!(**args)
10317
- end
10318
-
10319
- # Update properties of this object
10320
- def update!(**args)
10321
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
10322
- end
10323
- end
10324
-
10325
- # Response message for Documents.ImportDocuments.
10326
- class GoogleCloudDialogflowCxV3beta1ImportDocumentsResponse
10327
- include Google::Apis::Core::Hashable
10328
-
10329
- # Includes details about skipped documents or any other warnings.
10330
- # Corresponds to the JSON property `warnings`
10331
- # @return [Array<Google::Apis::DialogflowV3::GoogleRpcStatus>]
10332
- attr_accessor :warnings
10333
-
10334
- def initialize(**args)
10335
- update!(**args)
10336
- end
10337
-
10338
- # Update properties of this object
10339
- def update!(**args)
10340
- @warnings = args[:warnings] if args.key?(:warnings)
10341
- end
10342
- end
10343
-
10344
10203
  # Metadata returned for the EntityTypes.ImportEntityTypes long running operation.
10345
10204
  class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
10346
10205
  include Google::Apis::Core::Hashable
@@ -11259,25 +11118,6 @@ module Google
11259
11118
  end
11260
11119
  end
11261
11120
 
11262
- # Metadata for ReloadDocument operation.
11263
- class GoogleCloudDialogflowCxV3beta1ReloadDocumentOperationMetadata
11264
- include Google::Apis::Core::Hashable
11265
-
11266
- # Metadata in google::longrunning::Operation for Knowledge operations.
11267
- # Corresponds to the JSON property `genericMetadata`
11268
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata]
11269
- attr_accessor :generic_metadata
11270
-
11271
- def initialize(**args)
11272
- update!(**args)
11273
- end
11274
-
11275
- # Update properties of this object
11276
- def update!(**args)
11277
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
11278
- end
11279
- end
11280
-
11281
11121
  # Represents a response message that can be returned by a conversational agent.
11282
11122
  # Response messages are also used for output audio synthesis. The approach is as
11283
11123
  # follows: * If at least one OutputAudioText response is present, then all
@@ -11633,7 +11473,8 @@ module Google
11633
11473
  attr_accessor :allow_playback_interruption
11634
11474
  alias_method :allow_playback_interruption?, :allow_playback_interruption
11635
11475
 
11636
- # Required. A collection of text responses.
11476
+ # Required. A collection of text response variants. If multiple variants are
11477
+ # defined, only one text response variant is returned at runtime.
11637
11478
  # Corresponds to the JSON property `text`
11638
11479
  # @return [Array<String>]
11639
11480
  attr_accessor :text
@@ -12264,25 +12105,6 @@ module Google
12264
12105
  end
12265
12106
  end
12266
12107
 
12267
- # Metadata for UpdateDocument operation.
12268
- class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
12269
- include Google::Apis::Core::Hashable
12270
-
12271
- # Metadata in google::longrunning::Operation for Knowledge operations.
12272
- # Corresponds to the JSON property `genericMetadata`
12273
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata]
12274
- attr_accessor :generic_metadata
12275
-
12276
- def initialize(**args)
12277
- update!(**args)
12278
- end
12279
-
12280
- # Update properties of this object
12281
- def update!(**args)
12282
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
12283
- end
12284
- end
12285
-
12286
12108
  # Webhooks host the developer's business logic. During a session, webhooks allow
12287
12109
  # the developer to use the data extracted by Dialogflow's natural language
12288
12110
  # processing to generate dynamic responses, validate collected data, or trigger
@@ -19270,7 +19092,8 @@ module Google
19270
19092
  class GoogleCloudDialogflowV2beta1ResponseMessageText
19271
19093
  include Google::Apis::Core::Hashable
19272
19094
 
19273
- # A collection of text responses.
19095
+ # A collection of text response variants. If multiple variants are defined, only
19096
+ # one text response variant is returned at runtime.
19274
19097
  # Corresponds to the JSON property `text`
19275
19098
  # @return [Array<String>]
19276
19099
  attr_accessor :text
@@ -19872,120 +19695,6 @@ module Google
19872
19695
  end
19873
19696
  end
19874
19697
 
19875
- # Metadata for CreateDocument operation.
19876
- class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
19877
- include Google::Apis::Core::Hashable
19878
-
19879
- # Metadata in google::longrunning::Operation for Knowledge operations.
19880
- # Corresponds to the JSON property `genericMetadata`
19881
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata]
19882
- attr_accessor :generic_metadata
19883
-
19884
- def initialize(**args)
19885
- update!(**args)
19886
- end
19887
-
19888
- # Update properties of this object
19889
- def update!(**args)
19890
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
19891
- end
19892
- end
19893
-
19894
- # Metadata for DeleteDocument operation.
19895
- class GoogleCloudDialogflowV3alpha1DeleteDocumentOperationMetadata
19896
- include Google::Apis::Core::Hashable
19897
-
19898
- # Metadata in google::longrunning::Operation for Knowledge operations.
19899
- # Corresponds to the JSON property `genericMetadata`
19900
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata]
19901
- attr_accessor :generic_metadata
19902
-
19903
- def initialize(**args)
19904
- update!(**args)
19905
- end
19906
-
19907
- # Update properties of this object
19908
- def update!(**args)
19909
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
19910
- end
19911
- end
19912
-
19913
- # Metadata in google::longrunning::Operation for Knowledge operations.
19914
- class GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata
19915
- include Google::Apis::Core::Hashable
19916
-
19917
- # Required. Output only. The current state of this operation.
19918
- # Corresponds to the JSON property `state`
19919
- # @return [String]
19920
- attr_accessor :state
19921
-
19922
- def initialize(**args)
19923
- update!(**args)
19924
- end
19925
-
19926
- # Update properties of this object
19927
- def update!(**args)
19928
- @state = args[:state] if args.key?(:state)
19929
- end
19930
- end
19931
-
19932
- # Metadata for ImportDocuments operation.
19933
- class GoogleCloudDialogflowV3alpha1ImportDocumentsOperationMetadata
19934
- include Google::Apis::Core::Hashable
19935
-
19936
- # Metadata in google::longrunning::Operation for Knowledge operations.
19937
- # Corresponds to the JSON property `genericMetadata`
19938
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata]
19939
- attr_accessor :generic_metadata
19940
-
19941
- def initialize(**args)
19942
- update!(**args)
19943
- end
19944
-
19945
- # Update properties of this object
19946
- def update!(**args)
19947
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
19948
- end
19949
- end
19950
-
19951
- # Response message for Documents.ImportDocuments.
19952
- class GoogleCloudDialogflowV3alpha1ImportDocumentsResponse
19953
- include Google::Apis::Core::Hashable
19954
-
19955
- # Includes details about skipped documents or any other warnings.
19956
- # Corresponds to the JSON property `warnings`
19957
- # @return [Array<Google::Apis::DialogflowV3::GoogleRpcStatus>]
19958
- attr_accessor :warnings
19959
-
19960
- def initialize(**args)
19961
- update!(**args)
19962
- end
19963
-
19964
- # Update properties of this object
19965
- def update!(**args)
19966
- @warnings = args[:warnings] if args.key?(:warnings)
19967
- end
19968
- end
19969
-
19970
- # Metadata for ReloadDocument operation.
19971
- class GoogleCloudDialogflowV3alpha1ReloadDocumentOperationMetadata
19972
- include Google::Apis::Core::Hashable
19973
-
19974
- # Metadata in google::longrunning::Operation for Knowledge operations.
19975
- # Corresponds to the JSON property `genericMetadata`
19976
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata]
19977
- attr_accessor :generic_metadata
19978
-
19979
- def initialize(**args)
19980
- update!(**args)
19981
- end
19982
-
19983
- # Update properties of this object
19984
- def update!(**args)
19985
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
19986
- end
19987
- end
19988
-
19989
19698
  # Collection of all signals that were extracted for a single turn of the
19990
19699
  # conversation.
19991
19700
  class GoogleCloudDialogflowV3alpha1TurnSignals
@@ -20076,25 +19785,6 @@ module Google
20076
19785
  end
20077
19786
  end
20078
19787
 
20079
- # Metadata for UpdateDocument operation.
20080
- class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
20081
- include Google::Apis::Core::Hashable
20082
-
20083
- # Metadata in google::longrunning::Operation for Knowledge operations.
20084
- # Corresponds to the JSON property `genericMetadata`
20085
- # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata]
20086
- attr_accessor :generic_metadata
20087
-
20088
- def initialize(**args)
20089
- update!(**args)
20090
- end
20091
-
20092
- # Update properties of this object
20093
- def update!(**args)
20094
- @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
20095
- end
20096
- end
20097
-
20098
19788
  # The response message for Locations.ListLocations.
20099
19789
  class GoogleCloudLocationListLocationsResponse
20100
19790
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3
18
18
  # Version of the google-apis-dialogflow_v3 gem
19
- GEM_VERSION = "0.91.0"
19
+ GEM_VERSION = "0.92.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240724"
25
+ REVISION = "20240812"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,18 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpec
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpecControlPoint
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
151
163
  class GoogleCloudDialogflowCxV3BoostSpecs
152
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
165
 
@@ -208,12 +220,6 @@ module Google
208
220
  include Google::Apis::Core::JsonObjectSupport
209
221
  end
210
222
 
211
- class GoogleCloudDialogflowCxV3CreateDocumentOperationMetadata
212
- class Representation < Google::Apis::Core::JsonRepresentation; end
213
-
214
- include Google::Apis::Core::JsonObjectSupport
215
- end
216
-
217
223
  class GoogleCloudDialogflowCxV3CreateVersionOperationMetadata
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -274,12 +280,6 @@ module Google
274
280
  include Google::Apis::Core::JsonObjectSupport
275
281
  end
276
282
 
277
- class GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata
278
- class Representation < Google::Apis::Core::JsonRepresentation; end
279
-
280
- include Google::Apis::Core::JsonObjectSupport
281
- end
282
-
283
283
  class GoogleCloudDialogflowCxV3DeployFlowMetadata
284
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
285
 
@@ -634,24 +634,6 @@ module Google
634
634
  include Google::Apis::Core::JsonObjectSupport
635
635
  end
636
636
 
637
- class GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata
638
- class Representation < Google::Apis::Core::JsonRepresentation; end
639
-
640
- include Google::Apis::Core::JsonObjectSupport
641
- end
642
-
643
- class GoogleCloudDialogflowCxV3ImportDocumentsOperationMetadata
644
- class Representation < Google::Apis::Core::JsonRepresentation; end
645
-
646
- include Google::Apis::Core::JsonObjectSupport
647
- end
648
-
649
- class GoogleCloudDialogflowCxV3ImportDocumentsResponse
650
- class Representation < Google::Apis::Core::JsonRepresentation; end
651
-
652
- include Google::Apis::Core::JsonObjectSupport
653
- end
654
-
655
637
  class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
656
638
  class Representation < Google::Apis::Core::JsonRepresentation; end
657
639
 
@@ -1000,12 +982,6 @@ module Google
1000
982
  include Google::Apis::Core::JsonObjectSupport
1001
983
  end
1002
984
 
1003
- class GoogleCloudDialogflowCxV3ReloadDocumentOperationMetadata
1004
- class Representation < Google::Apis::Core::JsonRepresentation; end
1005
-
1006
- include Google::Apis::Core::JsonObjectSupport
1007
- end
1008
-
1009
985
  class GoogleCloudDialogflowCxV3ResourceName
1010
986
  class Representation < Google::Apis::Core::JsonRepresentation; end
1011
987
 
@@ -1336,12 +1312,6 @@ module Google
1336
1312
  include Google::Apis::Core::JsonObjectSupport
1337
1313
  end
1338
1314
 
1339
- class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
1340
- class Representation < Google::Apis::Core::JsonRepresentation; end
1341
-
1342
- include Google::Apis::Core::JsonObjectSupport
1343
- end
1344
-
1345
1315
  class GoogleCloudDialogflowCxV3ValidateAgentRequest
1346
1316
  class Representation < Google::Apis::Core::JsonRepresentation; end
1347
1317
 
@@ -1534,12 +1504,6 @@ module Google
1534
1504
  include Google::Apis::Core::JsonObjectSupport
1535
1505
  end
1536
1506
 
1537
- class GoogleCloudDialogflowCxV3beta1CreateDocumentOperationMetadata
1538
- class Representation < Google::Apis::Core::JsonRepresentation; end
1539
-
1540
- include Google::Apis::Core::JsonObjectSupport
1541
- end
1542
-
1543
1507
  class GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata
1544
1508
  class Representation < Google::Apis::Core::JsonRepresentation; end
1545
1509
 
@@ -1552,12 +1516,6 @@ module Google
1552
1516
  include Google::Apis::Core::JsonObjectSupport
1553
1517
  end
1554
1518
 
1555
- class GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata
1556
- class Representation < Google::Apis::Core::JsonRepresentation; end
1557
-
1558
- include Google::Apis::Core::JsonObjectSupport
1559
- end
1560
-
1561
1519
  class GoogleCloudDialogflowCxV3beta1DeployFlowMetadata
1562
1520
  class Representation < Google::Apis::Core::JsonRepresentation; end
1563
1521
 
@@ -1714,24 +1672,6 @@ module Google
1714
1672
  include Google::Apis::Core::JsonObjectSupport
1715
1673
  end
1716
1674
 
1717
- class GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata
1718
- class Representation < Google::Apis::Core::JsonRepresentation; end
1719
-
1720
- include Google::Apis::Core::JsonObjectSupport
1721
- end
1722
-
1723
- class GoogleCloudDialogflowCxV3beta1ImportDocumentsOperationMetadata
1724
- class Representation < Google::Apis::Core::JsonRepresentation; end
1725
-
1726
- include Google::Apis::Core::JsonObjectSupport
1727
- end
1728
-
1729
- class GoogleCloudDialogflowCxV3beta1ImportDocumentsResponse
1730
- class Representation < Google::Apis::Core::JsonRepresentation; end
1731
-
1732
- include Google::Apis::Core::JsonObjectSupport
1733
- end
1734
-
1735
1675
  class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
1736
1676
  class Representation < Google::Apis::Core::JsonRepresentation; end
1737
1677
 
@@ -1870,12 +1810,6 @@ module Google
1870
1810
  include Google::Apis::Core::JsonObjectSupport
1871
1811
  end
1872
1812
 
1873
- class GoogleCloudDialogflowCxV3beta1ReloadDocumentOperationMetadata
1874
- class Representation < Google::Apis::Core::JsonRepresentation; end
1875
-
1876
- include Google::Apis::Core::JsonObjectSupport
1877
- end
1878
-
1879
1813
  class GoogleCloudDialogflowCxV3beta1ResponseMessage
1880
1814
  class Representation < Google::Apis::Core::JsonRepresentation; end
1881
1815
 
@@ -2044,12 +1978,6 @@ module Google
2044
1978
  include Google::Apis::Core::JsonObjectSupport
2045
1979
  end
2046
1980
 
2047
- class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
2048
- class Representation < Google::Apis::Core::JsonRepresentation; end
2049
-
2050
- include Google::Apis::Core::JsonObjectSupport
2051
- end
2052
-
2053
1981
  class GoogleCloudDialogflowCxV3beta1Webhook
2054
1982
  class Representation < Google::Apis::Core::JsonRepresentation; end
2055
1983
 
@@ -3256,54 +3184,12 @@ module Google
3256
3184
  include Google::Apis::Core::JsonObjectSupport
3257
3185
  end
3258
3186
 
3259
- class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
3260
- class Representation < Google::Apis::Core::JsonRepresentation; end
3261
-
3262
- include Google::Apis::Core::JsonObjectSupport
3263
- end
3264
-
3265
- class GoogleCloudDialogflowV3alpha1DeleteDocumentOperationMetadata
3266
- class Representation < Google::Apis::Core::JsonRepresentation; end
3267
-
3268
- include Google::Apis::Core::JsonObjectSupport
3269
- end
3270
-
3271
- class GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata
3272
- class Representation < Google::Apis::Core::JsonRepresentation; end
3273
-
3274
- include Google::Apis::Core::JsonObjectSupport
3275
- end
3276
-
3277
- class GoogleCloudDialogflowV3alpha1ImportDocumentsOperationMetadata
3278
- class Representation < Google::Apis::Core::JsonRepresentation; end
3279
-
3280
- include Google::Apis::Core::JsonObjectSupport
3281
- end
3282
-
3283
- class GoogleCloudDialogflowV3alpha1ImportDocumentsResponse
3284
- class Representation < Google::Apis::Core::JsonRepresentation; end
3285
-
3286
- include Google::Apis::Core::JsonObjectSupport
3287
- end
3288
-
3289
- class GoogleCloudDialogflowV3alpha1ReloadDocumentOperationMetadata
3290
- class Representation < Google::Apis::Core::JsonRepresentation; end
3291
-
3292
- include Google::Apis::Core::JsonObjectSupport
3293
- end
3294
-
3295
3187
  class GoogleCloudDialogflowV3alpha1TurnSignals
3296
3188
  class Representation < Google::Apis::Core::JsonRepresentation; end
3297
3189
 
3298
3190
  include Google::Apis::Core::JsonObjectSupport
3299
3191
  end
3300
3192
 
3301
- class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
3302
- class Representation < Google::Apis::Core::JsonRepresentation; end
3303
-
3304
- include Google::Apis::Core::JsonObjectSupport
3305
- end
3306
-
3307
3193
  class GoogleCloudLocationListLocationsResponse
3308
3194
  class Representation < Google::Apis::Core::JsonRepresentation; end
3309
3195
 
@@ -3550,10 +3436,31 @@ module Google
3550
3436
  # @private
3551
3437
  class Representation < Google::Apis::Core::JsonRepresentation
3552
3438
  property :boost, as: 'boost'
3439
+ property :boost_control_spec, as: 'boostControlSpec', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpec, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpec::Representation
3440
+
3553
3441
  property :condition, as: 'condition'
3554
3442
  end
3555
3443
  end
3556
3444
 
3445
+ class GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpec
3446
+ # @private
3447
+ class Representation < Google::Apis::Core::JsonRepresentation
3448
+ property :attribute_type, as: 'attributeType'
3449
+ collection :control_points, as: 'controlPoints', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpecControlPoint, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpecControlPoint::Representation
3450
+
3451
+ property :field_name, as: 'fieldName'
3452
+ property :interpolation_type, as: 'interpolationType'
3453
+ end
3454
+ end
3455
+
3456
+ class GoogleCloudDialogflowCxV3BoostSpecConditionBoostSpecBoostControlSpecControlPoint
3457
+ # @private
3458
+ class Representation < Google::Apis::Core::JsonRepresentation
3459
+ property :attribute_value, as: 'attributeValue'
3460
+ property :boost_amount, as: 'boostAmount'
3461
+ end
3462
+ end
3463
+
3557
3464
  class GoogleCloudDialogflowCxV3BoostSpecs
3558
3465
  # @private
3559
3466
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3664,14 +3571,6 @@ module Google
3664
3571
  end
3665
3572
  end
3666
3573
 
3667
- class GoogleCloudDialogflowCxV3CreateDocumentOperationMetadata
3668
- # @private
3669
- class Representation < Google::Apis::Core::JsonRepresentation
3670
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata::Representation
3671
-
3672
- end
3673
- end
3674
-
3675
3574
  class GoogleCloudDialogflowCxV3CreateVersionOperationMetadata
3676
3575
  # @private
3677
3576
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3770,14 +3669,6 @@ module Google
3770
3669
  end
3771
3670
  end
3772
3671
 
3773
- class GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata
3774
- # @private
3775
- class Representation < Google::Apis::Core::JsonRepresentation
3776
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata::Representation
3777
-
3778
- end
3779
- end
3780
-
3781
3672
  class GoogleCloudDialogflowCxV3DeployFlowMetadata
3782
3673
  # @private
3783
3674
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4381,29 +4272,6 @@ module Google
4381
4272
  end
4382
4273
  end
4383
4274
 
4384
- class GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata
4385
- # @private
4386
- class Representation < Google::Apis::Core::JsonRepresentation
4387
- property :state, as: 'state'
4388
- end
4389
- end
4390
-
4391
- class GoogleCloudDialogflowCxV3ImportDocumentsOperationMetadata
4392
- # @private
4393
- class Representation < Google::Apis::Core::JsonRepresentation
4394
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata::Representation
4395
-
4396
- end
4397
- end
4398
-
4399
- class GoogleCloudDialogflowCxV3ImportDocumentsResponse
4400
- # @private
4401
- class Representation < Google::Apis::Core::JsonRepresentation
4402
- collection :warnings, as: 'warnings', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
4403
-
4404
- end
4405
- end
4406
-
4407
4275
  class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
4408
4276
  # @private
4409
4277
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5000,14 +4868,6 @@ module Google
5000
4868
  end
5001
4869
  end
5002
4870
 
5003
- class GoogleCloudDialogflowCxV3ReloadDocumentOperationMetadata
5004
- # @private
5005
- class Representation < Google::Apis::Core::JsonRepresentation
5006
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata::Representation
5007
-
5008
- end
5009
- end
5010
-
5011
4871
  class GoogleCloudDialogflowCxV3ResourceName
5012
4872
  # @private
5013
4873
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5528,14 +5388,6 @@ module Google
5528
5388
  end
5529
5389
  end
5530
5390
 
5531
- class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
5532
- # @private
5533
- class Representation < Google::Apis::Core::JsonRepresentation
5534
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenericKnowledgeOperationMetadata::Representation
5535
-
5536
- end
5537
- end
5538
-
5539
5391
  class GoogleCloudDialogflowCxV3ValidateAgentRequest
5540
5392
  # @private
5541
5393
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5880,14 +5732,6 @@ module Google
5880
5732
  end
5881
5733
  end
5882
5734
 
5883
- class GoogleCloudDialogflowCxV3beta1CreateDocumentOperationMetadata
5884
- # @private
5885
- class Representation < Google::Apis::Core::JsonRepresentation
5886
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata::Representation
5887
-
5888
- end
5889
- end
5890
-
5891
5735
  class GoogleCloudDialogflowCxV3beta1CreateVersionOperationMetadata
5892
5736
  # @private
5893
5737
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5903,14 +5747,6 @@ module Google
5903
5747
  end
5904
5748
  end
5905
5749
 
5906
- class GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata
5907
- # @private
5908
- class Representation < Google::Apis::Core::JsonRepresentation
5909
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata::Representation
5910
-
5911
- end
5912
- end
5913
-
5914
5750
  class GoogleCloudDialogflowCxV3beta1DeployFlowMetadata
5915
5751
  # @private
5916
5752
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6151,29 +5987,6 @@ module Google
6151
5987
  end
6152
5988
  end
6153
5989
 
6154
- class GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata
6155
- # @private
6156
- class Representation < Google::Apis::Core::JsonRepresentation
6157
- property :state, as: 'state'
6158
- end
6159
- end
6160
-
6161
- class GoogleCloudDialogflowCxV3beta1ImportDocumentsOperationMetadata
6162
- # @private
6163
- class Representation < Google::Apis::Core::JsonRepresentation
6164
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata::Representation
6165
-
6166
- end
6167
- end
6168
-
6169
- class GoogleCloudDialogflowCxV3beta1ImportDocumentsResponse
6170
- # @private
6171
- class Representation < Google::Apis::Core::JsonRepresentation
6172
- collection :warnings, as: 'warnings', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
6173
-
6174
- end
6175
- end
6176
-
6177
5990
  class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
6178
5991
  # @private
6179
5992
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6408,14 +6221,6 @@ module Google
6408
6221
  end
6409
6222
  end
6410
6223
 
6411
- class GoogleCloudDialogflowCxV3beta1ReloadDocumentOperationMetadata
6412
- # @private
6413
- class Representation < Google::Apis::Core::JsonRepresentation
6414
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata::Representation
6415
-
6416
- end
6417
- end
6418
-
6419
6224
  class GoogleCloudDialogflowCxV3beta1ResponseMessage
6420
6225
  # @private
6421
6226
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6687,14 +6492,6 @@ module Google
6687
6492
  end
6688
6493
  end
6689
6494
 
6690
- class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
6691
- # @private
6692
- class Representation < Google::Apis::Core::JsonRepresentation
6693
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1GenericKnowledgeOperationMetadata::Representation
6694
-
6695
- end
6696
- end
6697
-
6698
6495
  class GoogleCloudDialogflowCxV3beta1Webhook
6699
6496
  # @private
6700
6497
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8790,53 +8587,6 @@ module Google
8790
8587
  end
8791
8588
  end
8792
8589
 
8793
- class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
8794
- # @private
8795
- class Representation < Google::Apis::Core::JsonRepresentation
8796
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata::Representation
8797
-
8798
- end
8799
- end
8800
-
8801
- class GoogleCloudDialogflowV3alpha1DeleteDocumentOperationMetadata
8802
- # @private
8803
- class Representation < Google::Apis::Core::JsonRepresentation
8804
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata::Representation
8805
-
8806
- end
8807
- end
8808
-
8809
- class GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata
8810
- # @private
8811
- class Representation < Google::Apis::Core::JsonRepresentation
8812
- property :state, as: 'state'
8813
- end
8814
- end
8815
-
8816
- class GoogleCloudDialogflowV3alpha1ImportDocumentsOperationMetadata
8817
- # @private
8818
- class Representation < Google::Apis::Core::JsonRepresentation
8819
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata::Representation
8820
-
8821
- end
8822
- end
8823
-
8824
- class GoogleCloudDialogflowV3alpha1ImportDocumentsResponse
8825
- # @private
8826
- class Representation < Google::Apis::Core::JsonRepresentation
8827
- collection :warnings, as: 'warnings', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
8828
-
8829
- end
8830
- end
8831
-
8832
- class GoogleCloudDialogflowV3alpha1ReloadDocumentOperationMetadata
8833
- # @private
8834
- class Representation < Google::Apis::Core::JsonRepresentation
8835
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata::Representation
8836
-
8837
- end
8838
- end
8839
-
8840
8590
  class GoogleCloudDialogflowV3alpha1TurnSignals
8841
8591
  # @private
8842
8592
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8854,14 +8604,6 @@ module Google
8854
8604
  end
8855
8605
  end
8856
8606
 
8857
- class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
8858
- # @private
8859
- class Representation < Google::Apis::Core::JsonRepresentation
8860
- property :generic_metadata, as: 'genericMetadata', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1GenericKnowledgeOperationMetadata::Representation
8861
-
8862
- end
8863
- end
8864
-
8865
8607
  class GoogleCloudLocationListLocationsResponse
8866
8608
  # @private
8867
8609
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.91.0
4
+ version: 0.92.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: 2024-08-04 00:00:00.000000000 Z
11
+ date: 2024-08-18 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-dialogflow_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.91.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.92.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
63
63
  post_install_message:
64
64
  rdoc_options: []