google-apis-documentai_v1beta3 0.13.0 → 0.17.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: a11fc86d5bd724a3193ac62b86c11fc40c64dd28701368c6ad74d2174b64557f
4
- data.tar.gz: 0ac384ee62d07dda9c47bf7a98c6ab48a3c1ab91705662cd3f5cbff63d77aa53
3
+ metadata.gz: ac8647d8aa63d547562ea71e8ab6dda319b2c236197801f15b1a3e5970be29ad
4
+ data.tar.gz: 2d0b57c926c18d10155c3962113176f2d60c28ff9f10391d24b36036000d2829
5
5
  SHA512:
6
- metadata.gz: ff249d354f7e0c2dace85fdeb6832502144f7d611ac1d9de8baf0bd4d8b8f6b45b735f6af31c889c4624f7e84a2afb18600e75c8866fffe95fd486d7d2bf1567
7
- data.tar.gz: f54d1a6e9aa70055ce89942e0ec29778bc5a36114703605826b185981a9e2d9b83f12b7db79448812c67477bd74dc3e8d8b2e8b13a7bcf3f864d0db349840147
6
+ metadata.gz: 9f12a8385f23b3b6a16ee5b4d8d7ca62947efd701205dbc34036bb98caff83dcd73c86487834f03a9ea84bbdde8f6902cf5548e6120e26163efefa554bd934d7
7
+ data.tar.gz: 6e4918f0307d85b54f73f8d7f6c0de6d73c9d7a2380c30fcdc92ab1fdfbdb4036e662adfd45a6dfda845d7ea4e82fec2729ad100edadb1a4233b544dc2f3bc6e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.17.0 (2021-07-13)
4
+
5
+ * Regenerated from discovery document revision 20210709
6
+
7
+ ### v0.16.0 (2021-06-29)
8
+
9
+ * Regenerated from discovery document revision 20210625
10
+ * Regenerated using generator version 0.4.0
11
+
12
+ ### v0.15.0 (2021-06-24)
13
+
14
+ * Regenerated from discovery document revision 20210617
15
+
16
+ ### v0.14.0 (2021-06-09)
17
+
18
+ * Regenerated from discovery document revision 20210607
19
+
3
20
  ### v0.13.0 (2021-06-03)
4
21
 
5
22
  * Regenerated from discovery document revision 20210527
@@ -271,6 +271,44 @@ module Google
271
271
  end
272
272
  end
273
273
 
274
+ # Metadata message associated with the ExportProcessorVersion operation.
275
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
276
+ include Google::Apis::Core::Hashable
277
+
278
+ # The common metadata for long running operations.
279
+ # Corresponds to the JSON property `commonMetadata`
280
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
281
+ attr_accessor :common_metadata
282
+
283
+ def initialize(**args)
284
+ update!(**args)
285
+ end
286
+
287
+ # Update properties of this object
288
+ def update!(**args)
289
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
290
+ end
291
+ end
292
+
293
+ # Response message associated with the ExportProcessorVersion operation.
294
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
295
+ include Google::Apis::Core::Hashable
296
+
297
+ # The Cloud Storage URI containing the output artifacts.
298
+ # Corresponds to the JSON property `gcsUri`
299
+ # @return [String]
300
+ attr_accessor :gcs_uri
301
+
302
+ def initialize(**args)
303
+ update!(**args)
304
+ end
305
+
306
+ # Update properties of this object
307
+ def update!(**args)
308
+ @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
309
+ end
310
+ end
311
+
274
312
  # The long running operation metadata for set default processor version method.
275
313
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
276
314
  include Google::Apis::Core::Hashable
@@ -1084,6 +1122,12 @@ module Google
1084
1122
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageParagraph>]
1085
1123
  attr_accessor :paragraphs
1086
1124
 
1125
+ # Structure to identify provenance relationships between annotations in
1126
+ # different revisions.
1127
+ # Corresponds to the JSON property `provenance`
1128
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance]
1129
+ attr_accessor :provenance
1130
+
1087
1131
  # A list of visually detected tables on the page.
1088
1132
  # Corresponds to the JSON property `tables`
1089
1133
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageTable>]
@@ -1121,6 +1165,7 @@ module Google
1121
1165
  @lines = args[:lines] if args.key?(:lines)
1122
1166
  @page_number = args[:page_number] if args.key?(:page_number)
1123
1167
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
1168
+ @provenance = args[:provenance] if args.key?(:provenance)
1124
1169
  @tables = args[:tables] if args.key?(:tables)
1125
1170
  @tokens = args[:tokens] if args.key?(:tokens)
1126
1171
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -1174,7 +1219,9 @@ module Google
1174
1219
  attr_accessor :layout_type
1175
1220
 
1176
1221
  # Required. Index into the Document.pages element, for example using Document.
1177
- # pages to locate the related page element.
1222
+ # pages to locate the related page element. This field is skipped when its value
1223
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
1224
+ # proto3#json.
1178
1225
  # Corresponds to the JSON property `page`
1179
1226
  # @return [Fixnum]
1180
1227
  attr_accessor :page
@@ -1302,6 +1349,12 @@ module Google
1302
1349
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
1303
1350
  attr_accessor :name_detected_languages
1304
1351
 
1352
+ # Structure to identify provenance relationships between annotations in
1353
+ # different revisions.
1354
+ # Corresponds to the JSON property `provenance`
1355
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance]
1356
+ attr_accessor :provenance
1357
+
1305
1358
  # A list of detected languages for value together with confidence.
1306
1359
  # Corresponds to the JSON property `valueDetectedLanguages`
1307
1360
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
@@ -1323,6 +1376,7 @@ module Google
1323
1376
  @field_name = args[:field_name] if args.key?(:field_name)
1324
1377
  @field_value = args[:field_value] if args.key?(:field_value)
1325
1378
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
1379
+ @provenance = args[:provenance] if args.key?(:provenance)
1326
1380
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
1327
1381
  @value_type = args[:value_type] if args.key?(:value_type)
1328
1382
  end
@@ -2792,6 +2846,12 @@ module Google
2792
2846
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageParagraph>]
2793
2847
  attr_accessor :paragraphs
2794
2848
 
2849
+ # Structure to identify provenance relationships between annotations in
2850
+ # different revisions.
2851
+ # Corresponds to the JSON property `provenance`
2852
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance]
2853
+ attr_accessor :provenance
2854
+
2795
2855
  # A list of visually detected tables on the page.
2796
2856
  # Corresponds to the JSON property `tables`
2797
2857
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageTable>]
@@ -2829,6 +2889,7 @@ module Google
2829
2889
  @lines = args[:lines] if args.key?(:lines)
2830
2890
  @page_number = args[:page_number] if args.key?(:page_number)
2831
2891
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
2892
+ @provenance = args[:provenance] if args.key?(:provenance)
2832
2893
  @tables = args[:tables] if args.key?(:tables)
2833
2894
  @tokens = args[:tokens] if args.key?(:tokens)
2834
2895
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -2882,7 +2943,9 @@ module Google
2882
2943
  attr_accessor :layout_type
2883
2944
 
2884
2945
  # Required. Index into the Document.pages element, for example using Document.
2885
- # pages to locate the related page element.
2946
+ # pages to locate the related page element. This field is skipped when its value
2947
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
2948
+ # proto3#json.
2886
2949
  # Corresponds to the JSON property `page`
2887
2950
  # @return [Fixnum]
2888
2951
  attr_accessor :page
@@ -3010,6 +3073,12 @@ module Google
3010
3073
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
3011
3074
  attr_accessor :name_detected_languages
3012
3075
 
3076
+ # Structure to identify provenance relationships between annotations in
3077
+ # different revisions.
3078
+ # Corresponds to the JSON property `provenance`
3079
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance]
3080
+ attr_accessor :provenance
3081
+
3013
3082
  # A list of detected languages for value together with confidence.
3014
3083
  # Corresponds to the JSON property `valueDetectedLanguages`
3015
3084
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
@@ -3031,6 +3100,7 @@ module Google
3031
3100
  @field_name = args[:field_name] if args.key?(:field_name)
3032
3101
  @field_value = args[:field_value] if args.key?(:field_value)
3033
3102
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
3103
+ @provenance = args[:provenance] if args.key?(:provenance)
3034
3104
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
3035
3105
  @value_type = args[:value_type] if args.key?(:value_type)
3036
3106
  end
@@ -4817,6 +4887,12 @@ module Google
4817
4887
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageParagraph>]
4818
4888
  attr_accessor :paragraphs
4819
4889
 
4890
+ # Structure to identify provenance relationships between annotations in
4891
+ # different revisions.
4892
+ # Corresponds to the JSON property `provenance`
4893
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance]
4894
+ attr_accessor :provenance
4895
+
4820
4896
  # A list of visually detected tables on the page.
4821
4897
  # Corresponds to the JSON property `tables`
4822
4898
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageTable>]
@@ -4854,6 +4930,7 @@ module Google
4854
4930
  @lines = args[:lines] if args.key?(:lines)
4855
4931
  @page_number = args[:page_number] if args.key?(:page_number)
4856
4932
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
4933
+ @provenance = args[:provenance] if args.key?(:provenance)
4857
4934
  @tables = args[:tables] if args.key?(:tables)
4858
4935
  @tokens = args[:tokens] if args.key?(:tokens)
4859
4936
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -4907,7 +4984,9 @@ module Google
4907
4984
  attr_accessor :layout_type
4908
4985
 
4909
4986
  # Required. Index into the Document.pages element, for example using Document.
4910
- # pages to locate the related page element.
4987
+ # pages to locate the related page element. This field is skipped when its value
4988
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
4989
+ # proto3#json.
4911
4990
  # Corresponds to the JSON property `page`
4912
4991
  # @return [Fixnum]
4913
4992
  attr_accessor :page
@@ -5035,6 +5114,12 @@ module Google
5035
5114
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage>]
5036
5115
  attr_accessor :name_detected_languages
5037
5116
 
5117
+ # Structure to identify provenance relationships between annotations in
5118
+ # different revisions.
5119
+ # Corresponds to the JSON property `provenance`
5120
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance]
5121
+ attr_accessor :provenance
5122
+
5038
5123
  # A list of detected languages for value together with confidence.
5039
5124
  # Corresponds to the JSON property `valueDetectedLanguages`
5040
5125
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage>]
@@ -5056,6 +5141,7 @@ module Google
5056
5141
  @field_name = args[:field_name] if args.key?(:field_name)
5057
5142
  @field_value = args[:field_value] if args.key?(:field_value)
5058
5143
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
5144
+ @provenance = args[:provenance] if args.key?(:provenance)
5059
5145
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
5060
5146
  @value_type = args[:value_type] if args.key?(:value_type)
5061
5147
  end
@@ -6267,11 +6353,6 @@ module Google
6267
6353
  # @return [String]
6268
6354
  attr_accessor :name
6269
6355
 
6270
- # The schema defines the output of the processed document by a processor.
6271
- # Corresponds to the JSON property `schema`
6272
- # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Schema]
6273
- attr_accessor :schema
6274
-
6275
6356
  # The type of the processor, e.g, "invoice_parsing".
6276
6357
  # Corresponds to the JSON property `type`
6277
6358
  # @return [String]
@@ -6287,7 +6368,6 @@ module Google
6287
6368
  @available_locations = args[:available_locations] if args.key?(:available_locations)
6288
6369
  @category = args[:category] if args.key?(:category)
6289
6370
  @name = args[:name] if args.key?(:name)
6290
- @schema = args[:schema] if args.key?(:schema)
6291
6371
  @type = args[:type] if args.key?(:type)
6292
6372
  end
6293
6373
  end
@@ -6381,7 +6461,7 @@ module Google
6381
6461
  end
6382
6462
  end
6383
6463
 
6384
- # Request message for review document method. Next Id: 5.
6464
+ # Request message for review document method. Next Id: 6.
6385
6465
  class GoogleCloudDocumentaiV1beta3ReviewDocumentRequest
6386
6466
  include Google::Apis::Core::Hashable
6387
6467
 
@@ -6407,6 +6487,11 @@ module Google
6407
6487
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Document]
6408
6488
  attr_accessor :inline_document
6409
6489
 
6490
+ # The priority of the human review task.
6491
+ # Corresponds to the JSON property `priority`
6492
+ # @return [String]
6493
+ attr_accessor :priority
6494
+
6410
6495
  def initialize(**args)
6411
6496
  update!(**args)
6412
6497
  end
@@ -6416,6 +6501,7 @@ module Google
6416
6501
  @document = args[:document] if args.key?(:document)
6417
6502
  @enable_schema_validation = args[:enable_schema_validation] if args.key?(:enable_schema_validation)
6418
6503
  @inline_document = args[:inline_document] if args.key?(:inline_document)
6504
+ @priority = args[:priority] if args.key?(:priority)
6419
6505
  end
6420
6506
  end
6421
6507
 
@@ -6438,105 +6524,6 @@ module Google
6438
6524
  end
6439
6525
  end
6440
6526
 
6441
- # The schema defines the output of the processed document by a processor.
6442
- class GoogleCloudDocumentaiV1beta3Schema
6443
- include Google::Apis::Core::Hashable
6444
-
6445
- # Description of the schema.
6446
- # Corresponds to the JSON property `description`
6447
- # @return [String]
6448
- attr_accessor :description
6449
-
6450
- # Display name to show to users.
6451
- # Corresponds to the JSON property `displayName`
6452
- # @return [String]
6453
- attr_accessor :display_name
6454
-
6455
- # Entity types of the schema.
6456
- # Corresponds to the JSON property `entityTypes`
6457
- # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType>]
6458
- attr_accessor :entity_types
6459
-
6460
- def initialize(**args)
6461
- update!(**args)
6462
- end
6463
-
6464
- # Update properties of this object
6465
- def update!(**args)
6466
- @description = args[:description] if args.key?(:description)
6467
- @display_name = args[:display_name] if args.key?(:display_name)
6468
- @entity_types = args[:entity_types] if args.key?(:entity_types)
6469
- end
6470
- end
6471
-
6472
- # EntityType is the wrapper of a label of the corresponding model with detailed
6473
- # attributes and limitations for entity-based processors. Multiple types can
6474
- # also compose a dependency tree to represent nested types.
6475
- class GoogleCloudDocumentaiV1beta3SchemaEntityType
6476
- include Google::Apis::Core::Hashable
6477
-
6478
- # Type of the entity. It must be one of the following: `document` - the entity
6479
- # represents a classification of a logical document. `object` - if the entity
6480
- # has properties it is likely an object (or or a document.) `datetime` - the
6481
- # entity is a date or time value. `money` - the entity represents a money value
6482
- # amount. `number` - the entity is a number - integer or floating point. `string`
6483
- # - the entity is a string value. `boolean` - the entity is a boolean value. `
6484
- # address` - the entity is a location address.
6485
- # Corresponds to the JSON property `baseType`
6486
- # @return [String]
6487
- attr_accessor :base_type
6488
-
6489
- # Description of the entity type.
6490
- # Corresponds to the JSON property `description`
6491
- # @return [String]
6492
- attr_accessor :description
6493
-
6494
- # If specified, lists all the possible values for this entity.
6495
- # Corresponds to the JSON property `enumValues`
6496
- # @return [Array<String>]
6497
- attr_accessor :enum_values
6498
-
6499
- # Occurrence type limits the number of times an entity type appears in the
6500
- # document.
6501
- # Corresponds to the JSON property `occurrenceType`
6502
- # @return [String]
6503
- attr_accessor :occurrence_type
6504
-
6505
- # Describing the nested structure of an entity. An EntityType may consist of
6506
- # several other EntityTypes. For example, in a document there can be an
6507
- # EntityType 'ID', which consists of EntityType 'name' and 'address', with
6508
- # corresponding attributes, such as TEXT for both types and ONCE for occurrence
6509
- # types.
6510
- # Corresponds to the JSON property `properties`
6511
- # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType>]
6512
- attr_accessor :properties
6513
-
6514
- # Source of this entity type.
6515
- # Corresponds to the JSON property `source`
6516
- # @return [String]
6517
- attr_accessor :source
6518
-
6519
- # Name of the type. It must be unique within the set of same level types.
6520
- # Corresponds to the JSON property `type`
6521
- # @return [String]
6522
- attr_accessor :type
6523
-
6524
- def initialize(**args)
6525
- update!(**args)
6526
- end
6527
-
6528
- # Update properties of this object
6529
- def update!(**args)
6530
- @base_type = args[:base_type] if args.key?(:base_type)
6531
- @description = args[:description] if args.key?(:description)
6532
- @enum_values = args[:enum_values] if args.key?(:enum_values)
6533
- @occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
6534
- @properties = args[:properties] if args.key?(:properties)
6535
- @source = args[:source] if args.key?(:source)
6536
- @type = args[:type] if args.key?(:type)
6537
- end
6538
- end
6539
-
6540
6527
  # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are
6541
6528
  # in the same scale as the original image.
6542
6529
  class GoogleCloudDocumentaiV1beta3Vertex
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1beta3
18
18
  # Version of the google-apis-documentai_v1beta3 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210527"
25
+ REVISION = "20210709"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,18 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
109
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
103
115
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
104
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
117
 
@@ -1102,18 +1114,6 @@ module Google
1102
1114
  include Google::Apis::Core::JsonObjectSupport
1103
1115
  end
1104
1116
 
1105
- class GoogleCloudDocumentaiV1beta3Schema
1106
- class Representation < Google::Apis::Core::JsonRepresentation; end
1107
-
1108
- include Google::Apis::Core::JsonObjectSupport
1109
- end
1110
-
1111
- class GoogleCloudDocumentaiV1beta3SchemaEntityType
1112
- class Representation < Google::Apis::Core::JsonRepresentation; end
1113
-
1114
- include Google::Apis::Core::JsonObjectSupport
1115
- end
1116
-
1117
1117
  class GoogleCloudDocumentaiV1beta3Vertex
1118
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1119
1119
 
@@ -1291,6 +1291,21 @@ module Google
1291
1291
  end
1292
1292
  end
1293
1293
 
1294
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
1295
+ # @private
1296
+ class Representation < Google::Apis::Core::JsonRepresentation
1297
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1298
+
1299
+ end
1300
+ end
1301
+
1302
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
1303
+ # @private
1304
+ class Representation < Google::Apis::Core::JsonRepresentation
1305
+ property :gcs_uri, as: 'gcsUri'
1306
+ end
1307
+ end
1308
+
1294
1309
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
1295
1310
  # @private
1296
1311
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1541,6 +1556,8 @@ module Google
1541
1556
  property :page_number, as: 'pageNumber'
1542
1557
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageParagraph::Representation
1543
1558
 
1559
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
1560
+
1544
1561
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageTable::Representation
1545
1562
 
1546
1563
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageToken::Representation
@@ -1610,6 +1627,8 @@ module Google
1610
1627
 
1611
1628
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
1612
1629
 
1630
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
1631
+
1613
1632
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
1614
1633
 
1615
1634
  property :value_type, as: 'valueType'
@@ -2031,6 +2050,8 @@ module Google
2031
2050
  property :page_number, as: 'pageNumber'
2032
2051
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageParagraph::Representation
2033
2052
 
2053
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
2054
+
2034
2055
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageTable::Representation
2035
2056
 
2036
2057
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageToken::Representation
@@ -2100,6 +2121,8 @@ module Google
2100
2121
 
2101
2122
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
2102
2123
 
2124
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
2125
+
2103
2126
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
2104
2127
 
2105
2128
  property :value_type, as: 'valueType'
@@ -2627,6 +2650,8 @@ module Google
2627
2650
  property :page_number, as: 'pageNumber'
2628
2651
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageParagraph::Representation
2629
2652
 
2653
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance::Representation
2654
+
2630
2655
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageTable::Representation
2631
2656
 
2632
2657
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageToken::Representation
@@ -2696,6 +2721,8 @@ module Google
2696
2721
 
2697
2722
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage::Representation
2698
2723
 
2724
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance::Representation
2725
+
2699
2726
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage::Representation
2700
2727
 
2701
2728
  property :value_type, as: 'valueType'
@@ -3050,8 +3077,6 @@ module Google
3050
3077
 
3051
3078
  property :category, as: 'category'
3052
3079
  property :name, as: 'name'
3053
- property :schema, as: 'schema', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Schema, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Schema::Representation
3054
-
3055
3080
  property :type, as: 'type'
3056
3081
  end
3057
3082
  end
@@ -3091,6 +3116,7 @@ module Google
3091
3116
  property :enable_schema_validation, as: 'enableSchemaValidation'
3092
3117
  property :inline_document, as: 'inlineDocument', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Document, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Document::Representation
3093
3118
 
3119
+ property :priority, as: 'priority'
3094
3120
  end
3095
3121
  end
3096
3122
 
@@ -3101,30 +3127,6 @@ module Google
3101
3127
  end
3102
3128
  end
3103
3129
 
3104
- class GoogleCloudDocumentaiV1beta3Schema
3105
- # @private
3106
- class Representation < Google::Apis::Core::JsonRepresentation
3107
- property :description, as: 'description'
3108
- property :display_name, as: 'displayName'
3109
- collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType::Representation
3110
-
3111
- end
3112
- end
3113
-
3114
- class GoogleCloudDocumentaiV1beta3SchemaEntityType
3115
- # @private
3116
- class Representation < Google::Apis::Core::JsonRepresentation
3117
- property :base_type, as: 'baseType'
3118
- property :description, as: 'description'
3119
- collection :enum_values, as: 'enumValues'
3120
- property :occurrence_type, as: 'occurrenceType'
3121
- collection :properties, as: 'properties', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType::Representation
3122
-
3123
- property :source, as: 'source'
3124
- property :type, as: 'type'
3125
- end
3126
- end
3127
-
3128
3130
  class GoogleCloudDocumentaiV1beta3Vertex
3129
3131
  # @private
3130
3132
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.17.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: 2021-06-07 00:00:00.000000000 Z
11
+ date: 2021-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Document AI API V1beta3. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1beta3/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.17.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1beta3
57
63
  post_install_message:
58
64
  rdoc_options: []