google-apis-documentai_v1beta2 0.13.0 → 0.17.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: dd2ce150231514e26d557a09c46942359fc48e2d3ac59e550c27f28db498f1de
4
- data.tar.gz: c43f253c2019530554ebc1aa14b768231bf97956be1e7608f0d887f0eda75089
3
+ metadata.gz: 50650cb0eb4a856ed9ccd6bac1d82a4a4d99101851d3689ad0f2158e69e27536
4
+ data.tar.gz: aea2128789ed1c6c28008845688548ebedd947f90c6ea508adde01561ba7b939
5
5
  SHA512:
6
- metadata.gz: 284176eb916f942679bc310983d5cb61712ad3e67363495e55f1f7f19fa815c9f0c09c5e14452ffabe55e92f770bd6fdbcf254c2986aff212e848ec3a063e4d0
7
- data.tar.gz: 9bdf1eb7096d1d14f3a18085cebb1e236e2f88cb0f3f51a52a68d1c19412a42dae7fb65608076618ad76084288f73e254e78ca73c9cd8c1d0647b4665c4ef452
6
+ metadata.gz: b59b1bbbbf3b2be7410823ed9d7af4544ab2527b634be79f922996a7021271ee0163bc8d31efe104025ed375b1b8c2bda522b619c50758bcbb56b1cabe65a309
7
+ data.tar.gz: 139940df84b0f59ebfe4f98d0c807f38ded22580d3fcb16a62bc52c82d398eb97fb810b3ade5528cf8e4caeae0e10ee9852ab48873b266d372cecdf22b9c163f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.17.0 (2021-08-03)
4
+
5
+ * Regenerated from discovery document revision 20210731
6
+
7
+ ### v0.16.0 (2021-07-29)
8
+
9
+ * Regenerated from discovery document revision 20210728
10
+
11
+ ### v0.15.0 (2021-07-13)
12
+
13
+ * Regenerated from discovery document revision 20210709
14
+
15
+ ### v0.14.0 (2021-06-29)
16
+
17
+ * Regenerated from discovery document revision 20210625
18
+ * Regenerated using generator version 0.4.0
19
+
3
20
  ### v0.13.0 (2021-06-24)
4
21
 
5
22
  * Unspecified changes
@@ -271,6 +271,44 @@ module Google
271
271
  end
272
272
  end
273
273
 
274
+ # Metadata message associated with the ExportProcessorVersion operation.
275
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
276
+ include Google::Apis::Core::Hashable
277
+
278
+ # The common metadata for long running operations.
279
+ # Corresponds to the JSON property `commonMetadata`
280
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
281
+ attr_accessor :common_metadata
282
+
283
+ def initialize(**args)
284
+ update!(**args)
285
+ end
286
+
287
+ # Update properties of this object
288
+ def update!(**args)
289
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
290
+ end
291
+ end
292
+
293
+ # Response message associated with the ExportProcessorVersion operation.
294
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
295
+ include Google::Apis::Core::Hashable
296
+
297
+ # The Cloud Storage URI containing the output artifacts.
298
+ # Corresponds to the JSON property `gcsUri`
299
+ # @return [String]
300
+ attr_accessor :gcs_uri
301
+
302
+ def initialize(**args)
303
+ update!(**args)
304
+ end
305
+
306
+ # Update properties of this object
307
+ def update!(**args)
308
+ @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
309
+ end
310
+ end
311
+
274
312
  # The long running operation metadata for set default processor version method.
275
313
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
276
314
  include Google::Apis::Core::Hashable
@@ -1757,8 +1795,8 @@ module Google
1757
1795
  # @return [Fixnum]
1758
1796
  attr_accessor :id
1759
1797
 
1760
- # The index of the parent revisions corresponding collection of items (eg. list
1761
- # of entities, properties within entities, etc.)
1798
+ # The index of the parent item in the corresponding item list (eg. list of
1799
+ # entities, properties within entities, etc.) on parent revision.
1762
1800
  # Corresponds to the JSON property `index`
1763
1801
  # @return [Fixnum]
1764
1802
  attr_accessor :index
@@ -3521,8 +3559,8 @@ module Google
3521
3559
  # @return [Fixnum]
3522
3560
  attr_accessor :id
3523
3561
 
3524
- # The index of the parent revisions corresponding collection of items (eg. list
3525
- # of entities, properties within entities, etc.)
3562
+ # The index of the parent item in the corresponding item list (eg. list of
3563
+ # entities, properties within entities, etc.) on parent revision.
3526
3564
  # Corresponds to the JSON property `index`
3527
3565
  # @return [Fixnum]
3528
3566
  attr_accessor :index
@@ -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.13.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210607"
25
+ REVISION = "20210731"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,18 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
109
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
103
115
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
104
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
117
 
@@ -985,6 +997,21 @@ module Google
985
997
  end
986
998
  end
987
999
 
1000
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
1001
+ # @private
1002
+ class Representation < Google::Apis::Core::JsonRepresentation
1003
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1004
+
1005
+ end
1006
+ end
1007
+
1008
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
1009
+ # @private
1010
+ class Representation < Google::Apis::Core::JsonRepresentation
1011
+ property :gcs_uri, as: 'gcsUri'
1012
+ end
1013
+ end
1014
+
988
1015
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
989
1016
  # @private
990
1017
  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.13.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []