google-apis-documentai_v1 0.64.0 → 0.65.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: eeb2482c6e70187ff504d06d62ce657d6dd542dd4a1e3a75150a775cc108a1c6
4
- data.tar.gz: 4f9906f7f37ce3f98d5dab78e2284187049476906c1d97d50cafb26c358823c1
3
+ metadata.gz: 213c59c9873f1ed70d8cc210de0627f521f7956db083c76513d880e557ce73af
4
+ data.tar.gz: f9ec64a83d35ec3f7a5b202df10e3a084b8edff2d8858e08e534154e4fea38ba
5
5
  SHA512:
6
- metadata.gz: 3dbfa62e64cca965bcd2a028502493cf1b20cce6fdafb6725561f1a7eac49af47140ccea8b93ced7b42ed9b9fbf8105b704d56942e3399e9713bc50b9af24716
7
- data.tar.gz: '00886cb16e031f4d5f62e9a7a93448ce6ab7dec7140abafe0b25420bcd9e112b07f6442c53dd55277fc18cb866b73308abbfe687bba6e236f973b9edae61d256'
6
+ metadata.gz: 4d98da5db6860576f682e05c82d7f9947fad0158dca9036ad7c11a871b02d1c9af09c2038d252fa0646c061ab2c4ee3500caf33ee16e5b4a1649f3770d6c3cae
7
+ data.tar.gz: cef80e64d28cf564428f08b73802f15d7451242cd2c54d9d9c00969dfa26e2b77e3cf2c7714e238f3ff3a20535927cb00114d88d6ffdad7b8ac0c3e6606dd7ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.65.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230519
6
+
3
7
  ### v0.64.0 (2023-05-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20230504
@@ -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::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentIdGcsManagedDocumentId]
452
452
  attr_accessor :gcs_managed_doc_id
@@ -456,6 +456,12 @@ module Google
456
456
  # @return [Google::Apis::DocumentaiV1::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::DocumentaiV1::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
@@ -2885,18 +2912,18 @@ module Google
2885
2912
  include Google::Apis::Core::Hashable
2886
2913
 
2887
2914
  # Represents a color in the RGBA color space. This representation is designed
2888
- # for simplicity of conversion to/from color representations in various
2915
+ # for simplicity of conversion to and from color representations in various
2889
2916
  # languages over compactness. For example, the fields of this representation can
2890
2917
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
2891
2918
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
2892
2919
  # method in iOS; and, with just a little work, it can be easily formatted into a
2893
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
2920
+ # CSS `rgba()` string in JavaScript. This reference page does not have
2894
2921
  # information about the absolute color space that should be used to interpret
2895
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
2922
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
2896
2923
  # applications should assume the sRGB color space. When color equality needs to
2897
2924
  # be decided, implementations, unless documented otherwise, treat two colors as
2898
- # equal if all their red, green, blue, and alpha values each differ by at most
2899
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
2925
+ # equal if all their red, green, blue, and alpha values each differ by at most `
2926
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
2900
2927
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
2901
2928
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
2902
2929
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3002,18 +3029,18 @@ module Google
3002
3029
  alias_method :superscript?, :superscript
3003
3030
 
3004
3031
  # Represents a color in the RGBA color space. This representation is designed
3005
- # for simplicity of conversion to/from color representations in various
3032
+ # for simplicity of conversion to and from color representations in various
3006
3033
  # languages over compactness. For example, the fields of this representation can
3007
3034
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3008
3035
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3009
3036
  # method in iOS; and, with just a little work, it can be easily formatted into a
3010
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3037
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3011
3038
  # information about the absolute color space that should be used to interpret
3012
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3039
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3013
3040
  # applications should assume the sRGB color space. When color equality needs to
3014
3041
  # be decided, implementations, unless documented otherwise, treat two colors as
3015
- # equal if all their red, green, blue, and alpha values each differ by at most
3016
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3042
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3043
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3017
3044
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3018
3045
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3019
3046
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3496,18 +3523,18 @@ module Google
3496
3523
  include Google::Apis::Core::Hashable
3497
3524
 
3498
3525
  # Represents a color in the RGBA color space. This representation is designed
3499
- # for simplicity of conversion to/from color representations in various
3526
+ # for simplicity of conversion to and from color representations in various
3500
3527
  # languages over compactness. For example, the fields of this representation can
3501
3528
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3502
3529
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3503
3530
  # method in iOS; and, with just a little work, it can be easily formatted into a
3504
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3531
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3505
3532
  # information about the absolute color space that should be used to interpret
3506
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3533
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3507
3534
  # applications should assume the sRGB color space. When color equality needs to
3508
3535
  # be decided, implementations, unless documented otherwise, treat two colors as
3509
- # equal if all their red, green, blue, and alpha values each differ by at most
3510
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3536
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3537
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3511
3538
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3512
3539
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3513
3540
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3545,18 +3572,18 @@ module Google
3545
3572
  attr_accessor :background_color
3546
3573
 
3547
3574
  # Represents a color in the RGBA color space. This representation is designed
3548
- # for simplicity of conversion to/from color representations in various
3575
+ # for simplicity of conversion to and from color representations in various
3549
3576
  # languages over compactness. For example, the fields of this representation can
3550
3577
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3551
3578
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3552
3579
  # method in iOS; and, with just a little work, it can be easily formatted into a
3553
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3580
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3554
3581
  # information about the absolute color space that should be used to interpret
3555
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
3582
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
3556
3583
  # applications should assume the sRGB color space. When color equality needs to
3557
3584
  # be decided, implementations, unless documented otherwise, treat two colors as
3558
- # equal if all their red, green, blue, and alpha values each differ by at most
3559
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
3585
+ # equal if all their red, green, blue, and alpha values each differ by at most `
3586
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
3560
3587
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3561
3588
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3562
3589
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -6336,18 +6363,18 @@ module Google
6336
6363
  include Google::Apis::Core::Hashable
6337
6364
 
6338
6365
  # Represents a color in the RGBA color space. This representation is designed
6339
- # for simplicity of conversion to/from color representations in various
6366
+ # for simplicity of conversion to and from color representations in various
6340
6367
  # languages over compactness. For example, the fields of this representation can
6341
6368
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
6342
6369
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
6343
6370
  # method in iOS; and, with just a little work, it can be easily formatted into a
6344
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
6371
+ # CSS `rgba()` string in JavaScript. This reference page does not have
6345
6372
  # information about the absolute color space that should be used to interpret
6346
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
6373
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
6347
6374
  # applications should assume the sRGB color space. When color equality needs to
6348
6375
  # be decided, implementations, unless documented otherwise, treat two colors as
6349
- # equal if all their red, green, blue, and alpha values each differ by at most
6350
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
6376
+ # equal if all their red, green, blue, and alpha values each differ by at most `
6377
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
6351
6378
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
6352
6379
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
6353
6380
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -6453,18 +6480,18 @@ module Google
6453
6480
  alias_method :superscript?, :superscript
6454
6481
 
6455
6482
  # Represents a color in the RGBA color space. This representation is designed
6456
- # for simplicity of conversion to/from color representations in various
6483
+ # for simplicity of conversion to and from color representations in various
6457
6484
  # languages over compactness. For example, the fields of this representation can
6458
6485
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
6459
6486
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
6460
6487
  # method in iOS; and, with just a little work, it can be easily formatted into a
6461
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
6488
+ # CSS `rgba()` string in JavaScript. This reference page does not have
6462
6489
  # information about the absolute color space that should be used to interpret
6463
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
6490
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
6464
6491
  # applications should assume the sRGB color space. When color equality needs to
6465
6492
  # be decided, implementations, unless documented otherwise, treat two colors as
6466
- # equal if all their red, green, blue, and alpha values each differ by at most
6467
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
6493
+ # equal if all their red, green, blue, and alpha values each differ by at most `
6494
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
6468
6495
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
6469
6496
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
6470
6497
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -6760,18 +6787,18 @@ module Google
6760
6787
  include Google::Apis::Core::Hashable
6761
6788
 
6762
6789
  # Represents a color in the RGBA color space. This representation is designed
6763
- # for simplicity of conversion to/from color representations in various
6790
+ # for simplicity of conversion to and from color representations in various
6764
6791
  # languages over compactness. For example, the fields of this representation can
6765
6792
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
6766
6793
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
6767
6794
  # method in iOS; and, with just a little work, it can be easily formatted into a
6768
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
6795
+ # CSS `rgba()` string in JavaScript. This reference page does not have
6769
6796
  # information about the absolute color space that should be used to interpret
6770
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
6797
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
6771
6798
  # applications should assume the sRGB color space. When color equality needs to
6772
6799
  # be decided, implementations, unless documented otherwise, treat two colors as
6773
- # equal if all their red, green, blue, and alpha values each differ by at most
6774
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
6800
+ # equal if all their red, green, blue, and alpha values each differ by at most `
6801
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
6775
6802
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
6776
6803
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
6777
6804
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -6809,18 +6836,18 @@ module Google
6809
6836
  attr_accessor :background_color
6810
6837
 
6811
6838
  # Represents a color in the RGBA color space. This representation is designed
6812
- # for simplicity of conversion to/from color representations in various
6839
+ # for simplicity of conversion to and from color representations in various
6813
6840
  # languages over compactness. For example, the fields of this representation can
6814
6841
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
6815
6842
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
6816
6843
  # method in iOS; and, with just a little work, it can be easily formatted into a
6817
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
6844
+ # CSS `rgba()` string in JavaScript. This reference page does not have
6818
6845
  # information about the absolute color space that should be used to interpret
6819
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
6846
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
6820
6847
  # applications should assume the sRGB color space. When color equality needs to
6821
6848
  # be decided, implementations, unless documented otherwise, treat two colors as
6822
- # equal if all their red, green, blue, and alpha values each differ by at most
6823
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
6849
+ # equal if all their red, green, blue, and alpha values each differ by at most `
6850
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
6824
6851
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
6825
6852
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
6826
6853
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -8485,18 +8512,18 @@ module Google
8485
8512
  include Google::Apis::Core::Hashable
8486
8513
 
8487
8514
  # Represents a color in the RGBA color space. This representation is designed
8488
- # for simplicity of conversion to/from color representations in various
8515
+ # for simplicity of conversion to and from color representations in various
8489
8516
  # languages over compactness. For example, the fields of this representation can
8490
8517
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
8491
8518
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
8492
8519
  # method in iOS; and, with just a little work, it can be easily formatted into a
8493
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
8520
+ # CSS `rgba()` string in JavaScript. This reference page does not have
8494
8521
  # information about the absolute color space that should be used to interpret
8495
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
8522
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
8496
8523
  # applications should assume the sRGB color space. When color equality needs to
8497
8524
  # be decided, implementations, unless documented otherwise, treat two colors as
8498
- # equal if all their red, green, blue, and alpha values each differ by at most
8499
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
8525
+ # equal if all their red, green, blue, and alpha values each differ by at most `
8526
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
8500
8527
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
8501
8528
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
8502
8529
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -8602,18 +8629,18 @@ module Google
8602
8629
  alias_method :superscript?, :superscript
8603
8630
 
8604
8631
  # Represents a color in the RGBA color space. This representation is designed
8605
- # for simplicity of conversion to/from color representations in various
8632
+ # for simplicity of conversion to and from color representations in various
8606
8633
  # languages over compactness. For example, the fields of this representation can
8607
8634
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
8608
8635
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
8609
8636
  # method in iOS; and, with just a little work, it can be easily formatted into a
8610
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
8637
+ # CSS `rgba()` string in JavaScript. This reference page does not have
8611
8638
  # information about the absolute color space that should be used to interpret
8612
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
8639
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
8613
8640
  # applications should assume the sRGB color space. When color equality needs to
8614
8641
  # be decided, implementations, unless documented otherwise, treat two colors as
8615
- # equal if all their red, green, blue, and alpha values each differ by at most
8616
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
8642
+ # equal if all their red, green, blue, and alpha values each differ by at most `
8643
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
8617
8644
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
8618
8645
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
8619
8646
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -8909,18 +8936,18 @@ module Google
8909
8936
  include Google::Apis::Core::Hashable
8910
8937
 
8911
8938
  # Represents a color in the RGBA color space. This representation is designed
8912
- # for simplicity of conversion to/from color representations in various
8939
+ # for simplicity of conversion to and from color representations in various
8913
8940
  # languages over compactness. For example, the fields of this representation can
8914
8941
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
8915
8942
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
8916
8943
  # method in iOS; and, with just a little work, it can be easily formatted into a
8917
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
8944
+ # CSS `rgba()` string in JavaScript. This reference page does not have
8918
8945
  # information about the absolute color space that should be used to interpret
8919
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
8946
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
8920
8947
  # applications should assume the sRGB color space. When color equality needs to
8921
8948
  # be decided, implementations, unless documented otherwise, treat two colors as
8922
- # equal if all their red, green, blue, and alpha values each differ by at most
8923
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
8949
+ # equal if all their red, green, blue, and alpha values each differ by at most `
8950
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
8924
8951
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
8925
8952
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
8926
8953
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -8958,18 +8985,18 @@ module Google
8958
8985
  attr_accessor :background_color
8959
8986
 
8960
8987
  # Represents a color in the RGBA color space. This representation is designed
8961
- # for simplicity of conversion to/from color representations in various
8988
+ # for simplicity of conversion to and from color representations in various
8962
8989
  # languages over compactness. For example, the fields of this representation can
8963
8990
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
8964
8991
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
8965
8992
  # method in iOS; and, with just a little work, it can be easily formatted into a
8966
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
8993
+ # CSS `rgba()` string in JavaScript. This reference page does not have
8967
8994
  # information about the absolute color space that should be used to interpret
8968
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
8995
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
8969
8996
  # applications should assume the sRGB color space. When color equality needs to
8970
8997
  # be decided, implementations, unless documented otherwise, treat two colors as
8971
- # equal if all their red, green, blue, and alpha values each differ by at most
8972
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
8998
+ # equal if all their red, green, blue, and alpha values each differ by at most `
8999
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
8973
9000
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
8974
9001
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
8975
9002
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -10243,18 +10270,18 @@ module Google
10243
10270
  end
10244
10271
 
10245
10272
  # Represents a color in the RGBA color space. This representation is designed
10246
- # for simplicity of conversion to/from color representations in various
10273
+ # for simplicity of conversion to and from color representations in various
10247
10274
  # languages over compactness. For example, the fields of this representation can
10248
10275
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
10249
10276
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
10250
10277
  # method in iOS; and, with just a little work, it can be easily formatted into a
10251
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
10278
+ # CSS `rgba()` string in JavaScript. This reference page does not have
10252
10279
  # information about the absolute color space that should be used to interpret
10253
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
10280
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
10254
10281
  # applications should assume the sRGB color space. When color equality needs to
10255
10282
  # be decided, implementations, unless documented otherwise, treat two colors as
10256
- # equal if all their red, green, blue, and alpha values each differ by at most
10257
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
10283
+ # equal if all their red, green, blue, and alpha values each differ by at most `
10284
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
10258
10285
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
10259
10286
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
10260
10287
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -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.64.0"
19
+ GEM_VERSION = "0.65.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 = "20230504"
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
 
@@ -1952,6 +1958,8 @@ module Google
1952
1958
 
1953
1959
  property :revision_ref, as: 'revisionRef', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3RevisionRef, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3RevisionRef::Representation
1954
1960
 
1961
+ property :unmanaged_doc_id, as: 'unmanagedDocId', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId::Representation
1962
+
1955
1963
  end
1956
1964
  end
1957
1965
 
@@ -1963,6 +1971,13 @@ module Google
1963
1971
  end
1964
1972
  end
1965
1973
 
1974
+ class GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
1975
+ # @private
1976
+ class Representation < Google::Apis::Core::JsonRepresentation
1977
+ property :doc_id, as: 'docId'
1978
+ end
1979
+ end
1980
+
1966
1981
  class GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata
1967
1982
  # @private
1968
1983
  class Representation < Google::Apis::Core::JsonRepresentation
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.64.0
4
+ version: 0.65.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.65.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: []