google-apis-dialogflow_v3beta1 0.31.0 → 0.34.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: 9a318f77c963be12068e22635edb541871361ab1f976ae10ae64a0334f01f2e3
4
- data.tar.gz: f26600bf42fbd1ee537d06a8d6ceafa1f55304584c8fffbc0cbfda4d47387d13
3
+ metadata.gz: 4935fb08ff096710e9ac14777851b81e195fde078fb9f58da1217a114fba2abf
4
+ data.tar.gz: f696b223956a6c5d12bde8dee5e426f930e9f7d92ed7374d9ffc3221291120f4
5
5
  SHA512:
6
- metadata.gz: ba8ec1497b04733bdeec1efa553377a357c5e45e4749b701e74d2c76e0c0751484be31fe41c67cb6fea93c8b0c487ae1a1f216c0a193acc325f20ab82041a092
7
- data.tar.gz: 862cd13ba9c4c99e50116ea36b9b55b1e60ba0014588aacacefed7ec301b5a342d8951c42edefbbdd44d33835d919eb5a9237c14a8c8857cd6d19f17beccb4c2
6
+ metadata.gz: 2f66f6736c0ed4e12b6758470261c3a639ca3262ea0c995efc7c1811c766e566b9e2cb3bac2bbd1f94dc7d1e8eb2098899f9420495ea49c0121c0fe3db7bec52
7
+ data.tar.gz: 0f1a6a849e4855309799f30ca63571131da72e7ad4d1ac534f66358c5ef86d192ac3f3a02644a4c7531a10c1457c11336da98a1850c686ee0b4f6ef7f0efa571
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.34.0 (2022-04-14)
4
+
5
+ * Regenerated from discovery document revision 20220411
6
+
7
+ ### v0.33.0 (2022-04-06)
8
+
9
+ * Regenerated from discovery document revision 20220404
10
+
11
+ ### v0.32.0 (2022-03-31)
12
+
13
+ * Regenerated from discovery document revision 20220330
14
+
3
15
  ### v0.31.0 (2022-03-16)
4
16
 
5
17
  * Regenerated from discovery document revision 20220314
@@ -873,8 +873,11 @@ module Google
873
873
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3FulfillmentSetParameterAction>]
874
874
  attr_accessor :set_parameter_actions
875
875
 
876
- # The tag used by the webhook to identify which fulfillment is being called.
877
- # This field is required if `webhook` is specified.
876
+ # The value of this field will be populated in the WebhookRequest `
877
+ # fulfillmentInfo.tag` field by Dialogflow when the associated webhook is called.
878
+ # The tag is typically used by the webhook service to identify which
879
+ # fulfillment is being called, but it could be used for other purposes. This
880
+ # field is required if `webhook` is specified.
878
881
  # Corresponds to the JSON property `tag`
879
882
  # @return [String]
880
883
  attr_accessor :tag
@@ -1436,7 +1439,7 @@ module Google
1436
1439
  class GoogleCloudDialogflowCxV3Page
1437
1440
  include Google::Apis::Core::Hashable
1438
1441
 
1439
- # Required. The human-readable name of the page, unique within the agent.
1442
+ # Required. The human-readable name of the page, unique within the flow.
1440
1443
  # Corresponds to the JSON property `displayName`
1441
1444
  # @return [String]
1442
1445
  attr_accessor :display_name
@@ -2592,7 +2595,10 @@ module Google
2592
2595
  class GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo
2593
2596
  include Google::Apis::Core::Hashable
2594
2597
 
2595
- # Always present. The tag used to identify which fulfillment is being called.
2598
+ # Always present. The value of the Fulfillment.tag field will be populated in
2599
+ # this field by Dialogflow when the associated webhook is called. The tag is
2600
+ # typically used by the webhook service to identify which fulfillment is being
2601
+ # called, but it could be used for other purposes.
2596
2602
  # Corresponds to the JSON property `tag`
2597
2603
  # @return [String]
2598
2604
  attr_accessor :tag
@@ -2879,6 +2885,13 @@ module Google
2879
2885
  attr_accessor :enable_stackdriver_logging
2880
2886
  alias_method :enable_stackdriver_logging?, :enable_stackdriver_logging
2881
2887
 
2888
+ # Indiciates whether the agent is locked for changes. If the agent is locked,
2889
+ # modifications to the agent will be rejected except for RestoreAgent.
2890
+ # Corresponds to the JSON property `locked`
2891
+ # @return [Boolean]
2892
+ attr_accessor :locked
2893
+ alias_method :locked?, :locked
2894
+
2882
2895
  # The unique identifier of the agent. Required for the Agents.UpdateAgent method.
2883
2896
  # Agents.CreateAgent populates the name automatically. Format: `projects//
2884
2897
  # locations//agents/`.
@@ -2929,6 +2942,7 @@ module Google
2929
2942
  @display_name = args[:display_name] if args.key?(:display_name)
2930
2943
  @enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
2931
2944
  @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
2945
+ @locked = args[:locked] if args.key?(:locked)
2932
2946
  @name = args[:name] if args.key?(:name)
2933
2947
  @security_settings = args[:security_settings] if args.key?(:security_settings)
2934
2948
  @speech_to_text_settings = args[:speech_to_text_settings] if args.key?(:speech_to_text_settings)
@@ -4381,6 +4395,12 @@ module Google
4381
4395
  # @return [String]
4382
4396
  attr_accessor :agent_uri
4383
4397
 
4398
+ # Optional. The data format of the exported agent. If not specified, `BLOB` is
4399
+ # assumed.
4400
+ # Corresponds to the JSON property `dataFormat`
4401
+ # @return [String]
4402
+ attr_accessor :data_format
4403
+
4384
4404
  # Optional. Environment name. If not set, draft environment is assumed. Format: `
4385
4405
  # projects//locations//agents//environments/`.
4386
4406
  # Corresponds to the JSON property `environment`
@@ -4394,6 +4414,7 @@ module Google
4394
4414
  # Update properties of this object
4395
4415
  def update!(**args)
4396
4416
  @agent_uri = args[:agent_uri] if args.key?(:agent_uri)
4417
+ @data_format = args[:data_format] if args.key?(:data_format)
4397
4418
  @environment = args[:environment] if args.key?(:environment)
4398
4419
  end
4399
4420
  end
@@ -4628,7 +4649,7 @@ module Google
4628
4649
  # saying "help" or "can I talk to a human?", which can be handled in a common
4629
4650
  # way regardless of the current page. Transition routes defined in the page have
4630
4651
  # higher priority than those defined in the flow. TransitionRoutes are evalauted
4631
- # in the following order: * TransitionRoutes with intent specified.. *
4652
+ # in the following order: * TransitionRoutes with intent specified. *
4632
4653
  # TransitionRoutes with only condition specified. TransitionRoutes with intent
4633
4654
  # specified are inherited by pages in the flow.
4634
4655
  # Corresponds to the JSON property `transitionRoutes`
@@ -4937,8 +4958,11 @@ module Google
4937
4958
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction>]
4938
4959
  attr_accessor :set_parameter_actions
4939
4960
 
4940
- # The tag used by the webhook to identify which fulfillment is being called.
4941
- # This field is required if `webhook` is specified.
4961
+ # The value of this field will be populated in the WebhookRequest `
4962
+ # fulfillmentInfo.tag` field by Dialogflow when the associated webhook is called.
4963
+ # The tag is typically used by the webhook service to identify which
4964
+ # fulfillment is being called, but it could be used for other purposes. This
4965
+ # field is required if `webhook` is specified.
4942
4966
  # Corresponds to the JSON property `tag`
4943
4967
  # @return [String]
4944
4968
  attr_accessor :tag
@@ -6364,7 +6388,7 @@ module Google
6364
6388
  class GoogleCloudDialogflowCxV3beta1Page
6365
6389
  include Google::Apis::Core::Hashable
6366
6390
 
6367
- # Required. The human-readable name of the page, unique within the agent.
6391
+ # Required. The human-readable name of the page, unique within the flow.
6368
6392
  # Corresponds to the JSON property `displayName`
6369
6393
  # @return [String]
6370
6394
  attr_accessor :display_name
@@ -8308,7 +8332,7 @@ module Google
8308
8332
  include Google::Apis::Core::Hashable
8309
8333
 
8310
8334
  # Required. The human-readable name of the transition route group, unique within
8311
- # the Agent. The display name can be no longer than 30 characters.
8335
+ # the flow. The display name can be no longer than 30 characters.
8312
8336
  # Corresponds to the JSON property `displayName`
8313
8337
  # @return [String]
8314
8338
  attr_accessor :display_name
@@ -8904,7 +8928,10 @@ module Google
8904
8928
  class GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo
8905
8929
  include Google::Apis::Core::Hashable
8906
8930
 
8907
- # Always present. The tag used to identify which fulfillment is being called.
8931
+ # Always present. The value of the Fulfillment.tag field will be populated in
8932
+ # this field by Dialogflow when the associated webhook is called. The tag is
8933
+ # typically used by the webhook service to identify which fulfillment is being
8934
+ # called, but it could be used for other purposes.
8908
8935
  # Corresponds to the JSON property `tag`
8909
8936
  # @return [String]
8910
8937
  attr_accessor :tag
@@ -15594,8 +15621,7 @@ module Google
15594
15621
  # A generic empty message that you can re-use to avoid defining duplicated empty
15595
15622
  # messages in your APIs. A typical example is to use it as the request or the
15596
15623
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
15597
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
15598
- # `Empty` is empty JSON object ````.
15624
+ # protobuf.Empty) returns (google.protobuf.Empty); `
15599
15625
  class GoogleProtobufEmpty
15600
15626
  include Google::Apis::Core::Hashable
15601
15627
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220314"
25
+ REVISION = "20220411"
26
26
  end
27
27
  end
28
28
  end
@@ -3375,6 +3375,7 @@ module Google
3375
3375
  property :display_name, as: 'displayName'
3376
3376
  property :enable_spell_correction, as: 'enableSpellCorrection'
3377
3377
  property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
3378
+ property :locked, as: 'locked'
3378
3379
  property :name, as: 'name'
3379
3380
  property :security_settings, as: 'securitySettings'
3380
3381
  property :speech_to_text_settings, as: 'speechToTextSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SpeechToTextSettings::Representation
@@ -3788,6 +3789,7 @@ module Google
3788
3789
  # @private
3789
3790
  class Representation < Google::Apis::Core::JsonRepresentation
3790
3791
  property :agent_uri, as: 'agentUri'
3792
+ property :data_format, as: 'dataFormat'
3791
3793
  property :environment, as: 'environment'
3792
3794
  end
3793
3795
  end
@@ -85,8 +85,8 @@ module Google
85
85
  # The resource that owns the locations collection, if applicable.
86
86
  # @param [String] filter
87
87
  # A filter to narrow down results to a preferred subset. The filtering language
88
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
89
- # AIP-160](https://google.aip.dev/160).
88
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
89
+ # in [AIP-160](https://google.aip.dev/160).
90
90
  # @param [Fixnum] page_size
91
91
  # The maximum number of results to return. If not set, the service selects a
92
92
  # default.
@@ -3545,7 +3545,7 @@ module Google
3545
3545
  end
3546
3546
 
3547
3547
  # Imports the test cases from a Cloud Storage bucket or a local file. It always
3548
- # creates new test cases and won't overwite any existing ones. The provided ID
3548
+ # creates new test cases and won't overwrite any existing ones. The provided ID
3549
3549
  # in the imported test case is neglected. This method is a [long-running
3550
3550
  # operation](https://cloud.google.com/dialogflow/cx/docs/how/long-running-
3551
3551
  # operation). The returned `Operation` type has the following method-specific
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.34.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: 2022-03-21 00:00:00.000000000 Z
11
+ date: 2022-04-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_v3beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.34.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
63
63
  post_install_message:
64
64
  rdoc_options: []