google-apis-dialogflow_v3beta1 0.71.0 → 0.72.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 224754960696d7dcb3fa45b64c85a6debc8ae24d694c056c3e9b70e848bfa7e4
4
- data.tar.gz: a733ee01490e7f9c43ee6960e0c96198ca9aadc3f3b5ade691d63308539d95a6
3
+ metadata.gz: c948d6122eae18f07cdb68902ed9113d688a78984ea4278704a1e130800306a4
4
+ data.tar.gz: d7a1d56636a40694d8affbe6c9265ebbf26b48e0765b5a64aecc357f77c56b07
5
5
  SHA512:
6
- metadata.gz: f6195f3919bf00ea472749011c22f24460ee343cea607e9506b7121e57222fa25081d74add1e1799030a8ee2e45e1f6bebe0662ab90467d93b6b1a78e28ef8d6
7
- data.tar.gz: 4ec5be0d90e110c31389aba08dfc2f21c9da66136b4a4872c37914a874f23f4b9cf72f85486e019dff774653210872d549b288f88c8adbf9a9599da57a9917d5
6
+ metadata.gz: fea3a1ba28b82e09b0c10c03acfe7a308b6b0691274b28e6e9e742b532c8d3a8e037ed7b9ab838ccb247673251bbc21663e5d109ed411ef28e8a7812ef291832
7
+ data.tar.gz: 5e283059b35def445693b2253691715a0657335469d134798c0d908be0c9a568a9ede1512d489e91114afe768f55a8dd161e4dc943931f5201d817725bfa5b2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.72.0 (2023-12-03)
4
+
5
+ * Regenerated from discovery document revision 20231129
6
+
3
7
  ### v0.71.0 (2023-11-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20231109
@@ -12058,37 +12058,6 @@ module Google
12058
12058
  end
12059
12059
  end
12060
12060
 
12061
- # A customer-managed encryption key specification that can be applied to all
12062
- # created resources (e.g. Conversation).
12063
- class GoogleCloudDialogflowV2EncryptionSpec
12064
- include Google::Apis::Core::Hashable
12065
-
12066
- # Required. The name of customer-managed encryption key that is used to secure a
12067
- # resource and its sub-resources. If empty, the resource is secured by the
12068
- # default Google encryption key. Only the key in the same location as this
12069
- # resource is allowed to be used for encryption. Format: `projects/`project`/
12070
- # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
12071
- # Corresponds to the JSON property `kmsKey`
12072
- # @return [String]
12073
- attr_accessor :kms_key
12074
-
12075
- # Immutable. The resource name of the encryption key specification resource.
12076
- # Format: projects/`project`/locations/`location`/encryptionSpec
12077
- # Corresponds to the JSON property `name`
12078
- # @return [String]
12079
- attr_accessor :name
12080
-
12081
- def initialize(**args)
12082
- update!(**args)
12083
- end
12084
-
12085
- # Update properties of this object
12086
- def update!(**args)
12087
- @kms_key = args[:kms_key] if args.key?(:kms_key)
12088
- @name = args[:name] if args.key?(:name)
12089
- end
12090
- end
12091
-
12092
12061
  # Each intent parameter has a type, called the entity type, which dictates
12093
12062
  # exactly how data from an end-user expression is extracted. Dialogflow provides
12094
12063
  # predefined system entities that can match many common types of data. For
@@ -12463,45 +12432,6 @@ module Google
12463
12432
  end
12464
12433
  end
12465
12434
 
12466
- # Metadata for initializing a location-level encryption specification.
12467
- class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
12468
- include Google::Apis::Core::Hashable
12469
-
12470
- # The request to initialize a location-level encryption specification.
12471
- # Corresponds to the JSON property `request`
12472
- # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
12473
- attr_accessor :request
12474
-
12475
- def initialize(**args)
12476
- update!(**args)
12477
- end
12478
-
12479
- # Update properties of this object
12480
- def update!(**args)
12481
- @request = args[:request] if args.key?(:request)
12482
- end
12483
- end
12484
-
12485
- # The request to initialize a location-level encryption specification.
12486
- class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
12487
- include Google::Apis::Core::Hashable
12488
-
12489
- # A customer-managed encryption key specification that can be applied to all
12490
- # created resources (e.g. Conversation).
12491
- # Corresponds to the JSON property `encryptionSpec`
12492
- # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2EncryptionSpec]
12493
- attr_accessor :encryption_spec
12494
-
12495
- def initialize(**args)
12496
- update!(**args)
12497
- end
12498
-
12499
- # Update properties of this object
12500
- def update!(**args)
12501
- @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
12502
- end
12503
- end
12504
-
12505
12435
  # InputDataset used to create model or do evaluation. NextID:5
12506
12436
  class GoogleCloudDialogflowV2InputDataset
12507
12437
  include Google::Apis::Core::Hashable
@@ -14904,37 +14834,6 @@ module Google
14904
14834
  end
14905
14835
  end
14906
14836
 
14907
- # A customer-managed encryption key specification that can be applied to all
14908
- # created resources (e.g. Conversation).
14909
- class GoogleCloudDialogflowV2beta1EncryptionSpec
14910
- include Google::Apis::Core::Hashable
14911
-
14912
- # Required. The name of customer-managed encryption key that is used to secure a
14913
- # resource and its sub-resources. If empty, the resource is secured by the
14914
- # default Google encryption key. Only the key in the same location as this
14915
- # resource is allowed to be used for encryption. Format: `projects/`project`/
14916
- # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
14917
- # Corresponds to the JSON property `kmsKey`
14918
- # @return [String]
14919
- attr_accessor :kms_key
14920
-
14921
- # Immutable. The resource name of the encryption key specification resource.
14922
- # Format: projects/`project`/locations/`location`/encryptionSpec
14923
- # Corresponds to the JSON property `name`
14924
- # @return [String]
14925
- attr_accessor :name
14926
-
14927
- def initialize(**args)
14928
- update!(**args)
14929
- end
14930
-
14931
- # Update properties of this object
14932
- def update!(**args)
14933
- @kms_key = args[:kms_key] if args.key?(:kms_key)
14934
- @name = args[:name] if args.key?(:name)
14935
- end
14936
- end
14937
-
14938
14837
  # Each intent parameter has a type, called the entity type, which dictates
14939
14838
  # exactly how data from an end-user expression is extracted. Dialogflow provides
14940
14839
  # predefined system entities that can match many common types of data. For
@@ -15253,45 +15152,6 @@ module Google
15253
15152
  end
15254
15153
  end
15255
15154
 
15256
- # Metadata for initializing a location-level encryption specification.
15257
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
15258
- include Google::Apis::Core::Hashable
15259
-
15260
- # The request to initialize a location-level encryption specification.
15261
- # Corresponds to the JSON property `request`
15262
- # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
15263
- attr_accessor :request
15264
-
15265
- def initialize(**args)
15266
- update!(**args)
15267
- end
15268
-
15269
- # Update properties of this object
15270
- def update!(**args)
15271
- @request = args[:request] if args.key?(:request)
15272
- end
15273
- end
15274
-
15275
- # The request to initialize a location-level encryption specification.
15276
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
15277
- include Google::Apis::Core::Hashable
15278
-
15279
- # A customer-managed encryption key specification that can be applied to all
15280
- # created resources (e.g. Conversation).
15281
- # Corresponds to the JSON property `encryptionSpec`
15282
- # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1EncryptionSpec]
15283
- attr_accessor :encryption_spec
15284
-
15285
- def initialize(**args)
15286
- update!(**args)
15287
- end
15288
-
15289
- # Update properties of this object
15290
- def update!(**args)
15291
- @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
15292
- end
15293
- end
15294
-
15295
15155
  # An intent categorizes an end-user's intention for one conversation turn. For
15296
15156
  # each agent, you define many intents, where your combined intents can handle a
15297
15157
  # complete conversation. When an end-user writes or says something, referred to
@@ -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.71.0"
19
+ GEM_VERSION = "0.72.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231109"
25
+ REVISION = "20231129"
26
26
  end
27
27
  end
28
28
  end
@@ -1996,12 +1996,6 @@ module Google
1996
1996
  include Google::Apis::Core::JsonObjectSupport
1997
1997
  end
1998
1998
 
1999
- class GoogleCloudDialogflowV2EncryptionSpec
2000
- class Representation < Google::Apis::Core::JsonRepresentation; end
2001
-
2002
- include Google::Apis::Core::JsonObjectSupport
2003
- end
2004
-
2005
1999
  class GoogleCloudDialogflowV2EntityType
2006
2000
  class Representation < Google::Apis::Core::JsonRepresentation; end
2007
2001
 
@@ -2068,18 +2062,6 @@ module Google
2068
2062
  include Google::Apis::Core::JsonObjectSupport
2069
2063
  end
2070
2064
 
2071
- class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
2072
- class Representation < Google::Apis::Core::JsonRepresentation; end
2073
-
2074
- include Google::Apis::Core::JsonObjectSupport
2075
- end
2076
-
2077
- class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
2078
- class Representation < Google::Apis::Core::JsonRepresentation; end
2079
-
2080
- include Google::Apis::Core::JsonObjectSupport
2081
- end
2082
-
2083
2065
  class GoogleCloudDialogflowV2InputDataset
2084
2066
  class Representation < Google::Apis::Core::JsonRepresentation; end
2085
2067
 
@@ -2440,12 +2422,6 @@ module Google
2440
2422
  include Google::Apis::Core::JsonObjectSupport
2441
2423
  end
2442
2424
 
2443
- class GoogleCloudDialogflowV2beta1EncryptionSpec
2444
- class Representation < Google::Apis::Core::JsonRepresentation; end
2445
-
2446
- include Google::Apis::Core::JsonObjectSupport
2447
- end
2448
-
2449
2425
  class GoogleCloudDialogflowV2beta1EntityType
2450
2426
  class Representation < Google::Apis::Core::JsonRepresentation; end
2451
2427
 
@@ -2500,18 +2476,6 @@ module Google
2500
2476
  include Google::Apis::Core::JsonObjectSupport
2501
2477
  end
2502
2478
 
2503
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2504
- class Representation < Google::Apis::Core::JsonRepresentation; end
2505
-
2506
- include Google::Apis::Core::JsonObjectSupport
2507
- end
2508
-
2509
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2510
- class Representation < Google::Apis::Core::JsonRepresentation; end
2511
-
2512
- include Google::Apis::Core::JsonObjectSupport
2513
- end
2514
-
2515
2479
  class GoogleCloudDialogflowV2beta1Intent
2516
2480
  class Representation < Google::Apis::Core::JsonRepresentation; end
2517
2481
 
@@ -6277,14 +6241,6 @@ module Google
6277
6241
  end
6278
6242
  end
6279
6243
 
6280
- class GoogleCloudDialogflowV2EncryptionSpec
6281
- # @private
6282
- class Representation < Google::Apis::Core::JsonRepresentation
6283
- property :kms_key, as: 'kmsKey'
6284
- property :name, as: 'name'
6285
- end
6286
- end
6287
-
6288
6244
  class GoogleCloudDialogflowV2EntityType
6289
6245
  # @private
6290
6246
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6386,22 +6342,6 @@ module Google
6386
6342
  end
6387
6343
  end
6388
6344
 
6389
- class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
6390
- # @private
6391
- class Representation < Google::Apis::Core::JsonRepresentation
6392
- property :request, as: 'request', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
6393
-
6394
- end
6395
- end
6396
-
6397
- class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
6398
- # @private
6399
- class Representation < Google::Apis::Core::JsonRepresentation
6400
- property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2EncryptionSpec::Representation
6401
-
6402
- end
6403
- end
6404
-
6405
6345
  class GoogleCloudDialogflowV2InputDataset
6406
6346
  # @private
6407
6347
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7052,14 +6992,6 @@ module Google
7052
6992
  end
7053
6993
  end
7054
6994
 
7055
- class GoogleCloudDialogflowV2beta1EncryptionSpec
7056
- # @private
7057
- class Representation < Google::Apis::Core::JsonRepresentation
7058
- property :kms_key, as: 'kmsKey'
7059
- property :name, as: 'name'
7060
- end
7061
- end
7062
-
7063
6995
  class GoogleCloudDialogflowV2beta1EntityType
7064
6996
  # @private
7065
6997
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7143,22 +7075,6 @@ module Google
7143
7075
  end
7144
7076
  end
7145
7077
 
7146
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
7147
- # @private
7148
- class Representation < Google::Apis::Core::JsonRepresentation
7149
- property :request, as: 'request', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
7150
-
7151
- end
7152
- end
7153
-
7154
- class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
7155
- # @private
7156
- class Representation < Google::Apis::Core::JsonRepresentation
7157
- property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
7158
-
7159
- end
7160
- end
7161
-
7162
7078
  class GoogleCloudDialogflowV2beta1Intent
7163
7079
  # @private
7164
7080
  class Representation < Google::Apis::Core::JsonRepresentation
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.71.0
4
+ version: 0.72.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: 2023-11-19 00:00:00.000000000 Z
11
+ date: 2023-12-03 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.71.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.72.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: []