google-cloud-document_ai-v1 0.4.0 → 0.6.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 +4 -4
 - data/AUTHENTICATION.md +1 -1
 - data/lib/google/cloud/document_ai/v1/document_processor_service/client.rb +1492 -58
 - data/lib/google/cloud/document_ai/v1/document_processor_service/paths.rb +38 -0
 - data/lib/google/cloud/document_ai/v1/version.rb +1 -1
 - data/lib/google/cloud/documentai/v1/barcode_pb.rb +24 -0
 - data/lib/google/cloud/documentai/v1/document_io_pb.rb +3 -0
 - data/lib/google/cloud/documentai/v1/document_pb.rb +25 -0
 - data/lib/google/cloud/documentai/v1/document_processor_service_pb.rb +140 -0
 - data/lib/google/cloud/documentai/v1/document_processor_service_services_pb.rb +34 -0
 - data/lib/google/cloud/documentai/v1/document_schema_pb.rb +60 -0
 - data/lib/google/cloud/documentai/v1/operation_metadata_pb.rb +1 -0
 - data/lib/google/cloud/documentai/v1/processor_pb.rb +73 -0
 - data/lib/google/cloud/documentai/v1/processor_type_pb.rb +34 -0
 - data/proto_docs/google/api/launch_stage.rb +71 -0
 - data/proto_docs/google/cloud/documentai/v1/barcode.rb +73 -0
 - data/proto_docs/google/cloud/documentai/v1/document.rb +158 -135
 - data/proto_docs/google/cloud/documentai/v1/document_io.rb +7 -2
 - data/proto_docs/google/cloud/documentai/v1/document_processor_service.rb +354 -6
 - data/proto_docs/google/cloud/documentai/v1/document_schema.rb +155 -0
 - data/proto_docs/google/cloud/documentai/v1/operation_metadata.rb +3 -0
 - data/proto_docs/google/cloud/documentai/v1/processor.rb +174 -0
 - data/proto_docs/google/cloud/documentai/v1/processor_type.rb +62 -0
 - data/proto_docs/google/protobuf/empty.rb +0 -2
 - data/proto_docs/google/protobuf/field_mask.rb +229 -0
 - metadata +34 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 90b5a3c9e7d05297c9a6f2d2c351ce1bb121f1e92ff77ada6042883859350795
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: bf0fd6fd65d030fe8c0e77465651a585d9d5c1007e3b97c26535614a0a01c7c3
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: a57b551259eb706e50343c7d5c29e9d1281e96a57d0b21e1557c93e19e2c6b93cb446bb542cdfecb6a95d16d27ee4cfa45d7f568673303fe6948476ee0f7e479
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ebe7406306f10d17d25abf459bb0949e8babc59b2075dcf5ba88e1267003b2ffec71921d065f6a24dc49e8904d162af3f1561d796dc71d385da6cafd1055e7b5
         
     | 
    
        data/AUTHENTICATION.md
    CHANGED
    
    | 
         @@ -114,7 +114,7 @@ credentials are discovered. 
     | 
|
| 
       114 
114 
     | 
    
         
             
            To configure your system for this, simply:
         
     | 
| 
       115 
115 
     | 
    
         | 
| 
       116 
116 
     | 
    
         
             
            1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
         
     | 
| 
       117 
     | 
    
         
            -
            2. Authenticate using OAuth 2.0 `$ gcloud auth login`
         
     | 
| 
      
 117 
     | 
    
         
            +
            2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
         
     | 
| 
       118 
118 
     | 
    
         
             
            3. Write code as if already authenticated.
         
     | 
| 
       119 
119 
     | 
    
         | 
| 
       120 
120 
     | 
    
         
             
            **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
         
     |