google-apis-dialogflow_v2 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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2408bcc43b92bdfec3979520e6566c5b85c7fe8f253df34dfdca4367924e4178
|
|
4
|
+
data.tar.gz: f6deb5406b7eb2c4be482275c3ff6401c21dde837b0335d935b95c1aeb9d17f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f21747f5785ec2e6055e67f56b4456b567592d2e387180e250bd4e9b038709a787492e009c80081d2bff21afc3544e9e2be1aee8277ed06ecdae6b22840a7c9
|
|
7
|
+
data.tar.gz: 67f4e947550f06bc14c945605da10de3503171496a3c77ecd57d2c25110fa49c2cffdf55a42fb3ea9640f60efda0306e0f7f69bb6335b76c59b2643b446595fd
|
data/CHANGELOG.md
CHANGED
|
@@ -14469,6 +14469,37 @@ module Google
|
|
|
14469
14469
|
end
|
|
14470
14470
|
end
|
|
14471
14471
|
|
|
14472
|
+
#
|
|
14473
|
+
class GoogleCloudDialogflowV2ProbeDetails
|
|
14474
|
+
include Google::Apis::Core::Hashable
|
|
14475
|
+
|
|
14476
|
+
#
|
|
14477
|
+
# Corresponds to the JSON property `initTime`
|
|
14478
|
+
# @return [String]
|
|
14479
|
+
attr_accessor :init_time
|
|
14480
|
+
|
|
14481
|
+
#
|
|
14482
|
+
# Corresponds to the JSON property `optionsLatency`
|
|
14483
|
+
# @return [String]
|
|
14484
|
+
attr_accessor :options_latency
|
|
14485
|
+
|
|
14486
|
+
#
|
|
14487
|
+
# Corresponds to the JSON property `probeStatus`
|
|
14488
|
+
# @return [String]
|
|
14489
|
+
attr_accessor :probe_status
|
|
14490
|
+
|
|
14491
|
+
def initialize(**args)
|
|
14492
|
+
update!(**args)
|
|
14493
|
+
end
|
|
14494
|
+
|
|
14495
|
+
# Update properties of this object
|
|
14496
|
+
def update!(**args)
|
|
14497
|
+
@init_time = args[:init_time] if args.key?(:init_time)
|
|
14498
|
+
@options_latency = args[:options_latency] if args.key?(:options_latency)
|
|
14499
|
+
@probe_status = args[:probe_status] if args.key?(:probe_status)
|
|
14500
|
+
end
|
|
14501
|
+
end
|
|
14502
|
+
|
|
14472
14503
|
#
|
|
14473
14504
|
class GoogleCloudDialogflowV2QueryInput
|
|
14474
14505
|
include Google::Apis::Core::Hashable
|
|
@@ -15523,6 +15554,87 @@ module Google
|
|
|
15523
15554
|
end
|
|
15524
15555
|
end
|
|
15525
15556
|
|
|
15557
|
+
#
|
|
15558
|
+
class GoogleCloudDialogflowV2SipHostname
|
|
15559
|
+
include Google::Apis::Core::Hashable
|
|
15560
|
+
|
|
15561
|
+
#
|
|
15562
|
+
# Corresponds to the JSON property `connectionState`
|
|
15563
|
+
# @return [String]
|
|
15564
|
+
attr_accessor :connection_state
|
|
15565
|
+
|
|
15566
|
+
#
|
|
15567
|
+
# Corresponds to the JSON property `enabledSipPing`
|
|
15568
|
+
# @return [Boolean]
|
|
15569
|
+
attr_accessor :enabled_sip_ping
|
|
15570
|
+
alias_method :enabled_sip_ping?, :enabled_sip_ping
|
|
15571
|
+
|
|
15572
|
+
#
|
|
15573
|
+
# Corresponds to the JSON property `errorDetails`
|
|
15574
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails]
|
|
15575
|
+
attr_accessor :error_details
|
|
15576
|
+
|
|
15577
|
+
#
|
|
15578
|
+
# Corresponds to the JSON property `peerHostname`
|
|
15579
|
+
# @return [String]
|
|
15580
|
+
attr_accessor :peer_hostname
|
|
15581
|
+
|
|
15582
|
+
#
|
|
15583
|
+
# Corresponds to the JSON property `peerSocketAddress`
|
|
15584
|
+
# @return [String]
|
|
15585
|
+
attr_accessor :peer_socket_address
|
|
15586
|
+
|
|
15587
|
+
#
|
|
15588
|
+
# Corresponds to the JSON property `pingInterval`
|
|
15589
|
+
# @return [String]
|
|
15590
|
+
attr_accessor :ping_interval
|
|
15591
|
+
|
|
15592
|
+
#
|
|
15593
|
+
# Corresponds to the JSON property `probeDetails`
|
|
15594
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ProbeDetails]
|
|
15595
|
+
attr_accessor :probe_details
|
|
15596
|
+
|
|
15597
|
+
def initialize(**args)
|
|
15598
|
+
update!(**args)
|
|
15599
|
+
end
|
|
15600
|
+
|
|
15601
|
+
# Update properties of this object
|
|
15602
|
+
def update!(**args)
|
|
15603
|
+
@connection_state = args[:connection_state] if args.key?(:connection_state)
|
|
15604
|
+
@enabled_sip_ping = args[:enabled_sip_ping] if args.key?(:enabled_sip_ping)
|
|
15605
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
|
15606
|
+
@peer_hostname = args[:peer_hostname] if args.key?(:peer_hostname)
|
|
15607
|
+
@peer_socket_address = args[:peer_socket_address] if args.key?(:peer_socket_address)
|
|
15608
|
+
@ping_interval = args[:ping_interval] if args.key?(:ping_interval)
|
|
15609
|
+
@probe_details = args[:probe_details] if args.key?(:probe_details)
|
|
15610
|
+
end
|
|
15611
|
+
end
|
|
15612
|
+
|
|
15613
|
+
#
|
|
15614
|
+
class GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails
|
|
15615
|
+
include Google::Apis::Core::Hashable
|
|
15616
|
+
|
|
15617
|
+
#
|
|
15618
|
+
# Corresponds to the JSON property `certificateState`
|
|
15619
|
+
# @return [String]
|
|
15620
|
+
attr_accessor :certificate_state
|
|
15621
|
+
|
|
15622
|
+
#
|
|
15623
|
+
# Corresponds to the JSON property `errorMessage`
|
|
15624
|
+
# @return [String]
|
|
15625
|
+
attr_accessor :error_message
|
|
15626
|
+
|
|
15627
|
+
def initialize(**args)
|
|
15628
|
+
update!(**args)
|
|
15629
|
+
end
|
|
15630
|
+
|
|
15631
|
+
# Update properties of this object
|
|
15632
|
+
def update!(**args)
|
|
15633
|
+
@certificate_state = args[:certificate_state] if args.key?(:certificate_state)
|
|
15634
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
|
15635
|
+
end
|
|
15636
|
+
end
|
|
15637
|
+
|
|
15526
15638
|
#
|
|
15527
15639
|
class GoogleCloudDialogflowV2SipTrunk
|
|
15528
15640
|
include Google::Apis::Core::Hashable
|
|
@@ -15542,11 +15654,21 @@ module Google
|
|
|
15542
15654
|
# @return [Array<String>]
|
|
15543
15655
|
attr_accessor :expected_hostname
|
|
15544
15656
|
|
|
15657
|
+
#
|
|
15658
|
+
# Corresponds to the JSON property `googleRootCertFile`
|
|
15659
|
+
# @return [String]
|
|
15660
|
+
attr_accessor :google_root_cert_file
|
|
15661
|
+
|
|
15545
15662
|
#
|
|
15546
15663
|
# Corresponds to the JSON property `name`
|
|
15547
15664
|
# @return [String]
|
|
15548
15665
|
attr_accessor :name
|
|
15549
15666
|
|
|
15667
|
+
#
|
|
15668
|
+
# Corresponds to the JSON property `peerHostnames`
|
|
15669
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipHostname>]
|
|
15670
|
+
attr_accessor :peer_hostnames
|
|
15671
|
+
|
|
15550
15672
|
def initialize(**args)
|
|
15551
15673
|
update!(**args)
|
|
15552
15674
|
end
|
|
@@ -15556,7 +15678,9 @@ module Google
|
|
|
15556
15678
|
@connections = args[:connections] if args.key?(:connections)
|
|
15557
15679
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
15558
15680
|
@expected_hostname = args[:expected_hostname] if args.key?(:expected_hostname)
|
|
15681
|
+
@google_root_cert_file = args[:google_root_cert_file] if args.key?(:google_root_cert_file)
|
|
15559
15682
|
@name = args[:name] if args.key?(:name)
|
|
15683
|
+
@peer_hostnames = args[:peer_hostnames] if args.key?(:peer_hostnames)
|
|
15560
15684
|
end
|
|
15561
15685
|
end
|
|
15562
15686
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2
|
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
|
19
|
-
GEM_VERSION = "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 = "
|
|
25
|
+
REVISION = "20260716"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2674,6 +2674,12 @@ module Google
|
|
|
2674
2674
|
include Google::Apis::Core::JsonObjectSupport
|
|
2675
2675
|
end
|
|
2676
2676
|
|
|
2677
|
+
class GoogleCloudDialogflowV2ProbeDetails
|
|
2678
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2679
|
+
|
|
2680
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2681
|
+
end
|
|
2682
|
+
|
|
2677
2683
|
class GoogleCloudDialogflowV2QueryInput
|
|
2678
2684
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2679
2685
|
|
|
@@ -2854,6 +2860,18 @@ module Google
|
|
|
2854
2860
|
include Google::Apis::Core::JsonObjectSupport
|
|
2855
2861
|
end
|
|
2856
2862
|
|
|
2863
|
+
class GoogleCloudDialogflowV2SipHostname
|
|
2864
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2865
|
+
|
|
2866
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2867
|
+
end
|
|
2868
|
+
|
|
2869
|
+
class GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails
|
|
2870
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2871
|
+
|
|
2872
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2873
|
+
end
|
|
2874
|
+
|
|
2857
2875
|
class GoogleCloudDialogflowV2SipTrunk
|
|
2858
2876
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2859
2877
|
|
|
@@ -8679,6 +8697,15 @@ module Google
|
|
|
8679
8697
|
end
|
|
8680
8698
|
end
|
|
8681
8699
|
|
|
8700
|
+
class GoogleCloudDialogflowV2ProbeDetails
|
|
8701
|
+
# @private
|
|
8702
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8703
|
+
property :init_time, as: 'initTime'
|
|
8704
|
+
property :options_latency, as: 'optionsLatency'
|
|
8705
|
+
property :probe_status, as: 'probeStatus'
|
|
8706
|
+
end
|
|
8707
|
+
end
|
|
8708
|
+
|
|
8682
8709
|
class GoogleCloudDialogflowV2QueryInput
|
|
8683
8710
|
# @private
|
|
8684
8711
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8998,6 +9025,29 @@ module Google
|
|
|
8998
9025
|
end
|
|
8999
9026
|
end
|
|
9000
9027
|
|
|
9028
|
+
class GoogleCloudDialogflowV2SipHostname
|
|
9029
|
+
# @private
|
|
9030
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9031
|
+
property :connection_state, as: 'connectionState'
|
|
9032
|
+
property :enabled_sip_ping, as: 'enabledSipPing'
|
|
9033
|
+
property :error_details, as: 'errorDetails', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails::Representation
|
|
9034
|
+
|
|
9035
|
+
property :peer_hostname, as: 'peerHostname'
|
|
9036
|
+
property :peer_socket_address, as: 'peerSocketAddress'
|
|
9037
|
+
property :ping_interval, as: 'pingInterval'
|
|
9038
|
+
property :probe_details, as: 'probeDetails', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ProbeDetails, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ProbeDetails::Representation
|
|
9039
|
+
|
|
9040
|
+
end
|
|
9041
|
+
end
|
|
9042
|
+
|
|
9043
|
+
class GoogleCloudDialogflowV2SipHostnameHostnameErrorDetails
|
|
9044
|
+
# @private
|
|
9045
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9046
|
+
property :certificate_state, as: 'certificateState'
|
|
9047
|
+
property :error_message, as: 'errorMessage'
|
|
9048
|
+
end
|
|
9049
|
+
end
|
|
9050
|
+
|
|
9001
9051
|
class GoogleCloudDialogflowV2SipTrunk
|
|
9002
9052
|
# @private
|
|
9003
9053
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9005,7 +9055,10 @@ module Google
|
|
|
9005
9055
|
|
|
9006
9056
|
property :display_name, as: 'displayName'
|
|
9007
9057
|
collection :expected_hostname, as: 'expectedHostname'
|
|
9058
|
+
property :google_root_cert_file, as: 'googleRootCertFile'
|
|
9008
9059
|
property :name, as: 'name'
|
|
9060
|
+
collection :peer_hostnames, as: 'peerHostnames', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipHostname, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SipHostname::Representation
|
|
9061
|
+
|
|
9009
9062
|
end
|
|
9010
9063
|
end
|
|
9011
9064
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 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_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.128.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|