google-apis-documentai_v1beta3 0.14.0 → 0.18.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: 9bf0a43f84c8fd4d869f0eb66c151ebf438e719231c6fb7976c298a1a7572f92
4
- data.tar.gz: 4678a1a572bd3febcde1beec673998030cf648b4b6d09c32c6470ada92242f08
3
+ metadata.gz: 8d99ef171e85f8208a1283e80b0ac4d57b4b6f286452b6716caa90ecb566d04a
4
+ data.tar.gz: 845effcf4fe1144d709193d91f71f5ab75ccc6fb901394d510f03591c203c214
5
5
  SHA512:
6
- metadata.gz: e6ae55ff767f0bc416205da32a373633da170dc4114ae795c085e75f2ab40d4712c12818f3dd01ace6ed0a81ba9764200ec2d500c4f755a9dd62908a4aa6fac6
7
- data.tar.gz: 93bc58d62b5a1bade51eb98f7d4198b5bb29df809b52d55d9e95629347b6659fd654f64823553ed139da9fc9169990bb3396774d24a64828992fed6cc1d0463a
6
+ metadata.gz: 43a3bad6f9d6f4e4e174c39be32fd0567281c4daa951b0d96d2060da3b0a5e660b6692edddd5dd715be4b9989955fa9e929d46adbfc53b6fe1d19c45b75bc1e8
7
+ data.tar.gz: eb87755c762b207a05382aa835bbf3736205f4ac354bc2952c35614ae12f1d6ad4a76a49cd2a4b0e859d1a2dc8539de2e6c13975e392096baf6057604d9f1309
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.18.0 (2021-07-29)
4
+
5
+ * Regenerated from discovery document revision 20210728
6
+
7
+ ### v0.17.0 (2021-07-13)
8
+
9
+ * Regenerated from discovery document revision 20210709
10
+
11
+ ### v0.16.0 (2021-06-29)
12
+
13
+ * Regenerated from discovery document revision 20210625
14
+ * Regenerated using generator version 0.4.0
15
+
16
+ ### v0.15.0 (2021-06-24)
17
+
18
+ * Regenerated from discovery document revision 20210617
19
+
3
20
  ### v0.14.0 (2021-06-09)
4
21
 
5
22
  * Regenerated from discovery document revision 20210607
@@ -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
@@ -6315,11 +6353,6 @@ module Google
6315
6353
  # @return [String]
6316
6354
  attr_accessor :name
6317
6355
 
6318
- # The schema defines the output of the processed document by a processor.
6319
- # Corresponds to the JSON property `schema`
6320
- # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Schema]
6321
- attr_accessor :schema
6322
-
6323
6356
  # The type of the processor, e.g, "invoice_parsing".
6324
6357
  # Corresponds to the JSON property `type`
6325
6358
  # @return [String]
@@ -6335,7 +6368,6 @@ module Google
6335
6368
  @available_locations = args[:available_locations] if args.key?(:available_locations)
6336
6369
  @category = args[:category] if args.key?(:category)
6337
6370
  @name = args[:name] if args.key?(:name)
6338
- @schema = args[:schema] if args.key?(:schema)
6339
6371
  @type = args[:type] if args.key?(:type)
6340
6372
  end
6341
6373
  end
@@ -6492,105 +6524,6 @@ module Google
6492
6524
  end
6493
6525
  end
6494
6526
 
6495
- # The schema defines the output of the processed document by a processor.
6496
- class GoogleCloudDocumentaiV1beta3Schema
6497
- include Google::Apis::Core::Hashable
6498
-
6499
- # Description of the schema.
6500
- # Corresponds to the JSON property `description`
6501
- # @return [String]
6502
- attr_accessor :description
6503
-
6504
- # Display name to show to users.
6505
- # Corresponds to the JSON property `displayName`
6506
- # @return [String]
6507
- attr_accessor :display_name
6508
-
6509
- # Entity types of the schema.
6510
- # Corresponds to the JSON property `entityTypes`
6511
- # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType>]
6512
- attr_accessor :entity_types
6513
-
6514
- def initialize(**args)
6515
- update!(**args)
6516
- end
6517
-
6518
- # Update properties of this object
6519
- def update!(**args)
6520
- @description = args[:description] if args.key?(:description)
6521
- @display_name = args[:display_name] if args.key?(:display_name)
6522
- @entity_types = args[:entity_types] if args.key?(:entity_types)
6523
- end
6524
- end
6525
-
6526
- # EntityType is the wrapper of a label of the corresponding model with detailed
6527
- # attributes and limitations for entity-based processors. Multiple types can
6528
- # also compose a dependency tree to represent nested types.
6529
- class GoogleCloudDocumentaiV1beta3SchemaEntityType
6530
- include Google::Apis::Core::Hashable
6531
-
6532
- # Type of the entity. It must be one of the following: `document` - the entity
6533
- # represents a classification of a logical document. `object` - if the entity
6534
- # has properties it is likely an object (or or a document.) `datetime` - the
6535
- # entity is a date or time value. `money` - the entity represents a money value
6536
- # amount. `number` - the entity is a number - integer or floating point. `string`
6537
- # - the entity is a string value. `boolean` - the entity is a boolean value. `
6538
- # address` - the entity is a location address.
6539
- # Corresponds to the JSON property `baseType`
6540
- # @return [String]
6541
- attr_accessor :base_type
6542
-
6543
- # Description of the entity type.
6544
- # Corresponds to the JSON property `description`
6545
- # @return [String]
6546
- attr_accessor :description
6547
-
6548
- # If specified, lists all the possible values for this entity.
6549
- # Corresponds to the JSON property `enumValues`
6550
- # @return [Array<String>]
6551
- attr_accessor :enum_values
6552
-
6553
- # Occurrence type limits the number of times an entity type appears in the
6554
- # document.
6555
- # Corresponds to the JSON property `occurrenceType`
6556
- # @return [String]
6557
- attr_accessor :occurrence_type
6558
-
6559
- # Describing the nested structure of an entity. An EntityType may consist of
6560
- # several other EntityTypes. For example, in a document there can be an
6561
- # EntityType 'ID', which consists of EntityType 'name' and 'address', with
6562
- # corresponding attributes, such as TEXT for both types and ONCE for occurrence
6563
- # types.
6564
- # Corresponds to the JSON property `properties`
6565
- # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType>]
6566
- attr_accessor :properties
6567
-
6568
- # Source of this entity type.
6569
- # Corresponds to the JSON property `source`
6570
- # @return [String]
6571
- attr_accessor :source
6572
-
6573
- # Name of the type. It must be unique within the set of same level types.
6574
- # Corresponds to the JSON property `type`
6575
- # @return [String]
6576
- attr_accessor :type
6577
-
6578
- def initialize(**args)
6579
- update!(**args)
6580
- end
6581
-
6582
- # Update properties of this object
6583
- def update!(**args)
6584
- @base_type = args[:base_type] if args.key?(:base_type)
6585
- @description = args[:description] if args.key?(:description)
6586
- @enum_values = args[:enum_values] if args.key?(:enum_values)
6587
- @occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
6588
- @properties = args[:properties] if args.key?(:properties)
6589
- @source = args[:source] if args.key?(:source)
6590
- @type = args[:type] if args.key?(:type)
6591
- end
6592
- end
6593
-
6594
6527
  # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are
6595
6528
  # in the same scale as the original image.
6596
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.14.0"
19
+ GEM_VERSION = "0.18.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 = "20210607"
25
+ REVISION = "20210728"
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
@@ -3062,8 +3077,6 @@ module Google
3062
3077
 
3063
3078
  property :category, as: 'category'
3064
3079
  property :name, as: 'name'
3065
- property :schema, as: 'schema', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Schema, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3Schema::Representation
3066
-
3067
3080
  property :type, as: 'type'
3068
3081
  end
3069
3082
  end
@@ -3114,30 +3127,6 @@ module Google
3114
3127
  end
3115
3128
  end
3116
3129
 
3117
- class GoogleCloudDocumentaiV1beta3Schema
3118
- # @private
3119
- class Representation < Google::Apis::Core::JsonRepresentation
3120
- property :description, as: 'description'
3121
- property :display_name, as: 'displayName'
3122
- collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType::Representation
3123
-
3124
- end
3125
- end
3126
-
3127
- class GoogleCloudDocumentaiV1beta3SchemaEntityType
3128
- # @private
3129
- class Representation < Google::Apis::Core::JsonRepresentation
3130
- property :base_type, as: 'baseType'
3131
- property :description, as: 'description'
3132
- collection :enum_values, as: 'enumValues'
3133
- property :occurrence_type, as: 'occurrenceType'
3134
- collection :properties, as: 'properties', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SchemaEntityType::Representation
3135
-
3136
- property :source, as: 'source'
3137
- property :type, as: 'type'
3138
- end
3139
- end
3140
-
3141
3130
  class GoogleCloudDocumentaiV1beta3Vertex
3142
3131
  # @private
3143
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.14.0
4
+ version: 0.18.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-14 00:00:00.000000000 Z
11
+ date: 2021-08-02 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.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.18.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: []