google-apis-vision_v1p1beta1 0.22.0 → 0.23.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61049b840084b9049cf3de43096d5966871a8acfe1479c5d8b03f46e9e125749
|
4
|
+
data.tar.gz: b21d45bdfd5ebcd4830de7039f25e27f249c57706cd13f4e1ca879c99a3a974b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 810bb8d928414f0d2b925e03356ad070fb177bfa99e7668b0080dcb8126aa9e8cb3cb363868d908ab9b88c047287dd640702e8d4a296a2e43789d6626a2af2d5
|
7
|
+
data.tar.gz: 1c8998223668eba5e394c3221a06cd8bc79f3fa7d0511be770bb0353eacdcddae11d431514bd3ab3a0f196598f3b06cd8ac8edf52f8a01958210f8df0695151e
|
data/CHANGELOG.md
CHANGED
@@ -1172,6 +1172,15 @@ module Google
|
|
1172
1172
|
class GoogleCloudVisionV1p1beta1AsyncBatchAnnotateFilesRequest
|
1173
1173
|
include Google::Apis::Core::Hashable
|
1174
1174
|
|
1175
|
+
# Optional. The labels with user-defined metadata for the request. Label keys
|
1176
|
+
# and values can be no longer than 63 characters (Unicode codepoints), can only
|
1177
|
+
# contain lowercase letters, numeric characters, underscores and dashes.
|
1178
|
+
# International characters are allowed. Label values are optional. Label keys
|
1179
|
+
# must start with a letter.
|
1180
|
+
# Corresponds to the JSON property `labels`
|
1181
|
+
# @return [Hash<String,String>]
|
1182
|
+
attr_accessor :labels
|
1183
|
+
|
1175
1184
|
# Optional. Target project and location to make a call. Format: `projects/`
|
1176
1185
|
# project-id`/locations/`location-id``. If no parent is specified, a region will
|
1177
1186
|
# be chosen automatically. Supported location-ids: `us`: USA country only, `asia`
|
@@ -1192,6 +1201,7 @@ module Google
|
|
1192
1201
|
|
1193
1202
|
# Update properties of this object
|
1194
1203
|
def update!(**args)
|
1204
|
+
@labels = args[:labels] if args.key?(:labels)
|
1195
1205
|
@parent = args[:parent] if args.key?(:parent)
|
1196
1206
|
@requests = args[:requests] if args.key?(:requests)
|
1197
1207
|
end
|
@@ -1221,6 +1231,15 @@ module Google
|
|
1221
1231
|
class GoogleCloudVisionV1p1beta1AsyncBatchAnnotateImagesRequest
|
1222
1232
|
include Google::Apis::Core::Hashable
|
1223
1233
|
|
1234
|
+
# Optional. The labels with user-defined metadata for the request. Label keys
|
1235
|
+
# and values can be no longer than 63 characters (Unicode codepoints), can only
|
1236
|
+
# contain lowercase letters, numeric characters, underscores and dashes.
|
1237
|
+
# International characters are allowed. Label values are optional. Label keys
|
1238
|
+
# must start with a letter.
|
1239
|
+
# Corresponds to the JSON property `labels`
|
1240
|
+
# @return [Hash<String,String>]
|
1241
|
+
attr_accessor :labels
|
1242
|
+
|
1224
1243
|
# The desired output location and metadata.
|
1225
1244
|
# Corresponds to the JSON property `outputConfig`
|
1226
1245
|
# @return [Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1OutputConfig]
|
@@ -1246,6 +1265,7 @@ module Google
|
|
1246
1265
|
|
1247
1266
|
# Update properties of this object
|
1248
1267
|
def update!(**args)
|
1268
|
+
@labels = args[:labels] if args.key?(:labels)
|
1249
1269
|
@output_config = args[:output_config] if args.key?(:output_config)
|
1250
1270
|
@parent = args[:parent] if args.key?(:parent)
|
1251
1271
|
@requests = args[:requests] if args.key?(:requests)
|
@@ -1256,6 +1276,15 @@ module Google
|
|
1256
1276
|
class GoogleCloudVisionV1p1beta1BatchAnnotateFilesRequest
|
1257
1277
|
include Google::Apis::Core::Hashable
|
1258
1278
|
|
1279
|
+
# Optional. The labels with user-defined metadata for the request. Label keys
|
1280
|
+
# and values can be no longer than 63 characters (Unicode codepoints), can only
|
1281
|
+
# contain lowercase letters, numeric characters, underscores and dashes.
|
1282
|
+
# International characters are allowed. Label values are optional. Label keys
|
1283
|
+
# must start with a letter.
|
1284
|
+
# Corresponds to the JSON property `labels`
|
1285
|
+
# @return [Hash<String,String>]
|
1286
|
+
attr_accessor :labels
|
1287
|
+
|
1259
1288
|
# Optional. Target project and location to make a call. Format: `projects/`
|
1260
1289
|
# project-id`/locations/`location-id``. If no parent is specified, a region will
|
1261
1290
|
# be chosen automatically. Supported location-ids: `us`: USA country only, `asia`
|
@@ -1277,6 +1306,7 @@ module Google
|
|
1277
1306
|
|
1278
1307
|
# Update properties of this object
|
1279
1308
|
def update!(**args)
|
1309
|
+
@labels = args[:labels] if args.key?(:labels)
|
1280
1310
|
@parent = args[:parent] if args.key?(:parent)
|
1281
1311
|
@requests = args[:requests] if args.key?(:requests)
|
1282
1312
|
end
|
@@ -1306,6 +1336,15 @@ module Google
|
|
1306
1336
|
class GoogleCloudVisionV1p1beta1BatchAnnotateImagesRequest
|
1307
1337
|
include Google::Apis::Core::Hashable
|
1308
1338
|
|
1339
|
+
# Optional. The labels with user-defined metadata for the request. Label keys
|
1340
|
+
# and values can be no longer than 63 characters (Unicode codepoints), can only
|
1341
|
+
# contain lowercase letters, numeric characters, underscores and dashes.
|
1342
|
+
# International characters are allowed. Label values are optional. Label keys
|
1343
|
+
# must start with a letter.
|
1344
|
+
# Corresponds to the JSON property `labels`
|
1345
|
+
# @return [Hash<String,String>]
|
1346
|
+
attr_accessor :labels
|
1347
|
+
|
1309
1348
|
# Optional. Target project and location to make a call. Format: `projects/`
|
1310
1349
|
# project-id`/locations/`location-id``. If no parent is specified, a region will
|
1311
1350
|
# be chosen automatically. Supported location-ids: `us`: USA country only, `asia`
|
@@ -1326,6 +1365,7 @@ module Google
|
|
1326
1365
|
|
1327
1366
|
# Update properties of this object
|
1328
1367
|
def update!(**args)
|
1368
|
+
@labels = args[:labels] if args.key?(:labels)
|
1329
1369
|
@parent = args[:parent] if args.key?(:parent)
|
1330
1370
|
@requests = args[:requests] if args.key?(:requests)
|
1331
1371
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VisionV1p1beta1
|
18
18
|
# Version of the google-apis-vision_v1p1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.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 = "
|
25
|
+
REVISION = "20230908"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1951,6 +1951,7 @@ module Google
|
|
1951
1951
|
class GoogleCloudVisionV1p1beta1AsyncBatchAnnotateFilesRequest
|
1952
1952
|
# @private
|
1953
1953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1954
|
+
hash :labels, as: 'labels'
|
1954
1955
|
property :parent, as: 'parent'
|
1955
1956
|
collection :requests, as: 'requests', class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AsyncAnnotateFileRequest, decorator: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AsyncAnnotateFileRequest::Representation
|
1956
1957
|
|
@@ -1968,6 +1969,7 @@ module Google
|
|
1968
1969
|
class GoogleCloudVisionV1p1beta1AsyncBatchAnnotateImagesRequest
|
1969
1970
|
# @private
|
1970
1971
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1972
|
+
hash :labels, as: 'labels'
|
1971
1973
|
property :output_config, as: 'outputConfig', class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1OutputConfig, decorator: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1OutputConfig::Representation
|
1972
1974
|
|
1973
1975
|
property :parent, as: 'parent'
|
@@ -1979,6 +1981,7 @@ module Google
|
|
1979
1981
|
class GoogleCloudVisionV1p1beta1BatchAnnotateFilesRequest
|
1980
1982
|
# @private
|
1981
1983
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1984
|
+
hash :labels, as: 'labels'
|
1982
1985
|
property :parent, as: 'parent'
|
1983
1986
|
collection :requests, as: 'requests', class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AnnotateFileRequest, decorator: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AnnotateFileRequest::Representation
|
1984
1987
|
|
@@ -1996,6 +1999,7 @@ module Google
|
|
1996
1999
|
class GoogleCloudVisionV1p1beta1BatchAnnotateImagesRequest
|
1997
2000
|
# @private
|
1998
2001
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2002
|
+
hash :labels, as: 'labels'
|
1999
2003
|
property :parent, as: 'parent'
|
2000
2004
|
collection :requests, as: 'requests', class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AnnotateImageRequest, decorator: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1AnnotateImageRequest::Representation
|
2001
2005
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vision_v1p1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.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
|
+
date: 2023-09-17 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-vision_v1p1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vision_v1p1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vision_v1p1beta1/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vision_v1p1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Vision API V1p1beta1
|