google-apis-dialogflow_v2beta1 0.95.0 → 0.96.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: 603cc026c6fd5dbb68a7c179f1b0eb645b37bdddfba97d34a76dbfa6527eb342
4
- data.tar.gz: 8f085b13c850c698d453b91fe46a610b8a8893bfaf3e81b2d02b084f2d7ee9f7
3
+ metadata.gz: ef934a3629f2cce7903e289215e9355632d04340c12c45dd685d769e3d25433e
4
+ data.tar.gz: 03da1a5f1694d12e9a8257e52a7479eeb5a23243f31d920d087d250c8ec864f7
5
5
  SHA512:
6
- metadata.gz: 2ca8e68e923900c822102365651e439109b52faee2aff5005f017f9c6d8b424aa69b4f42c5f0a16916171a42e67489f39cd516eab529cc80c12b290a8521f131
7
- data.tar.gz: 0a31a2d96d31d564320abd51d52e88b0339099afbe4f51ede75efb4faa92171b41b8e933bda5dc5eb89f2e53b32e992575153e1d7d643029965299d564f852ef
6
+ metadata.gz: 840422bcbd6c4c0e9eb72c785e7eeb0b8fd4e995467d3fa9a8b11a24ee282bb8d611f2ab0d5bdd42451060f6a2745322e23986d3be1b6d5e47141f5c5b940c2f
7
+ data.tar.gz: 70165c8e3b344e4d3825cbbe79dc6434dd0d1381602156fd9688327e64cbe95e0efac1026127a778bf60a8047e32df2a3a8a67e4cb2f8062f8139199604dbf55
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.96.0 (2025-03-02)
4
+
5
+ * Regenerated from discovery document revision 20250221
6
+
3
7
  ### v0.95.0 (2025-01-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20250103
@@ -174,8 +174,8 @@ module Google
174
174
  # @return [String]
175
175
  attr_accessor :no_speech_timeout
176
176
 
177
- # Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
178
- # timeout value.
177
+ # Use timeout based endpointing, interpreting endpointer sensitivity as seconds
178
+ # of timeout value.
179
179
  # Corresponds to the JSON property `useTimeoutBasedEndpointing`
180
180
  # @return [Boolean]
181
181
  attr_accessor :use_timeout_based_endpointing
@@ -547,6 +547,13 @@ module Google
547
547
  # @return [String]
548
548
  attr_accessor :data_store_type
549
549
 
550
+ # The document processing mode for the data store connection. Should only be set
551
+ # for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
552
+ # DOCUMENTS, as this is the legacy mode.
553
+ # Corresponds to the JSON property `documentProcessingMode`
554
+ # @return [String]
555
+ attr_accessor :document_processing_mode
556
+
550
557
  def initialize(**args)
551
558
  update!(**args)
552
559
  end
@@ -555,6 +562,7 @@ module Google
555
562
  def update!(**args)
556
563
  @data_store = args[:data_store] if args.key?(:data_store)
557
564
  @data_store_type = args[:data_store_type] if args.key?(:data_store_type)
565
+ @document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
558
566
  end
559
567
  end
560
568
 
@@ -2134,7 +2142,7 @@ module Google
2134
2142
 
2135
2143
  # A list of transitions for the transition rules of this page. They route the
2136
2144
  # conversation to another page in the same flow, or another flow. When we are in
2137
- # a certain page, the TransitionRoutes are evalauted in the following order: *
2145
+ # a certain page, the TransitionRoutes are evaluated in the following order: *
2138
2146
  # TransitionRoutes defined in the page with intent specified. * TransitionRoutes
2139
2147
  # defined in the transition route groups with intent specified. *
2140
2148
  # TransitionRoutes defined in flow with intent specified. * TransitionRoutes
@@ -3390,7 +3398,7 @@ module Google
3390
3398
  # @return [String]
3391
3399
  attr_accessor :client_id
3392
3400
 
3393
- # Required. The client secret provided by the 3rd party platform.
3401
+ # Optional. The client secret provided by the 3rd party platform.
3394
3402
  # Corresponds to the JSON property `clientSecret`
3395
3403
  # @return [String]
3396
3404
  attr_accessor :client_secret
@@ -3904,8 +3912,8 @@ module Google
3904
3912
  # @return [String]
3905
3913
  attr_accessor :no_speech_timeout
3906
3914
 
3907
- # Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
3908
- # timeout value.
3915
+ # Use timeout based endpointing, interpreting endpointer sensitivity as seconds
3916
+ # of timeout value.
3909
3917
  # Corresponds to the JSON property `useTimeoutBasedEndpointing`
3910
3918
  # @return [Boolean]
3911
3919
  attr_accessor :use_timeout_based_endpointing
@@ -4277,6 +4285,13 @@ module Google
4277
4285
  # @return [String]
4278
4286
  attr_accessor :data_store_type
4279
4287
 
4288
+ # The document processing mode for the data store connection. Should only be set
4289
+ # for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
4290
+ # DOCUMENTS, as this is the legacy mode.
4291
+ # Corresponds to the JSON property `documentProcessingMode`
4292
+ # @return [String]
4293
+ attr_accessor :document_processing_mode
4294
+
4280
4295
  def initialize(**args)
4281
4296
  update!(**args)
4282
4297
  end
@@ -4285,6 +4300,7 @@ module Google
4285
4300
  def update!(**args)
4286
4301
  @data_store = args[:data_store] if args.key?(:data_store)
4287
4302
  @data_store_type = args[:data_store_type] if args.key?(:data_store_type)
4303
+ @document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
4288
4304
  end
4289
4305
  end
4290
4306
 
@@ -5864,7 +5880,7 @@ module Google
5864
5880
 
5865
5881
  # A list of transitions for the transition rules of this page. They route the
5866
5882
  # conversation to another page in the same flow, or another flow. When we are in
5867
- # a certain page, the TransitionRoutes are evalauted in the following order: *
5883
+ # a certain page, the TransitionRoutes are evaluated in the following order: *
5868
5884
  # TransitionRoutes defined in the page with intent specified. * TransitionRoutes
5869
5885
  # defined in the transition route groups with intent specified. *
5870
5886
  # TransitionRoutes defined in flow with intent specified. * TransitionRoutes
@@ -7215,7 +7231,7 @@ module Google
7215
7231
  # @return [String]
7216
7232
  attr_accessor :client_id
7217
7233
 
7218
- # Required. The client secret provided by the 3rd party platform.
7234
+ # Optional. The client secret provided by the 3rd party platform.
7219
7235
  # Corresponds to the JSON property `clientSecret`
7220
7236
  # @return [String]
7221
7237
  attr_accessor :client_secret
@@ -10085,7 +10101,8 @@ module Google
10085
10101
  # @return [String]
10086
10102
  attr_accessor :participant_role
10087
10103
 
10088
- # Optional. The time when the message was sent.
10104
+ # Optional. The time when the message was sent. For voice messages, this is the
10105
+ # time when an utterance started.
10089
10106
  # Corresponds to the JSON property `sendTime`
10090
10107
  # @return [String]
10091
10108
  attr_accessor :send_time
@@ -11143,8 +11160,8 @@ module Google
11143
11160
  # Optional. Whether or not the information in the document is correct. For
11144
11161
  # example: * Query: "Can I return the package in 2 days once received?" *
11145
11162
  # Suggested document says: "Items must be returned/exchanged within 60 days of
11146
- # the purchase date." * Ground truth: "No return or exchange is allowed." * [
11147
- # document_correctness]: INCORRECT
11163
+ # the purchase date." * Ground truth: "No return or exchange is allowed." *
11164
+ # document_correctness: INCORRECT
11148
11165
  # Corresponds to the JSON property `documentCorrectness`
11149
11166
  # @return [String]
11150
11167
  attr_accessor :document_correctness
@@ -11326,8 +11343,8 @@ module Google
11326
11343
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AudioInput]
11327
11344
  attr_accessor :audio_input
11328
11345
 
11329
- # The unique identifier of the CX page to override the `current_page` in the
11330
- # session. Format: `projects//locations//agents//flows//pages/`. If `
11346
+ # The unique identifier of the Dialogflow CX page to override the `current_page`
11347
+ # in the session. Format: `projects//locations//agents//flows//pages/`. If `
11331
11348
  # cx_current_page` is specified, the previous state of the session will be
11332
11349
  # ignored by Dialogflow CX, including the previous page and the previous session
11333
11350
  # parameters. In most cases, `cx_current_page` and `cx_parameters` should be
@@ -17606,6 +17623,33 @@ module Google
17606
17623
  end
17607
17624
  end
17608
17625
 
17626
+ # The response message for PhoneNumbers.ListPhoneNumbers.
17627
+ class GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse
17628
+ include Google::Apis::Core::Hashable
17629
+
17630
+ # Token to retrieve the next page of results, or empty if there are no more
17631
+ # results in the list.
17632
+ # Corresponds to the JSON property `nextPageToken`
17633
+ # @return [String]
17634
+ attr_accessor :next_page_token
17635
+
17636
+ # The list of `PhoneNumber` resources. There is a maximum number of items
17637
+ # returned based on the page_size field in the request.
17638
+ # Corresponds to the JSON property `phoneNumbers`
17639
+ # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber>]
17640
+ attr_accessor :phone_numbers
17641
+
17642
+ def initialize(**args)
17643
+ update!(**args)
17644
+ end
17645
+
17646
+ # Update properties of this object
17647
+ def update!(**args)
17648
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
17649
+ @phone_numbers = args[:phone_numbers] if args.key?(:phone_numbers)
17650
+ end
17651
+ end
17652
+
17609
17653
  # The response message for SessionEntityTypes.ListSessionEntityTypes.
17610
17654
  class GoogleCloudDialogflowV2beta1ListSessionEntityTypesResponse
17611
17655
  include Google::Apis::Core::Hashable
@@ -17781,7 +17825,8 @@ module Google
17781
17825
  # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessage>]
17782
17826
  attr_accessor :response_messages
17783
17827
 
17784
- # Optional. The time when the message was sent.
17828
+ # Optional. The time when the message was sent. For voice messages, this is the
17829
+ # time when an utterance started.
17785
17830
  # Corresponds to the JSON property `sendTime`
17786
17831
  # @return [String]
17787
17832
  attr_accessor :send_time
@@ -18080,6 +18125,52 @@ module Google
18080
18125
  end
18081
18126
  end
18082
18127
 
18128
+ # Represents a phone number. `PhoneNumber` resources enable phone calls to be
18129
+ # answered by Dialogflow services and are added to a project through a
18130
+ # PhoneNumberOrder.
18131
+ class GoogleCloudDialogflowV2beta1PhoneNumber
18132
+ include Google::Apis::Core::Hashable
18133
+
18134
+ # Optional. The conversation profile calls to this `PhoneNumber` should use. The
18135
+ # project ID here should be the same as the one in name. Format: `projects//
18136
+ # conversationProfiles/`. Format: `projects//locations//conversationProfiles/`.
18137
+ # Corresponds to the JSON property `conversationProfile`
18138
+ # @return [String]
18139
+ attr_accessor :conversation_profile
18140
+
18141
+ # Output only. The state of the `PhoneNumber`. Defaults to `ACTIVE`. `
18142
+ # PhoneNumber` objects set to `DELETE_REQUESTED` always decline incoming calls
18143
+ # and can be removed completely within 30 days.
18144
+ # Corresponds to the JSON property `lifecycleState`
18145
+ # @return [String]
18146
+ attr_accessor :lifecycle_state
18147
+
18148
+ # Optional. The unique identifier of this phone number. Required for
18149
+ # PhoneNumbers.UpdatePhoneNumber method. Format: `projects//phoneNumbers/`.
18150
+ # Format: `projects//locations//phoneNumbers/`.
18151
+ # Corresponds to the JSON property `name`
18152
+ # @return [String]
18153
+ attr_accessor :name
18154
+
18155
+ # Output only. Phone number in [E.164](https://en.wikipedia.org/wiki/E.164)
18156
+ # format. An example of a correctly formatted phone number: +15556767888.
18157
+ # Corresponds to the JSON property `phoneNumber`
18158
+ # @return [String]
18159
+ attr_accessor :phone_number
18160
+
18161
+ def initialize(**args)
18162
+ update!(**args)
18163
+ end
18164
+
18165
+ # Update properties of this object
18166
+ def update!(**args)
18167
+ @conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
18168
+ @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
18169
+ @name = args[:name] if args.key?(:name)
18170
+ @phone_number = args[:phone_number] if args.key?(:phone_number)
18171
+ end
18172
+ end
18173
+
18083
18174
  # Represents the query input. It can contain either: 1. An audio config which
18084
18175
  # instructs the speech recognizer how to process the speech audio. 2. A
18085
18176
  # conversational query in the form of text. 3. An event that specifies which
@@ -18438,9 +18529,9 @@ module Google
18438
18529
  # Dialogflow only uses this to determine which conversations were handed off to
18439
18530
  # a human agent for measurement purposes. What else to do with this signal is up
18440
18531
  # to you and your handoff procedures. You may set this, for example: * In the
18441
- # entry fulfillment of a CX Page if entering the page indicates something went
18442
- # extremely wrong in the conversation. * In a webhook response when you
18443
- # determine that the customer issue can only be handled by a human.
18532
+ # entry fulfillment of a Dialogflow CX Page if entering the page indicates
18533
+ # something went extremely wrong in the conversation. * In a webhook response
18534
+ # when you determine that the customer issue can only be handled by a human.
18444
18535
  # Corresponds to the JSON property `liveAgentHandoff`
18445
18536
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
18446
18537
  attr_accessor :live_agent_handoff
@@ -18499,9 +18590,9 @@ module Google
18499
18590
  # Dialogflow only uses this to determine which conversations were handed off to
18500
18591
  # a human agent for measurement purposes. What else to do with this signal is up
18501
18592
  # to you and your handoff procedures. You may set this, for example: * In the
18502
- # entry fulfillment of a CX Page if entering the page indicates something went
18503
- # extremely wrong in the conversation. * In a webhook response when you
18504
- # determine that the customer issue can only be handled by a human.
18593
+ # entry fulfillment of a Dialogflow CX Page if entering the page indicates
18594
+ # something went extremely wrong in the conversation. * In a webhook response
18595
+ # when you determine that the customer issue can only be handled by a human.
18505
18596
  class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
18506
18597
  include Google::Apis::Core::Hashable
18507
18598
 
@@ -18853,7 +18944,10 @@ module Google
18853
18944
  # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigBoostSpecs>]
18854
18945
  attr_accessor :boost_specs
18855
18946
 
18856
- # Optional. Filter specification for data store queries.
18947
+ # Optional. Filter specification for data store queries. Maps from datastore
18948
+ # name to the filter expression for that datastore. Do not specify more than one
18949
+ # FilterSpecs for each datastore name. If multiple FilterSpecs are provided for
18950
+ # the same datastore name, the behavior is undefined.
18857
18951
  # Corresponds to the JSON property `filterSpecs`
18858
18952
  # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigFilterSpecs>]
18859
18953
  attr_accessor :filter_specs
@@ -18869,7 +18963,10 @@ module Google
18869
18963
  end
18870
18964
  end
18871
18965
 
18872
- # Boost specifications for data stores.
18966
+ # Boost specifications for data stores. Maps from datastore name to their boost
18967
+ # configuration. Do not specify more than one BoostSpecs for each datastore name.
18968
+ # If multiple BoostSpecs are provided for the same datastore name, the behavior
18969
+ # is undefined.
18873
18970
  class GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigBoostSpecs
18874
18971
  include Google::Apis::Core::Hashable
18875
18972
 
@@ -18905,7 +19002,7 @@ module Google
18905
19002
  include Google::Apis::Core::Hashable
18906
19003
 
18907
19004
  # Optional. Condition boost specifications. If a document matches multiple
18908
- # conditions in the specifictions, boost scores from these specifications are
19005
+ # conditions in the specifications, boost scores from these specifications are
18909
19006
  # all applied and combined in a non-linear way. Maximum number of specifications
18910
19007
  # is 20.
18911
19008
  # Corresponds to the JSON property `conditionBoostSpecs`
@@ -19465,8 +19562,8 @@ module Google
19465
19562
  # @return [String]
19466
19563
  attr_accessor :speech_model_variant
19467
19564
 
19468
- # Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
19469
- # timeout value.
19565
+ # Use timeout based endpointing, interpreting endpointer sensitivity as seconds
19566
+ # of timeout value.
19470
19567
  # Corresponds to the JSON property `useTimeoutBasedEndpointing`
19471
19568
  # @return [Boolean]
19472
19569
  attr_accessor :use_timeout_based_endpointing
@@ -19968,7 +20065,7 @@ module Google
19968
20065
  attr_accessor :latest_message
19969
20066
 
19970
20067
  # Optional. The previously suggested query for the given conversation. This
19971
- # helps identify whether the next suggestion we generate is resonably different
20068
+ # helps identify whether the next suggestion we generate is reasonably different
19972
20069
  # from the previous one. This is useful to avoid similar suggestions within the
19973
20070
  # conversation.
19974
20071
  # Corresponds to the JSON property `previousSuggestedQuery`
@@ -20669,6 +20766,19 @@ module Google
20669
20766
  end
20670
20767
  end
20671
20768
 
20769
+ # The request message for PhoneNumbers.UndeletePhoneNumber.
20770
+ class GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest
20771
+ include Google::Apis::Core::Hashable
20772
+
20773
+ def initialize(**args)
20774
+ update!(**args)
20775
+ end
20776
+
20777
+ # Update properties of this object
20778
+ def update!(**args)
20779
+ end
20780
+ end
20781
+
20672
20782
  # Represents a single validation error.
20673
20783
  class GoogleCloudDialogflowV2beta1ValidationError
20674
20784
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.95.0"
19
+ GEM_VERSION = "0.96.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250103"
25
+ REVISION = "20250221"
26
26
  end
27
27
  end
28
28
  end
@@ -2836,6 +2836,12 @@ module Google
2836
2836
  include Google::Apis::Core::JsonObjectSupport
2837
2837
  end
2838
2838
 
2839
+ class GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse
2840
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2841
+
2842
+ include Google::Apis::Core::JsonObjectSupport
2843
+ end
2844
+
2839
2845
  class GoogleCloudDialogflowV2beta1ListSessionEntityTypesResponse
2840
2846
  class Representation < Google::Apis::Core::JsonRepresentation; end
2841
2847
 
@@ -2914,6 +2920,12 @@ module Google
2914
2920
  include Google::Apis::Core::JsonObjectSupport
2915
2921
  end
2916
2922
 
2923
+ class GoogleCloudDialogflowV2beta1PhoneNumber
2924
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2925
+
2926
+ include Google::Apis::Core::JsonObjectSupport
2927
+ end
2928
+
2917
2929
  class GoogleCloudDialogflowV2beta1QueryInput
2918
2930
  class Representation < Google::Apis::Core::JsonRepresentation; end
2919
2931
 
@@ -3304,6 +3316,12 @@ module Google
3304
3316
  include Google::Apis::Core::JsonObjectSupport
3305
3317
  end
3306
3318
 
3319
+ class GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest
3320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3321
+
3322
+ include Google::Apis::Core::JsonObjectSupport
3323
+ end
3324
+
3307
3325
  class GoogleCloudDialogflowV2beta1ValidationError
3308
3326
  class Representation < Google::Apis::Core::JsonRepresentation; end
3309
3327
 
@@ -3540,6 +3558,7 @@ module Google
3540
3558
  class Representation < Google::Apis::Core::JsonRepresentation
3541
3559
  property :data_store, as: 'dataStore'
3542
3560
  property :data_store_type, as: 'dataStoreType'
3561
+ property :document_processing_mode, as: 'documentProcessingMode'
3543
3562
  end
3544
3563
  end
3545
3564
 
@@ -4541,6 +4560,7 @@ module Google
4541
4560
  class Representation < Google::Apis::Core::JsonRepresentation
4542
4561
  property :data_store, as: 'dataStore'
4543
4562
  property :data_store_type, as: 'dataStoreType'
4563
+ property :document_processing_mode, as: 'documentProcessingMode'
4544
4564
  end
4545
4565
  end
4546
4566
 
@@ -8172,6 +8192,15 @@ module Google
8172
8192
  end
8173
8193
  end
8174
8194
 
8195
+ class GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse
8196
+ # @private
8197
+ class Representation < Google::Apis::Core::JsonRepresentation
8198
+ property :next_page_token, as: 'nextPageToken'
8199
+ collection :phone_numbers, as: 'phoneNumbers', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
8200
+
8201
+ end
8202
+ end
8203
+
8175
8204
  class GoogleCloudDialogflowV2beta1ListSessionEntityTypesResponse
8176
8205
  # @private
8177
8206
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8299,6 +8328,16 @@ module Google
8299
8328
  end
8300
8329
  end
8301
8330
 
8331
+ class GoogleCloudDialogflowV2beta1PhoneNumber
8332
+ # @private
8333
+ class Representation < Google::Apis::Core::JsonRepresentation
8334
+ property :conversation_profile, as: 'conversationProfile'
8335
+ property :lifecycle_state, as: 'lifecycleState'
8336
+ property :name, as: 'name'
8337
+ property :phone_number, as: 'phoneNumber'
8338
+ end
8339
+ end
8340
+
8302
8341
  class GoogleCloudDialogflowV2beta1QueryInput
8303
8342
  # @private
8304
8343
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8975,6 +9014,12 @@ module Google
8975
9014
  end
8976
9015
  end
8977
9016
 
9017
+ class GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest
9018
+ # @private
9019
+ class Representation < Google::Apis::Core::JsonRepresentation
9020
+ end
9021
+ end
9022
+
8978
9023
  class GoogleCloudDialogflowV2beta1ValidationError
8979
9024
  # @private
8980
9025
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3125,8 +3125,13 @@ module Google
3125
3125
  # Required. The project to list all answer records for in reverse chronological
3126
3126
  # order. Format: `projects//locations/`.
3127
3127
  # @param [String] filter
3128
- # Optional. Filters to restrict results to specific answer records. For more
3129
- # information about filtering, see [API Filtering](https://aip.dev/160).
3128
+ # Optional. Filters to restrict results to specific answer records. The
3129
+ # expression has the following syntax: [AND ] ... The following fields and
3130
+ # operators are supported: * conversation_id with equals(=) operator Examples: *
3131
+ # "conversation_id=bar" matches answer records in the projects/foo/locations/
3132
+ # global/conversations/bar conversation (assuming the parent is projects/foo/
3133
+ # locations/global). For more information about filtering, see [API Filtering](
3134
+ # https://aip.dev/160).
3130
3135
  # @param [Fixnum] page_size
3131
3136
  # Optional. The maximum number of records to return in a single page. The server
3132
3137
  # may return fewer records than this. If unspecified, we use 10. The maximum is
@@ -7481,8 +7486,13 @@ module Google
7481
7486
  # Required. The project to list all answer records for in reverse chronological
7482
7487
  # order. Format: `projects//locations/`.
7483
7488
  # @param [String] filter
7484
- # Optional. Filters to restrict results to specific answer records. For more
7485
- # information about filtering, see [API Filtering](https://aip.dev/160).
7489
+ # Optional. Filters to restrict results to specific answer records. The
7490
+ # expression has the following syntax: [AND ] ... The following fields and
7491
+ # operators are supported: * conversation_id with equals(=) operator Examples: *
7492
+ # "conversation_id=bar" matches answer records in the projects/foo/locations/
7493
+ # global/conversations/bar conversation (assuming the parent is projects/foo/
7494
+ # locations/global). For more information about filtering, see [API Filtering](
7495
+ # https://aip.dev/160).
7486
7496
  # @param [Fixnum] page_size
7487
7497
  # Optional. The maximum number of records to return in a single page. The server
7488
7498
  # may return fewer records than this. If unspecified, we use 10. The maximum is
@@ -9262,6 +9272,154 @@ module Google
9262
9272
  execute_or_queue_command(command, &block)
9263
9273
  end
9264
9274
 
9275
+ # Requests deletion of a `PhoneNumber`. The `PhoneNumber` is moved into the
9276
+ # DELETE_REQUESTED state immediately, and is deleted approximately 30 days later.
9277
+ # This method may only be called on a `PhoneNumber` in the ACTIVE state.
9278
+ # @param [String] name
9279
+ # Required. The unique identifier of the `PhoneNumber` to delete. Format: `
9280
+ # projects//phoneNumbers/`. Format: `projects//locations//phoneNumbers/`.
9281
+ # @param [String] fields
9282
+ # Selector specifying which fields to include in a partial response.
9283
+ # @param [String] quota_user
9284
+ # Available to use for quota purposes for server-side applications. Can be any
9285
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9286
+ # @param [Google::Apis::RequestOptions] options
9287
+ # Request-specific options
9288
+ #
9289
+ # @yield [result, err] Result & error if block supplied
9290
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] parsed result object
9291
+ # @yieldparam err [StandardError] error object if request failed
9292
+ #
9293
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber]
9294
+ #
9295
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9296
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9297
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9298
+ def delete_project_location_phone_number(name, fields: nil, quota_user: nil, options: nil, &block)
9299
+ command = make_simple_command(:delete, 'v2beta1/{+name}', options)
9300
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9301
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber
9302
+ command.params['name'] = name unless name.nil?
9303
+ command.query['fields'] = fields unless fields.nil?
9304
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9305
+ execute_or_queue_command(command, &block)
9306
+ end
9307
+
9308
+ # Returns the list of all phone numbers in the specified project.
9309
+ # @param [String] parent
9310
+ # Required. The project to list all `PhoneNumber` resources from. Format: `
9311
+ # projects/`. Format: `projects//locations/`.
9312
+ # @param [Fixnum] page_size
9313
+ # Optional. The maximum number of items to return in a single page. The default
9314
+ # value is 100. The maximum value is 1000.
9315
+ # @param [String] page_token
9316
+ # Optional. The next_page_token value returned from a previous list request.
9317
+ # @param [Boolean] show_deleted
9318
+ # Optional. Controls whether `PhoneNumber` resources in the DELETE_REQUESTED
9319
+ # state should be returned. Defaults to false.
9320
+ # @param [String] fields
9321
+ # Selector specifying which fields to include in a partial response.
9322
+ # @param [String] quota_user
9323
+ # Available to use for quota purposes for server-side applications. Can be any
9324
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9325
+ # @param [Google::Apis::RequestOptions] options
9326
+ # Request-specific options
9327
+ #
9328
+ # @yield [result, err] Result & error if block supplied
9329
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse] parsed result object
9330
+ # @yieldparam err [StandardError] error object if request failed
9331
+ #
9332
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse]
9333
+ #
9334
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9335
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9336
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9337
+ def list_project_location_phone_numbers(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
9338
+ command = make_simple_command(:get, 'v2beta1/{+parent}/phoneNumbers', options)
9339
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse::Representation
9340
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse
9341
+ command.params['parent'] = parent unless parent.nil?
9342
+ command.query['pageSize'] = page_size unless page_size.nil?
9343
+ command.query['pageToken'] = page_token unless page_token.nil?
9344
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
9345
+ command.query['fields'] = fields unless fields.nil?
9346
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9347
+ execute_or_queue_command(command, &block)
9348
+ end
9349
+
9350
+ # Updates the specified `PhoneNumber`.
9351
+ # @param [String] name
9352
+ # Optional. The unique identifier of this phone number. Required for
9353
+ # PhoneNumbers.UpdatePhoneNumber method. Format: `projects//phoneNumbers/`.
9354
+ # Format: `projects//locations//phoneNumbers/`.
9355
+ # @param [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] google_cloud_dialogflow_v2beta1_phone_number_object
9356
+ # @param [String] update_mask
9357
+ # Optional. The mask to control which fields get updated.
9358
+ # @param [String] fields
9359
+ # Selector specifying which fields to include in a partial response.
9360
+ # @param [String] quota_user
9361
+ # Available to use for quota purposes for server-side applications. Can be any
9362
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9363
+ # @param [Google::Apis::RequestOptions] options
9364
+ # Request-specific options
9365
+ #
9366
+ # @yield [result, err] Result & error if block supplied
9367
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] parsed result object
9368
+ # @yieldparam err [StandardError] error object if request failed
9369
+ #
9370
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber]
9371
+ #
9372
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9373
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9374
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9375
+ def patch_project_location_phone_number(name, google_cloud_dialogflow_v2beta1_phone_number_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
9376
+ command = make_simple_command(:patch, 'v2beta1/{+name}', options)
9377
+ command.request_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9378
+ command.request_object = google_cloud_dialogflow_v2beta1_phone_number_object
9379
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9380
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber
9381
+ command.params['name'] = name unless name.nil?
9382
+ command.query['updateMask'] = update_mask unless update_mask.nil?
9383
+ command.query['fields'] = fields unless fields.nil?
9384
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9385
+ execute_or_queue_command(command, &block)
9386
+ end
9387
+
9388
+ # Cancels the deletion request for a `PhoneNumber`. This method may only be
9389
+ # called on a `PhoneNumber` in the DELETE_REQUESTED state.
9390
+ # @param [String] name
9391
+ # Required. The unique identifier of the `PhoneNumber` to delete. Format: `
9392
+ # projects//phoneNumbers/`. Format: `projects//locations//phoneNumbers/`.
9393
+ # @param [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest] google_cloud_dialogflow_v2beta1_undelete_phone_number_request_object
9394
+ # @param [String] fields
9395
+ # Selector specifying which fields to include in a partial response.
9396
+ # @param [String] quota_user
9397
+ # Available to use for quota purposes for server-side applications. Can be any
9398
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9399
+ # @param [Google::Apis::RequestOptions] options
9400
+ # Request-specific options
9401
+ #
9402
+ # @yield [result, err] Result & error if block supplied
9403
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] parsed result object
9404
+ # @yieldparam err [StandardError] error object if request failed
9405
+ #
9406
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber]
9407
+ #
9408
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9409
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9410
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9411
+ def undelete_project_location_phone_number(name, google_cloud_dialogflow_v2beta1_undelete_phone_number_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
9412
+ command = make_simple_command(:post, 'v2beta1/{+name}:undelete', options)
9413
+ command.request_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest::Representation
9414
+ command.request_object = google_cloud_dialogflow_v2beta1_undelete_phone_number_request_object
9415
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9416
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber
9417
+ command.params['name'] = name unless name.nil?
9418
+ command.query['fields'] = fields unless fields.nil?
9419
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9420
+ execute_or_queue_command(command, &block)
9421
+ end
9422
+
9265
9423
  # Creates a SipTrunk for a specified location.
9266
9424
  # @param [String] parent
9267
9425
  # Required. The location to create a SIP trunk for. Format: `projects//locations/
@@ -9645,6 +9803,154 @@ module Google
9645
9803
  execute_or_queue_command(command, &block)
9646
9804
  end
9647
9805
 
9806
+ # Requests deletion of a `PhoneNumber`. The `PhoneNumber` is moved into the
9807
+ # DELETE_REQUESTED state immediately, and is deleted approximately 30 days later.
9808
+ # This method may only be called on a `PhoneNumber` in the ACTIVE state.
9809
+ # @param [String] name
9810
+ # Required. The unique identifier of the `PhoneNumber` to delete. Format: `
9811
+ # projects//phoneNumbers/`. Format: `projects//locations//phoneNumbers/`.
9812
+ # @param [String] fields
9813
+ # Selector specifying which fields to include in a partial response.
9814
+ # @param [String] quota_user
9815
+ # Available to use for quota purposes for server-side applications. Can be any
9816
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9817
+ # @param [Google::Apis::RequestOptions] options
9818
+ # Request-specific options
9819
+ #
9820
+ # @yield [result, err] Result & error if block supplied
9821
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] parsed result object
9822
+ # @yieldparam err [StandardError] error object if request failed
9823
+ #
9824
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber]
9825
+ #
9826
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9827
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9828
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9829
+ def delete_project_phone_number(name, fields: nil, quota_user: nil, options: nil, &block)
9830
+ command = make_simple_command(:delete, 'v2beta1/{+name}', options)
9831
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9832
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber
9833
+ command.params['name'] = name unless name.nil?
9834
+ command.query['fields'] = fields unless fields.nil?
9835
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9836
+ execute_or_queue_command(command, &block)
9837
+ end
9838
+
9839
+ # Returns the list of all phone numbers in the specified project.
9840
+ # @param [String] parent
9841
+ # Required. The project to list all `PhoneNumber` resources from. Format: `
9842
+ # projects/`. Format: `projects//locations/`.
9843
+ # @param [Fixnum] page_size
9844
+ # Optional. The maximum number of items to return in a single page. The default
9845
+ # value is 100. The maximum value is 1000.
9846
+ # @param [String] page_token
9847
+ # Optional. The next_page_token value returned from a previous list request.
9848
+ # @param [Boolean] show_deleted
9849
+ # Optional. Controls whether `PhoneNumber` resources in the DELETE_REQUESTED
9850
+ # state should be returned. Defaults to false.
9851
+ # @param [String] fields
9852
+ # Selector specifying which fields to include in a partial response.
9853
+ # @param [String] quota_user
9854
+ # Available to use for quota purposes for server-side applications. Can be any
9855
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9856
+ # @param [Google::Apis::RequestOptions] options
9857
+ # Request-specific options
9858
+ #
9859
+ # @yield [result, err] Result & error if block supplied
9860
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse] parsed result object
9861
+ # @yieldparam err [StandardError] error object if request failed
9862
+ #
9863
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse]
9864
+ #
9865
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9866
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9867
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9868
+ def list_project_phone_numbers(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
9869
+ command = make_simple_command(:get, 'v2beta1/{+parent}/phoneNumbers', options)
9870
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse::Representation
9871
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListPhoneNumbersResponse
9872
+ command.params['parent'] = parent unless parent.nil?
9873
+ command.query['pageSize'] = page_size unless page_size.nil?
9874
+ command.query['pageToken'] = page_token unless page_token.nil?
9875
+ command.query['showDeleted'] = show_deleted unless show_deleted.nil?
9876
+ command.query['fields'] = fields unless fields.nil?
9877
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9878
+ execute_or_queue_command(command, &block)
9879
+ end
9880
+
9881
+ # Updates the specified `PhoneNumber`.
9882
+ # @param [String] name
9883
+ # Optional. The unique identifier of this phone number. Required for
9884
+ # PhoneNumbers.UpdatePhoneNumber method. Format: `projects//phoneNumbers/`.
9885
+ # Format: `projects//locations//phoneNumbers/`.
9886
+ # @param [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] google_cloud_dialogflow_v2beta1_phone_number_object
9887
+ # @param [String] update_mask
9888
+ # Optional. The mask to control which fields get updated.
9889
+ # @param [String] fields
9890
+ # Selector specifying which fields to include in a partial response.
9891
+ # @param [String] quota_user
9892
+ # Available to use for quota purposes for server-side applications. Can be any
9893
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9894
+ # @param [Google::Apis::RequestOptions] options
9895
+ # Request-specific options
9896
+ #
9897
+ # @yield [result, err] Result & error if block supplied
9898
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] parsed result object
9899
+ # @yieldparam err [StandardError] error object if request failed
9900
+ #
9901
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber]
9902
+ #
9903
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9904
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9905
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9906
+ def patch_project_phone_number(name, google_cloud_dialogflow_v2beta1_phone_number_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
9907
+ command = make_simple_command(:patch, 'v2beta1/{+name}', options)
9908
+ command.request_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9909
+ command.request_object = google_cloud_dialogflow_v2beta1_phone_number_object
9910
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9911
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber
9912
+ command.params['name'] = name unless name.nil?
9913
+ command.query['updateMask'] = update_mask unless update_mask.nil?
9914
+ command.query['fields'] = fields unless fields.nil?
9915
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9916
+ execute_or_queue_command(command, &block)
9917
+ end
9918
+
9919
+ # Cancels the deletion request for a `PhoneNumber`. This method may only be
9920
+ # called on a `PhoneNumber` in the DELETE_REQUESTED state.
9921
+ # @param [String] name
9922
+ # Required. The unique identifier of the `PhoneNumber` to delete. Format: `
9923
+ # projects//phoneNumbers/`. Format: `projects//locations//phoneNumbers/`.
9924
+ # @param [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest] google_cloud_dialogflow_v2beta1_undelete_phone_number_request_object
9925
+ # @param [String] fields
9926
+ # Selector specifying which fields to include in a partial response.
9927
+ # @param [String] quota_user
9928
+ # Available to use for quota purposes for server-side applications. Can be any
9929
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
9930
+ # @param [Google::Apis::RequestOptions] options
9931
+ # Request-specific options
9932
+ #
9933
+ # @yield [result, err] Result & error if block supplied
9934
+ # @yieldparam result [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber] parsed result object
9935
+ # @yieldparam err [StandardError] error object if request failed
9936
+ #
9937
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber]
9938
+ #
9939
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9940
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9941
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
9942
+ def undelete_project_phone_number(name, google_cloud_dialogflow_v2beta1_undelete_phone_number_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
9943
+ command = make_simple_command(:post, 'v2beta1/{+name}:undelete', options)
9944
+ command.request_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1UndeletePhoneNumberRequest::Representation
9945
+ command.request_object = google_cloud_dialogflow_v2beta1_undelete_phone_number_request_object
9946
+ command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber::Representation
9947
+ command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1PhoneNumber
9948
+ command.params['name'] = name unless name.nil?
9949
+ command.query['fields'] = fields unless fields.nil?
9950
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
9951
+ execute_or_queue_command(command, &block)
9952
+ end
9953
+
9648
9954
  # Generates and returns a summary for a conversation that does not have a
9649
9955
  # resource created for it.
9650
9956
  # @param [String] parent
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.95.0
4
+ version: 0.96.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-dialogflow_v2beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.95.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.96.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Dialogflow API V2beta1
79
79
  test_files: []