google-apis-dialogflow_v2beta1 0.69.0 → 0.70.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: cc48e1b1757561bdf6e1d745f73d8c19da90d2c957cd7350e793a8a7ee7b87b6
4
- data.tar.gz: 771ffb473dd0532bd9a17acbb129fd3442d45856ccdeaf7b10752ba4c368b423
3
+ metadata.gz: a3730527184ec4b1aa558fbba6e05cb7635dfabea07306320079148a0fc23f5e
4
+ data.tar.gz: 349b8f5a7e28b98fd77454c75f4cf4b5c90561ef56a37ba8873fe369dbddb3f9
5
5
  SHA512:
6
- metadata.gz: 315aae6b53dd7eccf635969218a0463624e6fa2a0cbd6e689cd94ee0ff8672ffbbeeb290de49cbc610f4fc84e241cb92902e3024fa31e4a144da2c1978cd4333
7
- data.tar.gz: 02d0f4551d21a8efbd97d2cdead0a3de6acaab2d5da08421ef6765f1daab123e467a3d8d7b1506de8dd26a86ab1ae03e1335a6aba830a26cfbfa35c035faddf4
6
+ metadata.gz: 71be1898970e84c5292500e59fa4023d4fd7ace42fb305efca588e9672ad5a169dc8f1022ac51dd41544271a36d326277119795847fcf3177e41ea5e27a485c0
7
+ data.tar.gz: 340cc26665c7b9cfe4ffbf4b8b32cf16ace7b392c78c71e79c1bbf1a56a29ead2c5b3670655c58762133d9857c4c75af490e458eec020aa6d50fbd8bc23e2e60
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.70.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231019
6
+
3
7
  ### v0.69.0 (2023-09-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20230919
@@ -7570,6 +7570,37 @@ module Google
7570
7570
  end
7571
7571
  end
7572
7572
 
7573
+ # A customer-managed encryption key specification that can be applied to all
7574
+ # created resources (e.g. Conversation).
7575
+ class GoogleCloudDialogflowV2EncryptionSpec
7576
+ include Google::Apis::Core::Hashable
7577
+
7578
+ # Required. The name of customer-managed encryption key that is used to secure a
7579
+ # resource and its sub-resources. If empty, the resource is secured by the
7580
+ # default Google encryption key. Only the key in the same location as this
7581
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
7582
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
7583
+ # Corresponds to the JSON property `kmsKey`
7584
+ # @return [String]
7585
+ attr_accessor :kms_key
7586
+
7587
+ # Immutable. The resource name of the encryption key specification resource.
7588
+ # Format: projects/`project`/locations/`location`/encryptionSpec
7589
+ # Corresponds to the JSON property `name`
7590
+ # @return [String]
7591
+ attr_accessor :name
7592
+
7593
+ def initialize(**args)
7594
+ update!(**args)
7595
+ end
7596
+
7597
+ # Update properties of this object
7598
+ def update!(**args)
7599
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
7600
+ @name = args[:name] if args.key?(:name)
7601
+ end
7602
+ end
7603
+
7573
7604
  # Each intent parameter has a type, called the entity type, which dictates
7574
7605
  # exactly how data from an end-user expression is extracted. Dialogflow provides
7575
7606
  # predefined system entities that can match many common types of data. For
@@ -7944,6 +7975,45 @@ module Google
7944
7975
  end
7945
7976
  end
7946
7977
 
7978
+ # Metadata for initializing a location-level encryption specification.
7979
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
7980
+ include Google::Apis::Core::Hashable
7981
+
7982
+ # The request to initialize a location-level encryption specification.
7983
+ # Corresponds to the JSON property `request`
7984
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
7985
+ attr_accessor :request
7986
+
7987
+ def initialize(**args)
7988
+ update!(**args)
7989
+ end
7990
+
7991
+ # Update properties of this object
7992
+ def update!(**args)
7993
+ @request = args[:request] if args.key?(:request)
7994
+ end
7995
+ end
7996
+
7997
+ # The request to initialize a location-level encryption specification.
7998
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
7999
+ include Google::Apis::Core::Hashable
8000
+
8001
+ # A customer-managed encryption key specification that can be applied to all
8002
+ # created resources (e.g. Conversation).
8003
+ # Corresponds to the JSON property `encryptionSpec`
8004
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec]
8005
+ attr_accessor :encryption_spec
8006
+
8007
+ def initialize(**args)
8008
+ update!(**args)
8009
+ end
8010
+
8011
+ # Update properties of this object
8012
+ def update!(**args)
8013
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
8014
+ end
8015
+ end
8016
+
7947
8017
  # InputDataset used to create model or do evaluation. NextID:5
7948
8018
  class GoogleCloudDialogflowV2InputDataset
7949
8019
  include Google::Apis::Core::Hashable
@@ -11958,6 +12028,37 @@ module Google
11958
12028
  end
11959
12029
  end
11960
12030
 
12031
+ # A customer-managed encryption key specification that can be applied to all
12032
+ # created resources (e.g. Conversation).
12033
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
12034
+ include Google::Apis::Core::Hashable
12035
+
12036
+ # Required. The name of customer-managed encryption key that is used to secure a
12037
+ # resource and its sub-resources. If empty, the resource is secured by the
12038
+ # default Google encryption key. Only the key in the same location as this
12039
+ # resource is allowed to be used for encryption. Format: `projects/`project`/
12040
+ # locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
12041
+ # Corresponds to the JSON property `kmsKey`
12042
+ # @return [String]
12043
+ attr_accessor :kms_key
12044
+
12045
+ # Immutable. The resource name of the encryption key specification resource.
12046
+ # Format: projects/`project`/locations/`location`/encryptionSpec
12047
+ # Corresponds to the JSON property `name`
12048
+ # @return [String]
12049
+ attr_accessor :name
12050
+
12051
+ def initialize(**args)
12052
+ update!(**args)
12053
+ end
12054
+
12055
+ # Update properties of this object
12056
+ def update!(**args)
12057
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
12058
+ @name = args[:name] if args.key?(:name)
12059
+ end
12060
+ end
12061
+
11961
12062
  # Each intent parameter has a type, called the entity type, which dictates
11962
12063
  # exactly how data from an end-user expression is extracted. Dialogflow provides
11963
12064
  # predefined system entities that can match many common types of data. For
@@ -13390,6 +13491,45 @@ module Google
13390
13491
  end
13391
13492
  end
13392
13493
 
13494
+ # Metadata for initializing a location-level encryption specification.
13495
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
13496
+ include Google::Apis::Core::Hashable
13497
+
13498
+ # The request to initialize a location-level encryption specification.
13499
+ # Corresponds to the JSON property `request`
13500
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
13501
+ attr_accessor :request
13502
+
13503
+ def initialize(**args)
13504
+ update!(**args)
13505
+ end
13506
+
13507
+ # Update properties of this object
13508
+ def update!(**args)
13509
+ @request = args[:request] if args.key?(:request)
13510
+ end
13511
+ end
13512
+
13513
+ # The request to initialize a location-level encryption specification.
13514
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
13515
+ include Google::Apis::Core::Hashable
13516
+
13517
+ # A customer-managed encryption key specification that can be applied to all
13518
+ # created resources (e.g. Conversation).
13519
+ # Corresponds to the JSON property `encryptionSpec`
13520
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec]
13521
+ attr_accessor :encryption_spec
13522
+
13523
+ def initialize(**args)
13524
+ update!(**args)
13525
+ end
13526
+
13527
+ # Update properties of this object
13528
+ def update!(**args)
13529
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
13530
+ end
13531
+ end
13532
+
13393
13533
  # Instructs the speech recognizer on how to process the audio content.
13394
13534
  class GoogleCloudDialogflowV2beta1InputAudioConfig
13395
13535
  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.69.0"
19
+ GEM_VERSION = "0.70.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 = "20230919"
25
+ REVISION = "20231019"
26
26
  end
27
27
  end
28
28
  end
@@ -1288,6 +1288,12 @@ module Google
1288
1288
  include Google::Apis::Core::JsonObjectSupport
1289
1289
  end
1290
1290
 
1291
+ class GoogleCloudDialogflowV2EncryptionSpec
1292
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1293
+
1294
+ include Google::Apis::Core::JsonObjectSupport
1295
+ end
1296
+
1291
1297
  class GoogleCloudDialogflowV2EntityType
1292
1298
  class Representation < Google::Apis::Core::JsonRepresentation; end
1293
1299
 
@@ -1354,6 +1360,18 @@ module Google
1354
1360
  include Google::Apis::Core::JsonObjectSupport
1355
1361
  end
1356
1362
 
1363
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
1364
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1365
+
1366
+ include Google::Apis::Core::JsonObjectSupport
1367
+ end
1368
+
1369
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
1370
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1371
+
1372
+ include Google::Apis::Core::JsonObjectSupport
1373
+ end
1374
+
1357
1375
  class GoogleCloudDialogflowV2InputDataset
1358
1376
  class Representation < Google::Apis::Core::JsonRepresentation; end
1359
1377
 
@@ -1930,6 +1948,12 @@ module Google
1930
1948
  include Google::Apis::Core::JsonObjectSupport
1931
1949
  end
1932
1950
 
1951
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
1952
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1953
+
1954
+ include Google::Apis::Core::JsonObjectSupport
1955
+ end
1956
+
1933
1957
  class GoogleCloudDialogflowV2beta1EntityType
1934
1958
  class Representation < Google::Apis::Core::JsonRepresentation; end
1935
1959
 
@@ -2182,6 +2206,18 @@ module Google
2182
2206
  include Google::Apis::Core::JsonObjectSupport
2183
2207
  end
2184
2208
 
2209
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
2210
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2211
+
2212
+ include Google::Apis::Core::JsonObjectSupport
2213
+ end
2214
+
2215
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
2216
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2217
+
2218
+ include Google::Apis::Core::JsonObjectSupport
2219
+ end
2220
+
2185
2221
  class GoogleCloudDialogflowV2beta1InputAudioConfig
2186
2222
  class Representation < Google::Apis::Core::JsonRepresentation; end
2187
2223
 
@@ -5135,6 +5171,14 @@ module Google
5135
5171
  end
5136
5172
  end
5137
5173
 
5174
+ class GoogleCloudDialogflowV2EncryptionSpec
5175
+ # @private
5176
+ class Representation < Google::Apis::Core::JsonRepresentation
5177
+ property :kms_key, as: 'kmsKey'
5178
+ property :name, as: 'name'
5179
+ end
5180
+ end
5181
+
5138
5182
  class GoogleCloudDialogflowV2EntityType
5139
5183
  # @private
5140
5184
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5236,6 +5280,22 @@ module Google
5236
5280
  end
5237
5281
  end
5238
5282
 
5283
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
5284
+ # @private
5285
+ class Representation < Google::Apis::Core::JsonRepresentation
5286
+ property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
5287
+
5288
+ end
5289
+ end
5290
+
5291
+ class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
5292
+ # @private
5293
+ class Representation < Google::Apis::Core::JsonRepresentation
5294
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec::Representation
5295
+
5296
+ end
5297
+ end
5298
+
5239
5299
  class GoogleCloudDialogflowV2InputDataset
5240
5300
  # @private
5241
5301
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6299,6 +6359,14 @@ module Google
6299
6359
  end
6300
6360
  end
6301
6361
 
6362
+ class GoogleCloudDialogflowV2beta1EncryptionSpec
6363
+ # @private
6364
+ class Representation < Google::Apis::Core::JsonRepresentation
6365
+ property :kms_key, as: 'kmsKey'
6366
+ property :name, as: 'name'
6367
+ end
6368
+ end
6369
+
6302
6370
  class GoogleCloudDialogflowV2beta1EntityType
6303
6371
  # @private
6304
6372
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6697,6 +6765,22 @@ module Google
6697
6765
  end
6698
6766
  end
6699
6767
 
6768
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
6769
+ # @private
6770
+ class Representation < Google::Apis::Core::JsonRepresentation
6771
+ property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
6772
+
6773
+ end
6774
+ end
6775
+
6776
+ class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
6777
+ # @private
6778
+ class Representation < Google::Apis::Core::JsonRepresentation
6779
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
6780
+
6781
+ end
6782
+ end
6783
+
6700
6784
  class GoogleCloudDialogflowV2beta1InputAudioConfig
6701
6785
  # @private
6702
6786
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.70.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-09-24 00:00:00.000000000 Z
11
+ date: 2023-10-29 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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.70.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []