google-apis-documentai_v1beta2 0.61.0 → 0.62.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: cbef72df7d7a3289b07f0879e1a7288958631fa316415184c7975e9b22b79111
4
- data.tar.gz: 43802225038dbdc4c4ac84049ebdd5647506ea9d79f81f7e12f4648cdef091ae
3
+ metadata.gz: 6750d67efa7adda9c3ad05ec9c03484b9f96a0cd7bdd2315f369726a28907f0e
4
+ data.tar.gz: fc908b243e8c839c69044fe6a70389ba4f3dce59ef52780968c6b12108877813
5
5
  SHA512:
6
- metadata.gz: 4b2e02aa6a35c3e909ebb7ee88a581377bb643f45a80eb88d4901b0a4c47d1f4f7be73bd01f8d39c2a79b5421f202b8d0072fc3edcb836ba8c00829fb4decf33
7
- data.tar.gz: 7733cbd54d242eff519a16f6eeaff1ecca1a2e164d1d56eb86fefb6a2b200e720a83f95d26364fdcce51c778444588b62084a5bb94492bcab95a38db9cc63b2e
6
+ metadata.gz: ce95e6dc9835c2ff033c6e30884dbd79a05918010da3e1325daea4efd2b76365b7364c7172b866fc3fb3c11d0ac81c113dc2485e37cd5abeae3cc5baaeeaaa39
7
+ data.tar.gz: af0627121fa9e9147cd5230a883b86ac1a85aadd63001e72fa9c6dd666ad31aa7cb0e219bc6d64f1f4b45bbc90841eb05b25950e172c25a249dbfa94231e60ef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.62.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230519
6
+
3
7
  ### v0.61.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::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentIdGcsManagedDocumentId]
452
452
  attr_accessor :gcs_managed_doc_id
@@ -456,6 +456,12 @@ module Google
456
456
  # @return [Google::Apis::DocumentaiV1beta2::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::DocumentaiV1beta2::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
@@ -3061,18 +3088,18 @@ module Google
3061
3088
  include Google::Apis::Core::Hashable
3062
3089
 
3063
3090
  # Represents a color in the RGBA color space. This representation is designed
3064
- # for simplicity of conversion to/from color representations in various
3091
+ # for simplicity of conversion to and from color representations in various
3065
3092
  # languages over compactness. For example, the fields of this representation can
3066
3093
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3067
3094
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3068
3095
  # method in iOS; and, with just a little work, it can be easily formatted into a
3069
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3096
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3070
3097
  # information about the absolute color space that should be used to interpret
3071
- # 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,
3072
3099
  # applications should assume the sRGB color space. When color equality needs to
3073
3100
  # be decided, implementations, unless documented otherwise, treat two colors as
3074
- # equal if all their red, green, blue, and alpha values each differ by at most
3075
- # 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.
3076
3103
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3077
3104
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3078
3105
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3178,18 +3205,18 @@ module Google
3178
3205
  alias_method :superscript?, :superscript
3179
3206
 
3180
3207
  # Represents a color in the RGBA color space. This representation is designed
3181
- # for simplicity of conversion to/from color representations in various
3208
+ # for simplicity of conversion to and from color representations in various
3182
3209
  # languages over compactness. For example, the fields of this representation can
3183
3210
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3184
3211
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3185
3212
  # method in iOS; and, with just a little work, it can be easily formatted into a
3186
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3213
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3187
3214
  # information about the absolute color space that should be used to interpret
3188
- # 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,
3189
3216
  # applications should assume the sRGB color space. When color equality needs to
3190
3217
  # be decided, implementations, unless documented otherwise, treat two colors as
3191
- # equal if all their red, green, blue, and alpha values each differ by at most
3192
- # 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.
3193
3220
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3194
3221
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3195
3222
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3485,18 +3512,18 @@ module Google
3485
3512
  include Google::Apis::Core::Hashable
3486
3513
 
3487
3514
  # Represents a color in the RGBA color space. This representation is designed
3488
- # for simplicity of conversion to/from color representations in various
3515
+ # for simplicity of conversion to and from color representations in various
3489
3516
  # languages over compactness. For example, the fields of this representation can
3490
3517
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3491
3518
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3492
3519
  # method in iOS; and, with just a little work, it can be easily formatted into a
3493
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3520
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3494
3521
  # information about the absolute color space that should be used to interpret
3495
- # 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,
3496
3523
  # applications should assume the sRGB color space. When color equality needs to
3497
3524
  # be decided, implementations, unless documented otherwise, treat two colors as
3498
- # equal if all their red, green, blue, and alpha values each differ by at most
3499
- # 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.
3500
3527
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3501
3528
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3502
3529
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -3534,18 +3561,18 @@ module Google
3534
3561
  attr_accessor :background_color
3535
3562
 
3536
3563
  # Represents a color in the RGBA color space. This representation is designed
3537
- # for simplicity of conversion to/from color representations in various
3564
+ # for simplicity of conversion to and from color representations in various
3538
3565
  # languages over compactness. For example, the fields of this representation can
3539
3566
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
3540
3567
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
3541
3568
  # method in iOS; and, with just a little work, it can be easily formatted into a
3542
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
3569
+ # CSS `rgba()` string in JavaScript. This reference page does not have
3543
3570
  # information about the absolute color space that should be used to interpret
3544
- # 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,
3545
3572
  # applications should assume the sRGB color space. When color equality needs to
3546
3573
  # be decided, implementations, unless documented otherwise, treat two colors as
3547
- # equal if all their red, green, blue, and alpha values each differ by at most
3548
- # 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.
3549
3576
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
3550
3577
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
3551
3578
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5250,18 +5277,18 @@ module Google
5250
5277
  include Google::Apis::Core::Hashable
5251
5278
 
5252
5279
  # Represents a color in the RGBA color space. This representation is designed
5253
- # for simplicity of conversion to/from color representations in various
5280
+ # for simplicity of conversion to and from color representations in various
5254
5281
  # languages over compactness. For example, the fields of this representation can
5255
5282
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5256
5283
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5257
5284
  # method in iOS; and, with just a little work, it can be easily formatted into a
5258
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5285
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5259
5286
  # information about the absolute color space that should be used to interpret
5260
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5287
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5261
5288
  # applications should assume the sRGB color space. When color equality needs to
5262
5289
  # be decided, implementations, unless documented otherwise, treat two colors as
5263
- # equal if all their red, green, blue, and alpha values each differ by at most
5264
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5290
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5291
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5265
5292
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5266
5293
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5267
5294
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5367,18 +5394,18 @@ module Google
5367
5394
  alias_method :superscript?, :superscript
5368
5395
 
5369
5396
  # Represents a color in the RGBA color space. This representation is designed
5370
- # for simplicity of conversion to/from color representations in various
5397
+ # for simplicity of conversion to and from color representations in various
5371
5398
  # languages over compactness. For example, the fields of this representation can
5372
5399
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5373
5400
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5374
5401
  # method in iOS; and, with just a little work, it can be easily formatted into a
5375
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5402
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5376
5403
  # information about the absolute color space that should be used to interpret
5377
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5404
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5378
5405
  # applications should assume the sRGB color space. When color equality needs to
5379
5406
  # be decided, implementations, unless documented otherwise, treat two colors as
5380
- # equal if all their red, green, blue, and alpha values each differ by at most
5381
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5407
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5408
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5382
5409
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5383
5410
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5384
5411
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5674,18 +5701,18 @@ module Google
5674
5701
  include Google::Apis::Core::Hashable
5675
5702
 
5676
5703
  # Represents a color in the RGBA color space. This representation is designed
5677
- # for simplicity of conversion to/from color representations in various
5704
+ # for simplicity of conversion to and from color representations in various
5678
5705
  # languages over compactness. For example, the fields of this representation can
5679
5706
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5680
5707
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5681
5708
  # method in iOS; and, with just a little work, it can be easily formatted into a
5682
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5709
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5683
5710
  # information about the absolute color space that should be used to interpret
5684
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5711
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5685
5712
  # applications should assume the sRGB color space. When color equality needs to
5686
5713
  # be decided, implementations, unless documented otherwise, treat two colors as
5687
- # equal if all their red, green, blue, and alpha values each differ by at most
5688
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5714
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5715
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5689
5716
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5690
5717
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5691
5718
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -5723,18 +5750,18 @@ module Google
5723
5750
  attr_accessor :background_color
5724
5751
 
5725
5752
  # Represents a color in the RGBA color space. This representation is designed
5726
- # for simplicity of conversion to/from color representations in various
5753
+ # for simplicity of conversion to and from color representations in various
5727
5754
  # languages over compactness. For example, the fields of this representation can
5728
5755
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
5729
5756
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
5730
5757
  # method in iOS; and, with just a little work, it can be easily formatted into a
5731
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
5758
+ # CSS `rgba()` string in JavaScript. This reference page does not have
5732
5759
  # information about the absolute color space that should be used to interpret
5733
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
5760
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
5734
5761
  # applications should assume the sRGB color space. When color equality needs to
5735
5762
  # be decided, implementations, unless documented otherwise, treat two colors as
5736
- # equal if all their red, green, blue, and alpha values each differ by at most
5737
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
5763
+ # equal if all their red, green, blue, and alpha values each differ by at most `
5764
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
5738
5765
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
5739
5766
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
5740
5767
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -7164,18 +7191,18 @@ module Google
7164
7191
  end
7165
7192
 
7166
7193
  # Represents a color in the RGBA color space. This representation is designed
7167
- # for simplicity of conversion to/from color representations in various
7194
+ # for simplicity of conversion to and from color representations in various
7168
7195
  # languages over compactness. For example, the fields of this representation can
7169
7196
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
7170
7197
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
7171
7198
  # method in iOS; and, with just a little work, it can be easily formatted into a
7172
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
7199
+ # CSS `rgba()` string in JavaScript. This reference page does not have
7173
7200
  # information about the absolute color space that should be used to interpret
7174
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
7201
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
7175
7202
  # applications should assume the sRGB color space. When color equality needs to
7176
7203
  # be decided, implementations, unless documented otherwise, treat two colors as
7177
- # equal if all their red, green, blue, and alpha values each differ by at most
7178
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
7204
+ # equal if all their red, green, blue, and alpha values each differ by at most `
7205
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
7179
7206
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
7180
7207
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
7181
7208
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1beta2
18
18
  # Version of the google-apis-documentai_v1beta2 gem
19
- GEM_VERSION = "0.61.0"
19
+ GEM_VERSION = "0.62.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
 
@@ -1496,6 +1502,8 @@ module Google
1496
1502
 
1497
1503
  property :revision_ref, as: 'revisionRef', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3RevisionRef, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3RevisionRef::Representation
1498
1504
 
1505
+ property :unmanaged_doc_id, as: 'unmanagedDocId', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId::Representation
1506
+
1499
1507
  end
1500
1508
  end
1501
1509
 
@@ -1507,6 +1515,13 @@ module Google
1507
1515
  end
1508
1516
  end
1509
1517
 
1518
+ class GoogleCloudDocumentaiUiv1beta3DocumentIdUnmanagedDocumentId
1519
+ # @private
1520
+ class Representation < Google::Apis::Core::JsonRepresentation
1521
+ property :doc_id, as: 'docId'
1522
+ end
1523
+ end
1524
+
1510
1525
  class GoogleCloudDocumentaiUiv1beta3EnableProcessorMetadata
1511
1526
  # @private
1512
1527
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.62.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-06-04 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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.62.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []