google-cloud-bigquery-migration-v2 0.16.0 → 0.17.1
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:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 05b36a7ff3c4f9580fb9165b305ef8da2e9ce2916c52560fa730cd23899a075c
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 75c78b629e00c3abcceda4b6e5f663f315c6b3fa40ff8904d484c88887d43999
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 3b64fc42eb193bd95c79c4497e1128d221b3c9ebce05e656acdd265f87f39137c17f16f8c5ce5cefc7363c914ca178c01048fdf6bb20c3d953d4a6ce2ef1c428
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 4404c20e920ad8dee7ac0b488f9be6529c20c6c25602d360705aa6cf16ff4ef5443acb706c65e0de3d7dbf750ebe735bd79cbc305f9b2fbec6a024569c089a0e
         
     | 
| 
         @@ -887,8 +887,6 @@ module Google 
     | 
|
| 
       887 
887 
     | 
    
         
             
                          #   @return [::String,nil]
         
     | 
| 
       888 
888 
     | 
    
         
             
                          # @!attribute [rw] credentials
         
     | 
| 
       889 
889 
     | 
    
         
             
                          #   Credentials to send with calls. You may provide any of the following types:
         
     | 
| 
       890 
     | 
    
         
            -
                          #    *  (`String`) The path to a service account key file in JSON format
         
     | 
| 
       891 
     | 
    
         
            -
                          #    *  (`Hash`) A service account key as a Hash
         
     | 
| 
       892 
890 
     | 
    
         
             
                          #    *  (`Google::Auth::Credentials`) A googleauth credentials object
         
     | 
| 
       893 
891 
     | 
    
         
             
                          #       (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
         
     | 
| 
       894 
892 
     | 
    
         
             
                          #    *  (`Signet::OAuth2::Client`) A signet oauth2 client object
         
     | 
| 
         @@ -897,7 +895,26 @@ module Google 
     | 
|
| 
       897 
895 
     | 
    
         
             
                          #    *  (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
         
     | 
| 
       898 
896 
     | 
    
         
             
                          #    *  (`nil`) indicating no credentials
         
     | 
| 
       899 
897 
     | 
    
         
             
                          #
         
     | 
| 
       900 
     | 
    
         
            -
                          #   Warning:  
     | 
| 
      
 898 
     | 
    
         
            +
                          #   @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
         
     | 
| 
      
 899 
     | 
    
         
            +
                          #     is deprecated. Providing an unvalidated credential configuration to
         
     | 
| 
      
 900 
     | 
    
         
            +
                          #     Google APIs can compromise the security of your systems and data.
         
     | 
| 
      
 901 
     | 
    
         
            +
                          #
         
     | 
| 
      
 902 
     | 
    
         
            +
                          #   @example
         
     | 
| 
      
 903 
     | 
    
         
            +
                          #
         
     | 
| 
      
 904 
     | 
    
         
            +
                          #     # The recommended way to provide credentials is to use the `make_creds` method
         
     | 
| 
      
 905 
     | 
    
         
            +
                          #     # on the appropriate credentials class for your environment.
         
     | 
| 
      
 906 
     | 
    
         
            +
                          #
         
     | 
| 
      
 907 
     | 
    
         
            +
                          #     require "googleauth"
         
     | 
| 
      
 908 
     | 
    
         
            +
                          #
         
     | 
| 
      
 909 
     | 
    
         
            +
                          #     credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
         
     | 
| 
      
 910 
     | 
    
         
            +
                          #       json_key_io: ::File.open("/path/to/keyfile.json")
         
     | 
| 
      
 911 
     | 
    
         
            +
                          #     )
         
     | 
| 
      
 912 
     | 
    
         
            +
                          #
         
     | 
| 
      
 913 
     | 
    
         
            +
                          #     client = ::Google::Cloud::Bigquery::Migration::V2::MigrationService::Client.new do |config|
         
     | 
| 
      
 914 
     | 
    
         
            +
                          #       config.credentials = credentials
         
     | 
| 
      
 915 
     | 
    
         
            +
                          #     end
         
     | 
| 
      
 916 
     | 
    
         
            +
                          #
         
     | 
| 
      
 917 
     | 
    
         
            +
                          #   @note Warning: If you accept a credential configuration (JSON file or Hash) from an
         
     | 
| 
       901 
918 
     | 
    
         
             
                          #   external source for authentication to Google Cloud, you must validate it before
         
     | 
| 
       902 
919 
     | 
    
         
             
                          #   providing it to a Google API client library. Providing an unvalidated credential
         
     | 
| 
       903 
920 
     | 
    
         
             
                          #   configuration to Google APIs can compromise the security of your systems and data.
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: google-cloud-bigquery-migration-v2
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.17.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Google LLC
         
     | 
| 
         @@ -15,14 +15,14 @@ dependencies: 
     | 
|
| 
       15 
15 
     | 
    
         
             
                requirements:
         
     | 
| 
       16 
16 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       17 
17 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       18 
     | 
    
         
            -
                    version: '1. 
     | 
| 
      
 18 
     | 
    
         
            +
                    version: '1.2'
         
     | 
| 
       19 
19 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       20 
20 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       21 
21 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       22 
22 
     | 
    
         
             
                requirements:
         
     | 
| 
       23 
23 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       24 
24 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       25 
     | 
    
         
            -
                    version: '1. 
     | 
| 
      
 25 
     | 
    
         
            +
                    version: '1.2'
         
     | 
| 
       26 
26 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       27 
27 
     | 
    
         
             
              name: google-cloud-errors
         
     | 
| 
       28 
28 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       111 
111 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       112 
112 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       113 
113 
     | 
    
         
             
            requirements: []
         
     | 
| 
       114 
     | 
    
         
            -
            rubygems_version: 3.6. 
     | 
| 
      
 114 
     | 
    
         
            +
            rubygems_version: 3.6.9
         
     | 
| 
       115 
115 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       116 
116 
     | 
    
         
             
            summary: The migration service, exposing apis for migration jobs operations, and agent
         
     | 
| 
       117 
117 
     | 
    
         
             
              management.
         
     |