google-apis-documentai_v1 0.37.0 → 0.40.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b169ad06927eeece80da8f752fddcc1b9c4acd132261413eb978e4bbbc60784a
4
- data.tar.gz: 415bb98ebc7ad7b61c4f29c8f8bac832b9a3347eae64f341238b81f411351d8f
3
+ metadata.gz: be5ececd02b9f9dbf25b6739dce0ef884a496b1c081f3541cbf18e6d0f05aad3
4
+ data.tar.gz: 14667b36b7607697b7d8bb6b93f44aaa11f84ad9382d6bfcbb82ae08d472ea51
5
5
  SHA512:
6
- metadata.gz: 0c3a3d736b1197d9c7f365b376248ad5661b5f70dd13e613b79781df116b78def2e056fc593792f2e0bb97fc972899481c454be9b0bafac1cda9aab28907d851
7
- data.tar.gz: e3c7e587c4c0301fbd4e4c3feb4f42ae155dc468ea7428ac1f6748abb6fcd629c76256cb30096885917cc93c9c5e2f77a3d9aa63a535ba24fbaa9d5d6aa88f21
6
+ metadata.gz: 4c786b71ffc0c31a5d60514b9e820518a6a1156fca8e4e74ff00b29a6fc9b3cbaedc1554b9b4da1446f088504458df1a11336f65703ce84768f4902b738fd93f
7
+ data.tar.gz: 72f71f559ffca11f184be335b54360e782a5b24d34446e752696df69a8eefba0668f0862674dfe5065b84c9f31ff5db583dd89761f11e89f8281cda0c0f34bb8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.40.0 (2022-06-18)
4
+
5
+ * Regenerated using generator version 0.7.0
6
+ * Regenerated from discovery document revision 20220610
7
+
8
+ ### v0.39.0 (2022-06-08)
9
+
10
+ * Regenerated from discovery document revision 20220602
11
+ * Regenerated using generator version 0.5.0
12
+ * Unspecified changes
13
+
14
+ ### v0.38.0 (2022-05-17)
15
+
16
+ * Regenerated from discovery document revision 20220513
17
+
3
18
  ### v0.37.0 (2022-05-10)
4
19
 
5
20
  * Regenerated from discovery document revision 20220505
@@ -1738,8 +1738,8 @@ module Google
1738
1738
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageToken>]
1739
1739
  attr_accessor :tokens
1740
1740
 
1741
- # Transformation matrices (both already applied and not) to the original
1742
- # document image to produce Page.image.
1741
+ # Transformation matrices that were applied to the original document image to
1742
+ # produce Page.image.
1743
1743
  # Corresponds to the JSON property `transforms`
1744
1744
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageMatrix>]
1745
1745
  attr_accessor :transforms
@@ -2114,14 +2114,6 @@ module Google
2114
2114
  class GoogleCloudDocumentaiV1DocumentPageMatrix
2115
2115
  include Google::Apis::Core::Hashable
2116
2116
 
2117
- # Has the transformation already been applied to the current Document? Needed to
2118
- # disambiguate pre-processing transformations already applied vs transformations
2119
- # added at annotation time by HITL operators.
2120
- # Corresponds to the JSON property `applied`
2121
- # @return [Boolean]
2122
- attr_accessor :applied
2123
- alias_method :applied?, :applied
2124
-
2125
2117
  # Number of columns in the matrix.
2126
2118
  # Corresponds to the JSON property `cols`
2127
2119
  # @return [Fixnum]
@@ -2152,7 +2144,6 @@ module Google
2152
2144
 
2153
2145
  # Update properties of this object
2154
2146
  def update!(**args)
2155
- @applied = args[:applied] if args.key?(:applied)
2156
2147
  @cols = args[:cols] if args.key?(:cols)
2157
2148
  @data = args[:data] if args.key?(:data)
2158
2149
  @rows = args[:rows] if args.key?(:rows)
@@ -2555,6 +2546,177 @@ module Google
2555
2546
  end
2556
2547
  end
2557
2548
 
2549
+ # The schema defines the output of the processed document by a processor.
2550
+ class GoogleCloudDocumentaiV1DocumentSchema
2551
+ include Google::Apis::Core::Hashable
2552
+
2553
+ # Description of the schema.
2554
+ # Corresponds to the JSON property `description`
2555
+ # @return [String]
2556
+ attr_accessor :description
2557
+
2558
+ # Display name to show to users.
2559
+ # Corresponds to the JSON property `displayName`
2560
+ # @return [String]
2561
+ attr_accessor :display_name
2562
+
2563
+ # Entity types of the schema.
2564
+ # Corresponds to the JSON property `entityTypes`
2565
+ # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType>]
2566
+ attr_accessor :entity_types
2567
+
2568
+ # Metadata for global schema behavior.
2569
+ # Corresponds to the JSON property `metadata`
2570
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata]
2571
+ attr_accessor :metadata
2572
+
2573
+ def initialize(**args)
2574
+ update!(**args)
2575
+ end
2576
+
2577
+ # Update properties of this object
2578
+ def update!(**args)
2579
+ @description = args[:description] if args.key?(:description)
2580
+ @display_name = args[:display_name] if args.key?(:display_name)
2581
+ @entity_types = args[:entity_types] if args.key?(:entity_types)
2582
+ @metadata = args[:metadata] if args.key?(:metadata)
2583
+ end
2584
+ end
2585
+
2586
+ # EntityType is the wrapper of a label of the corresponding model with detailed
2587
+ # attributes and limitations for entity-based processors. Multiple types can
2588
+ # also compose a dependency tree to represent nested types.
2589
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityType
2590
+ include Google::Apis::Core::Hashable
2591
+
2592
+ # The entity type that this type is derived from. For now, one and only one
2593
+ # should be set.
2594
+ # Corresponds to the JSON property `baseTypes`
2595
+ # @return [Array<String>]
2596
+ attr_accessor :base_types
2597
+
2598
+ # User defined name for the type.
2599
+ # Corresponds to the JSON property `displayName`
2600
+ # @return [String]
2601
+ attr_accessor :display_name
2602
+
2603
+ # Defines the a list of enum values.
2604
+ # Corresponds to the JSON property `enumValues`
2605
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues]
2606
+ attr_accessor :enum_values
2607
+
2608
+ # Name of the type. It must be unique within the schema file and cannot be a '
2609
+ # Common Type'. Besides that we use the following naming conventions: - *use
2610
+ # snake_casing* - name matching is case-insensitive - Maximum 64 characters. -
2611
+ # Must start with a letter. - Allowed characters: ASCII letters [a-z0-9_-]. (For
2612
+ # backward compatibility internal infrastructure and tooling can handle any
2613
+ # ascii character) - The '/' is sometimes used to denote a property of a type.
2614
+ # For example line_item/amount. This convention is deprecated, but will still be
2615
+ # honored for backward compatibility.
2616
+ # Corresponds to the JSON property `name`
2617
+ # @return [String]
2618
+ attr_accessor :name
2619
+
2620
+ # Describing the nested structure, or composition of an entity.
2621
+ # Corresponds to the JSON property `properties`
2622
+ # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty>]
2623
+ attr_accessor :properties
2624
+
2625
+ def initialize(**args)
2626
+ update!(**args)
2627
+ end
2628
+
2629
+ # Update properties of this object
2630
+ def update!(**args)
2631
+ @base_types = args[:base_types] if args.key?(:base_types)
2632
+ @display_name = args[:display_name] if args.key?(:display_name)
2633
+ @enum_values = args[:enum_values] if args.key?(:enum_values)
2634
+ @name = args[:name] if args.key?(:name)
2635
+ @properties = args[:properties] if args.key?(:properties)
2636
+ end
2637
+ end
2638
+
2639
+ # Defines the a list of enum values.
2640
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues
2641
+ include Google::Apis::Core::Hashable
2642
+
2643
+ # The individual values that this enum values type can include.
2644
+ # Corresponds to the JSON property `values`
2645
+ # @return [Array<String>]
2646
+ attr_accessor :values
2647
+
2648
+ def initialize(**args)
2649
+ update!(**args)
2650
+ end
2651
+
2652
+ # Update properties of this object
2653
+ def update!(**args)
2654
+ @values = args[:values] if args.key?(:values)
2655
+ end
2656
+ end
2657
+
2658
+ # Defines properties that can be part of the entity type.
2659
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty
2660
+ include Google::Apis::Core::Hashable
2661
+
2662
+ # The name of the property. Follows the same guidelines as the EntityType name.
2663
+ # Corresponds to the JSON property `name`
2664
+ # @return [String]
2665
+ attr_accessor :name
2666
+
2667
+ # Occurrence type limits the number of instances an entity type appears in the
2668
+ # document.
2669
+ # Corresponds to the JSON property `occurrenceType`
2670
+ # @return [String]
2671
+ attr_accessor :occurrence_type
2672
+
2673
+ # A reference to the value type of the property. This type is subject to the
2674
+ # same conventions as the `Entity.base_types` field.
2675
+ # Corresponds to the JSON property `valueType`
2676
+ # @return [String]
2677
+ attr_accessor :value_type
2678
+
2679
+ def initialize(**args)
2680
+ update!(**args)
2681
+ end
2682
+
2683
+ # Update properties of this object
2684
+ def update!(**args)
2685
+ @name = args[:name] if args.key?(:name)
2686
+ @occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
2687
+ @value_type = args[:value_type] if args.key?(:value_type)
2688
+ end
2689
+ end
2690
+
2691
+ # Metadata for global schema behavior.
2692
+ class GoogleCloudDocumentaiV1DocumentSchemaMetadata
2693
+ include Google::Apis::Core::Hashable
2694
+
2695
+ # If true, on a given page, there can be multiple `document` annotations
2696
+ # covering it.
2697
+ # Corresponds to the JSON property `documentAllowMultipleLabels`
2698
+ # @return [Boolean]
2699
+ attr_accessor :document_allow_multiple_labels
2700
+ alias_method :document_allow_multiple_labels?, :document_allow_multiple_labels
2701
+
2702
+ # If true, a `document` entity type can be applied to subdocument ( splitting).
2703
+ # Otherwise, it can only be applied to the entire document (classification).
2704
+ # Corresponds to the JSON property `documentSplitter`
2705
+ # @return [Boolean]
2706
+ attr_accessor :document_splitter
2707
+ alias_method :document_splitter?, :document_splitter
2708
+
2709
+ def initialize(**args)
2710
+ update!(**args)
2711
+ end
2712
+
2713
+ # Update properties of this object
2714
+ def update!(**args)
2715
+ @document_allow_multiple_labels = args[:document_allow_multiple_labels] if args.key?(:document_allow_multiple_labels)
2716
+ @document_splitter = args[:document_splitter] if args.key?(:document_splitter)
2717
+ end
2718
+ end
2719
+
2558
2720
  # For a large document, sharding may be performed to produce several document
2559
2721
  # shards. Each document shard contains this field to detail which shard it is.
2560
2722
  class GoogleCloudDocumentaiV1DocumentShardInfo
@@ -3086,6 +3248,11 @@ module Google
3086
3248
  class GoogleCloudDocumentaiV1ProcessRequest
3087
3249
  include Google::Apis::Core::Hashable
3088
3250
 
3251
+ # Specifies which fields to include in ProcessResponse's document.
3252
+ # Corresponds to the JSON property `fieldMask`
3253
+ # @return [String]
3254
+ attr_accessor :field_mask
3255
+
3089
3256
  # Document represents the canonical document resource in Document AI. It is an
3090
3257
  # interchange format that provides insights into documents and allows for
3091
3258
  # collaboration between users and Document AI to iterate and optimize for
@@ -3112,6 +3279,7 @@ module Google
3112
3279
 
3113
3280
  # Update properties of this object
3114
3281
  def update!(**args)
3282
+ @field_mask = args[:field_mask] if args.key?(:field_mask)
3115
3283
  @inline_document = args[:inline_document] if args.key?(:inline_document)
3116
3284
  @raw_document = args[:raw_document] if args.key?(:raw_document)
3117
3285
  @skip_human_review = args[:skip_human_review] if args.key?(:skip_human_review)
@@ -3432,6 +3600,11 @@ module Google
3432
3600
  class GoogleCloudDocumentaiV1ReviewDocumentRequest
3433
3601
  include Google::Apis::Core::Hashable
3434
3602
 
3603
+ # The schema defines the output of the processed document by a processor.
3604
+ # Corresponds to the JSON property `documentSchema`
3605
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema]
3606
+ attr_accessor :document_schema
3607
+
3435
3608
  # Whether the validation should be performed on the ad-hoc review request.
3436
3609
  # Corresponds to the JSON property `enableSchemaValidation`
3437
3610
  # @return [Boolean]
@@ -3457,6 +3630,7 @@ module Google
3457
3630
 
3458
3631
  # Update properties of this object
3459
3632
  def update!(**args)
3633
+ @document_schema = args[:document_schema] if args.key?(:document_schema)
3460
3634
  @enable_schema_validation = args[:enable_schema_validation] if args.key?(:enable_schema_validation)
3461
3635
  @inline_document = args[:inline_document] if args.key?(:inline_document)
3462
3636
  @priority = args[:priority] if args.key?(:priority)
@@ -3467,11 +3641,22 @@ module Google
3467
3641
  class GoogleCloudDocumentaiV1ReviewDocumentResponse
3468
3642
  include Google::Apis::Core::Hashable
3469
3643
 
3470
- # The Cloud Storage uri for the human reviewed document.
3644
+ # The Cloud Storage uri for the human reviewed document if the review is
3645
+ # succeeded.
3471
3646
  # Corresponds to the JSON property `gcsDestination`
3472
3647
  # @return [String]
3473
3648
  attr_accessor :gcs_destination
3474
3649
 
3650
+ # The reason why the review is rejected by reviewer.
3651
+ # Corresponds to the JSON property `rejectionReason`
3652
+ # @return [String]
3653
+ attr_accessor :rejection_reason
3654
+
3655
+ # The state of the review operation.
3656
+ # Corresponds to the JSON property `state`
3657
+ # @return [String]
3658
+ attr_accessor :state
3659
+
3475
3660
  def initialize(**args)
3476
3661
  update!(**args)
3477
3662
  end
@@ -3479,6 +3664,8 @@ module Google
3479
3664
  # Update properties of this object
3480
3665
  def update!(**args)
3481
3666
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
3667
+ @rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
3668
+ @state = args[:state] if args.key?(:state)
3482
3669
  end
3483
3670
  end
3484
3671
 
@@ -3506,6 +3693,8 @@ module Google
3506
3693
  include Google::Apis::Core::Hashable
3507
3694
 
3508
3695
  # Required. The resource name of child ProcessorVersion to use as default.
3696
+ # Format: `projects/`project`/locations/`location`/processors/`processor`/
3697
+ # processorVersions/`version``
3509
3698
  # Corresponds to the JSON property `defaultProcessorVersion`
3510
3699
  # @return [String]
3511
3700
  attr_accessor :default_processor_version
@@ -4118,8 +4307,8 @@ module Google
4118
4307
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageToken>]
4119
4308
  attr_accessor :tokens
4120
4309
 
4121
- # Transformation matrices (both already applied and not) to the original
4122
- # document image to produce Page.image.
4310
+ # Transformation matrices that were applied to the original document image to
4311
+ # produce Page.image.
4123
4312
  # Corresponds to the JSON property `transforms`
4124
4313
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageMatrix>]
4125
4314
  attr_accessor :transforms
@@ -4494,14 +4683,6 @@ module Google
4494
4683
  class GoogleCloudDocumentaiV1beta1DocumentPageMatrix
4495
4684
  include Google::Apis::Core::Hashable
4496
4685
 
4497
- # Has the transformation already been applied to the current Document? Needed to
4498
- # disambiguate pre-processing transformations already applied vs transformations
4499
- # added at annotation time by HITL operators.
4500
- # Corresponds to the JSON property `applied`
4501
- # @return [Boolean]
4502
- attr_accessor :applied
4503
- alias_method :applied?, :applied
4504
-
4505
4686
  # Number of columns in the matrix.
4506
4687
  # Corresponds to the JSON property `cols`
4507
4688
  # @return [Fixnum]
@@ -4532,7 +4713,6 @@ module Google
4532
4713
 
4533
4714
  # Update properties of this object
4534
4715
  def update!(**args)
4535
- @applied = args[:applied] if args.key?(:applied)
4536
4716
  @cols = args[:cols] if args.key?(:cols)
4537
4717
  @data = args[:data] if args.key?(:data)
4538
4718
  @rows = args[:rows] if args.key?(:rows)
@@ -5932,8 +6112,8 @@ module Google
5932
6112
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageToken>]
5933
6113
  attr_accessor :tokens
5934
6114
 
5935
- # Transformation matrices (both already applied and not) to the original
5936
- # document image to produce Page.image.
6115
+ # Transformation matrices that were applied to the original document image to
6116
+ # produce Page.image.
5937
6117
  # Corresponds to the JSON property `transforms`
5938
6118
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageMatrix>]
5939
6119
  attr_accessor :transforms
@@ -6308,14 +6488,6 @@ module Google
6308
6488
  class GoogleCloudDocumentaiV1beta2DocumentPageMatrix
6309
6489
  include Google::Apis::Core::Hashable
6310
6490
 
6311
- # Has the transformation already been applied to the current Document? Needed to
6312
- # disambiguate pre-processing transformations already applied vs transformations
6313
- # added at annotation time by HITL operators.
6314
- # Corresponds to the JSON property `applied`
6315
- # @return [Boolean]
6316
- attr_accessor :applied
6317
- alias_method :applied?, :applied
6318
-
6319
6491
  # Number of columns in the matrix.
6320
6492
  # Corresponds to the JSON property `cols`
6321
6493
  # @return [Fixnum]
@@ -6346,7 +6518,6 @@ module Google
6346
6518
 
6347
6519
  # Update properties of this object
6348
6520
  def update!(**args)
6349
- @applied = args[:applied] if args.key?(:applied)
6350
6521
  @cols = args[:cols] if args.key?(:cols)
6351
6522
  @data = args[:data] if args.key?(:data)
6352
6523
  @rows = args[:rows] if args.key?(:rows)
@@ -7640,11 +7811,22 @@ module Google
7640
7811
  class GoogleCloudDocumentaiV1beta3ReviewDocumentResponse
7641
7812
  include Google::Apis::Core::Hashable
7642
7813
 
7643
- # The Cloud Storage uri for the human reviewed document.
7814
+ # The Cloud Storage uri for the human reviewed document if the review is
7815
+ # succeeded.
7644
7816
  # Corresponds to the JSON property `gcsDestination`
7645
7817
  # @return [String]
7646
7818
  attr_accessor :gcs_destination
7647
7819
 
7820
+ # The reason why the review is rejected by reviewer.
7821
+ # Corresponds to the JSON property `rejectionReason`
7822
+ # @return [String]
7823
+ attr_accessor :rejection_reason
7824
+
7825
+ # The state of the review operation.
7826
+ # Corresponds to the JSON property `state`
7827
+ # @return [String]
7828
+ attr_accessor :state
7829
+
7648
7830
  def initialize(**args)
7649
7831
  update!(**args)
7650
7832
  end
@@ -7652,6 +7834,8 @@ module Google
7652
7834
  # Update properties of this object
7653
7835
  def update!(**args)
7654
7836
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
7837
+ @rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
7838
+ @state = args[:state] if args.key?(:state)
7655
7839
  end
7656
7840
  end
7657
7841
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1
18
18
  # Version of the google-apis-documentai_v1 gem
19
- GEM_VERSION = "0.37.0"
19
+ GEM_VERSION = "0.40.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220505"
25
+ REVISION = "20220610"
26
26
  end
27
27
  end
28
28
  end
@@ -532,6 +532,36 @@ module Google
532
532
  include Google::Apis::Core::JsonObjectSupport
533
533
  end
534
534
 
535
+ class GoogleCloudDocumentaiV1DocumentSchema
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
541
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityType
542
+ class Representation < Google::Apis::Core::JsonRepresentation; end
543
+
544
+ include Google::Apis::Core::JsonObjectSupport
545
+ end
546
+
547
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues
548
+ class Representation < Google::Apis::Core::JsonRepresentation; end
549
+
550
+ include Google::Apis::Core::JsonObjectSupport
551
+ end
552
+
553
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
559
+ class GoogleCloudDocumentaiV1DocumentSchemaMetadata
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
535
565
  class GoogleCloudDocumentaiV1DocumentShardInfo
536
566
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
567
 
@@ -2160,7 +2190,6 @@ module Google
2160
2190
  class GoogleCloudDocumentaiV1DocumentPageMatrix
2161
2191
  # @private
2162
2192
  class Representation < Google::Apis::Core::JsonRepresentation
2163
- property :applied, as: 'applied'
2164
2193
  property :cols, as: 'cols'
2165
2194
  property :data, :base64 => true, as: 'data'
2166
2195
  property :rows, as: 'rows'
@@ -2298,6 +2327,55 @@ module Google
2298
2327
  end
2299
2328
  end
2300
2329
 
2330
+ class GoogleCloudDocumentaiV1DocumentSchema
2331
+ # @private
2332
+ class Representation < Google::Apis::Core::JsonRepresentation
2333
+ property :description, as: 'description'
2334
+ property :display_name, as: 'displayName'
2335
+ collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType::Representation
2336
+
2337
+ property :metadata, as: 'metadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata::Representation
2338
+
2339
+ end
2340
+ end
2341
+
2342
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityType
2343
+ # @private
2344
+ class Representation < Google::Apis::Core::JsonRepresentation
2345
+ collection :base_types, as: 'baseTypes'
2346
+ property :display_name, as: 'displayName'
2347
+ property :enum_values, as: 'enumValues', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues::Representation
2348
+
2349
+ property :name, as: 'name'
2350
+ collection :properties, as: 'properties', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty::Representation
2351
+
2352
+ end
2353
+ end
2354
+
2355
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeEnumValues
2356
+ # @private
2357
+ class Representation < Google::Apis::Core::JsonRepresentation
2358
+ collection :values, as: 'values'
2359
+ end
2360
+ end
2361
+
2362
+ class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty
2363
+ # @private
2364
+ class Representation < Google::Apis::Core::JsonRepresentation
2365
+ property :name, as: 'name'
2366
+ property :occurrence_type, as: 'occurrenceType'
2367
+ property :value_type, as: 'valueType'
2368
+ end
2369
+ end
2370
+
2371
+ class GoogleCloudDocumentaiV1DocumentSchemaMetadata
2372
+ # @private
2373
+ class Representation < Google::Apis::Core::JsonRepresentation
2374
+ property :document_allow_multiple_labels, as: 'documentAllowMultipleLabels'
2375
+ property :document_splitter, as: 'documentSplitter'
2376
+ end
2377
+ end
2378
+
2301
2379
  class GoogleCloudDocumentaiV1DocumentShardInfo
2302
2380
  # @private
2303
2381
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2449,6 +2527,7 @@ module Google
2449
2527
  class GoogleCloudDocumentaiV1ProcessRequest
2450
2528
  # @private
2451
2529
  class Representation < Google::Apis::Core::JsonRepresentation
2530
+ property :field_mask, as: 'fieldMask'
2452
2531
  property :inline_document, as: 'inlineDocument', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document::Representation
2453
2532
 
2454
2533
  property :raw_document, as: 'rawDocument', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocument, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocument::Representation
@@ -2544,6 +2623,8 @@ module Google
2544
2623
  class GoogleCloudDocumentaiV1ReviewDocumentRequest
2545
2624
  # @private
2546
2625
  class Representation < Google::Apis::Core::JsonRepresentation
2626
+ property :document_schema, as: 'documentSchema', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema::Representation
2627
+
2547
2628
  property :enable_schema_validation, as: 'enableSchemaValidation'
2548
2629
  property :inline_document, as: 'inlineDocument', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document::Representation
2549
2630
 
@@ -2555,6 +2636,8 @@ module Google
2555
2636
  # @private
2556
2637
  class Representation < Google::Apis::Core::JsonRepresentation
2557
2638
  property :gcs_destination, as: 'gcsDestination'
2639
+ property :rejection_reason, as: 'rejectionReason'
2640
+ property :state, as: 'state'
2558
2641
  end
2559
2642
  end
2560
2643
 
@@ -2860,7 +2943,6 @@ module Google
2860
2943
  class GoogleCloudDocumentaiV1beta1DocumentPageMatrix
2861
2944
  # @private
2862
2945
  class Representation < Google::Apis::Core::JsonRepresentation
2863
- property :applied, as: 'applied'
2864
2946
  property :cols, as: 'cols'
2865
2947
  property :data, :base64 => true, as: 'data'
2866
2948
  property :rows, as: 'rows'
@@ -3373,7 +3455,6 @@ module Google
3373
3455
  class GoogleCloudDocumentaiV1beta2DocumentPageMatrix
3374
3456
  # @private
3375
3457
  class Representation < Google::Apis::Core::JsonRepresentation
3376
- property :applied, as: 'applied'
3377
3458
  property :cols, as: 'cols'
3378
3459
  property :data, :base64 => true, as: 'data'
3379
3460
  property :rows, as: 'rows'
@@ -3768,6 +3849,8 @@ module Google
3768
3849
  # @private
3769
3850
  class Representation < Google::Apis::Core::JsonRepresentation
3770
3851
  property :gcs_destination, as: 'gcsDestination'
3852
+ property :rejection_reason, as: 'rejectionReason'
3853
+ property :state, as: 'state'
3771
3854
  end
3772
3855
  end
3773
3856
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.37.0
4
+ version: 0.40.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: 2022-05-16 00:00:00.000000000 Z
11
+ date: 2022-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.6'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.6'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-documentai_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.40.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1
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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Document AI API V1