google-apis-documentai_v1beta3 0.72.0 → 0.73.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: acbb6a92e5d29ddaecac3ea586f85a91b61e98a00ddca16e8034888ccd0234a1
4
- data.tar.gz: 97b2a231dd6a636e613b516605d7c4d86f93b67844a792dd350b89b4c2becf70
3
+ metadata.gz: cc88cd3f3ec38ba8dd380cb8884fd30c1c61a4840d16335f61790b4c712f91a7
4
+ data.tar.gz: 2a0bee8d3577960d7e6a3eb202158d985dae3cb2fb13b69e930acfa4dff65534
5
5
  SHA512:
6
- metadata.gz: 70b3392753d862013af656d62080fba92d42e7a80823ce8f360c773097e2325036d6c31a794776575b416f506573a5d2b7a95ac8118a1bce8f954a5b5776a1ac
7
- data.tar.gz: da449a49cc75a0b890859f9423c5100024e23896f95e863f1600ad11e9be3ec82f3c20ad0d08c032ca6e0058315585cc8c80499ab3086526d3311b18e34dc7b7
6
+ metadata.gz: 34644ab9a0c5c122a1b3483cc64cf5c11265cbc97caa96ea2eee2eb5c19b88e971c789e7c0671493e699ecc73af57cef965335e8364032dc3521bd863565f93a
7
+ data.tar.gz: 951b42b2cf7f8108496c3ed06e0200e351c89e5027678431978a5379dba37bd9ce0d4c15956577fd4a633855a40712c99d683aa3c06b430bc77811650b03f4a4
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
- ### v0.72.0 (2023-05-07)
3
+ ### v0.73.0 (2023-05-28)
4
4
 
5
- * Regenerated from discovery document revision 20230427
5
+ * Regenerated from discovery document revision 20230519
6
+
7
+ ### v0.72.0 (2023-05-14)
8
+
9
+ * Regenerated from discovery document revision 20230504
6
10
 
7
11
  ### v0.71.0 (2023-04-30)
8
12
 
@@ -445,8 +445,8 @@ module Google
445
445
  class GoogleCloudDocumentaiUiv1beta3DocumentId
446
446
  include Google::Apis::Core::Hashable
447
447
 
448
- # Identifies a document uniquely within the scope of a dataset in the Cloud
449
- # Storage option.
448
+ # Identifies a document uniquely within the scope of a dataset in user managed
449
+ # Cloud Storage option.
450
450
  # Corresponds to the JSON property `gcsManagedDocId`
451
451
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentIdGcsManagedDocumentId]
452
452
  attr_accessor :gcs_managed_doc_id
@@ -456,6 +456,12 @@ module Google
456
456
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3RevisionRef]
457
457
  attr_accessor :revision_ref
458
458
 
459
+ # Identifies a document uniquely within the scope of a dataset in unmanaged
460
+ # option.
461
+ # Corresponds to the JSON property `unmanagedDocId`
462
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId]
463
+ attr_accessor :unmanaged_doc_id
464
+
459
465
  def initialize(**args)
460
466
  update!(**args)
461
467
  end
@@ -464,11 +470,12 @@ module Google
464
470
  def update!(**args)
465
471
  @gcs_managed_doc_id = args[:gcs_managed_doc_id] if args.key?(:gcs_managed_doc_id)
466
472
  @revision_ref = args[:revision_ref] if args.key?(:revision_ref)
473
+ @unmanaged_doc_id = args[:unmanaged_doc_id] if args.key?(:unmanaged_doc_id)
467
474
  end
468
475
  end
469
476
 
470
- # Identifies a document uniquely within the scope of a dataset in the Cloud
471
- # Storage option.
477
+ # Identifies a document uniquely within the scope of a dataset in user managed
478
+ # Cloud Storage option.
472
479
  class GoogleCloudDocumentaiUiv1beta3DocumentIdGcsManagedDocumentId
473
480
  include Google::Apis::Core::Hashable
474
481
 
@@ -493,6 +500,26 @@ module Google
493
500
  end
494
501
  end
495
502
 
503
+ # Identifies a document uniquely within the scope of a dataset in unmanaged
504
+ # option.
505
+ class GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
506
+ include Google::Apis::Core::Hashable
507
+
508
+ # Required. The id of the document.
509
+ # Corresponds to the JSON property `docId`
510
+ # @return [String]
511
+ attr_accessor :doc_id
512
+
513
+ def initialize(**args)
514
+ update!(**args)
515
+ end
516
+
517
+ # Update properties of this object
518
+ def update!(**args)
519
+ @doc_id = args[:doc_id] if args.key?(:doc_id)
520
+ end
521
+ end
522
+
496
523
  # The long-running operation metadata for the EnableProcessor method.
497
524
  class GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata
498
525
  include Google::Apis::Core::Hashable
@@ -1010,6 +1037,63 @@ module Google
1010
1037
  end
1011
1038
  end
1012
1039
 
1040
+ # Metadata of the sample documents operation.
1041
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsMetadata
1042
+ include Google::Apis::Core::Hashable
1043
+
1044
+ # The common metadata for long running operations.
1045
+ # Corresponds to the JSON property `commonMetadata`
1046
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
1047
+ attr_accessor :common_metadata
1048
+
1049
+ def initialize(**args)
1050
+ update!(**args)
1051
+ end
1052
+
1053
+ # Update properties of this object
1054
+ def update!(**args)
1055
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
1056
+ end
1057
+ end
1058
+
1059
+ # Response of the sample documents operation.
1060
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponse
1061
+ include Google::Apis::Core::Hashable
1062
+
1063
+ # The result of the sampling process.
1064
+ # Corresponds to the JSON property `selectedDocuments`
1065
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument>]
1066
+ attr_accessor :selected_documents
1067
+
1068
+ def initialize(**args)
1069
+ update!(**args)
1070
+ end
1071
+
1072
+ # Update properties of this object
1073
+ def update!(**args)
1074
+ @selected_documents = args[:selected_documents] if args.key?(:selected_documents)
1075
+ end
1076
+ end
1077
+
1078
+ #
1079
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument
1080
+ include Google::Apis::Core::Hashable
1081
+
1082
+ # An internal identifier for document.
1083
+ # Corresponds to the JSON property `documentId`
1084
+ # @return [String]
1085
+ attr_accessor :document_id
1086
+
1087
+ def initialize(**args)
1088
+ update!(**args)
1089
+ end
1090
+
1091
+ # Update properties of this object
1092
+ def update!(**args)
1093
+ @document_id = args[:document_id] if args.key?(:document_id)
1094
+ end
1095
+ end
1096
+
1013
1097
  # The long-running operation metadata for the SetDefaultProcessorVersion method.
1014
1098
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
1015
1099
  include Google::Apis::Core::Hashable
@@ -3004,18 +3088,18 @@ module Google
3004
3088
  include Google::Apis::Core::Hashable
3005
3089
 
3006
3090
  # Represents a color in the RGBA color space. This representation is designed
3007
- # for simplicity of conversion to/from color representations in various
3091
+ # for simplicity of conversion to and from color representations in various
3008
3092
  # languages over compactness. For example, the fields of this representation can
3009
3093
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3010
3094
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3011
3095
  # method in iOS; and, with just a little work, it can be easily formatted into a
3012
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3096
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3013
3097
  # information about the absolute color space that should be used to interpret
3014
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3098
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3015
3099
  # applications should assume the sRGB color space. When color equality needs to
3016
3100
  # be decided, implementations, unless documented otherwise, treat two colors as
3017
- # equal if all their red, green, blue, and alpha values each differ by at most
3018
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3101
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3102
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3019
3103
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3020
3104
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3021
3105
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3121,18 +3205,18 @@ module Google
3121
3205
  alias_method :superscript?, :superscript
3122
3206
 
3123
3207
  # Represents a color in the RGBA color space. This representation is designed
3124
- # for simplicity of conversion to/from color representations in various
3208
+ # for simplicity of conversion to and from color representations in various
3125
3209
  # languages over compactness. For example, the fields of this representation can
3126
3210
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3127
3211
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3128
3212
  # method in iOS; and, with just a little work, it can be easily formatted into a
3129
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3213
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3130
3214
  # information about the absolute color space that should be used to interpret
3131
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3215
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3132
3216
  # applications should assume the sRGB color space. When color equality needs to
3133
3217
  # be decided, implementations, unless documented otherwise, treat two colors as
3134
- # equal if all their red, green, blue, and alpha values each differ by at most
3135
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3218
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3219
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3136
3220
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3137
3221
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3138
3222
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3428,18 +3512,18 @@ module Google
3428
3512
  include Google::Apis::Core::Hashable
3429
3513
 
3430
3514
  # Represents a color in the RGBA color space. This representation is designed
3431
- # for simplicity of conversion to/from color representations in various
3515
+ # for simplicity of conversion to and from color representations in various
3432
3516
  # languages over compactness. For example, the fields of this representation can
3433
3517
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3434
3518
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3435
3519
  # method in iOS; and, with just a little work, it can be easily formatted into a
3436
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3520
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3437
3521
  # information about the absolute color space that should be used to interpret
3438
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3522
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3439
3523
  # applications should assume the sRGB color space. When color equality needs to
3440
3524
  # be decided, implementations, unless documented otherwise, treat two colors as
3441
- # equal if all their red, green, blue, and alpha values each differ by at most
3442
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3525
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3526
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3443
3527
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3444
3528
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3445
3529
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3477,18 +3561,18 @@ module Google
3477
3561
  attr_accessor :background_color
3478
3562
 
3479
3563
  # Represents a color in the RGBA color space. This representation is designed
3480
- # for simplicity of conversion to/from color representations in various
3564
+ # for simplicity of conversion to and from color representations in various
3481
3565
  # languages over compactness. For example, the fields of this representation can
3482
3566
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3483
3567
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3484
3568
  # method in iOS; and, with just a little work, it can be easily formatted into a
3485
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3569
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3486
3570
  # information about the absolute color space that should be used to interpret
3487
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3571
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3488
3572
  # applications should assume the sRGB color space. When color equality needs to
3489
3573
  # be decided, implementations, unless documented otherwise, treat two colors as
3490
- # equal if all their red, green, blue, and alpha values each differ by at most
3491
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3574
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3575
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3492
3576
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3493
3577
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3494
3578
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5153,18 +5237,18 @@ module Google
5153
5237
  include Google::Apis::Core::Hashable
5154
5238
 
5155
5239
  # Represents a color in the RGBA color space. This representation is designed
5156
- # for simplicity of conversion to/from color representations in various
5240
+ # for simplicity of conversion to and from color representations in various
5157
5241
  # languages over compactness. For example, the fields of this representation can
5158
5242
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5159
5243
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5160
5244
  # method in iOS; and, with just a little work, it can be easily formatted into a
5161
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5245
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5162
5246
  # information about the absolute color space that should be used to interpret
5163
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5247
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5164
5248
  # applications should assume the sRGB color space. When color equality needs to
5165
5249
  # be decided, implementations, unless documented otherwise, treat two colors as
5166
- # equal if all their red, green, blue, and alpha values each differ by at most
5167
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5250
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5251
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5168
5252
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5169
5253
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5170
5254
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5270,18 +5354,18 @@ module Google
5270
5354
  alias_method :superscript?, :superscript
5271
5355
 
5272
5356
  # Represents a color in the RGBA color space. This representation is designed
5273
- # for simplicity of conversion to/from color representations in various
5357
+ # for simplicity of conversion to and from color representations in various
5274
5358
  # languages over compactness. For example, the fields of this representation can
5275
5359
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5276
5360
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5277
5361
  # method in iOS; and, with just a little work, it can be easily formatted into a
5278
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5362
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5279
5363
  # information about the absolute color space that should be used to interpret
5280
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5364
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5281
5365
  # applications should assume the sRGB color space. When color equality needs to
5282
5366
  # be decided, implementations, unless documented otherwise, treat two colors as
5283
- # equal if all their red, green, blue, and alpha values each differ by at most
5284
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5367
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5368
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5285
5369
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5286
5370
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5287
5371
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5577,18 +5661,18 @@ module Google
5577
5661
  include Google::Apis::Core::Hashable
5578
5662
 
5579
5663
  # Represents a color in the RGBA color space. This representation is designed
5580
- # for simplicity of conversion to/from color representations in various
5664
+ # for simplicity of conversion to and from color representations in various
5581
5665
  # languages over compactness. For example, the fields of this representation can
5582
5666
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5583
5667
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5584
5668
  # method in iOS; and, with just a little work, it can be easily formatted into a
5585
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5669
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5586
5670
  # information about the absolute color space that should be used to interpret
5587
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5671
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5588
5672
  # applications should assume the sRGB color space. When color equality needs to
5589
5673
  # be decided, implementations, unless documented otherwise, treat two colors as
5590
- # equal if all their red, green, blue, and alpha values each differ by at most
5591
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5674
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5675
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5592
5676
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5593
5677
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5594
5678
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5626,18 +5710,18 @@ module Google
5626
5710
  attr_accessor :background_color
5627
5711
 
5628
5712
  # Represents a color in the RGBA color space. This representation is designed
5629
- # for simplicity of conversion to/from color representations in various
5713
+ # for simplicity of conversion to and from color representations in various
5630
5714
  # languages over compactness. For example, the fields of this representation can
5631
5715
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5632
5716
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5633
5717
  # method in iOS; and, with just a little work, it can be easily formatted into a
5634
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5718
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5635
5719
  # information about the absolute color space that should be used to interpret
5636
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5720
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5637
5721
  # applications should assume the sRGB color space. When color equality needs to
5638
5722
  # be decided, implementations, unless documented otherwise, treat two colors as
5639
- # equal if all their red, green, blue, and alpha values each differ by at most
5640
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5723
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5724
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5641
5725
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5642
5726
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5643
5727
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -7734,18 +7818,18 @@ module Google
7734
7818
  include Google::Apis::Core::Hashable
7735
7819
 
7736
7820
  # Represents a color in the RGBA color space. This representation is designed
7737
- # for simplicity of conversion to/from color representations in various
7821
+ # for simplicity of conversion to and from color representations in various
7738
7822
  # languages over compactness. For example, the fields of this representation can
7739
7823
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
7740
7824
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
7741
7825
  # method in iOS; and, with just a little work, it can be easily formatted into a
7742
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
7826
+ # CSS `rgba()` string in JavaScript. This reference page does not have
7743
7827
  # information about the absolute color space that should be used to interpret
7744
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
7828
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
7745
7829
  # applications should assume the sRGB color space. When color equality needs to
7746
7830
  # be decided, implementations, unless documented otherwise, treat two colors as
7747
- # equal if all their red, green, blue, and alpha values each differ by at most
7748
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
7831
+ # equal if all their red, green, blue, and alpha values each differ by at most `
7832
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
7749
7833
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
7750
7834
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
7751
7835
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -7851,18 +7935,18 @@ module Google
7851
7935
  alias_method :superscript?, :superscript
7852
7936
 
7853
7937
  # Represents a color in the RGBA color space. This representation is designed
7854
- # for simplicity of conversion to/from color representations in various
7938
+ # for simplicity of conversion to and from color representations in various
7855
7939
  # languages over compactness. For example, the fields of this representation can
7856
7940
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
7857
7941
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
7858
7942
  # method in iOS; and, with just a little work, it can be easily formatted into a
7859
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
7943
+ # CSS `rgba()` string in JavaScript. This reference page does not have
7860
7944
  # information about the absolute color space that should be used to interpret
7861
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
7945
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
7862
7946
  # applications should assume the sRGB color space. When color equality needs to
7863
7947
  # be decided, implementations, unless documented otherwise, treat two colors as
7864
- # equal if all their red, green, blue, and alpha values each differ by at most
7865
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
7948
+ # equal if all their red, green, blue, and alpha values each differ by at most `
7949
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
7866
7950
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
7867
7951
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
7868
7952
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -8345,18 +8429,18 @@ module Google
8345
8429
  include Google::Apis::Core::Hashable
8346
8430
 
8347
8431
  # Represents a color in the RGBA color space. This representation is designed
8348
- # for simplicity of conversion to/from color representations in various
8432
+ # for simplicity of conversion to and from color representations in various
8349
8433
  # languages over compactness. For example, the fields of this representation can
8350
8434
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
8351
8435
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
8352
8436
  # method in iOS; and, with just a little work, it can be easily formatted into a
8353
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
8437
+ # CSS `rgba()` string in JavaScript. This reference page does not have
8354
8438
  # information about the absolute color space that should be used to interpret
8355
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
8439
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
8356
8440
  # applications should assume the sRGB color space. When color equality needs to
8357
8441
  # be decided, implementations, unless documented otherwise, treat two colors as
8358
- # equal if all their red, green, blue, and alpha values each differ by at most
8359
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
8442
+ # equal if all their red, green, blue, and alpha values each differ by at most `
8443
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
8360
8444
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
8361
8445
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
8362
8446
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -8394,18 +8478,18 @@ module Google
8394
8478
  attr_accessor :background_color
8395
8479
 
8396
8480
  # Represents a color in the RGBA color space. This representation is designed
8397
- # for simplicity of conversion to/from color representations in various
8481
+ # for simplicity of conversion to and from color representations in various
8398
8482
  # languages over compactness. For example, the fields of this representation can
8399
8483
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
8400
8484
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
8401
8485
  # method in iOS; and, with just a little work, it can be easily formatted into a
8402
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
8486
+ # CSS `rgba()` string in JavaScript. This reference page does not have
8403
8487
  # information about the absolute color space that should be used to interpret
8404
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
8488
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
8405
8489
  # applications should assume the sRGB color space. When color equality needs to
8406
8490
  # be decided, implementations, unless documented otherwise, treat two colors as
8407
- # equal if all their red, green, blue, and alpha values each differ by at most
8408
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
8491
+ # equal if all their red, green, blue, and alpha values each differ by at most `
8492
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
8409
8493
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
8410
8494
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
8411
8495
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -9145,7 +9229,8 @@ module Google
9145
9229
  class GoogleCloudDocumentaiV1beta3ImportProcessorVersionRequest
9146
9230
  include Google::Apis::Core::Hashable
9147
9231
 
9148
- # The source processor version to import from.
9232
+ # The source processor version to import from. The source processor version and
9233
+ # destination processor need to be in the same environment and region.
9149
9234
  # Corresponds to the JSON property `processorVersionSource`
9150
9235
  # @return [String]
9151
9236
  attr_accessor :processor_version_source
@@ -10411,18 +10496,18 @@ module Google
10411
10496
  end
10412
10497
 
10413
10498
  # Represents a color in the RGBA color space. This representation is designed
10414
- # for simplicity of conversion to/from color representations in various
10499
+ # for simplicity of conversion to and from color representations in various
10415
10500
  # languages over compactness. For example, the fields of this representation can
10416
10501
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
10417
10502
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
10418
10503
  # method in iOS; and, with just a little work, it can be easily formatted into a
10419
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
10504
+ # CSS `rgba()` string in JavaScript. This reference page does not have
10420
10505
  # information about the absolute color space that should be used to interpret
10421
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
10506
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
10422
10507
  # applications should assume the sRGB color space. When color equality needs to
10423
10508
  # be decided, implementations, unless documented otherwise, treat two colors as
10424
- # equal if all their red, green, blue, and alpha values each differ by at most
10425
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
10509
+ # equal if all their red, green, blue, and alpha values each differ by at most `
10510
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
10426
10511
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
10427
10512
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
10428
10513
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -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.72.0"
19
+ GEM_VERSION = "0.73.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 = "20230427"
25
+ REVISION = "20230519"
26
26
  end
27
27
  end
28
28
  end
@@ -142,6 +142,12 @@ module Google
142
142
  include Google::Apis::Core::JsonObjectSupport
143
143
  end
144
144
 
145
+ class GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
145
151
  class GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata
146
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
153
 
@@ -268,6 +274,24 @@ module Google
268
274
  include Google::Apis::Core::JsonObjectSupport
269
275
  end
270
276
 
277
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsMetadata
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
283
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponse
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
271
295
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
272
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
297
 
@@ -1970,6 +1994,8 @@ module Google
1970
1994
 
1971
1995
  property :revision_ref, as: 'revisionRef', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3RevisionRef, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3RevisionRef::Representation
1972
1996
 
1997
+ property :unmanaged_doc_id, as: 'unmanagedDocId', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId::Representation
1998
+
1973
1999
  end
1974
2000
  end
1975
2001
 
@@ -1981,6 +2007,13 @@ module Google
1981
2007
  end
1982
2008
  end
1983
2009
 
2010
+ class GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
2011
+ # @private
2012
+ class Representation < Google::Apis::Core::JsonRepresentation
2013
+ property :doc_id, as: 'docId'
2014
+ end
2015
+ end
2016
+
1984
2017
  class GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata
1985
2018
  # @private
1986
2019
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2162,6 +2195,29 @@ module Google
2162
2195
  end
2163
2196
  end
2164
2197
 
2198
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsMetadata
2199
+ # @private
2200
+ class Representation < Google::Apis::Core::JsonRepresentation
2201
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
2202
+
2203
+ end
2204
+ end
2205
+
2206
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponse
2207
+ # @private
2208
+ class Representation < Google::Apis::Core::JsonRepresentation
2209
+ collection :selected_documents, as: 'selectedDocuments', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument::Representation
2210
+
2211
+ end
2212
+ end
2213
+
2214
+ class GoogleCloudDocumentaiUiv1beta3SampleDocumentsResponseSelectedDocument
2215
+ # @private
2216
+ class Representation < Google::Apis::Core::JsonRepresentation
2217
+ property :document_id, as: 'documentId'
2218
+ end
2219
+ end
2220
+
2165
2221
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
2166
2222
  # @private
2167
2223
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.72.0
4
+ version: 0.73.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-05-14 00:00:00.000000000 Z
11
+ date: 2023-05-28 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-documentai_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.73.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
63
63
  post_install_message:
64
64
  rdoc_options: []