google-apis-dialogflow_v2beta1 0.127.0 → 0.128.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: fbc69e6ea6e392602b4082c5e7b68de918277ef968373a99882baf31606fa987
4
- data.tar.gz: ac56e81d85fb9650a0967c7fe37b97b7a97725d0a605c37dfbdbc07e0e97fa27
3
+ metadata.gz: 231a4552472da2eecd871256de8fbb6430fd2498dacc9fc3667c95f3d66eafca
4
+ data.tar.gz: 7583fca280b6c46b58aba770c9f55a6d7726695efc9c8c63158b1635733e766c
5
5
  SHA512:
6
- metadata.gz: c295db598ad3cc708fc684f54b2149213caf045995a7026e88cf7e6a82576e4574d8689670c108c786436700310f77476940b9a02863894cb32848de0592e1d8
7
- data.tar.gz: cbf3c6f7ffe1f418b3a40310c7b90777fa216f9334dda5f429a5fbee8c74a67886c606d58cdb60b0025d2de873826cf0812790f90d6005fee23fa922a0ac1d30
6
+ metadata.gz: b50017d6ff3240b169d52ec502a7bdca5fbfc2c5f29f48831d397c96596b6584c600c229cbc8e6321695c64e1b0e75487db5ab12e5158e0a1035d62e82b3fca2
7
+ data.tar.gz: a1c4d77a51991e4f90358275ee78a47d503d3bbfff716214ede47235a5a86ece89365c7433376f6dae9bab32faed45455c2afe3a2bbd1baf4c32b86112b82292
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.128.0 (2026-07-26)
4
+
5
+ * Regenerated from discovery document revision 20260716
6
+
3
7
  ### v0.127.0 (2026-07-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20260701
@@ -18673,6 +18673,37 @@ module Google
18673
18673
  end
18674
18674
  end
18675
18675
 
18676
+ #
18677
+ class GoogleCloudDialogflowV2beta1ProbeDetails
18678
+ include Google::Apis::Core::Hashable
18679
+
18680
+ #
18681
+ # Corresponds to the JSON property `initTime`
18682
+ # @return [String]
18683
+ attr_accessor :init_time
18684
+
18685
+ #
18686
+ # Corresponds to the JSON property `optionsLatency`
18687
+ # @return [String]
18688
+ attr_accessor :options_latency
18689
+
18690
+ #
18691
+ # Corresponds to the JSON property `probeStatus`
18692
+ # @return [String]
18693
+ attr_accessor :probe_status
18694
+
18695
+ def initialize(**args)
18696
+ update!(**args)
18697
+ end
18698
+
18699
+ # Update properties of this object
18700
+ def update!(**args)
18701
+ @init_time = args[:init_time] if args.key?(:init_time)
18702
+ @options_latency = args[:options_latency] if args.key?(:options_latency)
18703
+ @probe_status = args[:probe_status] if args.key?(:probe_status)
18704
+ end
18705
+ end
18706
+
18676
18707
  #
18677
18708
  class GoogleCloudDialogflowV2beta1QueryInput
18678
18709
  include Google::Apis::Core::Hashable
@@ -19921,6 +19952,87 @@ module Google
19921
19952
  end
19922
19953
  end
19923
19954
 
19955
+ #
19956
+ class GoogleCloudDialogflowV2beta1SipHostname
19957
+ include Google::Apis::Core::Hashable
19958
+
19959
+ #
19960
+ # Corresponds to the JSON property `connectionState`
19961
+ # @return [String]
19962
+ attr_accessor :connection_state
19963
+
19964
+ #
19965
+ # Corresponds to the JSON property `enabledSipPing`
19966
+ # @return [Boolean]
19967
+ attr_accessor :enabled_sip_ping
19968
+ alias_method :enabled_sip_ping?, :enabled_sip_ping
19969
+
19970
+ #
19971
+ # Corresponds to the JSON property `errorDetails`
19972
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipHostnameHostnameErrorDetails]
19973
+ attr_accessor :error_details
19974
+
19975
+ #
19976
+ # Corresponds to the JSON property `peerHostname`
19977
+ # @return [String]
19978
+ attr_accessor :peer_hostname
19979
+
19980
+ #
19981
+ # Corresponds to the JSON property `peerSocketAddress`
19982
+ # @return [String]
19983
+ attr_accessor :peer_socket_address
19984
+
19985
+ #
19986
+ # Corresponds to the JSON property `pingInterval`
19987
+ # @return [String]
19988
+ attr_accessor :ping_interval
19989
+
19990
+ #
19991
+ # Corresponds to the JSON property `probeDetails`
19992
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ProbeDetails]
19993
+ attr_accessor :probe_details
19994
+
19995
+ def initialize(**args)
19996
+ update!(**args)
19997
+ end
19998
+
19999
+ # Update properties of this object
20000
+ def update!(**args)
20001
+ @connection_state = args[:connection_state] if args.key?(:connection_state)
20002
+ @enabled_sip_ping = args[:enabled_sip_ping] if args.key?(:enabled_sip_ping)
20003
+ @error_details = args[:error_details] if args.key?(:error_details)
20004
+ @peer_hostname = args[:peer_hostname] if args.key?(:peer_hostname)
20005
+ @peer_socket_address = args[:peer_socket_address] if args.key?(:peer_socket_address)
20006
+ @ping_interval = args[:ping_interval] if args.key?(:ping_interval)
20007
+ @probe_details = args[:probe_details] if args.key?(:probe_details)
20008
+ end
20009
+ end
20010
+
20011
+ #
20012
+ class GoogleCloudDialogflowV2beta1SipHostnameHostnameErrorDetails
20013
+ include Google::Apis::Core::Hashable
20014
+
20015
+ #
20016
+ # Corresponds to the JSON property `certificateState`
20017
+ # @return [String]
20018
+ attr_accessor :certificate_state
20019
+
20020
+ #
20021
+ # Corresponds to the JSON property `errorMessage`
20022
+ # @return [String]
20023
+ attr_accessor :error_message
20024
+
20025
+ def initialize(**args)
20026
+ update!(**args)
20027
+ end
20028
+
20029
+ # Update properties of this object
20030
+ def update!(**args)
20031
+ @certificate_state = args[:certificate_state] if args.key?(:certificate_state)
20032
+ @error_message = args[:error_message] if args.key?(:error_message)
20033
+ end
20034
+ end
20035
+
19924
20036
  #
19925
20037
  class GoogleCloudDialogflowV2beta1SipTrunk
19926
20038
  include Google::Apis::Core::Hashable
@@ -19940,11 +20052,21 @@ module Google
19940
20052
  # @return [Array<String>]
19941
20053
  attr_accessor :expected_hostname
19942
20054
 
20055
+ #
20056
+ # Corresponds to the JSON property `googleRootCertFile`
20057
+ # @return [String]
20058
+ attr_accessor :google_root_cert_file
20059
+
19943
20060
  #
19944
20061
  # Corresponds to the JSON property `name`
19945
20062
  # @return [String]
19946
20063
  attr_accessor :name
19947
20064
 
20065
+ #
20066
+ # Corresponds to the JSON property `peerHostnames`
20067
+ # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipHostname>]
20068
+ attr_accessor :peer_hostnames
20069
+
19948
20070
  def initialize(**args)
19949
20071
  update!(**args)
19950
20072
  end
@@ -19954,7 +20076,9 @@ module Google
19954
20076
  @connections = args[:connections] if args.key?(:connections)
19955
20077
  @display_name = args[:display_name] if args.key?(:display_name)
19956
20078
  @expected_hostname = args[:expected_hostname] if args.key?(:expected_hostname)
20079
+ @google_root_cert_file = args[:google_root_cert_file] if args.key?(:google_root_cert_file)
19957
20080
  @name = args[:name] if args.key?(:name)
20081
+ @peer_hostnames = args[:peer_hostnames] if args.key?(:peer_hostnames)
19958
20082
  end
19959
20083
  end
19960
20084
 
@@ -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.127.0"
19
+ GEM_VERSION = "0.128.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260701"
25
+ REVISION = "20260716"
26
26
  end
27
27
  end
28
28
  end
@@ -3400,6 +3400,12 @@ module Google
3400
3400
  include Google::Apis::Core::JsonObjectSupport
3401
3401
  end
3402
3402
 
3403
+ class GoogleCloudDialogflowV2beta1ProbeDetails
3404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3405
+
3406
+ include Google::Apis::Core::JsonObjectSupport
3407
+ end
3408
+
3403
3409
  class GoogleCloudDialogflowV2beta1QueryInput
3404
3410
  class Representation < Google::Apis::Core::JsonRepresentation; end
3405
3411
 
@@ -3622,6 +3628,18 @@ module Google
3622
3628
  include Google::Apis::Core::JsonObjectSupport
3623
3629
  end
3624
3630
 
3631
+ class GoogleCloudDialogflowV2beta1SipHostname
3632
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3633
+
3634
+ include Google::Apis::Core::JsonObjectSupport
3635
+ end
3636
+
3637
+ class GoogleCloudDialogflowV2beta1SipHostnameHostnameErrorDetails
3638
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3639
+
3640
+ include Google::Apis::Core::JsonObjectSupport
3641
+ end
3642
+
3625
3643
  class GoogleCloudDialogflowV2beta1SipTrunk
3626
3644
  class Representation < Google::Apis::Core::JsonRepresentation; end
3627
3645
 
@@ -9953,6 +9971,15 @@ module Google
9953
9971
  end
9954
9972
  end
9955
9973
 
9974
+ class GoogleCloudDialogflowV2beta1ProbeDetails
9975
+ # @private
9976
+ class Representation < Google::Apis::Core::JsonRepresentation
9977
+ property :init_time, as: 'initTime'
9978
+ property :options_latency, as: 'optionsLatency'
9979
+ property :probe_status, as: 'probeStatus'
9980
+ end
9981
+ end
9982
+
9956
9983
  class GoogleCloudDialogflowV2beta1QueryInput
9957
9984
  # @private
9958
9985
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10341,6 +10368,29 @@ module Google
10341
10368
  end
10342
10369
  end
10343
10370
 
10371
+ class GoogleCloudDialogflowV2beta1SipHostname
10372
+ # @private
10373
+ class Representation < Google::Apis::Core::JsonRepresentation
10374
+ property :connection_state, as: 'connectionState'
10375
+ property :enabled_sip_ping, as: 'enabledSipPing'
10376
+ property :error_details, as: 'errorDetails', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipHostnameHostnameErrorDetails, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipHostnameHostnameErrorDetails::Representation
10377
+
10378
+ property :peer_hostname, as: 'peerHostname'
10379
+ property :peer_socket_address, as: 'peerSocketAddress'
10380
+ property :ping_interval, as: 'pingInterval'
10381
+ property :probe_details, as: 'probeDetails', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ProbeDetails, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ProbeDetails::Representation
10382
+
10383
+ end
10384
+ end
10385
+
10386
+ class GoogleCloudDialogflowV2beta1SipHostnameHostnameErrorDetails
10387
+ # @private
10388
+ class Representation < Google::Apis::Core::JsonRepresentation
10389
+ property :certificate_state, as: 'certificateState'
10390
+ property :error_message, as: 'errorMessage'
10391
+ end
10392
+ end
10393
+
10344
10394
  class GoogleCloudDialogflowV2beta1SipTrunk
10345
10395
  # @private
10346
10396
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10348,7 +10398,10 @@ module Google
10348
10398
 
10349
10399
  property :display_name, as: 'displayName'
10350
10400
  collection :expected_hostname, as: 'expectedHostname'
10401
+ property :google_root_cert_file, as: 'googleRootCertFile'
10351
10402
  property :name, as: 'name'
10403
+ collection :peer_hostnames, as: 'peerHostnames', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipHostname, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SipHostname::Representation
10404
+
10352
10405
  end
10353
10406
  end
10354
10407
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.127.0
4
+ version: 0.128.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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.127.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.128.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: