google-cloud-document_ai-v1beta3 0.10.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -5
  3. data/lib/google/cloud/document_ai/v1beta3/document_processor_service/client.rb +957 -123
  4. data/lib/google/cloud/document_ai/v1beta3/document_processor_service/operations.rb +3 -0
  5. data/lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb +21 -0
  6. data/lib/google/cloud/document_ai/v1beta3/version.rb +1 -1
  7. data/lib/google/cloud/document_ai/v1beta3.rb +2 -0
  8. data/lib/google/cloud/documentai/v1beta3/barcode_pb.rb +24 -0
  9. data/lib/google/cloud/documentai/v1beta3/document_io_pb.rb +0 -1
  10. data/lib/google/cloud/documentai/v1beta3/document_pb.rb +20 -2
  11. data/lib/google/cloud/documentai/v1beta3/document_processor_service_pb.rb +85 -1
  12. data/lib/google/cloud/documentai/v1beta3/document_processor_service_services_pb.rb +21 -1
  13. data/lib/google/cloud/documentai/v1beta3/document_schema_pb.rb +60 -0
  14. data/lib/google/cloud/documentai/v1beta3/geometry_pb.rb +0 -1
  15. data/lib/google/cloud/documentai/v1beta3/operation_metadata_pb.rb +3 -2
  16. data/lib/google/cloud/documentai/v1beta3/processor_pb.rb +29 -3
  17. data/lib/google/cloud/documentai/v1beta3/processor_type_pb.rb +4 -2
  18. data/proto_docs/google/api/launch_stage.rb +71 -0
  19. data/proto_docs/google/cloud/documentai/v1beta3/barcode.rb +71 -0
  20. data/proto_docs/google/cloud/documentai/v1beta3/document.rb +87 -31
  21. data/proto_docs/google/cloud/documentai/v1beta3/document_processor_service.rb +223 -10
  22. data/proto_docs/google/cloud/documentai/v1beta3/document_schema.rb +154 -0
  23. data/proto_docs/google/cloud/documentai/v1beta3/operation_metadata.rb +3 -0
  24. data/proto_docs/google/cloud/documentai/v1beta3/processor.rb +92 -7
  25. data/proto_docs/google/cloud/documentai/v1beta3/processor_type.rb +9 -6
  26. data/proto_docs/google/protobuf/any.rb +3 -3
  27. data/proto_docs/google/protobuf/empty.rb +0 -2
  28. metadata +37 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a8b5d13342041bd0460232e6eb8289dd242e64926b3363655fa5127cbae2575
4
- data.tar.gz: 19748ac67ebe76e711f76a0ea63908a76f286c60fe10b767cb777120cdda906b
3
+ metadata.gz: 2f73c064f8aeb55219eabce72ddea4e6878bb6cb9e509322f06bddda3d0372bc
4
+ data.tar.gz: 8ff59c1e1afcacbad59be672ecf1008085d184fac33c4ec4f4139f86acd18cac
5
5
  SHA512:
6
- metadata.gz: fa4fc0d69f1457f93a013c2cac9dd7fb51f6ae710da9a03836016388d857f96d45259f28e33aef0a442bafb4aaba0336086584c0c1352bdba38cb008b7cb48c5
7
- data.tar.gz: 324c2a23e1b5e3bbc49a0b6abdb7ebeea4ce5e6b544815cefe1749795c770db7a342f53ab1be3e53beed29e85bf68ee84e6336d8425ec799b1ddfb64d60900e1
6
+ metadata.gz: ea14acb6b93210b7e0e755dcdc3e10763f6b24208fd21d852d2ddd41fe6ec028f44d40ba5ac4e00473f50b1d6d8dcb854c963cd8f9e8526a0168aec5dd687b01
7
+ data.tar.gz: 295a33772ea212a8abdbcfc4eddbb1a984b3cf0782e64f7ab35a214daf15249982e2b532d58f127fc20a47af3efa71cee6c98e4f7e8a51fe7c54631251438497
data/README.md CHANGED
@@ -69,16 +69,21 @@ module GRPC
69
69
  end
70
70
  ```
71
71
 
72
+
73
+ ## Google Cloud Samples
74
+
75
+ To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
76
+
72
77
  ## Supported Ruby Versions
73
78
 
74
- This library is supported on Ruby 2.5+.
79
+ This library is supported on Ruby 2.6+.
75
80
 
76
81
  Google provides official support for Ruby versions that are actively supported
77
82
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
78
- in security maintenance, and not end of life. Currently, this means Ruby 2.5
79
- and later. Older versions of Ruby _may_ still work, but are unsupported and not
80
- recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
81
- about the Ruby support schedule.
83
+ in security maintenance, and not end of life. Older versions of Ruby _may_
84
+ still work, but are unsupported and not recommended. See
85
+ https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
86
+ support schedule.
82
87
 
83
88
  ## Which client should I use?
84
89